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

driver program

Former Member
0 Likes
1,341

HI everyone

how to find a driver program for the given sapscript .

regards

priya

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,306

Hi

thanks raj and harikishore.

i have one more doubt.

what is the processing routine in the driver program?

regards

priya

13 REPLIES 13
Read only

Former Member
0 Likes
1,306

Hi Priya,

You can use Trxn <b>NACE</b>.

Regards.

Raj

Read only

Former Member
0 Likes
1,306

HI priya

you have to get the driver program from the <b>TNAPR</b> table where you have give the <b>FONAME</b> which is the form name. then it will give you hte program name

regards

ksihore

Read only

Former Member
0 Likes
1,306

Hi priya,

1. this is one way

2. open layout in se71 tcode in display mode.

3. FORM->CHECK---->TEXTS

(A SMALL WINDOW WILL OPEN)

CLICK OK.

4. again a new window will come

which will list out

all the driver programs, which use this layout

using the call to the fm OPEN_FORM.

regards,

amit m.

Read only

0 Likes
1,306

HI everyone

thanks for your replies.

i cant able to create a paragraph format in the standard MEDRUCK which i am modifying it.

regards

priya

Read only

0 Likes
1,306

Hi,

copy it to ZMEDRUCK and change to your own paragraph formats.

Regards

Vijay

Read only

Former Member
0 Likes
1,307

Hi

thanks raj and harikishore.

i have one more doubt.

what is the processing routine in the driver program?

regards

priya

Read only

0 Likes
1,306

HI priya

the processing routine is the sub-routine in which the driver program will starts execution. your driver program will start the execution from the processing routine.

normally it will be ENTRY.

regards

kishore

Read only

0 Likes
1,306

HI priya

you have to open the sapscript form in the original language then you can modify the form otherwise you cant able to create the paragraph format.

normally the original language for MEDRUCK will be DE

regards

kishore

Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
1,306

Please try transaction NACE, or look at table TNAPR

Regards,

Rich Heilman

Read only

0 Likes
1,306

The processin routine is the entry FORM of the program. Usually the print programs are fired by calling the FORM.

PERFORM ENTRY in PROGRAM ZDRIVER.

Regards,

Rich Heilman

Read only

Former Member
0 Likes
1,306

Hi,

IN se71 check the syntax on text elements , then you will get the window with possible drivers. (from there you need to identify).

if your script is attached an Output type then you can get it From transaction NACE or table TNAPR.

Regards

Vijay

Read only

Former Member
0 Likes
1,306

Hi Priya,

Processing Routine is one in which the actual processing of data takes place.

For eg:

FORM ENTRY USING RETURN_CODE TYPE I

US_SCREEN TYPE C.

CLEAR RETCODE.

XSCREEN = US_SCREEN.

PERFORM PROCESSING.

IF RETCODE NE 0.

RETURN_CODE = 1.

ELSE.

RETURN_CODE = 0.

ENDIF.

ENDFORM.

In the perform <b>PROCESSING</b> the data processing happens.

Regards,

Raj

Read only

Former Member
0 Likes
1,306

Hi Priya,

Processing Routine is one in which the actual processing of data takes place.

For eg:

FORM ENTRY USING RETURN_CODE TYPE I

US_SCREEN TYPE C.

CLEAR RETCODE.

XSCREEN = US_SCREEN.

PERFORM PROCESSING.

IF RETCODE NE 0.

RETURN_CODE = 1.

ELSE.

RETURN_CODE = 0.

ENDIF.

ENDFORM.

In the perform <b>PROCESSING</b> the data processing happens.

Regards,

Raj