option
Questions
ayuda
daypo
search.php

Test exam questions 4

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
Test exam questions 4

Description:
Test questions

Creation Date: 2023/02/10

Category: Others

Number of questions: 61

Rating:(0)
Share the Test:
Nuevo ComentarioNuevo Comentario
New Comment
NO RECORDS
Content:

To which of the following you must assign newly created SAP repository objects? Please choose the correct answer. Function group. Package. Transport request. Transport task.

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 name. Into fields with the same type. From left to right. Into fields with the same name and same type.

You have written a method implementation containing the following access to an internal table defined as a changing parameter of the method. READ TABLE ct_itab INTO cs_struc INDEX 1. What are the possible type definitions for parameter ct_itab? There are 3 correct answers to this question. Index Table. Hashed Table. Any Table. Standard Table. Sorted Table.

Which of the following can you use to enhance SAP standard tables and structures with fields? There are 2 correct answers to this question. Append search helps. Field exits. Append structures. Customizing includes.

Which of the following function types in a GUI status are reserved for internal use? There are 2 correct answers to this question. H-HELP REQUEST. T-TRANSACTION. S- SYSTEM. E-EXIT.

You have located a new (kernel) Business Add-in(BAdI) in an SAP standard application? What must you create to implement the BAdI, and in which order? Please choose the correct answer. - BadI Implementation - Enhancement Project. - BAdI Implementation - Enhancement Spot Implementation. - Enhancement Project - BAdI Implementation. - Enhancement Spot Implementation - BAdI Implementation.

can you search for suitable classic Business Add-Ins(BAdIs)? There are 2 correct answers to this question. Search in an application program for the method GET_INSTANCE of class CL_EXITHANDLER. Search for suitable entries in the relevant component in the Implementation Guide (IMG). Use the SAP menu Tools -> ABAP Workbench -> Development -> Business Object Builder. Search in the Repository Information System and choose Enhancements - >Customer Exits.

How can you search for classic Business Add-Ins (BAdIs)? There are 2 correct answers to this question. Search the relevant component in the Implementation Guide (IMG). Search in the application program for the method GET_ INSTANCE of class CL_EXITHANDLER. Search in the application program for the GET BADI statement. Search in the application program for the CALL BADI statement.

You want to read a single line of an internal table using table expression itab[ ...]. How can you identify the line? There are 3 correct answers to this question. Specify the line index. Specify a WHERE condition. Specify a secondary table key. Specify a free table key. Specify a regular expression.

What does a non-exclusive debugging mode mean? There are 4 correct answers to this question. It may be used anywhere in the landscape. Debugging is not possible between the statements SELECT and ENDSELECT because the database cursor needs to be closed using a COMMIT. Someone else is debugging the same source code. Owing to the commit, inconsistent datasets can occur in the database. A roll-out is forced in the application after each Debugger view. Debugging is not possible for conversion or field exits.

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. OBLIGATORY. VALUE. READ-ONLY. DEFAULT.

Your task is to enhance the screen of an SAP standard application. How do you determine if there is a customer exit for this task? Please choose the correct answer. You search in the flow logic of the screen for CAL CUSTOMER-SUBSCREEN statement. You use the BAdI Builder (transaction SE19) to check for a suitable Business Add-In(BAdI). You search in the SAP reference Implementation Guide (IMG) for a suitable user exit. You search in the source code of the application for GET BADI statement.

Which of the following is a true statement? There are 2 correct answers to this question. An access key is required to modify SAP repository objects. An access key is required to enhance an SAP application using a user exit. An access key is required to implement business add-ins. An access key is required to implement an implicit enhancement point.

Which selection screen elements allow user input in ABAP Reports? There are 2 correct answers to this question. SELECTION-SCREEN COMMENT. PARAMETERS. SELECT-OPTIONS. SELECTION-SCREEN BLOCK.

Which of the following statements are true? There are 2 correct answers to this question. Static attributes are declared with the CLASS-DATA statement. A static attribute is the same across all instances of the class. There is only one static attribute across all instances of the class. Static attributes cannot be changed by an object. Static attributes can be declared only in the private visibility section of the class.

You want to include an element of type ‘Table’ in your web dynpro. What actions add the corresponding columns to the table automatically? Please choose the correct answer. Include the method BIND_TABLE of IF_WD_CONTEXT_NODE. Right click the table and select the ‘CREATE_BINDING’ option. Bind the table attribute ‘DATA_SOURCE’ to the context node. Generate a ‘BIND_TABLE’ method using the web dynpro method wizard.

Which options do you have to read data from multiple tables while using a SELECT statement? There are 3 correct answers to this question. Pooled tables. Nested select statements. Join statements. Nested loop statements. Database views.

Dynpros can be placed in which program types? There are 3 correct answers to this question. Class pools. Function groups. Executables. Module pools.

ABAP is a programming language that… There are 4 correct answers to this question. Interacts with the user. Executes on all three levels of the three-tier architecture. Processes and formats data. Separates program code from language text. Controls the business logic.

Which type of view uses an inner join in a search help? Please choose the correct answer. Database view. Help view. Candidate key view. Maintenance view.

What is the purpose of implicit enhancement points? Please choose the correct answer. To change code in a standard SAP program. To create a secondary index for an SAP database table. To add code to a standard SAP program. To add fields to an SAP database table.

What will happen at runtime when accessing a buffered table? Please choose the correct answer. If table data is read using indexes, the table buffer will not be filled. If data is read from the table buffer, the existing indexes are not used. Following an update to a buffered record, all table buffers in the system will be updated. All SELECT statements will read data from the buffer.

With what can you simulate multiple inheritance? Please choose the correct answer. CLASS CATEGORY. INHERITING FROM. REDEFINITION. INTERFACES.

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. The screen attributes can be modified in the PROCESS AFTER INPUT event block. None of the above.

You want to read data from two database tables A and B using a database join. Database table B contains details for data records stored in database table A. Your result should contain all combinations of matching rows from A and B plus all rows from A that do not have matching rows in B. Which statement do you use? Please choose the correct answer. SELECT … FROM a JOIN b …. SELECT … FROM a LEFT OUTER JOIN b …. SELECT … FROM b RIGHT OUTER JOIN a …. SELECT … FROM a INNER JOIN b ….

Which of the following are true statements? There are 3 correct answers to this question. Search helps can be defined for a table field that is assigned to a predefined data type. Table fields can be assigned to an ABAP Dictionary data type directly. Table fields can be assigned to a data element. A reference table and field are required for fields with the data types QUAN and CURR.

Which of the following are valid control level changes within a loop over an internal table? There are 2 correct answers to this question. END of <f>. COLLECT. LAST. SUM.

To which context object is the attribute LEAD_SELECTION_INDEX related? Please choose the correct answer. Supply function. Attribute. Element. Node.

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. CASTING(arg FOR type). CAST(arg AS type). CAST(arg FOR type). CASTING(arg AS type).

What must before you can create a new transportable function modules? There are 3 correct answers to this question. Function group. Module pool. Package. Transport request. Exception class.

Which of the following steps are required to set up a shared memory area? There are 3 correct answers to this question. Generate an area root class. Declare a catalog object. Call the attach_for_write method of area root class. Enable multiple versions of an area root class. Set the root object.

Which of the following actions can be performed in the Process After Input (PAI) processing block? Please choose the correct answer. Set the title bar. Set the GUI status of the screen. Modify screen attributes dynamically. Check the function code.

How would you find out if an application program offers a program exit? Please select all the correct answers that apply. Use the Application Hierarchy. Look for a customer exit in the SAP reference IMG within an application area. Use the Repository Information System. Search for the character string CUSTOMER-FUNCTION.

What is the event block that all of your code changes belongs to if you do not explicitly code any event blocks in an executable program? Please choose the correct answer. START-OF-SELECTION. LOAD-OF-PROGRAM. AT SELECTION-SCREEN OUTPUT. INITIALIZATION.

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.

You created a transparent table and during activation got a warning message "Enhancement category for table missing". What do you have to do to eliminate the warning message? Please choose the correct answer. Change the Data Class and Size category in the technical settings. Provide the correct reference field for the Currency or Quantity field. Select the option Not Classified from the enhancement category. Select any option other than Not Classified from the enhancement category.

Which boundary conditions lead to improved access time to an internal table? There are 3 correct answers to this question. Left justified part of key for sorted tables. Index access for hashed tables. Index access for standard tables. Left justified part of key for hashed tables. Fully qualified key for sorted tables.

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 large and frequently written. When the table is large and seldom written. When the table is small and seldom written.

What are the prerequisites when creating an append structure for a standard SAP table? There are 2 correct answers to this question. The table cannot have any fields of type FLTP. The enhancement category of the table is NOT set to ‘Not enhacable’. The table must be copied before the append structure can be created. The fields in the append structure should star with YY or ZZ.

Which of the following rules must you follow when creating subscreens? There are 2 correct answers to this question. Subscreens CANNOT have a field of type OK. Subscreens can call other subscreens. Subscreens can have a dialog module containing SET PF-STATUS. Subscreens CANNOT have an AT EXIT-COMMAND module.

How can you add a session breakpoint to your program? There are 2 correct answers to this question. Set a breakpoint in the ABAP editor and select Save. Set a breakpoint in the ABAP editor. Set a breakpoint in the ABAP debugger and press F8. Execute command /h.

Which components of the class can be accessed in the implementation of a static method in that class? There are 2 correct answers to this question. Types. Constants. All events. Instance attributes.

Which of the following conditions must be fulfilled when using a GROUP BY clause in a SELECT statement? There are 2 correct answers to this question. The table in the FROM clause must be a transparent table. All fields in the SELECT clause that are not part of an aggregate function must be listed after GROUP BY. The SELECT statement must also have a WHERE clause. The fields after GROUP BY must have a character type.

Which of the following Data Types are allowed in ABAP? There are 2 correct answers to this question. DECFLOAT32. DECFLOAT16. DECFLOAT34. DECFLOAT64.

Which of the following can you do with the SAP code inspector? Please choose the correct answer. Monitor background tasks. Monitor runtime behavior. Analyze runtime data. Perform static code checks.

What is the SAP recommended naming convention for append structures of standard SAPtables? Please choose the correct answer. The components of an append structure should start with ZZ or YY. The name of the append structure must start with ZZ or YY. The name of the append structure must start with ZA. The components of an append structure should start with Z or Y.

Which of the following statements are correct? There are 3 correct answers to this question. Class methods assigned to the public visibility section can be accessed outside the class using the static component selector and the class name. Static methods can be defined in both the public and private visibility section of the class. You can call private methods within the public methods without reference to the object or class. Only public methods can be addressed outside the class. None of the above.

Which you should specify in a non-Unicode system when opening a file in TEXT MODE? There are 2 correct answers to this question. The code page. The byte order. The storage order. The ENCODING addition.

Which are the functions of the ABAP 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.

Which message types behave the same regardless of the context in which they are called? There are 2 correct answers to this question. A. X. W. I. E. S.

What is the difference between a value table and a check table? Please choose the correct answer. A value table is defined in the domain, whereas a check table is defined in the data element. 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. No difference; they are the same thing. A value table does not exist.

Which statements are true? There are 5 correct answers to this question. The ALV Object Model uses a reference to the data table for display. The ALV Object Model can define a sort criteria for initial display. The ALV Object Model requires a table refresh after programmatically changing the ALV. The ALV Grid requires a table refresh after programmatically changing the ALV. The ALV Grid uses a reference to the data table for display. The ALV Grid can define a sort criteria for initial display.

Each ABAP program that actually contains executable statements… There are 2 correct answers to this question. Uses event blocks to trigger events in ABAP. Assigns every executable statement to a processing block regardless of it being in a processing block. Only assigns executable statements in a processing block to a processing block. Has declarative statements inside of processing blocks that are considered local. Is divided into processing blocks. Has declarative statements outside of processing blocks that are considered local. Can be tested from the ABAP Workbench by pressing (F8).

Which of the following standard types is numeric? There are 3 correct answers to this question. F. Decfloat32. P. I.

When must a foreign key have domain equality? Please choose the correct answer. For a check field. For a text table. Never. Always.

Where are fixed values for fields stored? Please choose the correct answer. Data element. Structure. Domain. Field. Table.

There are ____ versions of the ABAP Editor. Please choose the correct answer. 2. 1. 3. 4.

Which of the following ABAP dictionary types can you use to define domains? There are 3 correct answers to this question. CHAR. NUMC. FLOAT. DEC. DATE.

What type of ABAP Dictionary view is implemented as an INNER JOIN? Please choose the correct answer. Database view. Projection view. Help view. Maintenance view.

In which modularization units can you use parameters? There are 3 correct answers to this question. Methods. Subroutines. Dialog modules such as PBO modules. Function modules. Event blocks such as START-OF-SELECTION.

Which of the following ABAP standard types are numeric? There are 3 correct answers to this question. F. I. N. P. D.

Report abuse