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

Why do we need a bdc program

Former Member
0 Likes
1,014

Hi,

We need batch input programs why?

we update current records or add new ones with bdc programs?

Thanks.

6 REPLIES 6
Read only

Former Member
0 Likes
934

Hi,

BDC is used to update Bulk data.

It is a SAP technic that allows automating the input in transactions.

It can be either for updating the existing records or creating new records.

For example,

You can create BDC to upload new customer master records for transaction XD01.

Also, you can create a BDC to update the address details of customers (XD02).

best regards,

Thangesh

Read only

0 Likes
934

Thanks.

Any more replies.

I need to learn the bdc very well.

Thanks.

Read only

Former Member
0 Likes
934

We use BDC so that the validations that are in built in each Transaction are considerd, for eg we made a BDC for XK01 for vendor master creation, now every validation used in XK01 is automitically used by our BDC program, which is not possible (or is very difficult to capture) using Insert or Modify statement.

Reward points if useful, get back in case of query...

Cheers!!!

Read only

former_member404244
Active Contributor
0 Likes
934

hI,

Go through the below links

http://www.sap-img.com/abap/learning-bdc-programming.htm

Reward points if u find useful.

Regards,

Nagaraj

Read only

Former Member
0 Likes
934

Hi,

Batch input is one of the primary ways in which data can be transferred into the R/3 System. Batch input is used for bulk data transfers and not for near real-time data transfers.

Go through the following link:

http://help.sap.com/saphelp_46c/helpdata/en/69/c250274ba111d189750000e8322d00/content.htm

Regards,

Satish

Read only

Former Member
0 Likes
934

Hi,

Bulk data upload or modification is very easy with BDC, validations are also taken care of and programming is also done by the system, your only major concern is creating the flatfile for upload.

other options for the same are LSMW , SECATT.

Thanks