Login
Register
Search
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Forums
Infor / Lawson Platforms
S3 Systems Administration
BSI - Taxfactory
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Who's On?
Membership:
Latest:
Zac Shields
Past 24 Hours:
1
Prev. 24 Hours:
1
Overall:
5210
People Online:
Visitors:
348
Members:
0
Total:
348
Online Now:
New Topics
Lawson S3 HR/Payroll/Benefits
Post Tax Benefit Plan Table
11/14/2024 9:16 PM
Hi, totally new to Laswon. I have a repor
Lawson S3 Procurement
ED501 Error: Map 850 not supported by /law/c15vda/lawson/test10/edi/bin/laws_out_91
11/12/2024 3:47 PM
Tried runnning ED501 and getting the atathced erro
Lawson S3 HR/Payroll/Benefits
Error
11/6/2024 9:54 PM
When I try to enroll a retiree in 72.1 health plan
Infor ERP (Syteline)
Syteline: New Data Maintenance Wizard (Error) Need help
11/1/2024 4:24 PM
Hi, I need help with an error on syteline while us
Dealing with Lawson / Infor
Implementing Lawson v10 with Cerner Surginet, Case Cart Picking, and Quick Adds for the OR
10/29/2024 4:20 PM
Hi Everyone, I am wondering if there is any org
Lawson S3 HR/Payroll/Benefits
Canada Tax Calculation (Federal and Provincial) Issue
10/23/2024 5:00 AM
Initially, we had problem with CPP2 calculation is
Lawson S3 HR/Payroll/Benefits
CA Section 125 401k Plan
10/22/2024 10:13 PM
Does anyone have any recommendations on how to fac
S3 Systems Administration
Running AC120 deleted records from ACMASTER table
10/22/2024 3:40 PM
We recently ran the AC120 as normal and somehow it
Lawson S3 Procurement
RQ13 Approval Info
10/17/2024 2:12 PM
When a Requisition is approved on RQ13, what table
S3 Customization/Development
Read and Write CSV file COBOL
10/9/2024 2:53 PM
Does anyone have a quik example of a program that
Top Forum Posters
Name
Points
Greg Moeller
4184
David Williams
3349
JonA
3291
Kat V
2984
Woozy
1973
Jimmy Chiu
1883
Kwane McNeal
1437
Ragu Raghavan
1372
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
Infor / Lawson Platforms
S3 Systems Administration
BSI - Taxfactory
Please
login
to post a reply.
3 Replies
0
Subscribed to this topic
27 Subscribed to this forum
Sort:
Oldest First
Most Recent First
Author
Messages
andrew5499
Veteran Member
Posts: 100
11/13/2008 3:30 PM
We are having issue with communication between lawson and BSI.
i.e. when we run PA13.8 - initial inquiry is very slow.
anyone else experienced this ?
running windows, 9 env and apps, sql 2005
BrianP
Advanced Member
Posts: 35
11/17/2008 1:53 PM
What release of BSI are you using? 8.0.j?
Roger French
Veteran Member
Posts: 549
11/17/2008 4:30 PM
Have you tried running a PRTF to make sure the connections are OK with Tax Factory?
Posted By andrew on 11/13/2008 10:30 AM
We are having issue with communication between lawson and BSI.
i.e. when we run PA13.8 - initial inquiry is very slow.
anyone else experienced this ?
running windows, 9 env and apps, sql 2005
mondrar
Advanced Member
Posts: 35
12/2/2008 2:07 PM
Maybe this will help:
I had a similar problem with the PR140 after a BSI upgrade. In the msgmnt program called from LID, there is a 400 type message that was being logged. This message was added during our BSI upgrade for troubleshooting purposes, but never removed. It caused significant performance issues all around. The PR140 went from 10 minutes to over 1 hour. If this message exists, remove it, and all should be back to normal. If it does not exist, I suggest the following:
I created the following steps to troubleshoot the PR140 before finally finding a solution above. Use the same steps for the PR13.8 Submit all log files to the GSC for review:
Compiling the PR140 in Profile Mode
All the steps below are to be performed by user Lawson.
1. Do a bldsh against the program. This will generate a .cbl that will be used in step 3 below:
bldsh
PR PR140
2. Remove the programs .gnt executable. This will ensure the .int created will be executed instead of the .gnt:
rm $LAWDIR/
/obj/PR140.gnt
3. Move the programs .cbl file from the source directory to the obj directory:
mv $LAWDIR/
/prsrc/PR140.cbl $LAWDIR/
/obj
4. Perform a Microfocus cob compile on the PR140 using the following syntax. Execute the command from the $LAWDIR/
/obj directory:
cob -C nolist -C warning=1 -C QUAL -c -C profile vsc2 PR140.cbl –a
5. This will generate a .int and a .idy files associated with the program. From the $LAWDIR/
/obj directory, do an ls to see if the two files were created:
PR140.int
PR140.idy
6. Run the program (submit the PR140 batch job) normally. Upon completion, a .ipf file will be created in the $LAWDIR/
/obj directory:
PR140.ipf
7. From the $LAWDIR/
/obj directory, run the following command to translate the .ipf trace log into a text file that can be read, edited, printed, etc…
cobprof PR140 +list > PR140.out
8. Send the output of the cobprof command to Lawson support.
Multiple runs of the program in TIMESTATS mode can be executed, but be sure to delete the .ipf file between runs as the profiler adds to the end of the output if it exists.
What you will see are paragraph names, the number of times you entered the paragraph, and the time spent in the paragraph.
Activating the Lawson dbadmin utility, Timestats
The timestats function is activated using the dbadmin utility. To show current settings, run 'dbadmin get' from a LID command prompt.
Run dbadmin get after setting the options to check that the desired options are enabled.
1. dbadmin set dataareafilter test – no need for dataarea filter. If you are gathering statistics, you want stats files for gen and logan as well as the 'test' productline.
2. dbadmin set timestatsdir /home/lawson/timestats
3. dbadmin set programfilter PR140 - no need to set, programfilter does not work, fixed in SP5 LSF9
4. dbadmin set userfilter medinar
5. dbadmin set reuse off
6. dbadmin idle test
7. dbadmin set timestats on
8. dbadmin get
• Current Value for REUSE=OFF
• Current Value for DEBUG=OFF
• Current Value for DBAPIERRORS=ON
• Current Value for TIMESTATS=ON
• Current Value for USERFILTER=medinar
• Current Value for PROGRAMFILTER=
• Current Value for DATAREAFILTER=
• Current Value for TIMESTATSDIR=/home/lawson/timestats
• Current Value for IDLETIME=1
To disable timestats and re-enable driver re-use:
1. dbadmin set timestats off
2. dbadmin set reuse on
Once data has been collected send all files to the Lawson GSC for review.
1. All files in the timestats output directory.
2. The PR140.out file.
Please
login
to post a reply.