Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ONABAP 7.5 null

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
ABAP 7.5 null

Description:
SAP ABAP 7.5 Certification

Author:
AVATAR

Creation Date:
18/07/2020

Category:
Others

Number of questions: 80
Share the Test:
Facebook
Twitter
Whatsapp
Share the Test:
Facebook
Twitter
Whatsapp
Last comments
No comments about this test.
Content:
Which of the following statements crate a data object? Note: There are 3 correct answers to this question. TYPES CLASS-DATA CONSTANTS CLASS PARAMETERS.
To which of the following can you assign a search help? Note: There are 3 correct answers to this question Structure component Data element Table type Domain Check table.
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? 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 PAl module to copy the data object. Enter the name of a data object in the parameter ID attribute of the screen field. .
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? LOOP...ASSIGNING <field_symbol>... ENDLOOP LOOP...INTO<field symbol> ..ENDLOOP LOOP... REFERENCE INTO<field_symbol>... ENDLOOP LOOP...INTO <field_symbol>TRANSPORT. ..ENDLOOP.
You program uses class CL_GUI_ALV_GRID to generate a classic ALV Grid control. what do you need in your program to react to a user double-clicking a row in the ALV Grid? A handler class A SET HANDLER statement to the event A method call to refresh the display A handler method for the double click event A method call to raise the double click event .
What do you need to consider when creating a secondary index on a table? Note: There are 2 correct answers to this question. The index can be created for specific database systems only. The table will be updated more quickly if you create more indexes The index must always be unique The most frequently selected fields should be at the first positions in the index .
. What is data binding? Connecting the values of user interface elements to the context attributes ofthe corresponding controller Connecting a context node in one controller to a context node in another controller Connecting an outbound plug of one view to the inbound plug of another view Connecting one web dynpro component to another web dynpro component .
Which of the following incomplete ABAP pre-defined data types? Note: There are 3 correct answers to this question T P D N X.
Which of the following program types can contain screens? Function groups Executable programs Module pools Class pools Interface pools.
.What pre-defined ABAP data type is deep? STRING DECFLOAT34 N X .
In which modularization units can you use parameters? a) Event blocks such as START-OF-SELECTION b) Function modules c) Subroutines d) Dialog modules such as PBO modules e) Methods.
What properties will be set when you define a table type in the ABAPDictionary? A.GET/SET Parameter B .Line type C. Access mode D. Primary key.
You have been asked to review the following expression AND which processes character string result = find( val = 'abapABAP' sub ='A' occ = 2 case = 'X' ). what is the expected value of result? 2 6 1 4.
YOU want to deploy a program that processes character type data. when you implement the program you can either use the classical string statements or the newer string expressions and functions what are the main benefits of using the newer string expressions and string functions? Note: There are 2 correct answers to this question You can improve the performance significantly you can write code that is very easy to read and understand you can write compact syntax instead a long sequence of statements you can reduce the number of intermediate variables.
What must you do create a singleton class? Note: There are 2 correct answers tothis question. Create the object in a static method of the class itself Define the class as abstract Store the reference to the singleton object of an instance attribute of the objectitself. Set the class instantiation to private .
You are creating an inspection using the code inspector, which entities can you select for inspections? Note: There are 3 correct answers to this question. Contents of a transport request Contents of a single object Contents of a package Contents of an object set Contents of named user'sobjects.
How do you create lock objects and lock modules for use in ABAP programs thataccess the database? Use the function Builder to create the lock modules and the lock objects. Use the ABAP Dictionary to create the lock objects. Use the functions Builder to create the lock modules. Use the ABAP Dictionary to create the lock objects. The lock module are created automatically. Use the Function Builder to create the lock modules. The lock objects arecreated automatically.
what ABAP statements can you use to create instance of class CL_GUI_CUSTOM_CONTAINER in an ABAP program? DATA: go_container TYPE REF TO CL_GUI_CUSTOM_CONTAINER.CREATEDATA go_container... DATS: go_container TYPE CL_GUI_CUSTOM_CONTAINER.CREATE DATA go_container... DATA: go_container TYPE REF TO CL_GUI_CUSTOM_CONTAINER. CREATEOBJECT go_container... DATA: go_containerTYPE CL_GUI_CUSTOM_CONTAINER CREATE OBJECTgo_container... .
You run an executable program that contains the following code: DATA: gv_var1TYPE n LENGTH3. gv_var2TYPE n LENGTH 3 VALUE'456' START OF SELECTION. CLEAR gv var2 gv_var2=g When the assignment to gv_var2 is executed As soon as the program is loaded into the internal session when value '123' is assigned to the data object At the beginning of the START-OF-SELECTION event block .
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? Declare the method FINAL Leave the signature of the method unchanged Change the visibility of the method to PROTECTED Call the implementation in the superclass .
You write the following ABAP statement SELECT SINGLE carrid AND connid cityfrom AND cityto FROM spifi INTO@gs_spfi WHERE carrid=@ps_car AND connid = @pa_con how are the selected fields placed into rget Strucure gs_spfir? Into fields with the same name and same type into fields with the same type from left to night Into fields with the same name.
What type of ABAP Dictionary view is implemented as an INNER JOIN? Maintenance view Help view Projection view Database view.
Where can you define data types that can be used throughout the system? Note: There are 2 correct answers to this question. In a function module In a method In a global interface In the ABAP Dictionary.
Which are the functions of the ABAP dispatcher? Note:There are 3 correct answers to this question. it requests the data from the database or the buffers. it integrates the presentation layer. it performs a roll-in and roll-out of user context it saves the processing requests in request queues it distributes the requests among the work processes.
Which data types are incomplete ABAP standard data types? Note: There are 3 correct answers to this question. C N P I D.
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 to calculate the value of","? Note: There are 2 correct answers to this question. DATA r TYPE D DECIMALS 2. a TYPE I VALUE 201. b TYPE i VALUE 200. C TYPE f. DATA r TYPE f. a TYPE i VALUE201. b TYPE i VALUE200. C type f DATA r Type p. a type i VALUE 201. b type i VALUE200. C type f. DATA r TYPE A DECIMAL2; a TYPE I VALUE201. b TYPE I VALUE200. c TYPEP .
What are the reasons to use modularization? Note: There are 3 correct answers to this question. Easier maintenance Promotes reusability Improved performance Portability across DBMS improved transparency .
How can you search for classic Business Add-ins(BADIs)? Note: There are 2 correct answers to this question. Search in the application program for the GET BADI statement. 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 CALL BADI statement.
which additions to the PARAMETERS statement can you use to fill the input field on the selection screen with a suggested value? Note:There are 2 correct answers to this question. DEFAULT MODIF ID VALUE-CHECK MEMORY ID .
What transactions can be used to carry out modification adjustments after asystem upgrade? Note: There are 2 correct answers to this question. SPAU SPAD SPAU_ENH SPOD .
YOU have created the following. A class with an event definition. A Handler class with a method ON_EVT that handles this event. A report that instantiates the handler class .A message statement that raises an exception However AND the report does not react to the event. how do you analyze this issue? Note: There are 3 correct answers to this question. Check if the handler method is registered to the correct event Check if the handler method ON_EVT is defined in a subroutine of the report. Check if the event is triggered by setting a breakpoint at the MESSAGE...RAISING...statement Check if the event is triggered by setting a breakpoint at the RAISE EVENT statement. Check if the implementation of the handler method ON_EVT contains the desired logic.
What are some of the new features of open SQL in SAPNetweaver7.5? Note: There are 2 correct answers to this question. CASE expressions Full join string expressions Intersection.
In which event block can you overwrite the default value of a PARAMETERS field onthe selection screen? PROCESS BEFORE OUTPUT INITIALIZATION AT SELECTION-SCREEN START-OF-SELECTION .
Which database objects can you create in the ABAPDictionary? Note: There are 2 correct answers to this question. Views Logical databases Foreign key relationships Indexes .
What are the advantages of defining text symbol in executableprograms? Note: There are 2 correct answers to this question. They are easier to maintain than literals. They can store up to 256 characters They facilitate multilingual functionality The text of the text symbol can be changed atruntime .
You enhance an SAP standard global class by defining a post-method for an SAP method The original SAP method has an EXPORTINC parameter named PAR1.What type of parameter is PAR1 in the post-method? IMPORTING EXPORTING RETURNING CHANGING .
What can be implemented using an implicit enhancement option? Note: There are 3 correct answers to this question. Overwrite methods for global SAP classes Additional parameters in SAP function modules Overwrite methods for SAP function modules Additional attributes for global SAP classes Additional exceptions in SAP functionmodules.
How is data shared between web Dynpro controllers? Note: There are 2 correct answers to this question. By using context mapping from a view controller to a custom controller. By using context mapping from a view controller to a component controller. By using context mapping from a view controller to another viewcontroller. By using data binding from a view controller to another viewcontroller. .
Which enhancements can provide a screen exit? Note: There are 3 correct answers to this question. Classic BADIS Explicit enhancement points Explicit enhancement sections New BADIS Customer exits .
You define database view A and maintenance view B in the ABAP Dictionary. what restrictions apply to these views? Note: There are 2 correct answers to this question. The join of both A and B is an inner join The tables joined in A must have foreign key relationships. The tables joined in B must have foreign key relationships. Only A can be used in the FROM clause of a SELECTstatement. .
Which of the following components are part of SAP Net weavers AS ABAP version 7.1x and higher? Note: There are 2 correct answers to this question. Message server Software Deployment manager (SDM) SAP GUI for java Internet communication manager (ICM) .
A user runs an ABAP program AND enters an incorrect value on the selection screen AND and chooses Execute. which event block must send the error messages in order messages in order to display the selection screen again? AT SELECTION-SCREEN ON HELP-REQUEST AT SELECTION-SCREEN AT SELECTION-SCREEN OUTPUT AT SELECTION-SCREEN ON VALUE REQUEST .
What are some advantages of using open SQL? Note: There are 2 correct answers to this question. The application server buffer is NOT used. it can be used with any supported DBMS. All standard SQL commands can be used.' Syntax is checked at design time. .
you want to define a field symbol that will be assigned to a character string. which generic types can you use? Note: There are 3 correct answers to this question. any Csequence clike any table.
In which order do you implement a new BADI? 1.Create Enhancement spot implementation 2.create BAdl Implementation 1.create BAdl Implementation 2.Create Enhancement spot implementation 1.create Enhancement project 2.create BAdl Implementation 1.create BAdl Implementation 2.Create Enhancement project .
What parameters can you set when you run the code inspector? Note: There are 3 correct answers to this question. Object set name Work process name Inspection name Check vanant name Background job name.
You write a program that updates a data record in the database using the following statement. UPDATE scarr FROM Is_scarr, which of the following tasks does the database interface perform? Note: There are 2 correct answers to this question. it checks the authorization of the current user it translates the statement to native SQL It restricts the access to the logon client it applies a logical lock to the updated data record. .
What must exist before you can create a new transportable functionmodule? Note: There are 3 correct answers to this question. Function group Change request Type group Module pool Package.
Which of the following statements correctly define a data object with the type of data element s_conn_id? Note: There are 3 correct answers to this question. DATA gv_id TYPE REF TO S_conn_id. DATA gv_id TYPE s_conn_id PARAMETER pa_id TYPE s_conn_id DATA gv_id LIKE S_conn_id. CONSTANTS gc_id TYPE s_conn_id VALUE'0400.
Which ABAP Dictionary object can reference a domain? Data element Structure Table type Database table field .
Which of the following setting can you define for both structures and transparent tables in the ABAP Dictionary? Note: There are 2 correct answers to this question. Enhancement category Size category Storage type Foreign key relationships .
What type of method is generated automatically by the web Dynpro Explorer whenyou assign an action to a button Ul element? Event handler method Standard hook method Ordinary method Supply function .
What is the purpose of the enqueue work process? it processes update requests it processes requests triggered by an active user it processes logical locks requests. it processes requests for a print output .
54. What do enhancements spots manage? Note: There are 3 correct answers to this question. Explict enhancement sections classic BADI Explicit enchancement points IMplicit enchancement points New BADIS.
Which of the following standard hook methods exist in all web Dynpro controllers? Note: There are 2 correct answers to this question. Wddobeforenavigation Wddoafterraction Wddoinit Wddoexit.
The code of an executable program does NOT contain any event keywords. whatevent block does the code belong to? START-OF-SELECTION AT SELECTION-SCREEN INITIALIZATION LOAD-OF-PROGRAM .
YOU write a report that displays mass data in a table using the ALV Grid control, which of the following functions can you offer to the user without doing any specific programming? Note: There are 2 correct answers to this question. Change coloumn width and sequence Diosplay details by double clicking on a row Convert and currency amount coloumns Sort and filter the data by any coloumn.
A class is defined as follows CLASS my_class DEFINITION PUBLIC SECTION METHODS do something EVENTS state_changede CLASS-Methods static1 PRIVATE SECTION TYPES t_table Type Standard table OF1001 CONSTANTS gc_const TYPE I VAlue 1 ENDCLASS which components of the class can satic method static1 address directly? Note: There are 2 correct answers to this question. The do_something method The t_table type The gc_const constant The state_changed event .
What can be part of the signature of an instanceconstructor? Note: There are 2 correct answers to this question Exporting parameters Exceptions Importing parameters changing parameters.
YOU have the following class definition: CLASS ICl_airplane DEFINITION PUBLIC SECTION. METHODS: set_passengers. PROTECTED SECTION CONSTANTS c_pos type i.methods get_passengers PRIVATE SECTION DATA mv_passengers TYPE i, METHODS set_attribures ENDCLASS. Which components can be addressed directly from a subclass of class iCL_airplane? Note: There are 3 correct answers to this question. SET PASSENGERS GET_PASSENGERS pos SET_ATTRIBUTES .
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_struc INDEX 1. Whatare the possible type definitions for parameter ct_itab? Note: There are 3 correct answers to this question. Standard Table Sorted Table Index Table Hashed Table Any Table.
Which of the following elements can a string template contain? Note: There are 2 correct answers to this question. Literals String processing statements Functional method calls Functional module calls .
What ABAP Dictionary object allows you to define fixed values? Domain View Lock object Data Element.
You are asked to enhance the GUI status of an SAP standard application. How do you identify which menu exit function code you can use? It starts with a dollarsign($). it starts with an ampersand (&). it starts with an asterisk(*). it starts with a plus(+). .
You call a lock module, which exceptions could the lock module raise when a logical lock CANNOT be set? Note: There are 2 correct answers to this question. CX_SY_DATA_ACCESS_ERROR FOREIGN_LOCK SYSTEM_FAILURE CX_SY_OPEN_SQL_ERROR.
You need to create a piece of code that can be used by multiple programs.which of the following techniques does SAP recommend? Note: There are 2 correct answers to this question. Use a method in a global class. se an include program Use a method in a local class Use a function module in a function group .
. A screen has the following PAl flow logic: PROCESS AFTER INPUT. FIELD A MODULE check_A FIELD B MODULE Check_b CHAIN FIELD:C AND D. MODULE check_CD ENDCHAIN CHAIN FIELD:C AND B MODULE check_CB ENDCHAIN. What happens if the application sends a type E message during the check_CB module processing? The screen is displayed again and the PBO flow logic is processes only fields B andcare ready for input. The screen is displayed again without processing the PBO flowlogic All fields are ready for input. The screen is displayed again Without processing the PBO flowlogic.only fieldsB and care ready for input. The screen is NOT displayed again. processing terminates, and the user must restartthe ABAP program.
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 TableT1 is checked against table T2? 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 field F of table T1 and make table T2 and the foreign key 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 check table.
YOU are making changes to a program that already has transaction code Zzzz linked to it. your colleague is testing transaction code ZZZZ in the same system. When does the changed version of the program becomes visible to your colleague via transaction code ZZZZ? When the syntax of the program is correct When you activate the program When you save the program When you execute the program from the ABAP Editor.
A function module that has 2 classical exceptions is called with actual parameter value in such a way that both exception conditions are fulfilled. how will the runtime systembehave. The first exception that occurs will be raised in the calling program AND sy-subrc has the value specified for the first exception. Both exceptions will be raised in the calling program AND sy-subrc has the value specified for the OTHER option. Both exceptions will be raised in the calling program AND sy-subrc has the value specified for the second exception. NO exceptions will be raised in the calling program AND sy-subrc has the value specified for the OTHER option.
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 tomeet this requirement? CASTING (arg AS type) CAST (arg AS type) CASTING (arg FOR type) CAST(arg FOR type).
Which of the following actions can you perform in both the ABAP Editor and in the ABAP Debugger? Create a breakpoint for a specific line Create a breakpoint for a specific statement Create a breakpoint for a specific Message Create a watch point for a specific variable .
After which statement will the runtime system initialize the ABAP memory? CALL TRANSACTION SUBMIT LEAVE TO TRANSACTION .SUBMIT...AND RETURN.
You have declared a sorted internal table with the columns A AND B AND CAND AND D. The key consists of columns A AND 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? Note: There are 2 correct answers to this question. A and B B and C A AND B AND C and D C and D.
A Customer has asked that you improve performance for a small table with frequent read accesses, what buffering type do you recommend? Single record Primary key Full table Column store .
You have created table ZTAB and you want to create a foreign-key relationship to table SAPTAB Under which conditions is this possible? The check field in ZTAB Must have the same name as the corresponding field of check table SAPTAB The check field in ZTAB Must have the same ABAP Dictionary type as the corresponding field of check table SAPTAB The check field in ZTAB Must have a data element that does NOT Refer to adomain The check field in ZTAB Must have the same domain as the corresponding field of check table SAPTAB.
In which of the following source code blocks can you define local dataobjects? Note: There are 3 correct answers to this question. Function module PBO module Static method Subroutine LOAD-OF-PROGRAM.
Which of the following rules must you follow when you create a static constructor? Note: There are 3 correct answers to this question. You must define the method as public. you CANNOT define parameters you can define class-based or classic exceptions. You must name the method CONSTRUCTOR.
Your program perform a database update by calling function modules in an updatetask. which ABAP statement can be used in the program to discard all update requests for the current SAP Logical unit of work(LUW)? Note: There are 3 correct answers to this question. MESSAGE TYPE E MESSAGE TYPE W MESSAGE TYPE X MESSAGE TYPE A ROLLBACK WORK.
You want to read a single line of an internal table using table expression itab[...]. how can you identify the line? Note: There are 3 correct answers to this question. Specify a regular expression Specify a secondary table key Specify a free table key Specify the line index Specify a WHERE Condition.
Report abuse Consent Terms of use