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 'F4IF_INT_TABLE_VALUE_REQUEST' Column Label F0001

Former Member
0 Kudos

I am using the function 'F4IF_INT_TABLE_VALUE_REQUEST' which have a pop selection windows. Unfortunately, the label of the column does not seen to be that nice and user friendly. It is label as "F0001", 'F0002", "F0003' and etc.

How to re-label those column column so that it looks more user friendly?

Appreciate if you can post some sample.

8 REPLIES 8

Former Member
0 Kudos

In the Exporting parameters ..make the field retfield type data element

it will take the text from standard one

0 Kudos

I am creating a user-defined field in a customised table. It does not refer to any data element.

Can you provide some sample code?

Former Member
0 Kudos

Hi,

You can display the text of your choice using the option in the TABLES parameter

of the FM.

DATA it_field_tab like dfies occurs 0

with header line.

*this will populate your columns name

CALL FUNCTION 'DDIF_NAMETAB_GET'

EXPORTING

tabname = '<table name>'

TABLES

DFIES_TAB = it_field_tab.

*then pass this table along with the values table

*to the F4 FM.

Regards,

Samson Rodrigues.

0 Kudos

Pass the it_field_tab under which parameter in 'F4IF_INT_TABLE_VALUE_REQUEST' FM?

0 Kudos

CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'

EXPORTING

retfield = 'PROJECTNAME'

dynpprog = sy-repid

dynpnr = sy-dynnr

dynprofield = 'CHILD' " dummy field need not be declared

value_org = 'S'

TABLES

value_tab = f4_tab

return_tab = return_tab

field_tab = it_fieldtab. <------ here

Regards,

Samson Rodrigues.

0 Kudos

Dear Samson,

How to select only those fields that I want to display on the F4 Help windows? Currently it display all the fields which is not I want.

Thank you.

0 Kudos

Hi,

You may have to loop through the table and delete those fields that you do not require.

Regards,

Samson Rodrigues.

Former Member
0 Kudos

-