Hi All,
do we have any FM which gives the one field in the pop-up screen. and on the F4 help it should show only my requred help.(i.e what ever their in the internal table that should show up )
so i want pop-up sreen + internal table f4 help of that filed...
i tried with the FM
* Filling internal table with fields attributes
ls_field-tabname = 'MARA'.
ls_field-fieldname = 'MATNR'.
ls_field-field_obl = c_x.
* ls_field-comp_tab = it_makt.
append ls_field to lt_fields.
call function 'POPUP_GET_VALUES_DB_CHECKED'
exporting
popup_title = 'Select Plan Name'
importing
returncode = l_returncode
tables
fields = lt_fields
exceptions
error_in_fields = 1
others = 2.
it gives me the popup but it giving the standard MATNR F4 help....
but i want the particular material class detail only.
good replies are appricated.
Thanks.