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

back to screen

Former Member
0 Likes
633

Hi.

I have a selection screen with a select options.

in the execution of the program i have the next code:

IF i_ztbanexcontrol[] IS INITIAL.

    MESSAGE i000(zsd) WITH 'No se han seleccionado anexos'.

<u>

in this case i want back to selection screen</u>

How????

ENDIF.

Thanks

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
614

Hi,

Use Stop after Message..

IF i_ztbanexcontrol[] IS INITIAL.

MESSAGE i000(zsd) WITH 'No se han seleccionado anexos'.

<b>STOP.</b>

ENDIF.

Reward if helpful.

Hi.

I have a selection screen with a select options.

in the execution of the program i have the next code:

IF i_ztbanexcontrol[] IS INITIAL.

    MESSAGE i000(zsd) WITH 'No se han seleccionado anexos'.

<u>

in this case i want back to selection screen</u>

How????

ENDIF.

Thanks

4 REPLIES 4
Read only

Former Member
0 Likes
614

Use the EXIT command

Read only

seshatalpasai_madala
Product and Topic Expert
Product and Topic Expert
0 Likes
614

Hi,

You can use

CALL SELECTION-SCREEN 1000.

Regards,

Sesh

Read only

Former Member
0 Likes
614

hi

use

leave to screen 0.

regards,

prasanth

Read only

Former Member
0 Likes
615

Hi,

Use Stop after Message..

IF i_ztbanexcontrol[] IS INITIAL.

MESSAGE i000(zsd) WITH 'No se han seleccionado anexos'.

<b>STOP.</b>

ENDIF.

Reward if helpful.