cancel
Showing results for 
Search instead for 
Did you mean: 

PO output from ECC -copy of SRM PO

natasha_baunach
Explorer
0 Kudos

Does anyone have experience creating messages for the SRM PO 'copy' in ECC? Is it possible to output the ECC Copy of the SRM PO from ECC?

We will be creating PO's in SRM and ECC and are attempting to utilize one interface to output PO information to our Suppliers.

Any information would be greatly appreciated.

Thank you,

Natasha

Accepted Solutions (0)

Answers (2)

Answers (2)

natasha_baunach
Explorer
0 Kudos

Here is how we solved this request:

In ECC BAdi BBP_PO_INBOUND_BADI, method BBP_MAP_BEFORE_BAPI add the following code to generate output for SRM copy PO (you can also put additional logic to output only of quantity changes, etc.)

This is code for ALE output:

DATA: ls_customer_fields.

ls_nast-kappl = 'EF'.

ls_nast-objky = bbp_poheader-po_number.

ls_nast-kschl = 'ZNEU'.

ls_nast-spras = 'EN'.

ls_nast-parnr = bbp_poheader-vendor.

ls_nast-parvw = 'LF'.

ls_nast-erdat = sy-datum.

ls_nast-eruhr = sy-uzeit.

ls_nast-nacha = 'A'.

ls_nast-anzal = 0.

ls_nast-vsztp = 1.

ls_nast-vstat = 0.

ls_nast-nauto = 'X'.

ls_nast-objtype = 'BUS2012'.

INSERT nast FROM ls_nast.

(There is a function module to perform insert but I don't have it handy).

Hopefully this will help others looking to do output from ECC without mods.

former_member284668
Participant
0 Kudos

Hi Natasha!

Could you please share the full text of BADI implementation with functional module that you have used?

It is really urgent for us, we have a project deadline on next Monday.

Thanks and Regards,

Siarhei

Former Member
0 Kudos

It is possible to output SRM PO from ECC. If you are on classic scenario the backend system is where the leading PO is, so output is also from the backend.

On extended classic scenario you will have to tweak the output in SRM/ECC to be able to output PO from ECC. SAP doesn't give ANY support on this feature and if you can help it, don't use it. There is a restricted note 883693 in which the steps are explained to use R/3 output when using ECS, however this is only valid for SRM 4.0 (SRM_SERVER 5.0).

What we have done is use smartforms to make the SRM order resemble the ECC order.

natasha_baunach
Explorer
0 Kudos

Thank you Robin! That is exactly the information I needed.

Former Member
0 Kudos

Hey ,

We tweaked and output PO from ECC - ECS Scenario.

Thanks