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

Data upload

Former Member
0 Likes
683

Hello -

I got a file with some Sales Order data (like order type, Sales Org, Dist. Channel, Div, Articles, quantity etc). Need to know if i can upload this data to VA01, but not to save it. By this I mean the above data should be present filled in the SO, allowing user to fill other requried fields. User will then save the SO manually. Thought of using BDC / Ecatt for this, however the save should not happen. Is there any way I could acheive this functionality?

Thanks,

1 ACCEPTED SOLUTION
Read only

kesavadas_thekkillath
Active Contributor
0 Likes
656

Record a BDC

Remove the save function in your program

Run the BDC in mode 'A'.

7 REPLIES 7
Read only

Former Member
0 Likes
656

You could do the BDC recording until filling up the fields and remove the OK_CODE for saving while doing the recording code by which the fields will only be displayed and can be saved manually as per your requirement

P.S: Use a meaningful Subject Line

Read only

kesavadas_thekkillath
Active Contributor
0 Likes
657

Record a BDC

Remove the save function in your program

Run the BDC in mode 'A'.

Read only

0 Likes
656

Thanks for the reply..

The issue here would be the pop-up window would appear with ok code and user has to press Enter key every time. This should not happen.

Read only

0 Likes
656

Hi,

Run your BDC in non diaplay mode.

I mean in mode use 'N' instead of 'A'.

And also skip the bdc parts where ok code in either UPD , INS or SAVE

Regards,

Rajesh Kumar

Read only

0 Likes
656

Mode 'E' will help you. Anyways you are not going to save through BDC.

Read only

0 Likes
656

Hi,

I feel the suggestions given by vikranth and keshu is correct. This is the way we can put the data from file to the transaction. ... else you can try with Mode 'E' instead of Mode 'A'.

Basically we run "TEST RUN" to see if the data is populated correctly without saving the data to the database table..

Regards,

Nagaraj

Read only

0 Likes
656

Thanks all for the help..