‎2018 Jan 18 8:43 AM
hi friends ,
i try to pass icon in search help with using
FM:
F4IF_INT_TABLE_VALUE_REQUEST ,
ICON_RED_LIGHT
![]()
![]()
But it will show value filed
thanks and regards
umayaraj
‎2018 Jan 18 9:55 AM
Try ICON-ID instead of ICON-NAME. It will display in F4 search help.
For example ICON_RED_LIGHT has icon ID = @0A@
‎2018 Jan 18 9:35 AM
‎2018 Jan 18 9:55 AM
Try ICON-ID instead of ICON-NAME. It will display in F4 search help.
For example ICON_RED_LIGHT has icon ID = @0A@
‎2018 Jan 18 10:31 AM
i try with this code i get run time error .but i created search help in se11 and assign it will work but i want generate dynamic vale show in f4 help.
LOOP AT it_zurack_master1 INTO wa_zurack_master.
* CALL FUNCTION 'ICON_CREATE'
* EXPORTING
* name = 'ICON_RED_LIGHT'
* text = ''
* info = ''
* add_stdinf = ''
* IMPORTING
* result = wa_zurack_master-icon.
wa_zurack_master-icon = '@0A@'.
APPEND wa_zurack_master TO it_zurack_master.
CLEAR wa_zurack_master.
ENDLOOP.
CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
EXPORTING
retfield = 'WA_QALS-RACK'
value_org = 'S'
TABLES
value_tab = it_zurack_master
return_tab = it_return2
EXCEPTIONS
parameter_error = 1
no_values_found = 2
OTHERS = 3.
‎2018 Jan 18 10:51 AM
Did you read the runtime error? It should explain where is the problem.
‎2018 Jan 18 10:58 AM
If you use a 'S' structure to pass value to the FM, either
(Read the FM documentation)
How are defined wa_zurack_master or it_zurack_master?