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: 

How to use search help in ECC6.0 reports without matchcode.

Former Member
0 Kudos

How to use search help in ECC6.0 reports without matchcode.

Select-options: O_SHIP FOR KUNWE MATCHCODE OBJECT DEBI is in 4.6c.

2 REPLIES 2

Former Member
0 Kudos

we can use on value request for that.

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.

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.

refer to this thread:

Former Member
0 Kudos

Hi,

Check the ABAP help, this option is still supported. You need to specify the name of a search help, not a match code, but otherwise everything is the same.

Regards,

Nick