Skip to Content
0
Former Member
Jul 05, 2008 at 06:46 AM

'F4IF_INT_TABLE_VALUE_REQUEST' doest not show any list for selection

1028 Views

hi sapiens ....

i hav an issue ... i used a parameter for which F4 help was assigned using

'F4IF_INT_TABLE_VALUE_REQUEST' .... to this an internal table any return fields was given .. if v press F4 window is opening for seletion but no values in it ....

plz do .. giv u r suggestion ....

Report ZJA_TEST .

parameters filepath(100) type c .

at selection-screen on VALUE-REQUEST FOR filepath .

types : begin of typ_filepath ,

name(10),

end of typ_filepath .

data : it_filepath type table of typ_filepath ,

wa_filepath type typ_filepath .

wa_filepath-name = 'temp'.

append wa_filepath to it_filepath .

wa_filepath-name = 'source'.

append wa_filepath to it_filepath .

CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'

EXPORTING

  • DDIC_STRUCTURE = ' '

retfield = 'NAME'

  • PVALKEY = ' '

DYNPPROG = SY-REPID

DYNPNR = SY-DYNNR

DYNPROFIELD = 'FILEPATH'

  • STEPL = 0

  • WINDOW_TITLE =

  • VALUE = ' '

VALUE_ORG = 'S'

  • MULTIPLE_CHOICE = ' '

  • DISPLAY = ' '

  • CALLBACK_PROGRAM = ' '

  • CALLBACK_FORM = ' '

  • MARK_TAB =

  • IMPORTING

  • USER_RESET =

tables

value_tab = it_filepath

  • FIELD_TAB = ''

  • RETURN_TAB = ''

  • DYNPFLD_MAPPING = ''

  • EXCEPTIONS

  • PARAMETER_ERROR = 1

  • NO_VALUES_FOUND = 2

  • OTHERS = 3

.

IF sy-subrc <> 0.

  • MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO

  • WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.

ENDIF.