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

Reg:modulepool programming

former_member197425
Active Participant
0 Likes
547

Hi,

Can anyone please tell me how to solve this issue.That is I developed a module pool program with screen no 100 and to that screen i want to add another screen for example 110 that is after entering the values in screen 100 and when i press Enter key i should enter into screen 110.

Please guide me how to do this

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
524

Hi,

Create screen 110. In the attributes of Screen 100, set Next Screen to 110. Now you don't need to call the screen 110 on condition, as you press the ENTER key on the keyboard you will be taken to next screen 110.

Else, if you want on the conditional access, do as given in the above replies.

4 REPLIES 4
Read only

former_member195383
Active Contributor
0 Likes
524

Hi..

U can create another screen 110, and put the condition in ur 1st screen as..

if sy-ucomm = 'ENTE'.

CALL SCREEN 0110.

endif.

reward points if useful...

Read only

former_member195383
Active Contributor
0 Likes
524

Hi..

U can create another screen 110, and put the condition in ur 1st screen, i.e in screen 100's PIA module as..

if sy-ucomm = 'ENTE'.

CALL SCREEN 0110.

endif.

reward points if useful...

Read only

Former Member
0 Likes
524

i think you can solve this without using subscreen.

try draw all fields in the screen 100 that you planned to see in screen 110.

draw those fields as invisible and when 'enter' will be pressed,

on the PBO of 100 screen make those fields visible using structure with name 'screen' and its attributes.

Read only

Former Member
0 Likes
525

Hi,

Create screen 110. In the attributes of Screen 100, set Next Screen to 110. Now you don't need to call the screen 110 on condition, as you press the ENTER key on the keyboard you will be taken to next screen 110.

Else, if you want on the conditional access, do as given in the above replies.