‎2007 Jul 08 4:04 PM
‎2007 Jul 09 5:32 AM
Hi,
In BDC we use the following function modules..
BDC_OPEN_GROUP
BDC_INSERT
BDC_CLOSE_GROUP
Reward points if useful
Regards
Ashu
‎2007 Jul 08 5:12 PM
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
‎2007 Jul 08 8:16 PM
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
.
‎2007 Jul 09 4:52 AM
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.
‎2007 Jul 09 5:17 AM
Hi,
In BDC Session methos we can use:
BDC_OPEN_GROUP
BDC_INSERT
BDC_CLOSE_GROUP
Regards,
Bhhaskar
‎2007 Jul 09 5:24 AM
Hi,
In BDC Session methos we can use:
BDC_OPEN_GROUP
BDC_INSERT
BDC_CLOSE_GROUP
IFUSEFULL REWARD
‎2007 Jul 09 5:28 AM
hi,
1. BDC_OPEN_GROUP
2. BDC_INSERT
3 BDC_END_GROUP
4. BDC_CLOSE_GROUP
REGARDS
PRADEEP
‎2007 Jul 09 5:32 AM
Hi,
In BDC we use the following function modules..
BDC_OPEN_GROUP
BDC_INSERT
BDC_CLOSE_GROUP
Reward points if useful
Regards
Ashu