Login
Register
Search
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Forums
Integration / Customization
S3 Customization/Development
PA531 - how to change 800-OPENINPUTCSV-APLLOADCSV path and file name
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Who's On?
Membership:
Latest:
Jeffin Joy
Past 24 Hours:
0
Prev. 24 Hours:
0
Overall:
4988
People Online:
Visitors:
48
Members:
0
Total:
48
Online Now:
New Topics
Top Forum Posters
Name
Points
Greg Moeller
4184
David Williams
3349
Kat V
2984
Woozy
1973
Jimmy Chiu
1883
Kwane McNeal
1437
Ragu Raghavan
1377
Roger French
1315
mark.cook
1244
Chris Martin
825
Forums
Filtered Topics
Unanswered
Unresolved
Active Topics
Most Liked
Most Replies
Search Forums
Advanced Search
Prev
Next
Forums
Integration / Customization
S3 Customization/Development
PA531 - how to change 800-OPENINPUTCSV-APLLOADCSV path and file name
Please
login
to post a reply.
2 Replies
0
Subscribed to this topic
19 Subscribed to this forum
Sort:
Oldest First
Most Recent First
Author
Messages
Tim Simmons
New Member
Posts: 0
12/13/2013 8:59 PM
I know how to assign a path and file name to a PA531 job by using the jobdef CSV File Attributes, but what if the CSV file is dynamically named?
I need to load a third-party created file of applicants. The file will be dropped off to our FTP site daily with the date imbedded in the file name. I want to modify the PA531 to read the file based on the run date.
How can i handle the file name so the 800-OPENINPUTCSV-APLLOAD can recognize it?
Thanks for your help!
Tim
Ragu Raghavan
Veteran Member
Posts: 477
New Poster
Congrats on posting!
Engaged Poster
Wow, you're on a roll!
Avid Poster
Seriously, you're a posting maniac!
Engaged Reader
You are an engaged reader!
Avid Reader
Avid Reader art thou!
12/14/2013 1:17 AM
Split
This how I would do it:
1. change the setup in workdef, so for the file APLLOADCSV, the field WsFld ID is highlighted instead of Value, and specify a ID: WS-APL-CSV in PA531WS
2. in the PD file, build logic to populate the field WS-APL-CSV
For instanc, if the file is going to be $LAWDIR/pl/work/APLLOADCSV/input_ccyymmdd.csv, you will need something like
STRING "$LAWDIR/", pl , "/work/APLLOADCSV/input_" WS-SYSTEM-DATE-YMD, ".csv" DELIMITED BY SPACES INTO WS-APL-CSV.
before the OPEN statement
jaherb
Veteran Member
Posts: 164
New Poster
Congrats on posting!
12/18/2013 4:17 PM
Split
Tim.... Instead of modifying the Lawson delivered PA531, I would write a simple read / write program that would take the input file and write it out to the APLLOADCSV file which is what the PA531 looks for. The pre-processor program could have a parameter containing the date of the file you are receiving from the vendor and then internally build the IP file name internally. This would take away the issue of "modifying" the PA531 and would be a simple enough task. This is the way I have handled things like this in the past.
Please
login
to post a reply.