‎2007 Nov 02 4:14 AM
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
‎2007 Nov 02 4:21 AM
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
‎2007 Nov 05 4:32 AM