2008 Sep 04 4:43 AM
Dear experts,
We have certain BDC source codes which uses the logic of reading cells from an excel file and automatically posting data on standard transaction screens like MM01 or MM03.
But one has to keep pressing enter to do this.Reason is that
code is autogenerated by recording.
Is there any standard way out using BDC insert by which we can insert data in same fashion but without pressing simultaneous Enter key.
Further we thought to use BAPI but it is not compulsory that BAPI exists for mangaing all tasks achieved by BDC.
I am stuck at this point how to perform database insertions of any standard transaction of my choice or perform any data transfer ex one plant to another plant by using BDC Insert or any method.But it should prevent me from pressing enter key again and again.
Thanx in advance.
Dear experts,
We have certain BDC source codes which uses the logic of reading cells from an excel file and automatically posting data on standard transaction screens like MM01 or MM03.
But one has to keep pressing enter to do this.Reason is that
code is autogenerated by recording.
Is there any standard way out using BDC insert by which we can insert data in same fashion but without pressing simultaneous Enter key.
Further we thought to use BAPI but it is not compulsory that BAPI exists for mangaing all tasks achieved by BDC.
I am stuck at this point how to perform database insertions of any standard transaction of my choice or perform any data transfer ex one plant to another plant by using BDC Insert or any method.But it should prevent me from pressing enter key again and again.
Thanx in advance.
2008 Sep 04 4:50 AM
Hi Aditya
Use Call Transaction in background mode , it will automatically execute the whole process
~hitesh
2008 Sep 04 6:04 AM
HI,
In BDC, in call transaction method, there is a option called mode, now in ur scenario it is in Mode "A",
change the mode to either N or E.
Posible Modes :
A Display all screens
E Display errors
N Background processing
With Rgds,
S.Bharani
2008 Sep 04 6:33 AM
I am not using call transaction.Instead the code uses
perform bdc_transaction using 'MM01'.
2008 Sep 05 4:03 PM