cancel
Showing results for 
Search instead for 
Did you mean: 

BAPI_PRODORD_GET_LIST PRODPLANT_RANGE

Former Member
0 Kudos

I am running BAPI_PRODORD_GET_LIST with a BLS transaction. I would like to enter the following values in my PRODPLANT_RANGE

Plant = 2100, 2300, & 8000. How can I do this in the LINKS of the JCO? Can I put mulitple rows in the PRODPLANT_RANGE parameter within a JCO?

Accepted Solutions (1)

Accepted Solutions (1)

abesh
Contributor
0 Kudos

Hi David,

The link for the Blog is : <a href="/people/abesh.bhattacharjee/blog/2007/06/05/calling-a-bapi-with-a-table-as-an-input-parameter-from-xmii a BAPI with a Table as an input parameter from xMII....</a>

Cheers

Abesh

Former Member
0 Kudos

Thank you.

That makes sense.

Answers (1)

Answers (1)

Former Member
0 Kudos

Option 1 - For the PRODPLANT_RANGE you can provide the following values

SIGN - I (means Include)

OPTION - BT(means between)

LOW - 2100

HIGH-8000

This would include every plant between 2100 & 8000.

Option 2 - If you don't want Option 1 then probably you'll have to input an array (table) via JCO that has specifically these 3 values as

SIGN - I

OPTION - EQ

LOW - 2100

SIGN - I

OPTION - EQ

LOW - 2300

SIGN - I

OPTION - EQ

LOW - 8000

For doing this search the forum for "how to pass a table to SAP from xMII"

There's even a blog on the same written by Abesh.