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

Sapscripts - To Trigger two layouts in one script

Former Member
0 Likes
534

Hi ,

I want to know how to trigger two different layouts in one script based on some condition.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
511

u have to make use of FM START_FORM.

see the documentation for more details.

regards

prabhu

4 REPLIES 4
Read only

Former Member
0 Likes
512

u have to make use of FM START_FORM.

see the documentation for more details.

regards

prabhu

Read only

Former Member
0 Likes
511

TRY START_FORM AND END_FORM FM.

REGARDS

SHIBA DUTTA

Read only

Former Member
0 Likes
511

Hi ,

Lets assume A and B are two forms. The two forms can be handled like this.

Open_Form ...

Start_Form FormA..

Write_Form FormA.

End_Form FormA..

Start_Form FormB.

Write_Form FormB.

End_Form FormB.

Close_Form.

Regards,

Jayaram...

Read only

0 Likes
511

I am modifying a standard script and cannot change the driver program.Is there any method to trigger two layouts on condition in the script itself?