bhargavi


{ City } hyderabad
< Country > india
* Profession * s/w developer
User No # 2879
Total Questions Posted # 2
Total Answers Posted # 5

Total Answers Posted for My Questions # 3
Total Views for My Questions # 10780

Users Marked my Answers as Correct # 29
Users Marked my Answers as Wrong # 29
Questions / { bhargavi }
Questions Answers Category Views Company eMail

Can I run normal abap applications in browser?if yes how?

2 SAP ABAP 4937

what is the difference between with initialization and with out initialization?

1 SAP ABAP 5843




Answers / { bhargavi }

Question { FutureSoft, 20591 }

What you did in BDC?


Answer

In case of transfer data from non-sap to sap system:

First Upload data into internal table.
Then store that data into R3Database.Before storing data we
have to validate that data for this we have to perform
mapping logic.here if the valid data transfered to R3
database,invalid data stored in log files .
for mapping we can use predefined mapping logic method,
nothing but session,call transaction ....

Is This Answer Correct ?    1 Yes 0 No

Question { TCS, 6933 }

How do you do BDC?


Answer

BDC-Batch Data Conversion/Communication.
By using BDC we can transfer data from non-sap to sap system
or sap to non-sap system.
for this we have to perform 2 steps:
1. Uploading/Downloading Data.
2. Mapping Logic(for validations).

we have some predefined methods for Mapping Logic ..
1.Session Methos.
2.CallTransaction Method.
3.Recording ..

Is This Answer Correct ?    1 Yes 1 No


Question { Wipro, 7737 }

Modes in Call Tr?


Answer

Call transaction method having 3 parameters..
1. Display
2. Update
3. Messages.

Parameter DISPLAY have 3 modes:
1. Append
2. NoDisplay
3.Error

Parameter UPDATE having 3 modes:
1.Synchronous updating
2.Asynchronous updating
3.Local Updating

Parameter MESSAGES is used to maintain log file.

Is This Answer Correct ?    2 Yes 0 No

Question { 19278 }

Among "Move" and "Move Corresponding", which is efficient one?


Answer

move statement is more effienet than move-corresponding.
In case of dialog programming move/movecorresponding stsmt
are used to put internal table workarea data into screen fields.
data: begin of itab occurs 0,
lifnr like lfa1-lifnr,
name1 like lfa1-name1,
ort01 like lfa1-ort01,
end of itab.(here lfa1 is DBtable name)
:
:
* in case of movecorresponding

Move-Corresponding itab to lfa1.
(here:lfa1 is screen fields name).

* in case of MOVE stmt.

Move itab-lifnr to lfa1-lifnr.
Move itab-name1 to lfa1-name1.
Move itab-ort01 to lfa1-ort01.

Movecorresponding :
If DBtable having 1000 fields and you are using
movecorresponding, then system has to check all the field in
table to move.

Is This Answer Correct ?    9 Yes 3 No

Question { Sony, 27064 }

wat is the difference between ALE & EDI?


Answer

ALE: used to trnasfer IDOC with in the R3distributed system.
EDI: used to transfer IDOC from R3system to nonsap system

Is This Answer Correct ?    16 Yes 25 No