Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Purchase Order Data transfer from one client to another client

Former Member
0 Kudos

Suppose i have created some purchase orders in one client( development server) and that are accurate according to our need .

Now instead of creating same purchase orders again in production server is a useless task.

SO i want to upload these purchase order directly from SAP development client to production client.

How to execute this task.

Please help me out.

I think it needs ALE concept .

I know the ALE concept but i never uploaded the transaction data through ALE only i have uploaded the MASTER DATA.

For eg i have transfered the material from one server to another server but never transfered the purchase order.

CAN anybody help me out with simple example then it will greatful to me.

Thanks a lot

2 REPLIES 2

Former Member
0 Kudos

Hi

We don't create Transaction data(like PO and SO) in Dev and transport to Production in real time.

What do you mean by creating data in Production, It is a real time , so no question of creating it in DEV and transporting.

Only when the customer is having existing Pur orders data for the last few years before SAP implementation or go -live he may ask us to upload the data of Old PO's to Production Server.

That time we will do it using the BAPI's or BDC's or LSMW.

There is no need of ALE concept anymore to do this.

Regards

Anji

Former Member

hi u can use BAPI to call that PO FROM ONE CLIENT TO ANOTHER CLIENT.

FOR that, use, data: wa_destination type gsval.

CASE sy-sysid.

WHEN 'DVH'.

CONCATENATE 'DVC' 'CLNT' '021' INTO wa_destination.

WHEN 'QAH'.

CONCATENATE 'QAC' 'CLNT' '129' INTO wa_destination.

WHEN 'SUH'.

CONCATENATE 'SUC' 'CLNT' '222' INTO wa_destination.

WHEN 'PRH'.

CONCATENATE 'PRC' 'CLNT' '222' INTO wa_destination.

ENDCASE.

call function BAPI_PO_CREATE DEATINATION WA_DESTINATION

COMMIT

REWARD POINTS IF THIS IS USEFUL