18) Difeerence between various BDC method.Which is the best
one?
Answer Posted / ashwin urkude
Their are 2 types of BDC Method:
1) CALL TRANSACTION.
2) SESSION .
1: CALL TRANSACTION : In this method you Call a Transaction
as 'MB01' and Process the Recorded BDC RUNTIME.
You can RUN this BDC in following Modes:
MODE A: FOREGROUND MODE(You will be able to View SCREEN
calling and fiiling of data in respective fields of that
very SCREEN).
MODE E: ERROR MODE(Everthing in Background. If any ERROR
occurs your BDC will STOP on that very SCREEN where ERROR
occured.)
MODE N: BACKGROUND(Processing of BDC is done in
Background. If any ERROR occurs the BDC will not get
executed further & you are thrown out of BDC.)
-----------------------************------------------------
2: SESSION METHOD :- Here for whatever BDC you have RECORDED
a SESSION(LOG) is CREATED where the BDC is STORED and it
gets Executed when you Execute the LOG through TRANSACTION
SM35. to View the OUTPUT use TRANSACTION SM39.
This is basically done when you are dealing with large
amount of data in your Internal Table. We use 3 Function
Modules .
BDC_OPEN_GROUP : To open the group.
BDC_INSERT : To Insert Transaction.
BDC_CLOSE_GROUP: Closes the Transaction.
SESSION METHOD IS THE BEST.
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
Workbench request are client dependent or client independent
Differentiate between abap memory and sap memory?
I have 3 transactions,where the output of one transaction is input of another and output of 2nd transaction is input of 3rd transaction.i have one flat file with all data for the 3 transaction.if the 3rd transaction failed can we rollback the remaining 2 transactions or not.Is this possible in BDC,How/
Explain about drill down report?
What kind of financial periods exist in sap? What is the relavent table for that?
On abap: did you set up a workflow? Are you familiar with all the steps for setting up a workflow?
What are the screen elements.
What is the function module to popup contents in the internal table?
What is a help view? : abap data dictionary
Explain Singleton class
How can we use multiple transactions by using bdc_insert? : abap bdc
What is locking? : abap data dictionary
What is size category?
What are the function modules used in f4 help?
If A is the super class of B. And both the classes have constructor. We create an object of class B. Then which constructor will be called? If both then in which order?