option
Questions
ayuda
daypo
search.php
ERASED TEST, YOU MAY BE INTERESTED ON SAP ABAP - MINI TEST
COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
SAP ABAP - MINI TEST

Description:
C_TAW12_750 - ABAP with SAP NetWeaver 7.50

Author:
AVATAR
SAP
Other tests from this author

Creation Date:
29/05/2020

Category: Others

Number of questions: 39
Share the Test:
New CommentNuevo Comentario
AVATARGersonP ( uploaded 2 years )
Report comment
Q9 are wrong, What does a view do? There are 4 correct answers to this question. Contains other views Can be contained in a window If entered by an inbound plug, can cause an event handler method to be called Contains a view controller.
Content:
1Q: Which of the following actions can you performing both the ABAP Editor and in the ABAP Debugger? Please choose the correct answer. Create a watchpoint for a specific variable. Create a breakpoint for a specific statement. Create a breakpoint for a specificline. Create a breakpoint for a specific message.
2Q: What are the prerequisites when creating an append structure for a standard SAP table? There are 2 correct answers to this question The fields in the append structure should star with YY or ZZ The table cannot have any fields of type FLTP The table must be copied before the append structure can be created The enhancement category of the table is NOT set to ‘Not enhacable’.
3Q: A work process… Please choose the correct answer. Stays linked toa screen through the dispatcher. Becomes inactive while waiting for a user. Uses a common memory area called shared memory. Becomes active while waiting for a user.
4Q: When analyzing a program, which tasks can you perform using the code inspector? There are 3 correct answers to this question. Discover unused variables. Execute the extended program check Determine used database tables. Inspect the memory consumption Evaluate the time needed for program execution.
5Q: The code of an executable program does NOT contain any event keywords. What event block does the code belong to? Please choose the correct answer. START-OF-SELECTION INITIALIZATION AT SELECTION-SCREEN LOAD-OF-PROGRAM.
6Q: You are asked to enhance the GUI status of an SAP standard application. How do you identify which menu exit function code you can use? Please choose the correct answer. It starts with a plus (+). It starts with an ampersand (&). It starts with an asterisk (*). It starts with a dollar ($).
7Q: Which of the following can you do with the SAP code inspector? Please choose the correct answer. Monitor runtime behavior Monitor background tasks Perform static code checks Analyze runtime data.
8Q: What options do you have when setting a watchpoint? There are 2 correct answers to this question. Stop at predefined conditions for a specific variable. Stop at predefined conditions for all variables. Stop at any change of all variables. Stop at any change of a specific variable.
9Q: What does a view do? There are 4 correct answers to this question. Contains other views Can be contained in a window Contains windows If entered by an inbound plug, can cause an event handler method to be called Contains a view controller.
10Q: Which of the following functions does the ABAP Dispatcher perform? There are 2 correct answers to this question. It distributes user requests among available work processes. It communicates with other instances in the system. It directs HTTP requests from an SAP system to a web server. It enables communication between SAP systems and external application systems.
11Q: What can be exposed in the component interface of a Web dynpro component? Please choose the correct answer. Public attributes of WINDOW controllers Context nodes of WINDOW controllers Custom methods of the component controller Standard hook methods of the component controller.
12Q: Which of the following types of SQL statements always bypass the SAP table buffers? There are 2 correct answers to this question. SELECT … INNER JOIN… SELECT SUM (sales) SELECT … UP TO 1 ROW SELECT SINGLE.
13Q: What are characteristics of a hashed internal table? There are 2 correct answers to this question. It can have a non-unique key. It can be accessed using the key. It must have a unique key. It can be accessed using the index.
14Q: Which of the following ABAP dictionary types can you use to define domains? There are 3 correct answers to this question FLOAT DEC NUMC DATE CHAR.
15Q: You have been asked to review the following expression, which processes character strings: result = find( val= 'abapABAP' sub ='A' occ = 2 case = 'X' ....). What is the expected value of result? Please choose the correct answer. 6 2 1 4.
16Q: Which of the following can you define in the technical settings of a transparent table? There are 3 correct answers to this question. Buffering type Size category Data class Table name Delivery class.
17Q: Which of the following transactions are integrated in the ABAP workbench tools? There are 2 correct answers to this question. Overview of job selection (SM37) Class builder (SE24) ABAP editor (SE38) Process overview (SM50).
18Q: Which of the following components belong to the SAP application layer? There are 2 correct answers to this question Database interface Database server SAP GUI ABAP dispatcher.
19Q: Which objects can share data through context mapping? Please choose the correct answer. Component controllers and view controllers View controller and another view controller Custom controllers and transparent tables Global classes and component controllers.
20Q: In which order do you implement a new BAdI? Please choose the correct answer. Create BAdI Implementation Create Enhancement Project Create  BAdI Implementation Create Enhancement Spot Implementation Create Enhancement Spot Implementation Create BAdI Implementation Create Enhancement Project Create BAdI Implementation.
21Q: Where can you define global data types that are visible system-wide? There are 3 correct answers to this question. In the ABAP Dictionary In a global interface In a function module In a global class In a method of a global class.
22Q: Which property of the InputField UI element must be bound to a context attribute? Please choose the correct answer. enable value state visible.
23Q: Which options are valid Open SQL? There are 3 correct answers to this… INNER JOIN RIGHT OUTER JOIN FULL JOIN CROSS JOIN LEFT OUTER JOIN.
24Q: You run an executable program that contains the following code: DATA: gv_var1 TYPE n LENGTH 3, Gv_var2 TYPE n LENGTH 3 VALUE ‘456’. START-OF-SELECTION CLEAR gv_var2 Gv_var2 = gv_var1. Gv_var1 = ‘123’. At what point does the system reserve memory for the data object gv_var1? Please choose the correct answer. At the beginning of the START-OF-SELECTION event block When the assignment to gv_var2 is executed As soon as the program is loaded into the internal session When value ‘123’ is assigned to the data object.
25Q: Which of the following interface technologies are available in SAP systems? There are 3 correct answers to this question. RFC OLE Ethernet ODBC HTTP.
26Q: Which must a search help do? There are 4 correct answers to this question. Allow the user to select a response Use a table or a view for data selection Have a dialog with the user Determine the values for selection by the user Be used from a screen.
27Q: You have implemented a class CL_CUSTOMER in which you defined a private attribute. From where can you access this attribute directly? There are 2 correct answers to this question. From any program using the class CL_CUSTOMER From all methods of all subclasses of CL_CUSTOMER From all methods of the class CL_CUSTOMER From all methods of a class to which CL_CUSTOMER grants friendship.
28Q: In which modularization units can you use parameters? There are 3 correct answers to this question. Methods Dialog modules such as PBO modules Event blocks such as START-OF-SELECTION Subroutines Function modules.
29Q: Which objects are automatically created when you create a new function group? Please choose the correct answer. A function pool and two include programs A function pool and two function modules A function pool and two subroutine pools A function pool and two module pools.
30Q: Which of the following statements regarding search helps are true? There are 3 correct answers to this question. You can use a database view for the search help selection method. You can use transparent tables for the search help selection method. You can use a maintenance view for the search help selection method. Help views can also be used for the selection method for search help.
31Q: Which types of programs or parts of programs can be tested directly from the ABAP Workbench or ABAP Editor? There are 4 correct answers to this… PROGRAM REPORT CLASS-POOL INCLUDE METHOD INTERFACE-POOL FUNCTION-POOL TYPE-POOL FUNCTION MODULE.
32Q: You want to create a transparent table in the ABAP dictionary. When the table is physically created in the database? Please choose the correct ans.. When you activate the table When you insert the table name and select create When you save the table When you run the database utility transaction (SE14).
33Q: You write the following ABAP statement: SELECT SINGLE carrid, connid, cityfrom, cityto FROM spfli INTO @gs_spfli WHERE carrid = @pa_car AND connid = @pa_con. How are the selected fields placed into target structure gs_spfli? Please choose the correct answer. Into fields with the same type Into fields with the same name Into fields with the same name and same type From left to right.
34Q: DOG is a subclass of ANIMAL. You have created a variable of type ANIMAL that references an instance of the DOG class. Which of the following statements can you use to copy this reference to a new variable of type DOG? Please choose the correct answer. WRITE……TO…… MOVE…. TO….. MOVE……?TO…… MOVE-CORRESPONDING…… TO…….
35Q: What happens when an authorization check fails? Please correct answer. The system field SY-SUBRC is set to a value other than zero. The program is terminated. A CX_AUTH_FAILED type exception is raised. A type E message is displayed.
36Q: How do you create lock objects and lock modules for use in ABAP programs that access the database? Please choose the correct answer. Use the ABAP Dictionary to create the lock objects. The lock modules are created automatically Use the ABAP dictionary to create the lock objects. Use the function builder to create the lock modules Use the Function Builder to create the lock modules. The lock objects are created in the program logic Use the Function Builder to create the lock modules and the lock objects.
37Q: How can you find customer exists in an ABAP program? There are 2 correct answers to this question. Search for customer exists in the program documentation Search for customer exists in the Repository Information System Search for ‘CALL CUSTOMER’ in the program Search for ‘CL_EXTHANDLER’ in the program.
38Q: In which database table type is there a one-to-one relationship between the Dictionary table definition and the relevant physical table in the database? Please choose the correct answer. Transparent table Pooled table Internal table Cluster table.
39Q: Which of the following enhancements calls a customer function module. There are 2 correct answers to this question. User exit Business Transaction event Customer exit Business Add-in (BADIs).
Report abuse