Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

ABAP Class required ?

Former Member
0 Likes
771

Hi All,

Is there any alternative standard class for the function module

"F4IF_INT_TABLE_VALUE_REQUEST". which performs the same operation as this fm does.

thanks and regards,

Navneeth K.

Hi All,

Is there any alternative standard class for the function module

"F4IF_INT_TABLE_VALUE_REQUEST". which performs the same operation as this fm does.

thanks and regards,

Navneeth K.

4 REPLIES 4
Read only

Former Member
0 Likes
669

Hi Navneeth,

Please checkout if this class can be useful

<b>

CL_F4CUSTOM

Method -


SHOW_F4_PERS_DIALOG ( F4 personalization dialog )</b>

Regards,

ABY

Read only

0 Likes
669

Hi Aby,

It will be great if you get me sample code for how to use it.

thanks,

Navneeth K.

Read only

0 Likes
669

Hi,

<b>I have not used this Class [CL_F4CUSTOM] before

Please checkout the Include Program

LSDH4Z01

</b>----


form handle_pers using shlp type shlp_descr

ocx_mode type ddbool_d

changing fcode type sy-ucomm.

data pers_obj type ref to cl_f4custom.

call method cl_f4custom=>get_exist_reference

exporting

mandant = sy-mandt

username = sy-uname

shlpname = shlp-shlpname

shlptype = shlp-shlptype

receiving

reference = pers_obj

exceptions

no_instance = 1.

if sy-subrc = 1.

create object pers_obj exporting reference = pers_obj

mandant = sy-mandt

username = sy-uname

shlp_tab = shlp

exceptions no_personal_settings = 1.

endif.

call method pers_obj->if_f4custom~show_f4_pers_dialog

exporting

username = sy-uname

mandant = sy-mandt

ocx_mode = ocx_mode

shlp_tab = shlp

importing

fcode = fcode.

endform. " Handle_pers

Regards, ABY

Read only

0 Likes
669

Hi Aby,

The above Class want a search help to be created. But my reqmnt is that i have some values populated in a internal table and want to display them on F4,

how to achieve this.

regards,

Navneeth K.