Looking for the SQL behind a Lawson report

 6 Replies
 0 Subscribed to this topic
 22 Subscribed to this forum
Sort:
Author
Messages
Wade-T
Veteran Member Send Private Message
Posts: 54
Veteran Member
Hello,

I need to write a Crystal report that is similar to the AP265 but with some adjustments. I was wondering where you could find the SQL behind the existing Lawson report to use as my begining point.

Is this how you would start?

Thank you,

Wade
Chris Martin
Veteran Member Send Private Message
Posts: 277
Veteran Member
Unfortunately, the backend of a Lawson program is COBOL, not SQL. If you can read COBOL, then this will be easy. If you can't, take a look at the AP Technical Text for AP265. This will get you started as it lists the tables referenced in the code. Beyond that, you are looking at reverse engineering the COBOL code.
Tomwise
Advanced Member Send Private Message
Posts: 32
Advanced Member
You could have your dba run a trace on your session while you run the AP265 app. It will capture all the SQL statements that you are generating. You could also use Toad or Oracle OEM to capture the SQL.
Wade-T
Veteran Member Send Private Message
Posts: 54
Veteran Member
I have the AP technical text and will also give the trace option a try.

Thanks for the info.
Ruma Malhotra
Veteran Member Send Private Message
Posts: 412
Veteran Member
The AP265 is the payment register report and I built it using 4 tables which are APPAYMENT, APINVOICE, APVENMAST and CBBANKINST. The Payment status which is a derived field in Lawson will need to built in crystal since this is not a field in the database.
Chris Martin
Veteran Member Send Private Message
Posts: 277
Veteran Member
Interesting idea Tom. I'll have to give that a try myself.
Tomwise
Advanced Member Send Private Message
Posts: 32
Advanced Member
Chris,

We do this all the time. It's how we figured out Lawson Applications didn't work with their Time Managment application that they where selling and we bought (4 years ago). We saw that Lawson was looking for five blanks in a field and Time Management was looking for one blank, so the intergration would never work. We had to tell Lawson how to fix their procedures and triggers in Time Management to work with Lawson, they put our patch as one of their releases.

Tom