Hi Frenz,
Am working on CSV files. I am trying to read batch of records from a CSV file, which contains records in the following manner..
am trying to read the records in a dataset and then on send the stockistcode (KS010...,AS010 ) to the table. But while reading the records, with the above pattern, i retrieve a dataset which removes the KS0(zero) from those stockistcodes that starts with 'KS'. and in the other batch am able to get the code fully as ASO10,AS011,... .
I want to get the full code, without any filter so that i can work on the same in the backend.
This is urgent and it would be greatly helpful if i am guided.
Am working on CSV files. I am trying to read batch of records from a CSV file, which contains records in the following manner..
Code:
1,'KS010','S',09,345 2,'KS011','S',09,346 3,'KS012','S',09,347 4,'KS013','S',09,348 01,'AS010','S',09,345 02,'AS011','S',09,346 07,'AS012','S',09,347 08,'AS013','S',09,348
I want to get the full code, without any filter so that i can work on the same in the backend.
This is urgent and it would be greatly helpful if i am guided.
Comment