Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ONFIRTS FORTY QUESTIONS

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
FIRTS FORTY QUESTIONS

Description:
DIVISION IN FORTY QUESTIONS TEST ABAP

Author:
JOHN
(Other tests from this author)

Creation Date:
16/03/2023

Category:
Computers

Number of questions: 40
Share the Test:
Facebook
Twitter
Whatsapp
Share the Test:
Facebook
Twitter
Whatsapp
Last comments
No comments about this test.
Content:
Which class is used to define a reference for an instance of the ALV Object Model?} Please choose the correct answer. Class CL_GUI_CUSTOM_CONTAINER. Class CL_SALV_TABLE. Class CL_GUI_BDC_GRID. Class CL_GUI_ALV_GRID.
What does the enhancement category for a database table or structure do? There are 3 correct answers to this question. Specifies the types of changes that can be made to the structure Makes a table Unicode-compliant Can produce warnings at incompatible points for the structure Can identify where program behavior may change.
In which controller type can you embed a service call? Please choose the correct answer. Component controller View controller Configuration controller Interface controller.
Which statements are allowed for processing internal tables? There are 3 correct answers to this question. DELETE SELECT INSERT UPDATE MODIFY.
You create a function group ZATP. What is the name of the corresponding main program? ZATP SAPZATP SAPLZATP SAPMZATP.
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 CONSTANTS gc_qf TYPE s_carr_id VALUE ‘QF’ DATA gv_id TYPE s_carr_id DATA gv_id TYPE s_carr_id DEFAULT ‘QF’ DATA gv_id LIKE s_carr_id.
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. A delivery class The primary key The foreing key The MANDT field A short descrption.
To which ABAP Dictionary definition can you assign fixed values? Please choose the correct answer. Component of a structure Domain Field of a transparent table Data element.
Which of the following are table buffering types? There are 3 correct answers to this question. X Generic Primary Key Column Store Full Single-record.
You defined data reference z1 generically. Which statement would you use to access the content of the referenced variable? Please choose the correct answer. Assign (z1) to <fs> Assign z1->* to <fs> Assign z1 to <fs> Get reference of z1 into wa.
How would you find out if an application program offers a program exit? Please select all the correct answers that apply. Use the Repository Information System Search for the character string CUSTOMER-FUNCTION Look for a customer exit in the SAP reference IMG within an application area Use the Application Hierarchy.
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? It applies a logical lock to the updated data record It translates the statement to native SQL It checks the authorization of the current user It restricts the access to the log-on client.
What is the allowed length of the ABAP Dictionary data type DF16_DEC? Please choose the correct answer. The allowed length is between 0 and 16 digits. The allowed length is between 1 and 15 digits. The allowed length is between 0 and 15 digits. The allowed length is 16 digits.
Where can you define global data types that are visible system-wide? There are 3 correct answers to this question. In a global interface In a method of a global class In a function module In a global class In the ABAP Dictionary.
Which of the following enhancement options does not require any preparation from SAP? Please choose the correct answer. Explicit enhancement sections Explicit enhancement point New BAdIs Implicit enhancement point.
Which of the following characters is the first of a menu exit function code? Please choose the correct answer. + & - *.
Which of the following ABAP dictionary types can you use to define domains? There are 3 correct answers to this question. DATE CHAR FLOAT NUMC DEC.
With what can you simulate multiple inheritance? Please choose the correct answer. REDEFINITION CLASS CATEGORY INHERITING FROM INTERFACES.
When must a foreign key have domain equality? Please choose the correct answer. For a text table For a check field Always Never.
What is the difference between the INITIALIZATION and AT SELECTION-SCREEN OUTPUT events? Please choose the correct answer. - INITIALIZATION is only processed once. - AT SELECT-SCREEN OUTPUT can be processed multiple times - INITIALIZATION can change the properties of the screen fields - AT SELECTION-SCREEN OUTPUT cannot change the properties of the screen field - INITIALIZATION cannot change pushbutton texts - AT SELECTION-SCREEN OUTPUT can change pushbutton texts - INITIALIZATION can overwrite the default value of a PARAMETERS field - AT SELECTIION-SCREEN OUTPUT can overwrite the default values of a PARAMETERS field.
Which of the following are incorrect statements? There are 2 correct answers to this question. TYPES: carrid_ty LIKE spfli-s-carr_id. TYPES: werks TYPE C LENGTH 4. TYPES: date_ty TYPE D LENGTH 10. TYPES: Str TYPE STRING LENGTH 20.
Which of the following Data Types are allowed in ABAP? There are 2 correct answers to this question. DECFLOAT32 DECFLOAT16 DECFLOAT64 DECFLOAT34.
Which ABAP Dictionary object can reference a domain? Please choose the correct answer. Table type Data element Structure Data base table field.
What does a Web Dynpro component contain? There are 3 correct answers to this question. Multiple views within a window A context Component controller Exactly one interface controller UI elements.
Why should you bundle database updates in your dialog programs? Please choose the correct answer. To avoid database locks set by an SQL statement that persists until the end of the program To process the SAP LUW within the database LUW to ensure data consistency To be able to rollback database changes performed in the same dialog step To allow you to use SAP locks to ensure data consistency.
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. GT (greater than) CP (covers pattern) CO (contains only) LIKE (fits pattern) EQ (equals) .
Your program performs a database update by calling function modules in an update task. Which ABAP statements can be used in the program to discard all update requests for the current SAP logical unit of work(LUW)? There are 3 correct answers to this question MESSAGE TYPE W MESSAGE TYPE A ROLLBACK WORK MESSAGE TYPE E MESSAGE TYPE X.
You are writing a program that uses ABAP class. Which components of the class can you create directly from the program? Please choose the correct answer. Only private components All components Only public components Only protected components.
What is required to fully specify a Table Type in the ABAP Dictionary? There are 3 correct answers to this question. Line type Access type Table key Header line Table size.
You have to overwrite spaces in a string with the letter ‘A’. Which of the following statements can you use? There are 3 correct answers to this question. SHIFT LEFT OVERLAY REPLACE CONDENSE TRANSLATE.
Each component has an interface; of what does this interface consist? There are 2 correct answers to this question. INTERFACE CONTROLLER INTERFACE CONTEXT DATA CONTAINER INTERFACE VIEW.
What can be exposed in the component interface of a Web dynpro component? Please choose the correct answer. Custom methods of the component controller Standard hook methods of the component controller Context nodes of WINDOW controllers Public attributes of WINDOW controllers.
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 perform a syntax check on the program When you activate the program When you release the transport requests for the program When you save the program.
Which statements are considered obsolete and cannot be used in ABAP Objects? Please select all the correct answers that apply. ON CHANGE OF INFOTYPES RANGES TABLES SEARCH LOOP AT dbtab DATA ... TYPE ... OCCURS LEAVE DATA ... BEGIN OF ... OCCURS.
Where can you set the GUI status and the GUI title for a classical screen (dynpro)? Please choose the correct answer. In a module called from PBO of the screen In the properties of the related header UI element In the attributes of the screen In a module called from PAI of the screen.
Compared to a predefined ABAP type what additional properties can be assigned to a domain? There are 3 correct answers to this question. Search helps Fixed values Value tables Conversion exits Parameter IDs.
What data type you can create in the ABAP Dictionary? Please choose the correct answer. Type group Secondary index Structure Lock object.
Which boundary conditions lead to improved access time to an internal table? There are 3 correct answers to this question. Response: Left justified part of key for hashed tables Index access for standard tables Left justified part of key for sorted tables Fully qualified key for sorted tables Index access for hashed tables.
Is it possible to have multiple active implementations of business add-ins at a time? There are 2 correct answers to this question. It cannot have a multiple active implementation. It can have multiple implementations if the Filter-Depend. checkbox is selected. It can have multiple active implementations if the Multiple use checkbox is selected. It can have a multiple active implementation.
You want to add a field type CURR to a transparent table. What else must you do? Please choose the correct answer. Add a key fieldof type CUKY. Create a reference to a field of type CUKY. Add a check table that contains a field of type CUKY. Create a new field CUKY as a pre-defined type.
Report abuse Consent Terms of use