daypo
search.php

TEST DEMO ABAP 7.4

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
TEST DEMO ABAP 7.4

Description:
SAP ABAP 740

Creation Date: 2022/10/07

Category: Others

Number of questions: 78

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

In which program types can you create dialog screens? ( There are 3 correct answers to this question ). Class pool. Module pool. Function group. Interface pool. Executable program.

Which of the following statements can you use to setup checkpoints in an ABAP program? ( There are 3 correct answers to this question. ). ASSERT. CHECK. LOG-POINT. BREAK. BREAK_POINT.

What are the declarative statements used to define the selection? ( There are 3 correct answers to this question. ). None of the above. PARAMETERS. SELECT-OPTIONS. SELECTION-SCREEN.

Which of the following actions can you performing both the ABAP Editor and in the ABAP Debugger? ( Please choose the correct answer. ). Create a breakpoint for a specificline. Create a breakpoint for a specific statement. Create a watchpoint for a specific variable. Create a breakpoint for a specific message.

Which of the following tasks does the BADI implementing class perform? ( Please choose the correct answer. ). Inserting. Filtering. Sequencing. Deleting.

Which must a search help do? ( There are 4 correct answers to this question. ). Have a dialog with the user. Be used from a screen. Determine the values for selection by the user. Allow the user to select a response. Use a table or a view for data selection.

The order of fields for a transparent table in the database… ( Please choose the correct answer. ). Is created in the order of the Data Dictionary. Is created in the order of the ABAP Dictionary. Is allowed to be different than the ABAP Dictionary. Needs to match the ABAP Dictionary.

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. ). Internet Communication Manager (ICM). Message Server. Software Deployment Manager (SOM). SAP GUI for Java.

After which statement will the runtime system initialize the ABAP memory? ( Please choose the correct answer. ). SUBMIT. LEAVE TO TRANSACTION. SUBMIT… AND RETURN. CALL TRANSACTION.

Which of the following are key capabilities of SAP NetWeaver? ( There are 3 correct answers to this question. ). Information Integration. Application Platform. Enterprise Resource Planning. People Integration. Supply Chain Management.

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 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.

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. Contribute: Please send the correct answers with reference text/link on feedback@erpprep.com to get up to 50% cashback. Use a function module in a function group. Use a method in a local class. Use an include program. Use a method in a global class.

You are using the new debugger and you want to change the content of an internal table. Which actions are allowed? ( There are 3 correct answers to this question. ). Delete table from memory. Delete the entire contents of a table. Delete the selected rows. Change row content and press Save (<CTRL> + S). Change row content and press Enter (<ENTER>).

You build a dialog screen with an input field in an ABAP program. How do you ensure that the contents of the screen field can be accessed in the program? ( Please choose the correct answer. ). Define a data object in the program with the same name as the screen field. Use the GET statement in the program to transport the data from the screen field. Use a MOVE statement in a PAI module to copy the data to a data object. Enter the name of a data object in the Parameter ID attribute of the screen field.

You have declared a sorted internal table with the columns A, B, C, and D. The key consists of columns A, B, and C, in this order. Which combination of columns in the WHERE clause of a LOOP statement allows the system to optimize the access to the table? ( There are 2 correct answers to this question. ). C and D. A and B. A, B, C, and D. B and C.

Which of the following statements are correct? ( There are 3 correct answers to this question. ). The SELECT-OPTIONS statement creates an internal table with a header line. The internal table is also known as the selection table. You can only specify default values for the LOW and HIGH fields of the SELECT-OPTIONS input field. You can use the addition NO-DISPLAY to hide the input field on the selection screen. The structure of the selection table created with SELECT-OPTIONS has four components: SIGN, OPTION, LOW, and HIGH.

What must you specify in a Unicode system when opening a file in TEXT MODE? ( Please choose the correct answer. ). The code page. The byte order. The Layer page. The ENCODING addition.

What does the enhancement category for a database table or structure do? ( There are 3 correct answers to this question. ). Makes a table Unicode-compliant. Can produce warnings at incompatible points for the structure. Can identify where program behavior may change. Specifies the types of changes that can be made to the structure.

What is the default length of the type C data type? ( Please choose the correct answer. ). 1. 100. 1–65535. 10.

The statements CALL BADI and GET BADI are used for which type of BAdIs? ( Please choose the correct answer. ). None of the above. New BAdI. Classical DDic. Classical BAdI.

What are some of the advantages of using OPEN SQL? ( There are 2 correct answers to this question ). Syntax is checked at design time. All standard SQL commands can be used. It can be used with any supported DBMS. The application server buffer is NOT used.

Which parameter types can be used in the signature of a functional method? ( There are 2 correct answers to this question. ). RETURNING. IMPORTING. EXPORTING. CHANGING.

You want to display a dialog box in your ABAP program. Which statement do you use? ( Please choose the correct answer. ). CALL SCREEN 200. WINDOW 200 STARTING AT 5 5. SET SCREEN 200. CALL SCREEN 200 STARTING AT 5 5.

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. Contribute: Please send the correct answers with reference text/link on feedback@erpprep.com to get up to 50% cashback. CASTING(arg AS type). CAST(arg AS type). CAST(arg FOR type). CASTING(arg FOR type).

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 LIKE s_conn_id. PARAMETERS pa_id TYPE s_conn_id. DATA gv_id TYPE s_conn_id. DATA gv_id TYPE REF TO s_conn_id. CONSTANTS gc_id TYPE s_conn_id VALUE '0400'.

What is unique about a functional method? ( There are 5 correct answers to this question. ). It can contain an importing parameter. It can contain a changing parameter. It can contain an exporting parameter. It can be used in logical expressions. It must be a singleton. It can be used in SELECT statements. It must contain a returning parameter.

What is the purpose of the enqueuer work process? ( Please choose the correct answer. ) Note: Answers to this question are not verified by our experts, please study yourself and select the appropriate answers. Contribute: Please send the correct answers with reference text/link on feedback@erpprep.com to get up to 50% cashback. It processes update requests. It processes requests for a print output. It processes requests triggered by an active user. It processes logical locks requests.

Which screen in the ABAP Dictionary allows you to log data changes to the table? ( Please choose the correct answer. ). Attributes tab. Delivery and Maintenance tab. Technical Settings. Utilities Settings. Utilities Database Object Database Utility.

Which hook method exists for all controller types? ( Please choose the correct answer. ). wddoonopen( ). wddoonclose( ). wddobeforenavigation( ). wddoinit( ).

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

Which of the following features do you have to consider when you use shared objects? ( There are 3 correct answers to this question. ). Data is saved as attributes of objects. Memory bottlenecks result in runtime errors and have to be caught. Data is saved as tables of objects. Concurrent write accesses are supported. Concurrent read accesses are supported.

Which property of the InputField UI element must be bound to a context attribute? ( Please choose the correct answer. ). visible. enable. state. value.

What data type you can create in the ABAP Dictionary? ( Please choose the correct answer ). Secondary index. Type group. Lock object. Structure.

What options do you have when setting a watchpoint? ( There are 2 correct answers to this question. ). Stop at any change of a specific variable. Stop at predefined conditions for all variables. Stop at predefined conditions for a specific variable. Stop at any change of all variables.

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 gc_const constant. The state_changed event. The do_something method. The t_table type.

Which of the following generic types can you use to define a field symbol that will be assigned to a character string? ( There are 3 correct answers to this question. ). Type xsequence. Type any table. Type clike. Type csequence. Type any.

What is the allowed length of the ABAP Dictionary data type DF34_RAW? ( Please choose the correct answer. ). The allowed length is between 0 and 33 digits. The allowed length is 34 digits. The allowed length is between 1 and 31 digits. The allowed length is between 1 and 34 digits.

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 and the PBO flow logic is processed. Only fields B and C are ready for input. 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.

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

Which of the following elements can a string template contain? ( There are 2 correct answers to this question. ). String processing statements. Functional method calls. Function module calls. Literals.

Which components belong to an elementary search help? ( There are 2 correct answers to this question. ). Import / export parameters. Selection method. Fixed values. Attachment to a field.

You perform an update task using update function modules and detect an error in the program that calls the update function modules. Which statement can be used to discard all update requests for the current SAP LUW? ( There are 2 correct answers to this question. ). ROLLBACK WORK. EXIT. DELETE UPDATE. MESSAGE exxx(nnn). MESSAGE axxx(nnn).

Which method of passing parameters is preferred for its performance? ( Please choose the correct answer. ). Pass by class. Pass by subclass. Pass by reference. Pass by value.

Which events can exist in all types of programs that actually contain executable statements? ( Please choose the correct answer. ). INITIALIZATION. AT PF##. AT USER-COMMAND. AT LINE-SELECTION. LOAD-OF-PROGRAM. START-OF-SELECTION.

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 value help 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 check table is defined.

The Internet Communication Manager (ICM)… ( Please choose the correct answer. ). 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. Replaced SAP ITS.

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

In which sequence are the following ABAP Events triggered? ( Please choose the correct answer. ). 1. INITIALIZATION 2. START-OF-SELECTION 3. AT SELECTION-SCREEN. 1. INITIALIZATION 2. AT SELECTION-SCREEN 3. START-OF-SELECTION. 1. START-OF-SELECTION 2. AT SELECTION-SCREEN 3. INITIALIZATION. 1. AT SELECTION-SCREEN 2. INITIALIZATION 3. START-OF-SELECTION.

Which of the following variables is the self-reference variable in ABAP OO? ( Please choose the correct answer. ). ME. THIS. SUPER. SENDER.

The USER has the following fields: ID, FIRST_NAME, LAST_NAME. FIRST_NAME, LAST_NAME have the same basic type and length. You want to compare fields FIRST_NAME, LAST_NAME to each other. Which of the following SELECT statements can you use? ( There are 2 correct answers to this question. ). SELECT*FROM users AS a INTO TABLE It_users WHERE a first_name = last_name. SELECT*FROM users INTO TABLE It_users WHERE first_name = users last_name. SELECT*FROM users AS a INTO TABLE It_users WHERE a»first_name = a»last_name. SELECT*FROM users INTO TABLE It_users WHERE first name = users »last_name.

Which of the following is a true statement? ( There are 2 correct answers to this question. ). A hashed table should always have a unique table key. A sorted table can have a unique or a non-unique key. A standard table should always have a unique key. A standard table should always have a multiple key.

What properties will be set when you define a table type in the ABAP Dictionary? ( There are 3 correct answers to this question. ). Access mode. GET/SET Parameter. Line type. Primary key. Change document.

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. ). Jdbg. /hx. /h. /n.

What ABAP Dictionary object allows you to define fixed values? ( Please choose the correct answer. ). Data element. Lock object. Domain. View.

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 a secondary table key. Specify a free table key. Specify a regular expression. Specify a WHERE condition. Specify the line index.

Identify the types of controller. ( There are 5 correct answers to this question. ). Custom controller. Window controller. Component controller. Consumer controller. Configuration controller. View controller.

Which of the following statements regarding the event AT SELECTIONSCREEN ON HELP-REQUEST FOR <FIELD> is correct? ( Please choose the correct answer. ). None of the above. This event will display self-defined (F1) help for the input field programmed in the event block and will override any help possibly defined in the ABAP Dictionary for the field. This event will display (F1) help for the input field on the selection screen. This event will display self-defined (F1) help for the output field programmed in the event block and will override any help possibly defined in the ABAP Dictionary for the field.

How can you improve the performance when accessing a large data volume database table? ( Please choose the correct answer. ). Apply the appropriate data class and size category. Change the table type in the dictionary. Switch the database table to fully buffered. Define appropriate indexes for the database table.

You want to translate dynamic text in a web dynpro. From which abstract class should you inherit? ( Please choose the correct answer. ). CL_WD_COMPONENT_SERVICES. CL_WD_CONFIGURATION_MODEL. CL_WD_CONTEXT_SERVICES. CL_WD_COMPONENT_ASSISTANCE.

To reserve an area on the screen for an ALV Grid Control, you must do the following: ( Please choose the correct answer. ). Create an object (instantiate the object) of the class CL_GUI_CUSTOM_CONTAINER. Create an object (instantiate the object) of the class CL_GUI_ALV_GRID. Create an object (instantiate the object) of the class CL_SALV_TABLE. Use the Screen Painter.

Which of the following customer modifications options are available in the table maintenance generator? ( There are 2 correct answers to this question. ). Append searches. Events. Maintenance screens. Search helps.

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. ). AT SELECTION-SCREEN OUTPUT. INITIALIZATION. LOAD-OF-PROGRAM. START-OF-SELECTION.

Identify the types of layout managers. ( There are 4 correct answers to this question. ). FlowLayout. RowLayout. GridLayout. MatrixLayout. TreeLayout. ColumnLayout.

What are the advantages of defining texts symbols in executable programs? ( 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. They can store up to 256 characters. The text of the text symbol can be changed at runtime. They facilitate multilingual functionality. They are easier to maintain than literals.

The data buffered on each application server… ( Please choose the correct answer. ). Is does not the same. Depends on the users. Is always the same. Is never the same.

You need to perform a downcast. What should you do? ( There are 2 correct answers to this question. ). Use the operator “=“. Catch the exception CX_SY_MOVE_CAST_ERROR. Assign a subclass reference to a superclass reference. Use the operator “?=”.

FORM routines (subroutines) can be used in which program types? ( There are 4 correct answers to this question. ). Executables. Subroutine pools. Type groups. Module pools. Class pools. Function groups. Interface pools.

In which of the following source code blocks can you define local data objects? ( 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. Subroutine. LOAD-OF-PROGRAM. PBO module. Function module. Static method.

Which statements about ABAP are true? ( Please choose the correct answer. ). Each statement must end with a period. Each statement must begin with a keyword. ABAP keywords and additions must be in uppercase. Each statement cannot begin with a keyword.

How do you add fields to an SAP-delivered transparent table without modification? ( Please choose the correct answer. ). Define a structure containing the new fields and include it in the table definition. Use the database utility to enhance the definition on the database directly. Add the new fields to the table definition. Create an append structure containing the new fields.

Which of the following is a true statement? ( There are 3 correct answers to this question. ). Local repository objects can be transported. Inactive objects can be transported. Client-specific customization objects are assigned to the customizing request. All transportable objects have to be assigned to a package. Repository objects and cross-client customization objects are assigned to the workbench request.

What must you do to create a singleton class? ( There are 2 correct answers to this question ). Store the reference to the singleton objection an instance attribute of the object itself. Set the class instantiation to private. Create the objection a static method of the class itself. Define the class as abstract.

How many work areas are available in the Debugger? ( Please choose the correct answer. ). 7. 15. 9. 12.

What are the reasons to use modularization? ( 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. Promotes reusability. Portability across DBMS. Improved transparency. Easier maintenance. Improved performance.

Which actions release a database lock? ( There are 7 correct answers to this question. ). The display of a dialog message type E. A call to a function module. ENQUEUE_. COMMIT WORK. A SUBMIT. The display of an SAP screen. A CALL TRANSACTION. The display of a dialog message type A. An “/n” in the command field. ROLLBACK WORK.

Which of the following are true statements? ( There are 3 correct answers to this question. ). The technical attributes of the data element can be defined by a domain, that is, the data type, the field length, and the number of decimal places. You can also select predefined data types to define the data type of the data element. Reference data types can be used to define the data type of the data element. Field labels are defined for the domain.

You implemented a subclass that inherits the instance constructor from it superclass What can you do with the inherited constructor? ( There are 2 correct answers to this question ) Note: Answers of this question are not verified by our experts, please study yourself and select the appropriate answers. Change the name. Change the signature. Create several implementations. Redefine the implementation.

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 all methods of the class CL_CUSTOMER. From all methods of all subclasses of CL_CUSTOMER. From any program using the class CL_CUSTOMER.

Report abuse