Application Development and Automation 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: 
Read only

Doubt on Purchase Orders

Former Member
0 Likes
1,067

Hi gurus,

I have one query with me, our client create some Purchase Orders in Development Server. Now we are planning to move Production server.Is it possible to move the Purchase orders in development server to Production server.

If yes please suggest me how to do. Please can any one guide me the best solution for this problem. It's very urgent issue.

Thanks in Advance.

Thanks and Regards

Siri...

Hi gurus,

I have one query with me, our client create some Purchase Orders in Development Server. Now we are planning to move Production server.Is it possible to move the Purchase orders in development server to Production server.

If yes please suggest me how to do. Please can any one guide me the best solution for this problem. It's very urgent issue.

Thanks in Advance.

Thanks and Regards

Siri...

8 REPLIES 8
Read only

Former Member
0 Likes
1,047

Hi,

We can transport the configurations from one server to another using transport request but this is not the case with PO.

PO created on Development cannot be transported on another server.

You need to create the PO again on Production. That can be done using BDC, LSMW, etc.

Reply for further queries.

Please reward points if useful.

Regards,

Ashlesha

Read only

0 Likes
1,047

Hi Desai,

Please can you guide me how to create PO's in Production server.Is it possible to create PO 's in production server with previous dates.

Please suggest me how to do..

Thanks in advance..

Thanks and Regards

Siri....

Read only

0 Likes
1,047

Hi gurus,

Please can any one respond on my query.Its very urgent one..

Thanks in Advance..

Thanks and Regards

Siri..

Edited by: abinava siri on Apr 1, 2008 3:39 PM

Read only

0 Likes
1,047

Hi gurus,

Please can any one respond on my query.Its very urgent one..

Thanks in Advance..

Thanks and Regards

Siri

Read only

Former Member
0 Likes
1,047

Hi,

you have to create new PO in production server

because its gets updated in many sap standard tables...

like ekko,ekpo etc

Regards,

V.Balaji

Reward if Usefull...

Read only

Former Member
0 Likes
1,047

hi,

You need to create the PO and then uploaded on Production server using BAPI, BDC, LSMW, etc.

PANKAJ

Read only

0 Likes
1,047

Hi pankaj ,

Very Thank ful for your reply.Can you please guide me how to do that Po by using BAPI's or BDC.

Thanks in Advance.

Thanks and Regards

Siri..

Read only

Former Member
0 Likes
1,047

You can use the BAPI 'bapi_po_create' for this purpose.

In the system say system1 where the PO exits, you call the bapi in a program and pass the required parameters accssing the database of sasyem1.

Now,

In call function give the destination of system2 ( where you actually wants to create the PO). So the bapi will update the database of system2 and will create the PO there.

You can use the T-Code SM59 to create the remote destination.




Synchronous RFC 

1. CALL FUNCTION func DESTINATION dest 
                     parameter_list. 

Asynchronous RFC 

2. CALL FUNCTION func STARTING NEW TASK task 
                [DESTINATION {dest|{IN GROUP {group|DEFAULT}}}] 
                parameter_list 
                [{PERFORMING subr}|{CALLING meth} ON END OF TASK]. 

Transactional RFC 

3. CALL FUNCTION func IN BACKGROUND TASK 
                     [DESTINATION dest] 
                     parameter_list 
                     [AS SEPARATE UNIT]. 

4. CALL FUNCTION func IN BACKGROUND UNIT 
                     parameter_list.