cancel
Showing results for 
Search instead for 
Did you mean: 

Receipt/Requirement element in APO -RRP3

Former Member
0 Kudos

Folks

In which table does the Receipt/Requirement element value (rom the RRP3) view gets stored ?

Is is stored in a table or in LC ? Either way, whats the procedure to find and debug this value ?

My main concern is where is this value being read from and how to find what are the different programs / Function modules that updates this field?

Thanks

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Data is pulled from different tables and livecahce.

you can see tables for RRP3 in se16 by entring /SAPAPO/RRP* but most of them are structure as data is stored in livecahce.

Best way to get details is to use FM : /SAPAPO/RRP_SIMSESSION_GET .

Also look for FM by /SAPAPO/RRP* in se37.

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi CG,

Please check the following stucture (datatype) in transaction

se11

/SAPAPO/RRP_ORDREQ_STR

Regards

R. Senthil Mareeswaran.

Former Member
0 Kudos

Hi CG,

Unfortunately most of transactional data is stored in stuctures and not table because of LiveCache architecture.

however you can fetch LiveCache data using t code /SAPAPO/OM16.

FM /SAPAPO/RRP_PEG_CAT_GET_ORDERS suggested by our folks should also help

Rgdg

SC

Former Member
0 Kudos

Hi,

You can use the function module, /SAPAPO/RRP_PEG_CAT_GET_ORDERS this will return all the PurOrders which are visible in /sapapo/rrp3 transaction.

You can filter out the output by supplying the proper export parameters.

Internal tables::

i_pegid TYPE /sapapo/pegid_tab,

i_categories TYPE /sapapo/tab_atpcat,

i_ordkey TYPE STANDARD TABLE OF /sapapo/ordkey,

i_peg_ord TYPE /sapapo/om_io_tab,

i_output TYPE /sapapo/om_io_conf_tab,

i_io TYPE /sapapo/om_io_pp_tab,

CALL FUNCTION '/SAPAPO/OM_PEGID_GET_IO'

EXPORTING

is_gen_params = wa_gen_params

iv_simsession = space

it_pegarea = i_pegid

iv_ionode_peg_sel = gc_io_peg_all_out

IMPORTING

et_ionodes = i_io

et_ionodes_conf = i_output

EXCEPTIONS

OTHERS = 4.

CALL FUNCTION '/SAPAPO/RRP_PEG_CAT_GET_ORDERS'

EXPORTING

iv_simid = c_simid

it_category = i_categories

it_pegid = i_pegid

iv_horizon_offset = '999'

IMPORTING

et_ordkeys = i_ordkey

et_inputs = i_peg_ord.

Former Member
0 Kudos

Thanks folks for the responses.

In specific I am trying to look for the data related to all the Requirement categories( FA, FC, AU, AV...) thats present in the Requirement/Receipt column in the RRP3 and not the receipt categories.

Satyamkumar

How do I use FM /SAPAPO/RRP_PEG_CAT_GET_ORDERS to get the will return all the Requirements ( categories FA, FC, AU, AV...) which are visible in /sapapo/rrp3 transaction.

I couldnt find CALL FUNCTION '/SAPAPO/OM_PEGID_GET_IO' & CALL FUNCTION '/SAPAPO/RRP_PEG_CAT_GET_ORDERS' in the FM /SAPAPO/RRP_PEG_CAT_GET_ORDERS? Where are they present ?

How are these different from CALL FUNCTION '/SAPAPO/DM_MAT_GET_PEGIDS'

CALL FUNCTION /SAPAPO/DM_PEGKEY_GET_BY_VERS'

CALL FUNCTION '/SAPAPO/OM_PEG_CAT_GET_ORDERS'

I am not a technical guy and would appreictae if you could provide me with further details

Thanks

Former Member

After entering into the product view transaction, type "gt_io" in the command line and hit enter, then you can see the order categories related to all the elements in product view

Former Member
0 Kudos

the other way you can get the details of the orders in LiveCache contents as all the data is stored in LC. The transaction is /SAPAPO/OM16..go to the Order tab and pull the required order details.