Hi Venkateswaran,
I have created a view ZDVIEW with my select query. But when I press F4 I am not getting the popup window. below is my code.
data : t_return like table of ddshretval with header line.
call function 'F4IF_FIELD_VALUE_REQUEST'
exporting
tabname = 'ZDVIEW'
fieldname = 'MTART'
* SEARCHHELP = ' '
* SHLPPARAM = ' '
dynpprog = sy-repid
dynpnr = sy-dynnr
dynprofield = 'S_MTART'
* STEPL = 0
value = 'S'
* MULTIPLE_CHOICE = ' '
* DISPLAY = ' '
tables
return_tab = t_return
exceptions
field_not_found = 1
no_help_for_field = 2
inconsistent_help = 3
no_values_found = 4
others = 5.
Please help.
Thanks,
Venkata