Application Development 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: 

Script for job ticket

Former Member
0 Kudos

Hi All,

I working on a script related to a job ticket. Standard print program is RIPRJT00 and standard script is u2018PM_COMMONu2019.

I need to add certain fields to the layout, so i am creating a new Z script and copying print program and modifying it.

In that I need to retrieve Functional location description, which can be obtained from structure RIOT (RIOT-PLTXT).

So, can anybody guide me how ti retrieve this value at runtime as it is a structure?

Thanks,

Archana

1 ACCEPTED SOLUTION

Former Member
0 Kudos

SAP best practice is to leave the driver program AS IT IS. Copy the SAPScript, modify/enhance it with DEFINE, PERFORM, etc. If you follow this practice, youl could save yourself some time and difficulty.

Go to SE11, enter the field name PLTXT and perform a where used. You'll probably find that it's in transparent table IFLOTX.

2 REPLIES 2

Former Member
0 Kudos

SAP best practice is to leave the driver program AS IT IS. Copy the SAPScript, modify/enhance it with DEFINE, PERFORM, etc. If you follow this practice, youl could save yourself some time and difficulty.

Go to SE11, enter the field name PLTXT and perform a where used. You'll probably find that it's in transparent table IFLOTX.

0 Kudos

can I get some more input like step by step process. including the sub routines used.