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

how will decide which method is suitable for uploading data

Former Member
0 Likes
762

Hi,

How will you decide which method is suitable for uploading data

5 REPLIES 5
Read only

Former Member
0 Likes
718

Hi,

It depneds on lot's of factor like volume of data, kind of data, error handling and many more. BDC and LSMW are two very common methods use.

Read only

Former Member
0 Likes
718

In my opinion the best method to use depends on the amount and the complexity of the uploading.

You can use Batch Input sessione, LSMW, direct input or direct table upload, but it depends on the data you are maintaining.

Best regards.

Read only

Former Member
0 Likes
718

Hi,

LSMW:upto 20K data.

BDC call transaction is better once you have some few data some 4-5K casue its faster.

BDC session is always better if you have bulk of data and later you can proces tham from SM35 and see log file if any error.

Read only

Former Member
0 Likes
718

Please use preferences:-

1. IDOC

2. BAPI

3. FM

4. BDC or LSMW

I hope it will helps you in your work

Read only

venkat_o
Active Contributor
0 Likes
718

Hi, <li>If you haver very few records, even entering manually is also an option. <li>In most cases where we need more than 20,000 records , BAPI or Direct input would be the fastest. Here error handling is tough here. <li>You can use BDC(Session and Call transaction methods), where we can write code to identify error records, if you get error records, those can be reprocessed. Thanks Venkat.O