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

F4IF_SHLP_EXIT_EXAMPLE

Former Member
0 Likes
579

Hi,

I ned to develop a search help exit to restrict 'Setname' field of SETLEAF table.

so I copied F4IF_SHLP_EXIT_EXAMPLE as zfm.

I used below coding in that.

IF CALLCONTROL-STEP = 'SELECT'.

DATA: BEGIN OF MY_DATA,

DATA RC TYPE SY-SUBRC.

select setname from setleaf into record_tab where setname = 'zset' and lineid = '2'.

IF RC = 0.

CALLCONTROL-STEP = 'DISP'.

ELSE.

CALLCONTROL-STEP = 'EXIT'.

ENDIF.

EXIT. "Don't process STEP DISP additionally in this call.

ENDIF.

fort this condition I got one record in record_tab but when I press f4 its giving empty dialog with single line. I am not getting value.

How handle that?

ASAP

thanks,

sudha

2 REPLIES 2
Read only

Former Member
0 Likes
430

Hi,

Please do not open multiple threads for the same question. Please close this thread..and see your other thread for the answer..

Thanks

Naren

Read only

Former Member
0 Likes
430

I solved it by myself.