cancel
Showing results for 
Search instead for 
Did you mean: 

APO code linking ECC function module

andy_yeri
Contributor
0 Kudos

Hi Experts,

Is it possible to make the code written on the APO side (writing an enhancement) link up with the ECC object to get some data. For example, I'm trying to enhance the Resource Plng table (RPT) & want to fetch data from the corresponding Sales Order VC char's in ECC, to populate them in APO (RPT).

Know of the std function modules in ECC which could get me the data & hence want to leverage the same by calling them from APO. If yes, how is it done?

Any ideas?

Thanks

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member197994
Active Contributor
0 Kudos

Please check FM /SAPAPO/CIF_EP_BLOCK_SEND for example.

The final call:

CALL FUNCTION 'CIF_PO_INBOUND_30A' " your FM in ECC

IN BACKGROUND TASK

DESTINATION lv_rfcdest " your ECC system

EXPORTING

is_ctrlparams = ls_ctrlparams

TABLES

......

Your FM in ECC should be remote enabled.

andy_yeri
Contributor
0 Kudos

Thanks Tiemin,

Could you explain this works, for my understanding?