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: 

How to pass a Data from z screen to Standard transaction

Former Member
0 Kudos

Hello Friends,

i have created one zscreen contains material and quantity along with ship to party and sold to party

now i want to pass this data to standard transaction va01 and make a order for the same.

Kindly let me know the possible way in which i can achieve that??

Regards,

Sunny V

9 REPLIES 9

Former Member
0 Kudos

Hi,

You can call bapi 'BAPI_SALESORDER_CREATEFROMDAT1' and pass necessary data.

Edited by: jasmine_123 on Nov 5, 2009 12:48 PM

Former Member
0 Kudos

Use SUBMIT keyword.

Regards,

Srinivas

0 Kudos

thnks for the reply!!

In my scenario i want to pass the data from my zscreen to standard transaction va01(data includes some header as well as item data ).

and once the data is transfered the user will be directed from zscreen to standard transaction va01 for further processing.

so how will i transfer tabular data of zscreen to standard transaction va01 item data.?

regards,

Sunny

Former Member
0 Kudos

Hi,

you can use SET PARAMETER ID. let me know exaact requirements.

rgds

sudhanshu

Former Member
0 Kudos

Check the SAP GPA ID from the corresponding data elements

USE SET PARAMETER ID STATEMENT TO PASS THE VALUE TO GLOBAL MEMORY.

THEN CALL TRANSACTION VA01

It will automatically pass the value to standard transaction.

Hope this will help you.

0 Kudos

thnks for the reply!!

In my scenario i want to pass the data from my zscreen to standard transaction va01(data includes some header as well as item data ).

and once the data is transfered the user will be directed from zscreen to standard transaction va01 for further processing.

so how will i transfer tabular data of zscreen to standard transaction va01 item data.?

regards,

Sunny

0 Kudos

Hi,

If you have enough data to call a BAPI, you can BAPI for order creation and once your order is created you can call va02 for further processing.

Regards

Former Member
0 Kudos

Hi Sandeep,

There are multiple ways to pass your Z screen data to standard screen data.

1. If you want to pass one are two values to standard transaction, you can use set Parameter ID and Call Transaction statements..

2. If you want to create the complete Sales order information, Use Sales order creation BAPI to create the sales order.

Please let me know if you need more information or close this thread by offiering the points( If you are satisfied).

Regards,

Sakthivel N

Former Member
0 Kudos

Answered