Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ONTEST PART 5 740

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
TEST PART 5 740

Description:
SAP ABAP 740

Author:
AVATAR

Creation Date:
10/10/2022

Category:
Others

Number of questions: 74
Share the Test:
Facebook
Twitter
Whatsapp
Share the Test:
Facebook
Twitter
Whatsapp
Last comments
No comments about this test.
Content:
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 message. Create a breakpoint for a specific statement. Create a breakpoint for a specificline.
After which statement will the runtime system initialize the ABAP memory? Please choose the correct answer. SUBMIT… AND RETURN SUBMIT CALL TRANSACTION LEAVE TO TRANSACTION.
What is the correct order for using a lock object? Please choose the correct answer. Set the lock, read the data, release the lock, change the data Read the data, set the lock, change the data, release the lock release the lock, Read the data, set the lock, change the data Set the lock, read the data, change the data, release the lock.
You write a program that updates a data record in the data base using the following statement: UPDATE scar FROM Is_scarr. Which of the following tasks does the Database Interface perform? There are 2 correct answers to this question It checks the authorization of the current user It applies a logical lock to the updated data record. It restricts the access to the log-on client It translates the statement to native SQL.
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 all methods of a class to which CL_CUSTOMER grants friendship 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 .
Which steps are needed when implementing the singleton concept for class instantiation with minimum coding? There are 3 correct answers to this question. Define the instantiation of the class as private. Create an event that returns the instance of the class. Create an instance of the class in a static constructor. Save the instance of the class in a static attribute. Define the class as abstract.
You have created a Web Dynpro view that shows data for airline connections between cities. You want to display flight data for a specific date in a different view after the user select a date and presses a button. Which of the following actions you must perform? There are 2 correct answers to this question. Edit the handler method in the view controller Add a client-side event in the view Create and link plugs between the views Set the interface property for key fields.
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. LOAD-OF-PROGRAM AT SELECTION-SCREEN START-OF-SELECTION INITIALIZATION.
What type of ABAP Dictionary view is implemented as an INNER JOIN? Please choose the correct answer. Maintenance view Help view Projection view Database view.
When you define local classes in ABAP, which syntactical sequence must you follow? Please choose the correct answer. The order doesn’t matter. PRIVATE SECTION, PROTECTED SECTION, PUBLIC SECTION PUBLIC SECTION, PROTECTED SECTION, PRIVATE SECTION The order is handled automatically.
Which property of the InputField UI element must be bound to a context attribute? Please choose the correct answer. visible value enable state.
You are writing an ABAP declaration using the data element S_CARR_ID. Which of the following statements correctly define a data object? There are 2 correct answers to this question DATA gv_id TYPE s_carr_id DEFAULT ‘QF’ DATA gv_id LIKE s_carr_id DATA gv_id TYPE s_carr_id CONSTANTS gc_qf TYPE s_carr_id VALUE ‘QF’.
Which of the following is a true statement? There are 3 correct answers to this question. All transportable objects have to be assigned to a package. Client-specific customization objects are assigned to the customizing request. Repository objects and cross-client customization objects are assigned to the workbench request. Local repository objects can be transported. Inactive objects can be transported.
Which of the following ABAP standard types are incomplete? There are 2 correct answers to this question. X STRING F N.
You have been asked by a customer to develop Open SQL code to convert the value of argument "arg" into the ABAP Dictionary type specified. Which SQL syntax do you use to meet this requirement? Please choose the correct answer. Note: Answers to this question are not verified by our experts, please study yourself and select the appropriate answers. CASTING(arg AS type) CASTING(arg FOR type) CAST(arg FOR type) CAST(arg AS type).
What can be exposed in the component interface of a Web dynpro component? Please choose the correct answer. Standard hook methods of the component controller Public attributes of WINDOW controllers Context nodes of WINDOW controllers Custom methods of the component controller.
Which of the following predefined ABAP types is incomplete? Please choose the correct answer. STRING F XSTRING P.
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.
How can Unicode checks be made? There are 2 correct answers to this question. Only in a Unicode system or as part of a conversion to a Unicode system Cannot be enforced In any system (after release 6.10) by specifying the program has Unicode checks active By running Transaction UCCHECK.
For a given date(variable lv_date), you want to find all the connections from Frankfurt to Sydney with exactly one stopover. You want to fly from the stopover city to Sydney on the same day you arrive in the stopover city. Table ZFLIGHTS hold the following information about flights. -flightid: primary key -cityfrom:departure city -datefrom: departure date -timefrom:departure time -cityto:destination city -dateto:destination date -timeto:destination time Which of the following Open SQL Queries can you use to find all the possible stopover cities? Please choose the correct answer. SELECT DISTINCT cityto INTO TABLE lt_cities FROM zflights AS destination WHERE cityfrom IN (SELECT cityto FROM zflights WHERE dateto = destination~datefrom AND timeto < destination~timefrom AND cityfrom = ‘FRANKFURT’ AND datefrom = lv_date ) AND destination~cityto = ‘Sydney’ SELECT DISTINCT cityfrom INTO TABLE lt_cities FROM zflights AS destination WHERE cityfrom IN (SELECT cityto FROM zflights WHERE dateto = destination~datefrom AND timeto < destination~timefrom AND cityfrom = ‘FRANKFURT’ AND datefrom = lv_date ) AND destination~cityto = ‘Sydney’ SELECT cityfrom INTO TABLE lt_cities FROM zflights AS destination WHERE cityto IN (SELECT DISTINCT cityfrom FROM zflights WHERE dateto = destination~datefrom AND timeto < destination~timefrom AND cityfrom = ‘FRANKFURT’ AND datefrom = lv_date ) AND destination~cityto = ‘Sydney’ SELECT cityto INTO TABLE lt_cities FROM zflights AS destination WHERE cityfrom IN (SELECT DISTINCT cityto FROM zflights WHERE dateto = destination~datefrom AND timeto < destination~timefrom AND cityfrom = ‘FRANKFURT’ AND datefrom = lv_date ) AND destination~cityto = ‘Sydney’.
What is unique about a singleton? There are 2 correct answers to this question. It must be instantiated using a private instance constructor. must be instantiated using a static private constructor. It must be instantiated using a static protected constructor. It must be instantiated using a protected instance constructor. It cannot be defined as FINAL. It must be instantiated using a static public constructor. It must be instantiated using a public instance constructor. It must be defined as FINAL.
You enhance an SAP standard global class by defining a post-method for an SAP method. The original SAP method has an EXPORTING parameter named PAR 1. What type of parameter is PAR 1 in the post-method? Please choose the correct answer RETURNING EXPORTING CHANGING IMPORTING.
Which of the following interface technologies are available in SAP systems? There are 3 correct answers to this question. HTTP ODBC OLE Ethernet RFC.
You want to add a field ZZPRICE to the SAP standard transparent table EKKO. Which of the following actions result in an enhancement of the SAP standard? There are 2 correct answers to this question. Add ZZPRICE to the customizing include for the table Create an append structure and add ZZPRICE to it. Insert ZZPRICE into an SAP structure for the table Insert ZZPRICE at the end of the table.
You have created the following: - A class with an event definition - A handler class with a method ON EVT that handles this event - A report that instantiates the handler class - A message statement that raises an exception However, the report does not react to the event. How do you analyze this issue? There are 3 correct answers to this question. Note: Answers to this question are not verified by our experts, please study yourself and select the appropriate answers. Check if the event is triggered by setting a breakpoint at the MESSAGE ... RAISING ... statement. Check if the handler method is registered to the correct event. Check if the implementation of the handler method ON_EVT contains the desired logic. Check if the handler method ON_EVT is defined in a subroutine of the report. Check if the event is triggered by setting a breakpoint at the RAISE EVENT statement.
You create a domain in the ABAP dictionary. How can you use this domain? Please choose the correct answer. To describe the value range of a table field or structure component To define the data type of a table field or structure component To define data objects in ABAP programs To define technical properties of data elements.
When does the lifetime of a Web Dynpro component begin and end? Please choose the correct answer. It ends each time it is called, and it ends when the component completes. It begins the first time it is called at runtime, and it ends with the Web Dynpro application that called and instantiated the component ends. It begins each time it is called, and it ends when the component completes. It begins when instantiated and it ends when the program ends or the object is freed.
Identify the ways to map context structures. There are 2 correct answers to this question. Direct context mapping External context mapping Static context mapping Dynamic context mapping.
Which of the following rules must you follow when you create a static constructor? There are 2 correct answers to this question You must name the method CONSTRUCTOR. You must define the method as pubic. You CANNOT define parameters. You can define class-based or classic exceptions.
Your colleague has asked you to analyze an ABAP program that does not behave correctly when a button is pressed on the initial screen. You want to start the Debugger when the button is pressed so that you can perform your analysis. What system command do you type in the command field? Please choose the correct answer. /h /n Jdbg /hx.
You need to perform a downcast. What should you do? There are 2 correct answers to this question. Use the operator “?=” Use the operator “=“. Assign a subclass reference to a superclass reference Catch the exception CX_SY_MOVE_CAST_ERROR.
A screen has the following PAI flow logic: PROCESS AFTER INPUT FIELD A MODULE check_A FIELD B MODULE check_B CHAIN. FIELD: C, D MODULE check_CD ENDCHAIN CHAIN. FIELD: C, B. MODULE check_CB ENDCHAIN What happens if the application sends a type E message during the check_CB module processing? Please choose the correct answer. The screen is displayed again without processing the PBO flow logic. All fields are ready for input. The screen is NOT displayed again. Processing terminates and the user must restart the ABAP program. The screen is displayed again without processing the PBO flow logic. Only fields B and C are ready for input The screen is displayed again and the PBO flow logic is processed. Only fields B and C are ready for input.
Dynpros can be placed in which program types? There are 3 correct answers to this question. Executables Function groups Class pools Module pools.
Value help can be supplied from which of the following? Please select all the correct answers that apply. Search help for a data element Search help from a text table Search help for a check table Fixed values Search help for table or structure fields Search help for a screen field Key values of a check table Process On Value request.
Which of the following is correct? Please choose the correct answer. The screen attributes can be modified in the PROCESS BEFORE OUTPUT and PROCESS AFTER INPUT event blocks. The screen attributes can be modified in the PROCESS BEFORE OUTPUT event block. None of the above. The screen attributes can be modified in the PROCESS AFTER INPUT event block.
What ABAP statements can you use to create an instance of the class CL_GUI_CUSTOM_CONTAINER in an ABAP program? Please choose the correct answer. DATA: go_container TYPE CL_GUI_CUSTOM_CONTAINER. CREATE DATA go_container… DATA: go_container TYPE CL_GUI_CUSTOM_CONTAINER. CREATE OBJECT go_container…. DATA: go_container TYPE REF TO CL_GUI_CUSTOM_CONTAINER. CREATE DATA go_container… DATA: go_container TYPE REF TO CL_GUI_CUSTOM_CONTAINER. CREATE OBJECT go_container…..
A class is defined as follows: CLASS my_class DEFINITION. PUBLIC SECTION. METHODS do_something. EVENTS state_changed. CLASS-METHODS static1. PRIVATE SECTION. TYPES t table TYPE STANDARD TABLE OF t001 WITH NON-UNIQUE DEFAULT KEY. CONSTANTS gc_const TYPE IVALUE 1. ENDCLASS. Which components of the class can static method static1 address directly? There are 2 correct answers to this question. The do_something method. The gc_const constant The t_table type. The state_changed event.
What are the advantages of creating a database view to implement a join, instead of formulating the join directly in an Open SQL SELECT statement? There are 2 correct answers to this question A database view can be reused in other programs A database view can be buffered An outer join can only be implemented in a database view A secondary index can be created for a database view.
When is a foreign key check performed on an input/output field? Please choose the correct answer. If the field refers to the dictionary field for which a append search is defined If the field refers to the dictionary field for which a check table is defined If the field refers to the dictionary field for which a value help is defined If the field refers to the dictionary field for which a search is defined.
You create a function group ZATP. What is the name of the corresponding main program? Please choose the correct answer. SAPFZATP SAPLZATP SAPMZATP ZATP.
What ABAP Dictionary object allows you to define fixed values? Please choose the correct answer. View Data element Domain Lock object.
Which of the following steps are required to set up a shared memory area? There are 3 correct answers to this question. Set the root object Enable multiple versions of an area root class Declare a catalog object Call the attach_for_write method of area root class Generate an area root class.
You have created a screen on which the user enters data that is to be inserted into table T1. How do you ensure that the content of field F in table T1 is checked against table T2? Please choose the correct answer. Create a foreign key for field F of table T1 and make table T2 the check table. Create a foreign key for the assigned field of field F of table T1 in table T2 and make table T2 the check table. Create a foreign key for the assigned field of field F of table T1 in table T2 and make table T1 the check table. Create a foreign key for field F of table T1 and make table T2 the foreign key table.
Which of the following predefined data types are character types? There are 3 correct answers to this question X N T D P.
Which comparison operators can you use in a logical expression related to the WHERE clause of the SELECT statement? There are 3 correct answers to this question. CO (contains only) CP (covers pattern) LIKE (fits pattern) EQ (equals) GT (greater than).
You want to define two database tables with different structures. Both tables should contain the fields CHANGE_DATE and CHANGE_TIME. How do you implement this in order to minimize the maintenance effort? Please choose the correct answer. Define the two fields in each database table separately. Define the two fields in one database table and copy them to the other database table. Define an append structure with these two fields and assign this append structure to both database tables. Define a structure with these two fields and include this structure in both database tables.
What can you do with the code inspector? There are 2 correct answers to this question Create your own inspections, object sets and check variants Create only local inspections, objects sets and check variants Create an object set to represent the programs and objects to be inspected Choose from only the performance, security and user interface check categories.
What is the default length of the type P data type? Please choose the correct answer. 8 1 64 1/16/2021.
You have created table ZTAB and you want to create a foreign-key relationship to table SAPTAB. Under which condition is this possible? Please choose the correct answer. The check field in ZTAB must have the same ABAP Dictionary type as the corresponding field of check table SAPTAB. The check field in ZTAB must have the same domain as the corresponding field of check table SAPTAB. The check field in ZTAB must have the same name as the corresponding field of check table SAPTAB. The check field in ZTAB must have a data element that does NOT refer to a domain.
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. As soon as the program is loaded into the internal session When the assignment to gv_var2 is executed At the beginning of the START-OF-SELECTION event block When value ‘123’ is assigned to the data object.
Which additions to the PARAMETERS statement can you use to fill the input field on the selection screen with a suggested value? There are 2 correct answers to this question. MODIF ID MEMORY ID DEFAULT VALUE-CHECK.
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 ($).
In an ABAP program, you to assign an initial value to an elementary data object when you define it. Which addition must you use? Please choose the correct answer. DEFAULT OBLIGATORY VALUE READ-ONLY.
Which method of passing parameters is preferred for its performance? Please choose the correct answer. Pass by subclass Pass by reference Pass by value Pass by class.
Which of the following Data Types are allowed in ABAP? There are 2 correct answers to this question. DECFLOAT32 DECFLOAT64 DECFLOAT16 DECFLOAT34.
Which of the following elements can a string template contain? There are 2 correct answers to this question. Literals String processing statements Functional method calls Function module calls.
You need to create a piece of code that can be used by multiple programs. Which of the following techniques does SAP recommend? There are 2 correct answers to this question. Note: Answers to this question are not verified by our experts, please study yourself and select the appropriate answers. Use a method in a global class Use a function module in a function group. Use a method in a local class. Use an include program.
When does the lifetime of a component controller begin and end? Please choose the correct answer. It begins with the Web Dynpro component and ends with the Web Dynpro application that called it. It ends the first time the Web Dynpro application is called at runtime and ends when the Web Dynpro application that called and instantiated the component ends It begins the first time the Web Dynpro application is called at runtime and ends when the Web Dynpro application that called and instantiated the component ends. It lasts from creating data within the controller to cover the whole period during which the component is in use.
What does Software Layer Aware Debugging allow you to do? There are 3 correct answers to this question. Trace executing code Specify as much or as little code to debug Debug only a small portion of code Debug a large portion of code Bypass authorization objects.
Which options do you have to read data from multiple tables while using a SELECT statement? There are 3 correct answers to this question. Join statements Pooled tables Database views Nested select statements Nested loop statements.
What must exist before you can create a new transportable function module? There are 3 correct answers to this question. Type group Module pool Change request Package Function group.
Which of the following are incomplete ASAP pre-defined data types? There are 3 correct answers to this question. T N X D P.
When would you call the RFC function module synchronously? There are 2 correct answers to this question. During interactive communication During two-way communication During queue processing During unidirectional communication.
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 function module In a global interface In a global class In a method of a global class.
Which are the functions of the ABA P dispatcher? There are 3 correct answers to this question. It distributes the requests among the work processes. It performs a roll-in and roll-out of user context. It requests the data from the database or the buffers. It integrates the presentation layer. It saves the processing requests in request queues.
What process is used to establish the automatic transport of data between the view controller's context-attributes and the UI element in its layout? Please choose the correct answer. View assembly Data binding Context mapping Data migration.
What is the difference between a value table and a check table? Please choose the correct answer. A value table is a check table after a foreign key is defined. A check table is defined in the domain, whereas a value table is defined in the data element. A value table does not exist. A value table is defined in the domain, whereas a check table is defined in the data element. No difference; they are the same thing.
Which options are valid Open SQL? There are 3 correct answers to this question CROSS JOIN LEFT OUTER JOIN FULL JOIN INNER JOIN RIGHT OUTER JOIN.
can you search for suitable classic Business Add-Ins(BAdIs)? There are 2 correct answers to this question Use the SAP menu Tools -> ABAP Workbench -> Development -> Business Object Builder Search in the Repository Information System and choose Enhancements - >Customer Exits Search for suitable entries in the relevant component in the Implementation Guide (IMG) Search in an application program for the method GET_INSTANCE of class CL_EXITHANDLER.
What can be implemented using an implicit enhancement option? There are 3 correct answers to this question. Additional exceptions in SAP function modules Additional attributes for global SAP classes Additional parameters in SAP function modules Overwrite methods for global SAP classes Overwrite methods for SAP function modules.
Subroutines provide which types of parameters? There are 2 correct answers to this question. Input Return values Exceptions Input/output (changing) Output.
When is an ENDSELECT not required for a SELECT? There are 3 correct answers to this question. When you specify appending a table When the FROM is a view When you specify a join of tables When you specify into a table When you do a SELECT SINGLE.
What does a view do? There are 4 correct answers to this question. If entered by an inbound plug, can cause an event handler method to be called Contains windows Can be contained in a window Contains other views Contains a view controller.
When should you use a hashed internal table? There are 2 correct answers to this question. When accessing by secondary key When accessing using the left-justified part of the key When accessing mainly single records When accessing by index When accessing always by primary key.
Report abuse Consent Terms of use