Hi , I need to remove a quotation mark from a VB input file(59 lrecl) and output into a VB file(59 lrecl)
Input:
000001 "Detail ID,Partnum2,Plant,Cost_update1,Effective_Date2"
000002 "1,0000045E0002,1202,0000259.320,00000000"
000003 "1,000000449021,1202,0006284.000,00000000"
000004 "1,000000719410,1202,0009953.000,00000000"
000005 "1,000000719420,1202,0009953.000,00000000"
000006 "1,000001624775,1202,0000000.190,00000000"
Output:
000001 Detail ID,Partnum2,Plant,Cost_update1,Effective_Date2"
000002 1,0000045E0002,1202,0000259.320,00000000
000003 1,000000449021,1202,0006284.000,00000000
000004 1,000000719410,1202,0009953.000,00000000
000005 1,000000719420,1202,0009953.000,00000000
000006 1,000001624775,1202,0000000.190,00000000
when used:
OPTION COPY
INREC BUILD=(1,4,5:6,40,46:47,13)
ending with error as:
ICE218A 6 46 BYTE VARIABLE RECORD IS SHORTER THAN 59 BYTE MINIMUM FOR
Till this
OPTION COPY
INREC BUILD=(1,4,5:6,40 it was fine working
only on that 46:47,13) part getting this error. Please advise