What are session method and call transaction method and explain about them?
Correct Answer
Call Transaction Method: In Call Transaction method we call the transaction in BDC program itself If we want this program is executed by some one else then we need to expose the code to him Call Transaction Method Works in Foreground No Display Mode is equal to Background Processing in call transaction method Call Transaction Method can handle only one Application at a time In Call Transaction Method no Log File by Default We have to design Log File by using BDCMSGCOLL Call Transaction Method Updates the Database Asynchronously (Note: Asynchronous updation is Faster than Synchronous) Batch Session Method: On the other hand in batch session method we create a session which can be executed at any time by any authorized person without exposing the code of the program Session Method works in Background and as well as in Foreground Session Method can handle Multiple Applications at a time Session Method holds Log File by Default Session Method Updates the Database Synchronously
Technology problems
Search Results
1. What is the difference between start_form and open_form in scripts? Why is it necessary to close a form always once it is opened?
Correct Answer: Call transaction is faster than session method But usually we use session method in real time?because we can transfer large amount of data from internal table to database and if any errors in a session, then process will not complete until session get correct
7. Which of the following are acceptable names of an ABAP program? A. ZQSDABAP B. YMYFIRSTABAPPROGRAM C. Z?MyFirst ABAP PROGRAM D. Z==FIRSTABAPPROGRAM E. THISISMYFIRSTABAPPROGRAMME
Correct Answer: Answer: A, B, E The name of an ABAP program can be between 1 and 30 characters long The following symbols and signs must not be used in program names: Period (), comma (,), space ( ), parentheses (), apostrophe (?), inverted commas ("), equals sign (=), asterisk (*), accented characters or German umlauts (à, é, ø, ä, ß, and so on), percentage signs (%), or underscores (_)
Correct Answer: ABAP (Advanced Business Application Programming) is a high level programming language created by the German software company SAP It is currently positioned as the language for programming SAP's Web Application Server, part of its NetWeaver platform for building business applications Its syntax is somewhat similar to COBOL
Correct Answer: ABAP/4 Query is a powerful tool to generate simple reports without any coding ABAP/4 Query can generate the following 3 simple reports: Basic List: It is the simple reports Statistics: Reports with statistical functions like Average, Percentages Ranked Lists: For analytical reports - For creating a ABAP/4 Query, programmer has to create user group and a functional group Functional group can be created using with or without logical database table Finally, assign user group to functional group Finally, create a query on the functional group generated
10. What is the differences between structure and table in data dictionary in ABAP?
Correct Answer: Structure and table both are 2/2 matrices but there are many differences between table and structure 1 Table can store the data physically but a structure dose not store 2 Table can have primary key but a structure dose not have 3 Table can have the technical attribute but a structure dose not have structure doesn't contain technical attributes structure doesn't contain primary key structure doesn't stores underline database level