0% found this document useful (0 votes)
654 views2 pages

BDC Interview Questions (1) - 2

Conversion programs are used to upload data from flat files to SAP systems. There are two main methods for uploading data: the call transaction method and session method. The call transaction method uploads data synchronously for each record while the session method allows scheduling uploads in the background and generates error logs. The LSMW tool is for functional users while BDC is for technical users to code uploads.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
654 views2 pages

BDC Interview Questions (1) - 2

Conversion programs are used to upload data from flat files to SAP systems. There are two main methods for uploading data: the call transaction method and session method. The call transaction method uploads data synchronously for each record while the session method allows scheduling uploads in the background and generates error logs. The LSMW tool is for functional users while BDC is for technical users to code uploads.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

BDC

1.What is the use of conversion program?


Ans : Conversion programs are used to upload the data from flatfile to sap system

2.What is the synchronous database updation?


Ans : if the first record is successfully updated in all the db tables,then only
second record updation starts.

3.How many sessions will be opened using BDC_OPEN_GROUP?


Ans : only one

4.What is the syntax of call transaction method?


Ans : call transaction '<tcode>' using <bdcdata internal table> mode 'A/E/N'
Messages into <bdcmsgcoll internal table> update 'A/S'.

5.How we handle the errors in call transaction method?


Ans : 1. By using 'FORMAT_MESSAGE' function module
(fetching the messages from T100 DB Table)
2.By using session method

6.What are the differences between call transaction method and session method?
Ans :

7.What are the different types of update modes?


Ans : 1.synchronous db updation 2. Asynchronous db updation

8.What are the differences between BDC and LSMW?


Ans : BDC: 1.BDC is designed for technical people who knows much coding
2. mapping is done by technical people

LSMW : 1. LSMW is designed for functional people who don't know coding
2.mapping is done by system itself

9.How we create a request number to LSMW?


Ans : in lsmw transaction, in the menu bar click on extras->generate change request

10.What are the events in LSMW?


Ans : 1.Gobal_data 2. begin_of_processing 3. begin_of_transaction
4.end_of_transaction 5.end_of_processing

11.What is the last entry of any screen?


Ans : BDC_OKCODE Is the last entry in any screen

12.How we can process the session?


Ans : By using SM35 Transaction
13.How can we delete the transaction from session processing?
Ans : /BDEL Command

14.How can we skip the current transaction from session processing?


Ans : /N command

15.How can we skip the entire session processing?


Ans : /BEND command

16.How can we run session method in background?


Ans : by using RSBDCSUB standard program OR go to SM35 and run the session
in background

17.When you choose call transaction method?


Ans : 1.If the client requirement is immidate database updation
2.Every time flatfile contains less data(100's of records)
3.Call transaction method is faster than session

18.When you choose session method?


Ans : 1.if the client requirement is to schedule the program in background
2.Session method generate an error log, to handle the errors
3.Every time flatfile contains huge data(1000's of records)

19.Can we process more than one transaction through call transaction method?
Ans :no

20.What is the transaction code for sap directory?can we create file directly in
sap directory?
Ans : AL11 is the transaction code for application server(sap directory),
we can't create the file directly in appliaction server

21.How we can upload the data from excel sheet to internal table?
Ans: by using 'ALSM_EXCEL_TO_INTERNAL_TABLE' Function module

22.What are the components of BDCDATA Structure with description?


Ans : program->programname,dynpro->screen number,dynbegin->starting posing
fnam->fieldname,fval->field value

You might also like