Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ONbinioni_test

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
binioni_test

Description:
binioni_test

Author:
Binioni
(Other tests from this author)

Creation Date:
03/11/2022

Category:
Others

Number of questions: 85
Share the Test:
Facebook
Twitter
Whatsapp
Share the Test:
Facebook
Twitter
Whatsapp
Last comments
No comments about this test.
Content:
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 csequence Type xsequence Type any Type clike Type any table.
What features are provided by the database interface? There are 3 correct answers to this question. Data consistency check using foreign key relationships Access to SAP table buffers Syntax check of Native SQL commands Conversion of Open SQL statements from ABAP statements into the corresponding database statements Database independence of application programs.
what must exist before you can create a new transportable function module? There are 3 correct answers to this question. type group function group package change request module.
In a subclass, you want to redefine a method of the super class. Which of the following conditions must be fulfilled? There are 2 correct answers to this question. The subclass method has same visibility as the super class method The subclass method has a lower visibility than the super class method The superclass method is an instance method The super class method is abstract.
Which of the following program types can contain screens? There are 3 correct answers to this question Interface pools Executable programs Function groups Module pools Class pools.
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 Function modules Internal tables Business functions.
Where are fixed values for fields stored? Please choose the correct answer. Domain Structure Data element Table Field.
what are some of new features of open SQL netweaver 7.5 There are 2 correct answers to this question. intersection full join case expression string expressions.
You write a report that displays mass data in a table. You decide to use the ALV Grid control (class CL_GUI_ALV_GRID) instead of a classical list display with WRITE statements. Which of the following functions can you offer to the user without doing any specific programming There are 2 correct answers to this question Change column width and sequence Display details by double-clicking on a row Sort and filter the data by any column Convert currency amount columns.
Which of the following characters is the first of a menu exit function code? Please choose the correct answer - * & +.
which of the following elements can a string template contain? There are 2 correct answers to this question string procesing statements functional module calls functionbal method calls Literals.
you want to read single line an internal table using table expresions itab[..]. how can you identify the line? There are 3 correct answers to this question specify a free table key specify a regbular expression specify secondary table key specify of where condition specify the line index.
Your selection screen can be modified at which event? There are 1 correct answers to this question none of the above AT SELECTION SCREEN AT SELECTION SCREEN ON <field_name> AT SELECTION-SCREEN OUTPUT.
what must you do create singleton class? There are 2 correct answers to this question set the class instantiation to the private create object in static method of the class itself store the reference to the singleton object of an instance attribute of the it self define the class a abstact.
What can you create using the ABAP Dictionary? There are 3 correct answers to this question. Transparent tables Field symbols Domains Internal tables Type pools.
Which database objects can you create in the ABAP Dictionary? There are 2 correct answers to this question Projection views Logical databases Indexes Foreign key relationships.
You have created the following repository objects: - A class with an event definition - A handler class with a method ON_EVT which handles this event - A report that instantiates the handler class The report does not react to the event. How do you analyze this issue? There are 3 correct answers to this question. 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 correct logi Check if the handler method is registered.
Which of the following tasks does the BADI implementing class perform? Please choose the correct answer. Deleting Filtering Sequencing Inserting.
which of the following incomplete ABAP predefined data types? There are 3 correct answers to this question. X N P D T.
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. LOOP AT <itab> REFERENCE INTO <field_symbol>. ENDLOOP. LOOP AT <itab> ASSIGNING <field_symbol>. ENDLOOP. LOOP AT <itab> TRANSPORTING INTO <field_symbol>. ENDLOOP. LOOP AT <itab> INTO <field_symbol>. ENDLOOP.
You call a lock module Which exceptions could the lock module raise when a logical lock CANNOT be set? There are 2 correct answers to this question CX_SY_OPEN_SQL_ERROR SYSTEM_FAILURE CX_SY_DATA_ACCESS_ERROR FOREIGN_LOCK.
Which of the following actions can you perform in both the ABAP editor and the ABAP debugger? created a breakpoint for a specific message create as breakpoint for a specific statements create breakpoint for a specific line create watchpoint for a specific variable.
What do enhancement spots manage? There are 3 correct answers to this question Implicit enhancement points Explicit enhancement sections Classic BAdIs New BAdIs Explicit enhancement points.
When does the lifetime of a component controller begin and end? Please choose the correct answer. It begins the first time the Web Dynpro application is called at runtime and ends when the Web Dynpro application that called and instantiated the component ends. It lasts from creating data within the controller to cover the whole period during which the component is in use. It begins with the Web Dynpro component and ends with the Web Dynpro application that called it. It ends the first time the Web Dynpro application is called at runtime and ends when the Web Dynpro application that called and instantiated the component ends.
You r program performs a data base 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 ROLLBACK WORK MESSAGE TYPE A MESSAGE TYPE X MESSAGE TYPE E MESSAGE TYPE W.
You can use the logical expression IS SUPPLIED for any formal parameter passed to which modularization unit? There are 3 correct answers to this question. Static method Function module Subroutine (FORM routine) Instance method.
To which ABAP Dictionary definition can you assign fixed values? Please choose the correct answer. Field of a transparent table Domain Data element Component of a structure.
you have created a screen on which the user enters data that is to be inserted into table T1. how do you enseure that the content of field F in Table T1 is checked against T2? Create a foreign key for the assigned fiesld F of table T1 in the table T2 and make table T2 the check table Create a foreign key for the assigned field of field F of Table T1 in the table T2 and make table t1 the check table Create a foreign jey for field F of table t1 and make table t2 the check table Create a foreign key for field F of table t1 and make table t2 and the foreign key table.
you have writen a metyhd implementation conining the following acces to an internal table defined as a changin parameter of the method READ TABLE ct_struct INDEX 1. what are the possible type definitions for parameter ct_itab? There are 3 correct answers to this question. sorted table standard table index table any table.
where can you define global data types that are visible system-wide? There are 3 correct answers to this question. in the abap dictyinary in a method of a global class in a global interface in a global class in a funvtion module.
Your program uses the class CL_GUI_ALV_GRID to generate a classic ALV Grid Control What do you need in your program to react to a use double-clicking a row in the ALV Grid? There are 3 correct answers to this question A method call to refresh the display A handler method for the double_click event A method call to create the event handler A handler class A SET HANDLER statement to register the handler to the event.
What is the purpose of the enqueuer work process? Please choose the correct answer. It processes user entries It processes update requests It translates Open SQL statements It manages logical locks in the lock table.
Which of the following statement correctly define a date object which the type of data element s_conn_id? There are 3 correct answers to this question DATA gv_id TYPE REF TO s_conn_id PARAMETER gv_id TYPE s_conn_id DATA gv_id TYPE s_conn_id CONSTANTS gv_id TYPE s_conn_id VALUE '0400' DATA gv_id LIKES s_conn_id.
In which modularization units can you use parameters? There are 3 correct answers to this question Subroutines Methods Dialog modules such as PBO modules Function modules Event blocks such as START-OF-SELECTION.
What type of methos is generated automatically by the web Dynpro explorer when you assign an action to a button UI elemtn? Supply function Ordinary method Event handler method Standard hook method.
Which of the following statements create a data object? There are 3 correct answers to this question class-data Constants types class parameters.
What can be defined using an implicit enhancement option? There are 3 correct answers to this question Additional attributes in global SAP classes Replacement for SAP function modules Additional exceptions in SAP function modules Additional parameters in SAP function modules Replacements for global SAP methods.
You run an executable program which 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. As soon as the program is loaded into thie internal session When the value ‘123’ is assigned to the data object When the assignment to gv_var2 is executed At the beginning of the START-OF-SELECTION event block.
What transactions can be used to cary out modification adjustment after a system upgrade? There are 2 correct answers to this question Modification adjustment: Dictionary Object Selection ( Transaction SPDD) to adjust ABAP Dictionary objects Modification: Adjustment: Object Selection (Transaction SPAUD) to adjust ABAP Repository object. Spool Administration: initial Screen (Transaction SPAD) to adjust ABAP Repository objects Objects Navigator(transaction SPAU_ENH) toi adjust ABAP Dictionary Objects.
you have declared a sorted internal table with the column A,B,C and D. the key consists of column A,B ,C in this order. Which combination of columns in the where clause loop statements allows the system to optimise the process to the table ? There are 2 correct answers to this question B and C C and D A,B,C and D A and B.
Which components belong to an elementary search help? There are 2 correct answers to this question Fixed values Selection method Attachment to field Import / export parameters.
Which of the following components are part of SAP netweavers AS ABAP version 7.1x and higther? There are 2 correct answers to this question Message server Internet communication manager (ICM) Software deployment manager (SDM) SAP GUI for JAVA.
you have been asked to review the following expressions and which process character string result = find(val="abapABAP" sub= 'A' occ = 2 case = 'X'). 1 2 4 6.
Which additions to the PARAMETERS statements can you user to fill the input fields on the selection screen with a suggested value? There are 2 correct answers to this question MODIFID DEFAULT MEMORY-ID VALUE-CHECK.
What are the advantages of defining texts symbols in executable programs? There are 2 correct answers to this question They are easier to maintain than literals They facilitate multilingual functionality Then can store up to 256 characters The same text symbol can be used by other programs.
what parameters can you set when you run the code inspector ? There are 3 correct answers to this question check variant name work process name object set name inspection name.
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 fields in the field list of the SELECT statement copied to the target structure gs_spfli? Please choose the correct answer. They are copied to fields with the same type They are copied to fields with the same name They are copied from right to left They are copied from left to right.
Which of the following rules must you follow when you create a static constructor? There are 3 correct answers to this question You can use ONLY importing parameters or exceptions You CANNOT use parameters or exceptions You must name the method CONSTRUCTOR You must name the method CLASS_CONSTRUCTOR You can ONLY define static constructors in the public section.
What do you need to have in your program to respond to the DOUBLE_CLICK event raised by an instance of the CL_GUI_ALV_GRID class? There are 3 correct answers to this question. A CATCH statement to capture the event A handler method for the event A method to read the registration table A handler class A SET HANDLER statement to register the handler to the event.
Which are the functions ABAP dispatcher There are 3 correct answers to this question. it request the data from database or the buffers it distributes the request among the work processes it integrates the presentation layer It performs a roll-in and roll-out of user context It saves the processing request in the request queue.
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 in the Repository Information System and choose Enhancements - >Customer Exits Use the SAP menu Tools -> ABAP Workbench -> Development -> Business Object Builder Search for suitable entries in the relevant component in the Implementation Guide (IMG).
What are the advantages of modularization? There are 3 correct answers to this question Reusability Transparency Profitability across DBMS Performance Maintainability.
Where can you define data types that can be accessed directly by all ABAP repository objects in an SAP system? There are 2 correct answers to this question In the ABAP dictionary In a function module In a method In a global class.
After which statement will the runtime system initialize the ABAP memory Please choose the correct answer. SUBMIT… AND RETURN CALL TRANSACTION LEAVE TO TRANSACTION SUBMIT.
What ABAP statements can you use to create an instance of the class CL_GUI_CUSTOM_CONTAINER in an ABAP program? Please choose the correct answer. DATA: go_container TYPE REF TO CL_GUI_CUSTOM_CONTAINER. CREATE OBJECT go_container….. DATA: go_container TYPE CL_GUI_CUSTOM_CONTAINER. CREATE OBJECT go_container…. DATA: go_container TYPE REF TO CL_GUI_CUSTOM_CONTAINER. CREATE DATA go_container… DATA: go_container TYPE CL_GUI_CUSTOM_CONTAINER. CREATE DATA go_container….
A screen has the following PAI flow logic: PROCESS AFTER INPUT FIELD A MODULE check_A FIELD A MODULE check_B CHAIN. FIELD:C,D MODULE check_CD ENDCHAIN FIELD:C,B. MODULE check_CB ENDCHAIN What happens if the application senda a type E message during the check_CB module processing? Please choose the correct answer. Note: Answers of this question are not verified by our experts, please study yourself and select the appropriate answers. 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 logic flow. 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 NOT displayed again. Processing terminates and the user must restart the ABAP program.
Which of the following standard hook methods exist in all Web Dynpro controllers? There are 2 correct answers to this question Wddoinit Wddobeforenavigation Wddoafteractions Wddoexit.
You have the following class definition CLASS CL_AIRPLANE DEFINITION PUBLIC SECTION. METHOS: set_passengers. PROTECTED SECTION. CONSTANST c_post type i. METHODS get_passengers. PRIVATE SECTION. DATA mv_passengers TYPE Ii. METHODS set_attributes. ENDCLASS. Which components can be addrresed directly from sybcalss of class CL_AIRPLANE? There are 3 correct answers to this question GET PASSENGERS SET PASSENGERS SET ATTRIBUTES C_POS.
what do you need to consider when creating a secondary index on a table ? There are 2 correct answers to this question the most frequently fields should be at the first positions in the index the table will be updated more quickly if you create more indexes the index can the created for specific database systems only the index must always be unique.
what can you do with the code inspector? There are 2 correct answers to this question create an object set to represent the programs and objects to be inspected choose from only the performance, security and user interface check categories create your own insepections object sets and check variants create only local inspections, objects sets and check variants .
Which of the following predefined data types are character types? There are 3 correct answers to this question X P D T N.
you have been asked by costumer 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. CAST(arg AS type) CASTING(arg AS Type) CASTING (arg FOR type) CAST(arg FOR type).
in which event blog can you override the default value of PARAMETERS field on the selection screen? Process before output initialization at selection screen start-of-selection.
What are some of the advantages of using OPEN SQL? There are 2 correct answers to this question All standard SQL commands can be used The application server buffer is NOT used It can be used with any DBMS Syntax is checked at design time.
You enhance an SAP standard global class by defining a post-method for an SAP method. The original SAP method has an EXPORT parameter named PARM1. Which parameters does the post-method have? Please choose the correct answer. A CHANGING parameter named PARM1 A RETURNING parameter named PARM1 An OMPORT parameter named PARM1 An EXPORT parameter named PARM1.
Each component has an interface of what does this interface consist? There are 2 correct answers to this question interface view Data Container Interface context Interface controller.
What is data binding? Connecting one Web Dynpro component to another Web Dynpro component Connecting the values of user interface elements to the context attributes of the corresponding controller Connecting an outbound plug on one view to the inbound plug of another view Connecting a context node in one controller to a context node in another controller.
Which of the following statements dynamically changes the data type of field z1? Please choose the correct answer. Assign z1 to <fs> Assign z1 to <fs> casting Unassign <fs> Move z1 to <fs>.
What must you do to create a singleton class? There are 3 correct answers to this question Instantiate the class in a static method of the class itself Define the class as final Define the class as abstract Set the class instantiation to private Implement the IF_UMM_SINGLETON interface in the class.
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 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.
you are creating and inspection using the code inspector. which entity can you select for inspection? There are 3 correct answers to this question content of single object content of an object set contents of transport request content of package content of named user object.
You define a database view A and maintenance view B in the ABAP dictionary. What restrictions apply to these views? There are 2 correct answers to this question Only B can have either a left outer join or an inner join The tables joined in A must have foreign key relationships Only A can be used in the FROM clause of a SELECT statement The tables joined in B must have foreign key relationships.
In which order do you implements a NEW BADI? 1.Create enhancement sport implementation 2. create badi implementation 1.Create badi implementation, 2 credit enhancement project 1.Create enhancement project 2. create badi implementation 1.Create badi implementation 2.Create enhancement sport implementation.
you want to deploy a program that processes character type data. whn you implement the program you can either used cassical string statements or the newer string expressions and functions. what are the main benefit of usins the newer string expressions and string functions? There are 2 correct answers to this question you can write the code that is very easy to read and understand you can reduce the number of intermediate variables you can write compact syntax instead a long sequence of statements you can improve the performance significally.
What type of ABAP Dictionary view is implemented as an INNER JOIN? Please choose the correct answer. Help view Projection view Database view Maintenance view.
In which of the following source code blocks can you define local data objects? There are 3 correct answers to this question AT SELECTION-SCREEN event block PBO module Function module Subroutine Static method.
To which of the following can you assig help? There are 3 correct answers to this question Structure component Domain Table Type Check table Data Element.
Which of the elementary data types is deep? Please choose the correct answer. N X DECFLOAT34 String.
a function module that has to classical exceptions is called wicht actual parameter value in a such a way that both exception conditions are fulfilled. 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-subrec has the value specified fot the OTHER option Both exception will be raised in the calling program and SY-Subrec has the value specified for the OTHER option First exception that ocurrs will be raised in the calling program and sy-subrc has the value specified for first exception.
You write a oprogram that updates a data record in the database using the following statement UPDATE scarr FROM Is scarr. Which of the following task does the database interface perform? There are 2 correct answers to this question It applies a logical log to the update data record it translate this statemen to native sql it restrict the access to the Login client Check authorization of current user.
Which enhancements can provide a screen exit? There are 3 correct answers to this question Customer exits Explicit enhancements points Explicit enhancements points Classic BADIs NEW BADIs.
you are making cahnges to a program that already has a transaction code linked to it. your colleague is testing the tansaction in your development system. At what point can the changed version of the program be tested? when your release the transport request for program when your activate the program when you save the program when you perform a syntax check on the program.
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? There are 2 correct answers to this question DATA: r TYPE p DECIMALS 2, a TYPE i VALUE 201, b TYPE i VALUE 200, c TYPE p DATA: r TYPE p DECMALS 2, a TYPE i VLAUE 201, b TYPE i VALUE 200, c TYPE f. DATA: r TYPE p, a type I VALUE 201, b type I VALUE 200, c type i. DATA: r TYPE f, a TYPE i VALUE 201, b TYPE i VALUE 200, c TYPE f.
You created a class by inheriting from superclass. the superclass contains a public instance method do_something. You want to redefine method do_something. Change the visibility of methods ti PROTECTED Leave the signature of method unchanged Call the implementation in the superclass Declare the method FINAL.
How do you create lock objects and lock modules for use in ABAP programs that access the database? Please choose the correct answer. Use the Function Builder to create the lock modules. The lock objects are created in the program logic Use the ABAP dictionary to create the lock objects. Use the function builder to create the lock modules Use the ABAP dictionary to create the lock objects. The lock modules are created automatically Use the Function Builder to create the lock modules and the lock objects.
Report abuse Consent Terms of use