2007 May 31 6:23 AM
Hi,
Iam writing a program for BDC .<b> I have to extract the data from the text file which is store in the local system to the SAP table.</b> Could anybody help me out in this by giving some examples.
Reply me ASAP
thanks,
Shiva shekar k
Hi,
Iam writing a program for BDC .<b> I have to extract the data from the text file which is store in the local system to the SAP table.</b> Could anybody help me out in this by giving some examples.
Reply me ASAP
thanks,
Shiva shekar k
2007 May 31 6:43 AM
hi,
for bdc:
For BDC:
http://myweb.dal.ca/hchinni/sap/bdc_home.htm
https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/bdc&;
http://www.sap-img.com/abap/learning-bdc-programming.htm
http://www.sapdevelopment.co.uk/bdc/bdchome.htm
http://www.sap-img.com/abap/difference-between-batch-input-and-call-transaction-in-bdc.htm
http://help.sap.com/saphelp_47x200/helpdata/en/69/c250684ba111d189750000e8322d00/frameset.htm
http://www.sapbrain.com/TUTORIALS/TECHNICAL/BDC_tutorial.html
Check these link:
http://www.sap-img.com/abap/question-about-bdc-program.htm
http://www.itcserver.com/blog/2006/06/30/batch-input-vs-call-transaction/
http://www.planetsap.com/bdc_main_page.htm
call transaction:
chk the links below,
http://www.itcserver.com/blog/2006/06/30/batch-input-vs-call-transaction/
http://www.sap-img.com/abap/difference-between-batch-input-and-call-transaction-in-bdc.htm
2007 May 31 6:46 AM
hi friend ,
I just want to learn BDC. i m fresher in abap .if possible ,pls guide me.
2007 May 31 7:07 AM
I'll let you know the 2 methods of BDC.
Call transaction: Keep the data on the flat file of your system.
2. Transfer that data to application server using GUI_UPLOAD Function Module and keep in internal table for updating
3. Transfer each record from internal table to BDCDATA structure.
4. Transfer from BDCDATA to database using transactions.
Keep remember the following steps:
flatfile->internal table->BDCDATA Structure->Transaction Code->Database.
Session: repeat first step and 2 step.
3. call function BDC_open_group for creating the session.
4. repeat 3rd step of call transaction.
5. inside the loop which repeating the transaction u call function BDC_Insert.
6. close the bdc using function bdc_close_group.
7. repeat the 4th step of call transaction.
flatfile->internal table->bdcdata structure->session->transaction code->database.
reward marks.