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

Description:
C_TAW12_750 - SAP - ABAP with SAP NetWeaver 7.50

Author:
tariq554
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:
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 displayed again without processing the PBO flow logic. Only fields B and C 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 and the PBO flow logic is processed. Only fields B and C are ready for input.
dbtab is a transparent table. What is declared by the following statement? DATA myvar TYPE dbtab. Please choose the correct answer. A reference to an internal table An elementary field An internal table A structure variable.
In an ABAP program you have the following code sequence: DATA var TYPE n LENGTH 1. FIELD –SYMBOLS <fs> TYPE c ASSIGN var TO <fs> CASTING Which type is used to cast the assigned memory area? Please choose the correct answer. The type of var The default type I The type of <fs> The default type STRING.
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 the assigned field of field F of table T1 in table T2 and make table T1 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 field F of table T1 and make table T2 the foreign key table Create a foreign key for field F of table T1 and make table T2 the check table.
Which components belong to an elementary search help? There are 2 correct answers to this question. Attachment to a field Import / export parameters Selection method Fixed values.
What transactions can be used to carry out modification adjustments after a system upgrade? There are 2 correct answers to this question. SPAU_ENH SPAU SPDD SPAD.
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 a structure with these two fields and include this structure in both database tables. 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.
When does SAP recommend that you use a full buffering type for a database table? Please choose the correct answer. When the table is small and frequently written When the table is small and seldom written When the table is large and seldom written When the table is large and frequently written.
What data type you can create in the ABAP Dictionary? Please choose the correct answer Lock object Type group Secondary index Structure.
You call a lock module. Which exceptions could the lock module raise when a logical lock CANNOT be set? There are 2 correct answers to this question SYSTEM_FAILURE CX_SY_DATA_ACCESS_ERROR CX_SY_OPEN_SQL_ERROR FOREIGN_LOCK.
In which of the following source code blocks can you define local data objects? There are 3 correct answers to this question Function module Static method LOAD-OF-PROGRAM PBO module Subroutine.
FORM routines (subroutines) can be used in which program types? There are 4 correct answers to this question. Subroutine pools Class pools Executables Interface pools Type groups Module pools Function groups.
Which of the following ABAP data types are compatible with the generic character-type CLIKE? There are 3 correct answers to this question. N STRING DECFLOAT XSTRING C.
In the technical settings for a transparent table, buffering is switched on and single record buffering is selected. Which statement uses the buffered data assuming that the WHERE clause contains restrictions for all key fields? Please choose the correct answer. SELECT … INTO TABLE … . SELECT SINGLE … FOR UPDATE. SELECT … . ENDSELECT. SELECT SINGLE … .
Which of the following are true statements? There are 3 correct answers to this question. A reference table and field are required for fields with the data types QUAN and CURR. Table fields can be assigned to an ABAP Dictionary data type directly. Search helps can be defined for a table field that is assigned to a predefined data type. Table fields can be assigned to a data element.
What is the maximum number of watchpoints that can exist at one time? Please choose the correct answer. No limit 10 8 6.
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 4 2 1.
Which of the followings components are part of SAP NetWeaver AS ABAP version 7.1x and higher? There are 2 correct answers to this question. Software Deployment Manager (SOM) Internet Communication Manager (ICM) SAP GUI for Java Message Server.
To benefit from the hash algorithm when accessing a hashed internal table, how do you specify the key? Please choose the correct answer. Fully qualified Any key Left aligned, gap free Under-qualified.
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. LIKE (fits pattern) GT (greater than) CO (contains only) EQ (equals) CP (covers pattern).
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? Please choose the correct answer. DATA: r TYPE f, a TYPE iVALUE 201, b TYPE iVALUE 200, c TYPE f. 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 p DECIMALS 2, a TYPE iVALUE 201, b TYPE iVALUE 200, c TYPE f.
What scheduling technique is used by the ABAP debugger dispatcher for processing user requests? Please choose the correct answer. Shortest First First in , First out Multiple Queue Round Robin.
In which circumstances is a table considered to be a text table? There are 3 correct answers to this question. This table only has one character-based data field. The ABAP runtime system determines that the relationship exists. This table has an additional language key field. The entire key of this data table is included as the key to this table. This table has a foreign key to the data table as a text table.
What is the Web Dynpro programming model is based on? Please choose the correct answer. Business Server Pages (BSPs) Classic Dynpro programming Internet Transaction Server (ITS) Model View Controller (MVC).
Which of the following capabilities is provided by the Application Layer platform of SAP Netweaver? Please choose the correct answer. Database and operating system abstraction Master data management Multi-channel access Business process management.
With what can you simulate multiple inheritance? Please choose the correct answer. CLASS CATEGORY REDEFINITION INHERITING FROM INTERFACES.
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. DATA gv_id TYPE s_conn_id. DATA gv_id LIKE s_conn_id. DATA gv_id TYPE REF TO s_conn_id. CONSTANTS gc_id TYPE s_conn_id VALUE '0400'. PARAMETERS pa_id TYPE s_conn_id.
What is the default length of the type P data type? Please choose the correct answer. 8 1 1-16 64.
can you search for suitable classic Business Add-Ins(BAdIs)? There are 2 correct answers to this question 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 Use the SAP menu Tools -> ABAP Workbench -> Development -> Business Object Builder.
Which statement is used to generically define the data reference variable z1? Please choose the correct answer. data z1 type any table data z1 type ref to PA0001 data z1 type any data z1 type ref to data.
What type of ABAP Dictionary view is implemented as an INNER JOIN? Please choose the correct answer. Help view Maintenance view Database view Projection view.
Which of the following ABAP standard types are incomplete? There are 2 correct answers to this question. F X N STRING.
Which statements are true regarding ABAP inheritance? There are 4 correct answers to this question. Overloading allows a method to have several definitions with different signatures. The static constructor can be overwritten as part of inheritance. Instance constructors must call the superclass’s constructor. Static constructors do not need to call the superclass’s constructor. The instance constructor can be overwritten as part of inheritance. Polymorphism requires the developer to specify which method to use with inheritance. You can access the superclass component with the prefix SUPER->.
For which of the following purposes can you use the ABAP dictionary? There are 2 correct answers to this question. To create lock objects To activate logging for transparent tables To create development classes To maintain program translations.
What does Software Layer Aware Debugging allow you to do? There are 3 correct answers to this question. Bypass authorization objects Debug a large portion of code Specify as much or as little code to debug Trace executing code Debug only a small portion of code.
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 LIKE s_carr_id DATA gv_id TYPE s_carr_id DEFAULT ‘QF’ DATA gv_id TYPE s_carr_id CONSTANTS gc_qf TYPE s_carr_id VALUE ‘QF’.
Which statements are considered obsolete and cannot be used in ABAP Objects? Please select all the correct answers that apply. RANGES SEARCH TABLES DATA ... BEGIN OF ... OCCURS LEAVE DATA ... TYPE ... OCCURS ON CHANGE OF INFOTYPES LOOP AT dbtab.
The Internet Communication Manager (ICM)… Please choose the correct answer. Replaced SAP ITS. Can not replaced SAP ITS. Allows the ABAP stack and the Java stack to exchange data. Allows SAP NetWeaver Application Server to process HTTP requests.
Which of the following statements are true? There are 3 correct answers to this question. None of the above. An implicit enhancement point can be used to insert code in an SAP pro- gram and is always available to the customer. Implicit enhancement options allow you to enhance interface parameters for function modules and methods without modifying the repository object. Implicit enhancement can be used to enhance SAP objects developed prior to SAP NetWeaver 7.0.
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 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 INTO CORRESPONDING FIELDS OF TABLE lt_result WHERE kind = ‘Residential’ and AND division EQ ‘Water’. 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’ 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’.
Report abuse