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: 

How to call 2 subscreens at the same time in a tab?

dsubhash567
Explorer
0 Kudos

Hi all,

I am enhancing Internal Order-> General Data tab. In this tab, I did a screen enhancement and I am displaying a subscreen for some order types. Now my requirement is, I have to display another subscreen for all the order types. Can I display 2 subscreens at the same time?

Right now the logic is this way.

IF  global_aufk-auart EQ 'XXXX'.

     subscreen = '0100'.

else.

     subscreen = space

endif.

I have created a new subscreen '0200' but I am not able to display both of them at the same time.

Thanks,

Subhash.

2 REPLIES 2

Juwin
Active Contributor
0 Kudos

How about trying to do this....

Main screen -> screen enhancement -> screen 0200 (common for all order types) -> screen 0100 (include 0100 as a subscreen inside 0200, for specific order types)


Thanks,

Juwin

0 Kudos

Hi Juwin,

Thanks for you reply.

I did it this way:

1. Added the fields that I have in subscreen 0200, in a separate box within subscreen 0100

2. Modified the 'if' condition.

IF  global_aufk-auart EQ 'XXXX'.

     subscreen = '0100'.

else.

     subscreen = '0200'.

endif.

Thanks,

Subhash