Are you good at the SAP BDC? Want to attend the interview in the SAP BDC? Then we the Wisdomjobs on our site have provided you with the complete set of SAP BDC Interview Question and Answers. Along with that one should know for what kind of job roles should he apply.In SAP BDC, BDC stands for Batch Data Communication. If you are good at the SAP BDC concepts then there are many leading companies that offer job positions like SAP ABAP Data Migration, SAP ABAP HR Consultantt - Bdc/bapi , SAP ABAP Technical, SAP ABAP Data Migration, SAP ABAP ott Experiences BAPI Stform RFC ALV, and many other roles too. For more details about the SAP BDC jobs and interview question and answers visit our site www.wisdomjobs.com.
Answer :
In Session method, in SM35 when you process the batch, you need to select the radio button Background, so it will run in background. In call transaction you need to mention the Mode value as N (no screen), so that it will run in background.
Question 2. Where Can You Find Error Log For Call Transaction?
Answer :
Question 3. How To Write A Code For Multiple Transactions?
Answer :
you should Write BDC_Insert Function module Twice. Remaining Function modules like BDC_group_open and BDC_close_group should be write once there...you can pass two or more transaction code in BDC_insert function module.
Answer :
Check no. of records already updated and delete them from input file and run BDC again.
Answer :
BDC is used to transfer the data from legacy system to SAP system & vice versa...
We can send the files from SAP to legacy system thru datasets (open dataset for output...) & GUI_download (F'n Module)..
Question 6. What Is The Structure Of Bdcmsgcoll?
Answer :
Go to se11 and enter bdcmsgcoll in database table filed and click on display it will displayed all the fields that are existing in the bdcmsgcall structure.
Answer :
Fill the CTUPARAM structure for Screen resolutions , and call this structure using options from CTUPARAM in Call Transaction Syntax
Question 8. How To Handle Error In Session Method?
Answer :
In session method the system automatically handled the error.goto sm35select the session name ,then select the analysis tab button in the top after that select the Log created, Here we can see the error record.
Question 9. What Should Be The Approach For Writing A Bdc Program?
Answer :
Question 10. What Are The Types Of Records That Are Transferred To Sap R/3 And Used By Interfaces?
Answer :
Any type of records can be transferred to SAP R/3
Question 11. Explain About Sap Fico Testing And The Tools Used?
Answer :
If you want to do FICO testing, you need to know the FICO process in SAP and also need to be familiar with the T-Codes and their functionality. A bit of Configuration knowledge is also required to test FICO.
Tools: LSMW and BDC tools willl be used for data migration and loading the transactional/Master data in SAP.
Question 12. How Can We Use Multiple Transactions By Using Bdc_insert?
Answer :
In the function module t-code here mention transaction code, and dynprotab here mentioning internal table name ,calling no of times a FM and assing TCODE and INTERNALTABLENAME
Question 13. How To Write A Code In Tab Control?
Answer :
For tab control we have to use concatenate options in your coding.
Answer :
BDC - Batch data communication in which there are 2 processes
RFC - remote fucntion call(or) calling
Question 15. What Is The Use Of Table Control In Bdc Is It Same In Module Pool Table Control?
Answer :
Yeah that table control is same as that used in module pool here we do recording
Question 16. How Do You Write Manual Bdc Session Method?
Answer :
Steps to create manual BDC session
Question 17. How Can We Handle Table Control In Bdc?
Answer :
We can handle table control using line index ,
Line index indicates which line of Table control is to be use for BDC transaction,
Ex -
perform bdc_field using 'RC29K-AUSKZ(01)'
indicates 1st line of table control is going to be used for transaction which is Line index of Table Control
Question 18. Update Types In Call Transaction Method. What Is The Difference ?
Answer :
Calltransaction update types:update types : S /A/LS-SYNCHRONOUSA-ASYNCHRONOUSL-LOCAL MEMORYsynchronous mode is waiting for commit work and asynchronous is not waiting for commit work.
Answer :
No.
Question 20. Have You Set Up A Back Ground Job ? How To Create A Background Job Without A Variant ?
Answer :
Yes, user can create background job scheduling in two ways.
Question 21. What Is The Difference Between Rfc And Bapi Function Modules?
Answer :
BAPI's are the remote enabled Function modules which are defined in the Business Object Repository (BOR) as the methods of the business objects.I can say BAPI is the subset of RFC. RFC connects to the other system via BAPI and vice versa.
Question 22. What Is The Difference Between Upload And Ws_upload ?
Answer :
The diffrence between WS_Upload and Upload is when you use function Upload it prompts for a dailog box where in you need to key in the file location. Where as in case of WS_Upload you specify the file location in the function input parameters itself.
Question 23. How Can We Upload A Text File Having Delimiters In To Legacy System?
Answer :
For up loading?text file we use the pre-defined FM gui_upload. in that FM we have the parameter has_field_seperator, for that we assign the default delimiter 'x'.
?????????? HAS_FIELD_SEPERATOR = 'X'
'X' can provide the What ever delimiter we used in flat file for seperation.
Question 24. Why Lsmw Does Not Support Call Transaction Method?
Answer :
Lsmw is one time requirement call tr. doesn't have log file. we have to maintain explicitly
Question 25. How Table Control Cn Be Generated Using Bdc?
Answer :
Using index
Question 26. How To Transfer Data Into Line Items Using Batch Input Session Method?
Answer :
table controls
Question 27. Use If Idoc And Bapi?
Answer :
idoc is carry data from one server to other server,bapi can be used to update the data base table with legacy system data.
Answer :
We can use session method logfile in call transaction.
Question 29. What Is The Difference Between Call Transaction And Session Method?
Answer :
Call trasaction method trasfers non sap data into sap immediately after completion of BDC, whereas session method creates the session and transfers data when user seesions it. It tranfers data one by one whereas trasaction method transfers data all together.
Question 30. How Do We Assign Dynamic Views While Creating Material Master And Generating Bdc?
Answer :
By defining the view index as like as table control Index value. Suppose if view is in 9th position value, then assign this value to index .
Question 31. From Excel To Abap - Is Batch Mode Possible ?
Answer :
DATA w_file TYPE string.
* Convert the file path into string
w_file = p_input.
* Internal Table should have same field sequence as EXL File.
CLEAR t_upload.
REFRESH t_upload.
* Call function to upload the data into internal table
CALL FUNCTION 'GUI_UPLOAD'
EXPORTING
filename = w_file
filetype = 'ASC'
has_field_separator = 'X'
TABLES
data_tab = t_upload
EXCEPTIONS
file_open_error = 1
file_read_error = 2
no_batch = 3
gui_refuse_filetransfer = 4
invalid_type = 5
no_authority = 6
unknown_error = 7
bad_data_format = 8
header_not_allowed = 9
separator_not_allowed = 10
header_too_long = 11
unknown_dp_error = 12
access_denied = 13
dp_out_of_memory = 14
disk_full = 15
dp_timeout = 16
OTHERS = 17.
IF sy-subrc NE 0.
* MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
* WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ELSE.
* Delete the first row of heading from the uploaded table
DELETE t_upload INDEX 1.
ENDIF. " IF sy-subrc EQ 0.
Question 32. How To Load Data From Ms Excel Sheet To Sap By Using Bdc Method ?
Answer :
Using function module UPLOAD or WS_UPLOAD or GUI_UPLOAD, but we need to give file type as 'wxi'. OR use function module : alsm_excel_to_internaltable.
Answer :
No function module named BDC_OPEN_DATASET is exist .
SAP BDC Related Tutorials |
|
---|---|
SAP SD Tutorial | SAP HR Tutorial |
SAP BASIS Tutorial | SAP ABAP Tutorial |
SAP SCM Tutorial | SAP Smart Forms Tutorial |
SAP Scripts Tutorial |
SAP BDC Related Practice Tests |
|
---|---|
SAP SD Practice Tests | SAP HR Practice Tests |
SAP BASIS Practice Tests | SAP ABAP Practice Tests |
SAP SCM Practice Tests |
All rights reserved © 2020 Wisdom IT Services India Pvt. Ltd
Wisdomjobs.com is one of the best job search sites in India.