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:
Starr
Past 24 Hours:
0
Prev. 24 Hours:
1
Overall:
5327
People Online:
Visitors:
455
Members:
1
Total:
456
Online Now:
EricLapine
New Topics
Lawson Add-Ins for Microsoft Office
Lawson Add-in
9/30/2025 6:51 PM
I am looking for a Lawson Add-ins query to add new
Lawson S3 Procurement
Anyone getting PO 0000 not found for company error in PO23?
9/30/2025 2:45 AM
Anyone getting PO 0000 not found for company error
Lawson Add-Ins for Microsoft Office
PO20 - Cancel PO via Add-in
9/25/2025 8:03 PM
Is it possible to cancel PO's using add-ins? I
S3 Systems Administration
S3 Payroll - PayStubs
9/18/2025 6:58 PM
Looking for a reliable solution to streamline the
S3 Systems Administration
Quick Access report
8/25/2025 7:17 PM
Looking for a good way to see who has access Lawso
S3 Customization/Development
LP01 hiding a PTO plan from the list
8/13/2025 4:44 PM
Hi all. is there a way to hide a specific PTO&n
Lawson Business Intelligence/Reporting/Crystal
GLTrans - PO Line/MAInvdtl
8/6/2025 6:13 PM
Hello, we have an existing tabular model for fina
IPA/ProcessFlow
Retrieving GUID from InforOS
7/25/2025 2:22 AM
Hello everyone, I was wondering if there is a way
IPA/ProcessFlow
IPA for forwarding cost messages (MA64/MA66.3)
7/23/2025 6:07 PM
When a buyer has an invoice cost message where the
Lawson Portal
Lawson ESS customization
6/23/2025 10:28 AM
I want to add new links and customize the ESS (sel
Top Forum Posters
Name
Points
Greg Moeller
4184
David Williams
3349
JonA
3293
Kat V
2984
Woozy
1973
Jimmy Chiu
1883
Kwane McNeal
1437
Ragu Raghavan
1377
Roger French
1315
mark.cook
1244
Forums
Filtered Topics
Unanswered
Unresolved
Announcements
Active Topics
Most Liked
Most Replies
Search Forums
Search
Advanced Search
Topics
Posts
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
17 Subscribed to this forum
Sort:
Oldest First
Most Recent First
Author
Messages
Tim Simmons
New Member
Posts: 1
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
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
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.