Application Development 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: 

data dictionary

Former Member
0 Kudos

Scenario:

I got Flat File with 10000 records to upload. Which method(LSMW or call transaction or Session or Direct input) should I choose and why?

1 ACCEPTED SOLUTION

vinod_vemuru2
Active Contributor
0 Kudos

Hi Buddula,

Check below tips.

LSMW - Mass upload(Huge amount of data like ur case)

BDC Direct input - Mostly used for master data upload like customer master, Material master(Provided ur flat file is perfect with out any errors).

BDC Session method- Almost same as LSMW. Can have error log after execution.

Call Transaction- Used for few records may be max of around 5000.

In ur case u can go ahead with LSMW or Session methos.

Why: U can process error records seperately by entering the values manuaally.

In call transaction u have to handle the errors explicitely and also it is time taking one if u have huge data.

Direct input: If ur flat file is for master data then u can use this as well.

Thanks,

Vinod.

3 REPLIES 3

matt
Active Contributor
0 Kudos

Try the "Data Dictionary" forum. And good luck for your interviewers.

matt

vinod_vemuru2
Active Contributor
0 Kudos

Hi Buddula,

Check below tips.

LSMW - Mass upload(Huge amount of data like ur case)

BDC Direct input - Mostly used for master data upload like customer master, Material master(Provided ur flat file is perfect with out any errors).

BDC Session method- Almost same as LSMW. Can have error log after execution.

Call Transaction- Used for few records may be max of around 5000.

In ur case u can go ahead with LSMW or Session methos.

Why: U can process error records seperately by entering the values manuaally.

In call transaction u have to handle the errors explicitely and also it is time taking one if u have huge data.

Direct input: If ur flat file is for master data then u can use this as well.

Thanks,

Vinod.

Former Member
0 Kudos

hi i think it is not the huge data....generally we use the call transaction along with the session method bcoz the call transaction is online data transfer processing and is asynchronous the data will be loaded fastly compared to session and it doesnt requires the user interaction...and if there is any errors occured that will be processed by the session method..

regards,

venkat .