cancel
Showing results for 
Search instead for 
Did you mean: 

APO function module to retrieve Variant (Class 400) char's & their values

andy_yeri
Contributor
0 Kudos

Experts,

Is there a FM in APO (SCM 7.0) with which I can retrieve the Class 400 (Variant) characteristics & the respective char values? Intend to enhance the Resource Plng Table by inserting a new column, the data for which is to be populated with Characteristics (from Class 400 of the Prod Master) & the char values.

Thanks

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi,

You can use FM /SAPAPO/OM_ORDER_GET_DATA to read all the details for a particular order.In which you will get Characteristic Value Assignments for Activities,Characteristic Requirements for Input Nodes and Characteristic Value Assignments for I/O Nodes also.

Regards,

Saurabh

former_member197994
Active Contributor
0 Kudos

In RRP3, those can be seen after pressing the green triangle. You can debug a little bit to see what FM is used over there

Former Member
0 Kudos

Hi!

You can use FM:

CALL FUNCTION '/SAPAPO/RRP_LC_ORDER_GET_DATA'

EXPORTING

iv_order = iv_orderid

iv_simversion = gv_simid

IMPORTING

et_charact_val_outnode = lt_val[]. "<- order characteristics

Also you can Define Visualization Profiles in spro -> PP/DS -> Define Visualization Profiles

for

the display of the characteristics in the sequence schedule,

in the product planning table, in the product view and in planned order management.

You can also define visualization profiles for the display of

restrictions in the sequence schedule or in the restriction hit view of the product planning

table to limit the number of restrictions displayed.

BR Andrey

Former Member
0 Kudos

Hi Andy,

Please use FM BAPI_CLASS_GETDETAIL

But you will have to explicitly enter the class name to retrive the all possible characterstic values.

Hope this helps you.

Regards

Vaibhav Sareen

andy_yeri
Contributor
0 Kudos

Thanks Vaibhav,

Thats as far as the Variant Char is concerned, now how about getting the char & char values for a specific Sales Order/Planned Order/Production Order in APO?? Is there something avlbl for that too?

Former Member
0 Kudos

Hi Andy,

Use /SAPAPO/CUCB_GET_SINGLE_INST function module. You should pass CUOBJ to the FM.

Regards,

Alexander

andy_yeri
Contributor
0 Kudos

Alex,

How do we arrive @ the CUOBJ on the APO side?