‎2009 Oct 12 7:59 AM
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,
‎2009 Oct 12 8:04 AM
Record a BDC
Remove the save function in your program
Run the BDC in mode 'A'.
‎2009 Oct 12 8:03 AM
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
‎2009 Oct 12 8:04 AM
Record a BDC
Remove the save function in your program
Run the BDC in mode 'A'.
‎2009 Oct 12 8:06 AM
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.
‎2009 Oct 12 8:10 AM
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
‎2009 Oct 12 8:12 AM
Mode 'E' will help you. Anyways you are not going to save through BDC.
‎2009 Oct 12 8:16 AM
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
‎2009 Oct 12 8:28 AM