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

BDC

former_member778253
Active Participant
0 Likes
695

Hi,

What r the function modules used in BDC?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
675

Hi,

In BDC we use the following function modules..

BDC_OPEN_GROUP

BDC_INSERT

BDC_CLOSE_GROUP

Reward points if useful

Regards

Ashu

7 REPLIES 7
Read only

Former Member
0 Likes
675

Hi

BDC_OPEN_GROUP

BDC_INSERT

BDC_CLOSE_GROUP.

These are all the function module used in BDC programs.

Reward me if its helpful.

Ravi

Read only

Former Member
0 Likes
675

hi,

in BDC we use few impport technique to migrate legacy system data into SAP system data.

if you are using BATCH INPUT SESSION method for developing conversion program in that case you are using few predefined function modules...

Use the <b>BDC_OPEN_GROUP</b> function module to create a new session.

If you call BDC_OPEN_GROUP with the name of an existing session, then an additional session with the same name is created.

<b>syantax:</b>

call function 'BDC_OPEN_GROUP'
                  exporting
                             client  = < > " Client in which the session is to be processed. 
                             group = < >  "Name of the session that is to be created. May 
                                                 "be up to 12 characters long. 
                             user =  < > "Authorizations user for background processing.

Use the <b>BDC_INSERT</b> function module to add a transaction to a batch input session. You specify the transaction that is to be started in the call to BDC_INSERT. You must provide a BDCDATA structure that contains all of the data required to process the transaction completely.

<b>syantax:</b>

call function 'BDC_INSERT
                  exporting
                              tcode = < > "The code of the transaction that is to be run. 

                  tables
                          dynprotab = < >" The BDCDATA structure that contains the 
                                                  "data that is to be processed by the 
                                                  " transaction.

Use the <b>BDC_CLOSE_GROUP</b> function module to close a session after you have inserted all of your batch input data into it. Once a session is closed, it can be processed.

<b>BDC_CLOSE_GROUP</b> needs no parameters. It automatically closes the session that is currently open in your program.

You must close a session before you can open another session from the same program.

regards,

Ashok Reddy

.

Read only

mohammed_moqeeth
Active Participant
0 Likes
675

Hi Sivananda,

following are the function modules used in bdc:

1. BDC_OPEN_GROUP

2. BDC_INSERT

3. BDC_CLOSE_GROUP

<u><b>check the below links for your kind reference:</b></u>

http://www.sapbrainsonline.com/TUTORIALS/TECHNICAL/BDC_tutorial.html

http://www.sap-img.com/bdc.htm

Reward points for useful answers.

Regards,

Moqeeth.

Read only

Former Member
0 Likes
675

Hi,

In BDC Session methos we can use:

BDC_OPEN_GROUP

BDC_INSERT

BDC_CLOSE_GROUP

Regards,

Bhhaskar

Read only

Former Member
0 Likes
675

Hi,

In BDC Session methos we can use:

BDC_OPEN_GROUP

BDC_INSERT

BDC_CLOSE_GROUP

IFUSEFULL REWARD

Read only

Former Member
0 Likes
675

hi,

1. BDC_OPEN_GROUP

2. BDC_INSERT

3 BDC_END_GROUP

4. BDC_CLOSE_GROUP

REGARDS

PRADEEP

Read only

Former Member
0 Likes
676

Hi,

In BDC we use the following function modules..

BDC_OPEN_GROUP

BDC_INSERT

BDC_CLOSE_GROUP

Reward points if useful

Regards

Ashu