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

F4IF_INT_TABLE_VALUE_REQUEST

Former Member
0 Likes
531

Hi Experts,

After calling the FM F4IF_INT_TABLE_VALUE_REQUEST in my pgm,

when i click F4 it will display list(Internal table contents where i have to make selection) in that i am getting # symbol in one of the columns.

How can we remove this?

Here is the FM.

CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'

EXPORTING

  • DDIC_STRUCTURE = ' '

RETFIELD = 'LAND1'(111)

  • PVALKEY = ' '

DYNPPROG = W_REPID

DYNPNR = W_DYNR

  • DYNPROFIELD = ' '

  • STEPL = 0

WINDOW_TITLE = TEXT-073

  • VALUE = ' '

VALUE_ORG = 'S'

  • MULTIPLE_CHOICE = ' '

  • DISPLAY = ' '

  • CALLBACK_PROGRAM = ' '

  • CALLBACK_FORM = ' '

  • MARK_TAB =

  • IMPORTING

  • USER_RESET =

TABLES

VALUE_TAB = T_T005T

FIELD_TAB = IHELP_VALUE_DFIES

RETURN_TAB = W_RETURNTAB

  • DYNPFLD_MAPPING =

EXCEPTIONS

PARAMETER_ERROR = 1

NO_VALUES_FOUND = 2

OTHERS = 3

.

IF SY-SUBRC NE 0.

MESSAGE E999(YK) WITH TEXT-074.

ENDIF.

  • READ TABLE T_T005T INDEX W_IND.

  • READ TABLE T_T005T INDEX SY-TABIX.

  • COUNTRY = T_T005T-LAND1.

COUNTRY = W_RETURNTAB-FIELDVAL.

CLEAR: T_T005T,IHELP_VALUE_DFIES,W_RETURNTAB.

REFRESH: T_T005T,IHELP_VALUE_DFIES,W_RETURNTAB.

In debugging i am getiing correct display in itab.

only in F4 list i am getting # symobol in the last column.

Can any body tell me how to solve this?

3 REPLIES 3
Read only

former_member194669
Active Contributor
0 Likes
487

Hi,

Please check IHELP_VALUE_DFIES internal table whether the field names are correct?

aRs

Read only

Former Member
0 Likes
487

Hi,

Look at the demo program <b>demo_dynpro_f4_help_module</b>

and also, look at the example programs here

Regards

Sudheer

Read only

Former Member
0 Likes
487

Hi,

Can you paste the code how you are prepareing the tables

T_T005T and IHELP_VALUE_DFIES and T_T005T declaration.

Suresh