Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ONTEST PART 4 740

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
TEST PART 4 740

Description:
SAP ABAP 740

Author:
AVATAR

Creation Date:
10/10/2022

Category:
Others

Number of questions: 73
Share the Test:
Facebook
Twitter
Whatsapp
Share the Test:
Facebook
Twitter
Whatsapp
Last comments
No comments about this test.
Content:
Which of the following data types are predefined ABAP data types? There are 3 correct answers to this question. STRING DECIMALS FLOAT DECFLOAT34 XSTRING.
After which statement will the runtime system initialize the ABAP memory? Please choose the correct answer. SUBMIT… AND RETURN LEAVE TO TRANSACTION SUBMIT CALL TRANSACTION.
What must you specify in a Unicode system when opening a file in TEXT MODE? Please choose the correct answer. The ENCODING addition The Layer page The code page The byte order.
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 displayed again and the PBO flow logic is processed. 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.
Each button on a Dynpro (screen) requires the assignment of a function code. This function code… Please choose the correct answer. Prevents the function code from be assigned to a category item. Can be used to identify when the button is clicked by looking for the function code in the screen’s OK_CODE field. Is used to define global variables that receive a value when the button is clicked. Prevents the function code from be assigned to a menu item.
What transactions can be used to carry out modification adjustments after a system upgrade? There are 2 correct answers to this question. SPAU_ENH SPDD SPAU SPAD.
The statements CALL BADI and GET BADI are used for which type of BAdIs? Please choose the correct answer. Classical DDic New BAdI Classical BAdI None of the above.
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 CONSTANTS gc_qf TYPE s_carr_id VALUE ‘QF’ DATA gv_id TYPE s_carr_id DEFAULT ‘QF’ DATA gv_id TYPE s_carr_id.
When is an ENDSELECT not required for a SELECT? There are 3 correct answers to this question. When you specify into a table When you specify a join of tables When you do a SELECT SINGLE When you specify appending a table When the FROM is a view.
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 output 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 input field programmed in the event block and will override any help possibly defined in the ABAP Dictionary for the field.
You always want to check the user authorization for data entered in an input field of a selection screen.Where do you do this? Please choose the correct answer. In the event block AT SELECTION-SCREEN OUTPUT In the event block AT SELECTION-SCREEN In the event block AT SELECTION-SCREEN on VALUE-REQUEST In the event block INITIALIZATION.
Which of the following are key capabilities of SAP NetWeaver? There are 3 correct answers to this question. Supply Chain Management People Integration Application Platform Enterprise Resource Planning Information Integration.
Which of the following capabilities is provided by the Application Layer platform of SAP Netweaver? Please choose the correct answer. Multi-channel access Business process management Database and operating system abstraction Master data management.
Which must a search help do? There are 4 correct answers to this question. Determine the values for selection by the user Use a table or a view for data selection Allow the user to select a response Be used from a screen Have a dialog with the user.
What are characteristics of a hashed internal table? There are 2 correct answers to this question. It can have a non-unique key. It can be accessed using the index. It must have a unique key. It can be accessed using the key.
How can you improve the performance when accessing a large data volume database table? Please choose the correct answer. Switch the database table to fully buffered. Apply the appropriate data class and size category. Define appropriate indexes for the database table. Change the table type in the dictionary.
Which of the following statements are true? There are 2 correct answers to this question. A maintenance view is implemented as an outer join. A database view is implemented as an outer join. A maintenance view is implemented as an inner join. A database view is implemented as an inner join.
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. It processes requests for a print output It processes logical locks requests. It processes requests triggered by an active user. It processes update requests.
Which assignment will lead to a conversion error? Please choose the correct answer. A type C data object with the value '1.50E4' to a type I data object DATA.gv_c(6) TYPE c VALUE '1.50E4', gv_i TYPE i. gv_i = gv_c. A type P data object to a type F data object DATA.gv_p TYPE p VALUE '15000', gv_f TYPE f. gv_f = gv_p. An XSTRING type data object to a STRING type data object DATA.gv_xstring TYPE xstring, gv_string TYPE string. gv_xstring = 'AF00'. gv_string = gv_xstring. A type C data object with the value '123' to a type C data object with length 2 DATA.gv_c3(3) TYPE c VALUE '123', gv_c2(2) TYPE c. gv_c2 = gv_c3.
What can you change in the ABAP Debugger? Please choose the correct answer. Value of a constant Value of a reference variable Content of an internal table Definition of a structure.
Which options are valid Open SQL? There are 3 correct answers to this question INNER JOIN LEFT OUTER JOIN RIGHT OUTER JOIN CROSS JOIN FULL JOIN.
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. DATA gv_id TYPE REF TO s_conn_id. PARAMETERS pa_id TYPE s_conn_id. CONSTANTS gc_id TYPE s_conn_id VALUE '0400'. DATA gv_id TYPE s_conn_id.
Global data types defined in SAP systems are… Please choose the correct answer. ABAP Dictionary types. Date types defined in the program using ABAP Dictionary types. Date types does not defined Dictionary types. Data defined in the program that is visible to all the routines/statements within the ABAP program.
Which of the following can you do with the SAP code inspector? Please choose the correct answer. Analyze runtime data. Monitor runtime behavior Perform static code checks Monitor background tasks.
Which of the following includes are generated when you create a function group? Please choose the correct answer. LxxxxO01 LxxxxF01 LxxxxUXX LxxxxTOP.
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. All components Only private components Only public components Only protected components.
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. Use an include program. Use a function module in a function group. Use a method in a local class. Use a method in a global class.
You want to loop over an internal table without copying each table row to a work area. How can you achieve this using a field symbol? Please choose the correct answer. Note: Answers to this question are not verified by our experts, please study yourself and select the appropriate answers. LOOP ... REFERENCE INTO <field_symbol> ... ENDLOOP. LOOP ...INTO <field_symbol> ...ENDLOOP. LOOP ...ASSIGNING <field_symbol> ...ENDLOOP. LOOP ... INTO <field_symbol> TRANSPORTING ... ENDLOOP.
When included in a structure, which elementary field types allow the structure to be considered a character-type data object? There are 4 correct answers to this question. C X N F D T STRING XSTRING.
Which of the following statements are correct? There are 3 correct answers to this question. An enhancement spot can contain an explicit enhancement point and an enhancement section. An enhancement spot can contain one or more simple or composite enhancements. An enhancement spot can contain either an explicit enhancement point and enhancement section or a new BAdI only, but all three cannot be in the same enhancement spot. An enhancement spot can contain an explicit enhancement point, explicit enhancement section, and new BAdI.
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 technical properties of data elements To define data objects in ABAP programs.
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. START-OF-SELECTION 2. AT SELECTION-SCREEN 3. INITIALIZATION 1. AT SELECTION-SCREEN 2. INITIALIZATION 3. START-OF-SELECTION 1. INITIALIZATION 2. AT SELECTION-SCREEN 3. START-OF-SELECTION.
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. 4 2 1 6.
Which of the following repository objects can you maintain in the ABAP Workbench? There are 3 correct answers to this question. Module pools Transparent tables Business functions Function modules Internal tables.
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 are easier to maintain than literals. The text of the text symbol can be changed at runtime They facilitate multilingual functionality. They can store up to 256 characters.
For which of the following requirements can you implement a functional method? There are 2 correct answers to this question. A private static helper method that returns a single value as the result of an algorithm A factory method that returns an object reference A method to set an instance attribute with one importing parameter and no other parameters A handler method for an event that has a returning parameter.
You create a function group ZATP. What is the name of the corresponding main program? Please choose the correct answer. SAPMZATP ZATP SAPFZATP SAPLZATP.
To reserve an area on the screen for an ALV Grid Control, you must do the following: Please choose the correct answer. Use the Screen Painter 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.
Which additions to the PARAMETERS statement can you use to fill the input field on the selection screen with a suggested value? There are 2 correct answers to this question. DEFAULT MEMORY ID VALUE-CHECK MODIF ID.
Which of the following transactions can you use to define transparent tables? Please choose the correct answer. SE11 SE16N SE38 SM37.
What pre-defined ABAP data type is deep? Please choose the correct answer. Note: Answers to this question are not verified by our experts, please study yourself and select the appropriate answers. STRING DECFLOAT34 X N.
You run an executable program that contains the following code: DATA: gv_var1 TYPE n LENGTH 3, Gv_var2 TYPE n LENGTH 3 VALUE ‘456’. START-OF-SELECTION CLEAR gv_var2 Gv_var2 = gv_var1. Gv_var1 = ‘123’. At what point does the system reserve memory for the data object gv_var1? Please choose the correct answer. When the assignment to gv_var2 is executed When value ‘123’ is assigned to the data object At the beginning of the START-OF-SELECTION event block As soon as the program is loaded into the internal session.
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. Enter the name of a data object in the Parameter ID attribute of the screen field Define a data object in the program with the same name as the screen field Use a MOVE statement in a PAI module to copy the data to a data object Use the GET statement in the program to transport the data from the screen field.
What is the difference between a value table and a check table? Please choose the correct answer. A value table does not exist. A check table is defined in the domain, whereas a value table is defined in the data element. A value table is a check table after a foreign key is defined. No difference; they are the same thing. A value table is defined in the domain, whereas a check table is defined in the data element.
What is the allowed length of the ABAP Dictionary data type DF34_RAW? Please choose the correct answer. The allowed length is 34 digits. The allowed length is between 0 and 33 digits. The allowed length is between 1 and 31 digits. The allowed length is between 1 and 34 digits.
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 type Into fields with the same name Into fields with the same name and same type From left to right.
Which of the following standard hook methods exist in all Web Dynpro controllers? There are 2 correct answers to this question Wddoexit Wddoinit Wddobeforenavigation Wddoafteractions.
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. AT SELECTION-SCREEN OUTPUT 2. INITIALIZATION 3. AT SELECTION-SCREEN 4. START-OF-SELECTION 1. INITIALIZATION 2. AT SELECTION-SCREEN 3. AT SELECTION-SCREEN OUTPUT 4. START-OF-SELECTION 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.
Which data types are incomplete ABAP standard data types? There are 3 correct answers to this question. N I C P F.
Which are the functions of the ABA P dispatcher? There are 3 correct answers to this question. It integrates the presentation layer. It distributes the requests among the work processes. It saves the processing requests in request queues. It requests the data from the database or the buffers. It performs a roll-in and roll-out of user context.
What is the best order to provide an event handler for an ALV? Please choose the correct answer. Register for the event, write the handler, create the ALV, display the ALV Write the handler, create the ALV, register for the event, display the ALV Create the ALV, write the handler, register for the event, display the ALV Write the handler, register for the event, create the ALV, display the ALV Write the handler, create the ALV, display the ALV, register for the event.
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 use the BAdI Builder (transaction SE19) to check for a suitable Business Add-In(BAdI) You search in the source code of the application for GET BADI statement You search in the flow logic of the screen for CAL CUSTOMER-SUBSCREEN statement You search in the SAP reference Implementation Guide (IMG) for a suitable user exit.
Where can you define data types that can be used throughout the system? 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. In a method In a global interface In the ASAP Dictionary In a function module.
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 PAI of the screen In a module called from PBO of the screen In the attributes of the screen In the properties of the related header UI element.
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_ASSISTANCE CL_WD_COMPONENT_SERVICES CL_WD_CONTEXT_SERVICES CL_WD_CONFIGURATION_MODEL.
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. CASTING(arg FOR type) CASTING(arg AS type) CAST(arg FOR type) CAST(arg AS type).
What do enhancement spots manage? There are 3 correct answers to this question Explicit enhancement sections Implicit enhancement points New BAdIs Classic BAdIs Explicit enhancement points.
In which event block can you overwrite the default value of a PARAMETERS field on the selection screen? Please choose the correct answer. INITIALIZATION START-OF-SELECTION AT SELECTION-SCREEN PROCESS BEFORE OUTPUT.
FORM routines (subroutines) can be used in which program types? There are 4 correct answers to this question. Class pools Subroutine pools Executables Module pools Type groups Function groups Interface pools.
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.
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. /n /h /hx Jdbg.
Which statement will interrupt the processing of the current screen and branch to new screen? Please choose the correct answer. CALL SCREEN <NNNN None of the above SET SCREEN LEAVE TO SCREEN.
What must you do to create a singleton class? There are 2 correct answers to this question Set the class instantiation to private. Store the reference to the singleton objection an instance attribute of the object itself. Define the class as abstract. Create the objection a static method of the class itself.
What are the differences between displaying in a full screen and in a container? There are 2 correct answers to this question. Any type of ALV allows the use of event handling. Only a full-screen ALV allows the use of event handling. The container requires the use of an additional object (a container control). The only difference is that the container name must be specified when creating the ALV object. Only an ALV in a container allows the use of event handling. The full screen requires Dynpro programming.
Which of the following is a true statement? There are 3 correct answers to this question. Packages use interfaces and visibility to make their elements visible to other packages. The transport layer is a mandatory input field for the package. All customer repository objects have to be assigned to a package. A package can be nested.
Which of the following settings can you define for both structures and transparent tables in the ABAP Dictionary? There are 2 correct answers to this question. Storage type Enhancement category Size category Foreign key relationships.
You created a class by inheriting from a superclass. The superclass contains a public instance method do_something. You want to redefine method do_something. What must you do? Please choose the correct answer. Declare the method FINAL. Leave the signature of the method unchanged. Call the implementation in the superclass. Change the visibility of the method to PROTECTED.
Which statement ends a screen sequence and starts from initial screen? Please choose the correct answer. SET SCREEN 0 LEAVE SCREEN LEAVE TO SCREEN CALL SCREEN.
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 f. DATA: r TYPE p DECIMALS 2, a TYPE iVALUE 201, b TYPE iVALUE 200, c TYPE p.
Which actions release a database lock? There are 7 correct answers to this question. The display of an SAP screen ENQUEUE_ An “/n” in the command field The display of a dialog message type A COMMIT WORK ROLLBACK WORK A SUBMIT A CALL TRANSACTION A call to a function module The display of a dialog message type E.
A user runs an ABAP program, enters an incorrect value on the selection screen, and chooses Execute. Which event block must send the error message in order to display the selection screen again? Please choose the correct answer AT SELECTION-SCREEN AT SELECTION-SCREEN ON HELP-REQUEST AT SELECTION-SCREEN OUTPUT AT SELECTION-SCREEN ON VALU E-REQUEST.
Which selection screen elements allow user input in ABAP Reports? There are 2 correct answers to this question SELECT-OPTIONS SELECTION-SCREEN COMMENT SELECTION-SCREEN BLOCK PARAMETERS.
How many work areas are available in the Debugger? Please choose the correct answer. 12 15 9 7.
Report abuse Consent Terms of use