Application Development 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: 

Function Module

Former Member
0 Kudos

Hey,

I am calling a function module f4if_int_table_value_request and on the screen when i click on the f4 help of the field, i get an additional popup box along with the actual one. How can i get rid of the additional pop up ?

Please help.

Thanks.

5 REPLIES 5

Former Member
0 Kudos

Hi Scorpio,

If u r trying for F4 help,

Use pop_up_with_table_display..

Regards,

Kaveri

Former Member
0 Kudos

Hello,

#

Check this sample.

FORM F4.

refresh it_list.

select * from z06pde12_sys appending corresponding fields of table

it_list

order by systyp.

CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'

EXPORTING

RETFIELD = 'SYSTYP'

DYNPPROG = 'Z06PDE12_RSUSR003'

DYNPNR = '1000'

DYNPROFIELD = 'PA_SYST'

VALUE_ORG = 'S'

TABLES

VALUE_TAB = it_list

return_tab = it_retn.

.

IF SY-SUBRC <> 0.

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

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

ENDIF.

ENDFORM.

may be problem with <b>return_tab</b> field.

regards,

pavan jhawar.

Former Member
0 Kudos

Hi,

in ur function module there is display option there u mark as 'x'.

Note:

it is an absolute FM in ecc6.0

Former Member
0 Kudos

I still haven't been able to get rid of the additional popup window.

Former Member
0 Kudos

hi,

are u storing any fixed values in domain of that field?

if yes, then delete those domain values.