cancel
Showing results for 
Search instead for 
Did you mean: 

To find the Order Status in APO System

Former Member
0 Kudos

Hi ,

I need to find out the Status of an order in APO System .I am using the transaction "/SAPAPO/CDPSB0" and I am entering the Orders in that screen where there is a scope to put the Order number (Operation ).

How can we find the Status for this order?

Please suggest for any table or the function module to fetch the same .

One more thing,Could you please clarify how these orders were created and where they will be stored in APO .

Your response is highly appreciated.

Regards,

Kranti Yamparala.

Accepted Solutions (0)

Answers (2)

Answers (2)

hkmaradana
Active Participant
0 Kudos

There are lot of live cache function modules available in the system which can not be executed like ECC function modules through SE37.

You need to write a simple report to retrieve the order details.

For example in your case:

Use like given below: Before calling this you need to create a sim session.

CALL FUNCTION '/SAPAPO/OM_PEGID_GET_IO'

EXPORTING

IS_GEN_PARAMS = R_GEN_PARAMS

IV_SIMSESSION = LV_SIMSESSION

IT_PEGAREA = T_PEGAREA

IT_CATEGORY = T_CATEGORY

IMPORTING

ET_IONODES = T_IONODES[]

ET_RC = T_RC

EXCEPTIONS

LC_CONNECT_FAILED = 1

LC_COM_ERROR = 2

LC_APPL_ERROR = 3

OTHERS = 4.

IF SY-SUBRC <> 0.

ENDIF.

Let me know if you need any further help!

Cris

Former Member
0 Kudos

Hi Kranti,

You use transaction /SAPAPO/CDPS_REPT to get the complete details

of order status alongwith list of order numbers.

These order details are stored in APO as structures under the

structure name /SAPAPO/CDPS_ORDER_SELECT_STR. The

corresponding component is ORD_NR

Regards

R. Senthil Mareeswaran.