2006 Aug 21 5:17 PM
Hi
As always I need a big help, I have an interna table filled but I need to put that information into a Match Code, I don´t know if that could be possible, if anybody could help me I will appreciate it.
Thanks in advance
Tokio
2006 Aug 21 5:20 PM
Please see the following program. Here we are building the F4 help on the fly in the program.
report zrich_0001 .
tables: t001.
data: begin of it001 occurs 0,
bukrs type t001-bukrs,
butxt type t001-butxt,
ort01 type t001-ort01,
land1 type t001-land1,
end of it001.
select-options s_bukrs for t001-bukrs.
initialization.
select bukrs butxt ort01 land1 into table it001 from t001.
sort it001 ascending by bukrs.
delete adjacent duplicates from it001 comparing bukrs.
at selection-screen on value-request for s_bukrs-low.
call function 'F4IF_INT_TABLE_VALUE_REQUEST'
exporting
retfield = 'BUKRS'
dynprofield = 'S_BUKRS'
dynpprog = sy-cprog
dynpnr = sy-dynnr
value_org = 'S'
tables
value_tab = it001.
start-of-selection.
Regards,
Rich Heilman
2006 Aug 21 5:29 PM
Rich
Thanks, but the version wich I work doesn't support this RFC.
Tokio
2006 Aug 21 5:31 PM
2006 Aug 21 5:32 PM
Hi,
The function F4IF_INT_TABLE_VALUE_REQUEST is not a RFC and it was released first on 09.06.1999. Which version are you working on?
Regards,
Ravi
2006 Aug 21 7:50 PM