Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Developing a adobe form like QP05 transaction

Former Member
0 Likes
646

Hi Experts,

I want to develop a custom report as like QP05 (Print inspection plan). I debug the program and there is a get statement GET PLKOD.

I want to know from where it is fetching data where is its SET statement.

any pointer would be helpful.

thanks

2 REPLIES 2
Read only

RaymondGiuseppi
Active Contributor
0 Likes
550

GET node/table is a statement relative to logical database. Check the program attributes to get the logical database name, then navigate or call transaction SE36 to get the definition of the logical database, for structure name as node, you will have to read the code in this transaction relative to PUT node statement.

You can also use the logical database yourself, either by attaching the logical database to one of your report or using the FM LDB_PROCESS (sample program exists with a name like DEMO_LOGICAL_DATABASE)

Regards,

Raymond

Read only

Former Member
0 Likes
550

thanks Raymond......