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
454

I have version 4.0B and do not have the function module 'F4IF_INT_TABLE_VALUE_REQUEST'. Is there any way I can select more than 1 output for a search help? When I press F4 for a select-option field, I need the serch help to bring checkboxes with the posuble entries so i can choose more than one.

3 REPLIES 3
Read only

Former Member
0 Likes
420

Hi,

In version 4.0B, we do not have that fucntion module, but we can use the matchcode objects to do the F4 help on selection screen. so see the type of that field is having the matchcode object,

just see that Data element for that field, if it is having that matchcode object then write the parameter like this:

PARAMETERS p_carrid TYPE s_carr_id 
           MATCHCODE OBJECT demo_f4_de.

http://help.sap.com/saphelp_nw2004s/helpdata/en/41/f6b237fec48c67e10000009b38f8cf/content.htm

Regards

Sudheer

Read only

Former Member
0 Likes
420

Acctually what i need is a search help for a select-option (SO_MULT) that gives me the possibility of choosing more than one answer. In the hit list of the search help, each entry should have a checkbox, so can choose multiple entries, and each of the selected entries should be copied to SO_MULT-LOW and then appended. Is that posible in 40B?

Read only

Former Member
0 Likes
420

I tried programing my own search help using AT SELECTION-SCREEN ON VALUE-REQUEST, but I can't write to a list during this event, Am I doing something wrong?

at selection-screen on value-request for so_kunnr-low.

select vbeln vbak~kunnr name1 vkorg bstnk guebg gueen

into corresponding fields of table ti_contr

from vbak inner join kna1 on kna1kunnr = vbakkunnr

where guebg <= sy-datum and

gueen >= sy-datum and

auart = 'ZCQ' and

vbak~kunnr in so_kunnr.

window starting at 5 10.

loop at ti_contr.

write:/ ti_contr-checked,

ti_contr-vbeln,

ti_contr-kunnr,

ti_contr-name1,

ti_contr-vkorg,

ti_contr-gueen.

endloop.