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

Input parameters

kowong
Participant
0 Likes
609

*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
Read only

former_member186741
Active Contributor
0 Likes
573

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
Read only

Former Member
0 Likes
571

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> .

Read only

former_member186741
Active Contributor
0 Likes
574

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?