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

Dynamic search help

Former Member
0 Likes
2,237

I m using F4IF_INT_TABLE_VALUE_REQUEST but the values are not displayed in the screen.

I debugged the program. I m getting the value in the Internal table but not displayed in the screen.

a popup opens in that i can see the number of entries but not the value.

can any one solve this problem.

thanks in advance.

12 REPLIES 12
Read only

alex_m
Active Contributor
0 Likes
1,202

Can you please paste your code.

Read only

Former Member
0 Likes
1,202

SELECT OBJEK FROM CUCO INTO TABLE IT_ACTUALOBJECT WHERE OBTAB = OBJEK.

CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'

EXPORTING

  • DDIC_STRUCTURE = ' '

retfield = 'OBJEK'

  • PVALKEY = ' '

DYNPPROG = SY-REPID

DYNPNR = SY-DYNNR

DYNPROFIELD = 'ZVC_PROJECTINFOR-OBJECTCATEGORY '

  • STEPL = 0

  • WINDOW_TITLE =

  • VALUE = ' '

VALUE_ORG = 'S'

  • MULTIPLE_CHOICE = ' '

  • DISPLAY = ' '

  • CALLBACK_PROGRAM = ' '

  • CALLBACK_FORM = ' '

  • MARK_TAB =

  • IMPORTING

  • USER_RESET =

tables

value_tab = IT_ACTUALOBJECT

  • FIELD_TAB =

  • RETURN_TAB =

  • DYNPFLD_MAPPING =

  • EXCEPTIONS

  • PARAMETER_ERROR = 1

  • NO_VALUES_FOUND = 2

  • OTHERS = 3

.

IF sy-subrc <> 0.

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

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

ENDIF.

Read only

Former Member
0 Likes
1,202

Hi Kalpanashri ,

Could you also paste the code which contains yor selection screen declearation and the internal table decleration.

Regards

Arun

Read only

Former Member
0 Likes
1,202

wht r the parameters u r passing

once go through the Function module Documentation

Read only

Former Member
0 Likes
1,202

The function module F4IF_INT_TABLE_VALUE_REQUEST returns an internal table (RETURN_TAB) which contains the line you have selected. You have to read from that internal table and assign the value to the screen field.

Manoj

Read only

Former Member
0 Likes
1,202

Hi Kalpanashri ,

I feel the problem is with paramaters you are passing to the FM , please paste the code that will help us analyse it better.

Regards

Arun

Read only

0 Likes
1,202

I have already pasted the code

Read only

0 Likes
1,202

Capture RETURN_TAB and read it to get the value. Assign the same to your screen field.

Read only

0 Likes
1,202

return_tab is empty what will be the reason.

Read only

0 Likes
1,202

Have you selected any record from the F4 list.

Manoj

Read only

0 Likes
1,202

i dont have value in the popup itself then how to select .

Read only

0 Likes
1,202

Then fill up the internal table FIELD_TAB with the structure for the pop-up list. Add each entry in the internal table for each column in the F4 list. Your retfield (OBJEK) must be one of those fields.

You can also refer to program BCALV_TEST_GRID for help on using this function module

Hope this helps.

Manoj