cancel
Showing results for 
Search instead for 
Did you mean: 

Plan numbers required for Products .

former_member196299
Active Contributor
0 Kudos

Hi All,

I am stuck up with a problem .

I want to use the BAPI " BAPI_PPMSRVAPS_GETLIST " and this uses Plant keys to get executed .

I have a list of products for which I require the plan numbers .

Can anyone guide me on from which table do I get this information ?

Regards,

Ranjita

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi

Plan key means data element EXT_PLANNR i.e. External Name of Plan in Production Process Model

It is available in the following field.

/SAPAPO/PLANMAP PPM: Mapping Table Routing

/SAPAPO/OPR Table of Descriptive Operation Data

Please cross check the same from your side and let us know if it is helpful for you.

Thanks

Amol

former_member196299
Active Contributor
0 Kudos

Hi Amol ,

Thanks for the info . I am basically looking for a relationship between the plan number and the product .

How they are linked to each other ??

Regards,

Ranjita

Former Member
0 Kudos

Hi,

There is apparently no one direct table.

One group of tables is as below:

1. Table /SAPAPO/MAPMAP >> Get Product ID

2. Table /SAPAPO/LOCMAP >> Get Location ID

3. Table /SAPAPO/TRPROD

Location ID

Product ID

Supply Srce Cat >> 2 (for PPM)

You get Ext. Plan No.

4. Table /SAPAPO/PLANMAP

Ext. Plan No.

You get

Plan (PLANNR)

Plan Id (PLANID)

There may be some other group of tables though.

Regards

Datta

Former Member
0 Kudos

Hi,

In the BAPI BAPI_PPMSRVAPS_GETLIST, You can choose from the following options for selecting plans. Combinations between alternatives are either not possible, or are ignored by the system.

1. Selection by specifying plan GUIDs:

o "PlanGuids"

2. Selection using RANGES tables:

o "ModelSelection" + "PlanSelection" + "LocationSelection" + "ProductSelection"

3. Selection using an explicit key:

o "PlanKey"

Do you need to still find link bet. plan id and product

Regards

Datta

Answers (1)

Answers (1)

former_member196299
Active Contributor
0 Kudos

Thank you all