cancel
Showing results for 
Search instead for 
Did you mean: 

Two script in one driverprogram

Former Member
0 Kudos

can tell me the scenario with

function module to write two script in one driverprogram

Edited by: Alvaro Tejada Galindo on Jan 30, 2008 4:19 PM

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi Sadath,

Refer the wiki below in this two scripts has been called in one driver program.

[Wiki|https://www.sdn.sap.com/irj/scn/wiki?path=/display/abap/displayingspecificnumberofrecordsperpage]

Regards,

Sravanthi

Former Member
0 Kudos

Hi,

These are following steps to call two forms in one driver program.

1. call funtion open_form FM.

2. call function start_form FM.

specify the first form name and page number of form to be called first.

3. call write_form to put data into form.

4. call function end_form.

_

5. call funtion start_form.

specify the second form name and page number of form to be called second.

6.call write_form.

7. call function end_form.

8. finally call funtion close_form.

try this , i hope it will help u

Thanks & Regards

sathish

former_member188843
Participant
0 Kudos

Dose this possible within a standard program? For example, in first form's subroutine we call 'open form'

for second form.

Thanks for your reply in advance!

Former Member
0 Kudos

In the Driver we must use all or some of the function modules that are listed below to transfer the data.

• Open_Form

• Close_Form

• Start_Form

• Write_Form

• Write_Form_Lines

• End_Form

• Control_Form

• Read_Form_elements

• Read_Form_Lines

Any driver program must contain Open_Form, Close_Form and Write_Form. Other function modules are optional.

cehck out teh help for teh usage of the FMs

regards,

theja.