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: 

Input parameters

kowong
Participant
0 Kudos

*Hi all,

*The following works:

set parameter ID 'MBN' FIELD doc_no .

set parameter ID 'MJA' FIELD doc_year .

call transaction 'LT06' .

**===============================

*But the following will not work: because the parameter is value in range. My question is, how to set the ranged parameter value.

set parameter ID 'VAG' FIELD TP_KUNNR .

call transaction 'VA14L' .

1 ACCEPTED SOLUTION

former_member186741
Active Contributor
0 Kudos

you can try:

set parameter ID 'VAG' FIELD TP_KUNNR-low .

But this may not give you what you want as a range has field 'high' too... and it may contain a pattern or have a complex 'option' like 'not equal'... Are you sure you always want to refer to the 'low' component of the range?

2 REPLIES 2

Former Member
0 Kudos

Hi Kokwei,

You can't set ranges. Instead set either the low or the high value.

set parameter ID 'VAG' FIELD <b>TP_KUNNR-low</b> .

former_member186741
Active Contributor
0 Kudos

you can try:

set parameter ID 'VAG' FIELD TP_KUNNR-low .

But this may not give you what you want as a range has field 'high' too... and it may contain a pattern or have a complex 'option' like 'not equal'... Are you sure you always want to refer to the 'low' component of the range?