Can we take a tilde delimited file and feed it to AS400 as is, or does the file need to be converted to fixed width? I am told by the AS400 engineer that the file needs to be converted to fixed width.
The environment is made up of SQL Server 2005, Visual Studio 2005, and AS400. The tilde delimited file is given by an outside source as is. We are trying to take this file and get it to AS400 to process purchase orders.
Below is a sample of a file we need to feed into the AS400. Original thought was to convert to a format which SQL Server can read, break up into different tables by group, i.e. PROCESSPO, PO, and LINE, so we can properly define columns. Then create files, in this case 3, for the developer feed into the AS400. There will always be 5 different types of records but I am only providing 3 record types because this is all the data I am given to work with.
PROCESSPO~TP-4186~CARQUEST~ALLTRADE~1.2~2011-04-06T13:24:45.000-07:00 PO~TP-4186~TP-4186~2011-04-06T13:24:45.000-07:00~TR-13824~TR-13824~1~0~RAL~Raleigh DC~2635 Millbrook Road~~~Raleigh~NC~27604~US~555-555-5555~177200~DCS Raleigh Store~2635 Millbrook Road~~~Raleigh~NC~27604~US~555-123-4567~ LINE~TP-4186~1~TP-4186~430937~TLS~1.0~EA~FEDGRD~ALLT_LB~Alltrade Tools LLC~1431 Via Plata~~~Long Beach~CA~90810~US~310-522-9008~
Since I don't know AS400 I don't know how it will take in this data but I have spoken to different resources who say it can accept Excel spreadsheets but not sure how it will read the data because they have only worked with spreadsheets having set number of columns across the board. I also pinged the Stackoverflow community for this same reason.
AFTER SPEAKING WITH THE AS400 DEVELOPER IT WAS DECIDED THAT ONE FIXED WIDTH FILE WAS HIS IDEAL SOLUTION BUT THAT IT WAS NOT A REQUIREMENT, MORE OF A DESIRE THAN ANYTHING ELSE. I CREATED MULTIPLE FILES AND AM FEEDING THE DATA DIRECTLY INTO THE AS400 FROM VISUAL STUDIO 2005. THANKS TO ALL FOR YOU FEEDBACK.