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

Description:
C_TAW12_750 - SAP - ABAP with SAP NetWeaver 7.50

Author:
AVATAR
sap
Other tests from this author

Creation Date:
29/05/2020

Category: Others

Number of questions: 40
Share the Test:
New CommentNuevo Comentario
No comments about this test.
Content:
What are some of the advantages of using OPEN SQL? There are 2 correct answers to this question All standard SQL commands can be used The application server buffer is NOT used Syntax is checked at design time It can be used with any supported DBMS.
Which of the following statements correctly define a data object with the type of data element s_conn_id? There are 3 correct answers to this question. CONSTANTS gc_id TYPE s_conn_id VALUE '0400'. DATA gv_id TYPE REF TO s_conn_id. DATA gv_id LIKE s_conn_id. PARAMETERS pa_id TYPE s_conn_id. DATA gv_id TYPE s_conn_id.
You want to select data from two tables and store the result in as structure. Table PARTNER contains the fields PART_ID and KIND. Table CONTRACT contains the fields CONT_ID, CONT_TYPE and DIVISION. The structure is defined as follows DATA: BEGIN OF wa_result, Part_id type partner-part_id,  cont_id type contract-cont_id, Cont_type  TYPE contract-cont_type, END of wa_result, Lt_result type table of wa_result. How can you replace the following SELECT statement with an outer join? SELECT part_id from partner INTO wa_result WHERE kind = ‘Residential’.  SELECT cont_id from CONTRACT into wa_result-cont_id WHERE part EQ     wa_partner-part_id And DIVISION eq ‘Water’.  Append wa_result to lt_result.   ENDSELECT. If sy-subrc<>0. CLEAR wa_result-cont_id APPEND wa_result TO lt_result. ENDIF. ENDSELECT. Please choose the correct answer. SELECT part_idcont_id from partner AS A LEFT JOIN contract AS b ON a~part_id = b~part_id INTO CORRESPONDING FIELDS OF TABLE lt_result WHERE kind = ‘Residential’ and AND division EQ ‘Water’. SELECT part_idcont_id from partner LEFT JOIN contract on partner-part_id = contract-part_id AND partner-kind EQ ‘Residential’ INTO CORRESPONDING FIELDS OF TABLE lt_result WHERE division eq ‘Water’. SELECT part_idcont_id from partner LEFT JOIN contract on partner-part_id = contract-part_id AND contract-division EQ ‘Water’ INTO TABLE lt_result WHERE kind EQ ‘Residential’. SELECT part_idcont_id from partner AS A LEFT JOIN contract AS b ON a~part_id = b~part_id AND b~division EQ ‘Water’ INTO TABLElt_result WHERE kind = ‘Residential’.
Where can you set the GUI status and the GUI title for a classical screen (dynpro)? Please choose the correct answer. In the properties of the related header UI element In the attributes of the screen In a module called from PAI of the screen In a module called from PBO of the screen.
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. 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 Check if the handler method is registered to the correct event. Check if the event is triggered by setting a breakpoint at the MESSAGE ... RAISING ... statement.
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 search is defined If the field refers to the dictionary field for which a value help is defined.
What is the result of the following arithmetic operation? DATA: intTYPEI. int=5*(3/10). Please choose the correct answer. 2 0 1 1.5.
You have the following class definition: CLASS lei_airplane DEFINITION. PUBLIC SECTION. METHODS set_passengers. PROTECTED SECTION. CONSTANTS:c_pos type ivalue 100. METHODS: get_passengers. PRIVATE SECTION. DATA: nw_passengers TYPEi. METHODS: set_attributes. ENDCLASS. Which components can be addressed directly from a subclass of classic_airplane? There are 3 correct answers to this question. SET_ATTRIBUTES SET_PASSENGERS C_POS MV_ PASSENGERS GET_PASSENGERS.
You create a domain in the ABAP dictionary. How can you use this domain? Please choose the correct answer. To define the data type of a table field or structure component To describe the value range of a table field or structure component To define data objects in ABAP programs To define technical properties of data elements.
You are making changes to a program that already has a transaction code linked to it. Your colleague is testing the transaction in your development system. At what point can the changed version of the program be tested? Please choose the correct answer. When you activate the program When you perform a syntax check on the program When you release the transport requests for the program When you save the program.
Under which circumstances will the classic Debugger start as the Debugger? There are 2 correct answers to this question. When you specify the default as the classic Debugger in the settings of the Object Navigator. None; the new Debugger will always start as the Debugger. When the number of debugging sessions exceeds half the number of dialog sessions. If you manually switched to the classic Debugger during your last session. When five modes already exist for this logon session.
When would you call the RFC function module synchronously? There are 2 correct answers to this question. During two-way communication During queue processing During interactive communication During unidirectional communication.
What type of ABAP Dictionary view is implemented as an INNER JOIN? Please choose the correct answer. Maintenance view Database view Help view Projection view.
Which of the following repository objects can you maintain in the ABAP Workbench? There are 3 correct answers to this question. Internal tables Business functions Transparent tables Function modules Module pools.
What is unique about a singleton? There are 2 correct answers to this question. It must be instantiated using a static protected constructor. It must be instantiated using a private instance constructor. It cannot be defined as FINAL. It must be defined as FINAL. It must be instantiated using a protected instance constructor. It must be instantiated using a static public constructor. must be instantiated using a static private constructor. It must be instantiated using a public instance constructor.
Which of the following statements can you use to setup checkpoints in an ABAP program? There are 3 correct answers to this question. ASSERT LOG-POINT BREAK CHECK BREAK-POINT.
Each ABAP program starts with an introductory statement. Which statements are correct? There are 2 correct answers to this question. The introductory statement must be the first statement in the program. The introductory statement must never be modified. The introductory statement can be modified. The introductory statement must be the first line in the program.
An ABAP program processes the following expression: r = a / b + c Which of the following data declarations would cause the runtime environment to use fixed-point arithmetic for the above expression? There are 2 correct answers to this question DATA: r type p, a type iVALUE 201, b type iVALUE 200, c type i. DATA: r TYPE p DECIMALS 2, a TYPE iVALUE 201, b TYPE iVALUE 200, c TYPE p. DATA: r TYPE f, a TYPE iVALUE 201, b TYPE iVALUE 200, c TYPE f. DATA: r TYPE p DECIMALS 2, a TYPE iVALUE 201, b TYPE iVALUE 200, c TYPE f.
What is the default length of the type C data type? Please choose the correct answer. 1–65535 10 100 1.
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 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 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 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’.
To which of the following you must assign newly created SAP repository objects? Please choose the correct answer. Transport request Function group Transport task Package.
Which of the following data types are predefined ABAP data types? There are 3 correct answers to this question. XSTRING DECIMALS STRING FLOAT DECFLOAT34.
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 an append structure with these two fields and assign this append structure to both database tables. Define the two fields in one database table and copy them to the other database table. Define the two fields in each database table separately. Define a structure with these two fields and include this structure in both database tables.
How would you find out if an application program offers a program exit? Please select all the correct answers that apply. Look for a customer exit in the SAP reference IMG within an application area Search for the character string CUSTOMER-FUNCTION Use the Repository Information System Use the Application Hierarchy.
Which of the following is a true statement? There are 3 correct answers to this question. All customer repository objects have to be assigned to a package. Packages use interfaces and visibility to make their elements visible to other packages. The transport layer is a mandatory input field for the package. A package can be nested.
What can you use to achieve polymorphism? Please choose the correct answer. Subroutines Events Reports Inheritance.
What do you need to consider when creating a secondary index on a table? There are 2 correct answers to this question The most frequently selected fields should be at the first positions in the index The index can be created for specific database systems only The table will be updated more quickly if you create more indexes The index must always be unique.
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. Add a client-side event in the view Edit the handler method in the view controller Set the interface property for key fields Create and link plugs between the views.
Compared to a predefined ABAP type what additional properties can be assigned to a domain? There are 3 correct answers to this question. Conversion exits Fixed values Parameter IDs Value tables Search helps.
An executable ABAP program contains a standard selection screen and uses the event blocks AT SELECTION SCREEN, AT SELECTION-SCREEN OUTPUT, INITIALIZATION, START-OFSELECTION. In which sequence will ABAP runtime call these event blocks? Please choose the correct answer. 1. INITIALIZATION 2. AT SELECTION-SCREEN OUTPUT 3. START-OF-SELECTION 4. AT SELECTION-SCREEN 1. INITIALIZATION 2. AT SELECTION-SCREEN OUTPUT 3. AT SELECTION-SCREEN 4. START-OF-SELECTION 1. INITIALIZATION 2. AT SELECTION-SCREEN 3. AT SELECTION-SCREEN OUTPUT 4. START-OF-SELECTION 1. AT SELECTION-SCREEN OUTPUT 2. INITIALIZATION 3. AT SELECTION-SCREEN 4. START-OF-SELECTION.
You are creating an inspection using the Code Inspector. Which entities can you select for inspection? There are 3 correct answers to this question. Contents of named user's objects Contents of a package Contents of a single object Contents of a transport request Contents of an object set.
You want to select all the records from a database table where field CITY contains substring ‘BU’ in any position. Which WHERE clause can you use in an Open SQL select statement? Please choose the correct answer. WHERE city LIKE ‘*BU*’ WHERE city LIKE ‘%BU%’ WHERE city LIKE ‘_BU’ WHERE city LIKE ‘%BU*’.
When does the lifetime of a component controller begin and end? Please choose the correct answer. It lasts from creating data within the controller to cover the whole period during which the component is in use. 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 begins with the Web Dynpro component and ends with the Web Dynpro application that called it.
What must you do to define a database view using the ABAP Dictionary? There are 3 correct answers to this question. Choose the database tables from where the view acquires data. Define buffering settings for the underlying database tables. Define the join conditions between the tables. Define selection criteria for the view. Choose the fields from the tables that should be part of the view.
You want to define a field symbol that will be assigned to a character string. Which generic types can you use? There are 3 correct answers to this question. click xsequence any table csequence any.
Which components belong to an elementary search help? Tre are 2 correct answers to this question.he Selection method Attachment to a field Import / export parameters Fixed values.
How would you define a method of an ABAP class to prevent this method from being available in a subclass? Please choose the correct answer. Abstract Private Protected Final.
What do you have to take into account before you decide to buffer a table? Please choose the correct answer. The data must always be read from the buffer The data read from the buffer may NOT be current The entire table content must be loaded into the table buffer The database server must allow table buffering.
You define database view A and maintenance view B in the ASAP Dictionary. What restrictions apply to these views? There are 2 correct answers to this question. The tables joined in A must have foreign key relationships. The join type of both A and B is an inner join The tables joined in B must have foreign key relationships. Only A can be used in the FROM clause of a SELECT statement.
You want to create a transparent table. Which of the following must you define to activate the table? There are 3 correct answers to this question. The foreign key The MANDT field The primary key A delivery class A short description.
Report abuse