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

NEED HELP IN BDC

Former Member
0 Likes
493

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

3 REPLIES 3
Read only

Former Member
0 Likes
473

hi friend ,

I just want to learn BDC. i m fresher in abap .if possible ,pls guide me.

Read only

Former Member
0 Likes
473

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.