option
Cuestiones
ayuda
daypo
buscar.php
TEST BORRADO, QUIZÁS LE INTERESE: svbz
COMENTARIOS ESTADÍSTICAS RÉCORDS
REALIZAR TEST
Título del Test:
svbz

Descripción:
sap test

Autor:
alberto
OTROS TESTS DEL AUTOR

Fecha de Creación:
21/01/2023

Categoría: Otros

Número Preguntas: 232
COMPARTE EL TEST
COMENTARNuevo Comentario
No hay ningún comentario sobre este test.
Temario:
How do you program an input validation on a selection screen that allows users to correct their input? Implement the check at the event AT SELECTION-SCREEN OUTPUT. In case of an input error, a type E MESSAGE must be displayed. Implement a check at the event AT SELECTION-SCREEN. In case of an input error, a type E MESSAGE must be displayed. Implement the check at the event END-OF-SELECTION. In case of an input error, a type E MESSAGE must be displayed. Implement the check at the event AT SELECTION-SCREEN. In case of an input error, a type A MESSAGE must be displayed.
You want to use a BAdI to extend the functions of an SAP program. Which of the following tasks is necessary? Call the BAdI. Create an enhancement project using a customer exit. Define an interface for the BAdI. Implement a class that implements the BAdI interface.
How is an ABAP program with several dialog steps executed? The program is always executed in just one dialog work process without roll out. The ABAP dispatcher takes over the entire execution without assigning any work process. The program is always executed in just one dialog work process with roll out. Usually, dialog steps are assigned to different dialog work processes.
You want to display a dialog box in your ABAP program. Which statement do you use? WINDOW 200 STARTING AT 5 5. SET SCREEN 200. CALL SCREEN 200. CALL SCREEN 200 STARTING AT 5 5.
When analyzing a program, which tasks can you perform using the code inspector? (Choose three.) Discover unused variables. Execute the extended program check. Determine used database tables. Inspect the memory consumption. Evaluate the time needed for program execution.
Evaluate the time needed for program execution. What is the name of the corresponding main program? ZATP SAPLZATP SAPMZATP SAPFZATP.
What happens when an authorization check fails? The program is terminated. The system field SY-SUBRC is set to a value other than zero. A type E message is displayed. A CX_AUTH_FAILED type exception is raised.
You have implemented a class CL_CUSTOMER in which you defined a private attribute. From where can you access this attribute directly? (Choose two.) From all methods of all subclasses of CL_CUSTOMER From all methods of the class CL_CUSTOMER From all methods of a class to which CL_CUSTOMER grants friendship From any program using the class CL_CUSTOMER.
In which modularization units can you use parameters? (Choose three.) Event blocks such as START-OF-SELECTION Function modules Subroutines Dialog modules such as PBO modules Methods.
Which statement is used to generically define the data reference variable z1? data z1 type any data z1 type any table data z1 type ref to PA0001 data z1 type ref to data.
For which of the following requirements can you implement a functional method? (Choose two.) A handler method for an event that has a returning parameter A method to set an instance attribute with one importing parameter and no other parameters A factory method that returns an object reference A private static helper method that returns a single value as the result of an algorithm.
Which parameter types can be used in the signature of a functional method? (Choose two.) EXPORTING IMPORTING RETURNING CHANGING.
Which of the following tasks does the BADI implementing class perform? Filtering Sequencing Inserting Deleting.
What options do you have when setting a watchpoint? (Choose two.) Stop at predefined conditions for a specific variable. Stop at predefined conditions for all variables. Stop at any change of all variables. Stop at any change of a specific variable.
The code of an executable program does NOT contain any event keywords. What event block does the code belong to? AT SELECTION-SCREEN LOAD-OF-PROGRAM INITIALIZATION START-OF-SELECTION.
In which event block can you overwrite the default value of a PARAMETERS field on the selection screen? INITIALIZATION AT SELECTION-SCREEN PROCESS BEFORE OUTPUT START-OF-SELECTION.
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? AT SELECTION-SCREEN ON VALUE-REQUEST AT SELECTION-SCREEN ON HELP-REQUEST AT SELECTION-SCREEN OUTPUT AT SELECTION-SCREEN.
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? 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. 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. Only fields B and C are ready for input.
What are the REASONS to use modularization? There are 3 correct answers to this question Easier maintenance Promotes reusability Portability across DBMS Improved transparency Improved performance.
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? Into fields with the same name and same type From left to right Into fields with the same type Into fields with the same name.
You want to develop 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? (Choose two.) You can write compact syntax instead of a long sequence of statements. You can reduce the number of intermediate variables. You can write code that is very easy to read and understand. You can improve the performance significantly.
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? 1 2 4 6.
Which additions to the PARAMETERS statement can you use to fill the input field on the selection screen with a suggested value? (Choose two.) MODIF ID VALUE-CHECK MEMORY ID DEFAULT.
You have the following class definition: CLASS lcl_airplane DEFINITION. PUBLIC SECTION. METHODS: set_passengers. PROTECTED SECTION. CONSTANTS: c_pos type i value 100. METHODS: get_passengers. PRIVATE SECTION. DATA: mv_passengers TYPE i. METHODS: set attributes. ENDCLASS. Which components can be addressed directly from a subclass of class lcl_airplane? (Choose three.) MV_PASSENGERS SET_ATTRIBUTES C_POS SET_PASSENGERS GET_PASSENGERS.
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 become visible to your colleague via transaction code ZZZZ? When you save the program When the syntax of the program is correct When you activate the program When you execute the program from the ABAP Editor.
What can be part of the signature of an instance constructor? (Choose two.) Importing parameters Changing parameters Exporting parameters Exceptions.
After which statement will the runtime system initialize the ABAP memory? CALL TRANSACTION LEAVE TO TRANSACTION SUBMIT...AND RETURN SUBMIT.
A function module that has 2 classical exceptions is called with actual parameter values in such a way that both exception conditions are fulfilled. How will the runtime system behave? Both exceptions will be raised. In the calling program, sy-subrc has the value specified for the OTHERS option. No exception will be raised. In the calling program, sy-subrc has the value specified for the OTHERS option. Both exceptions will be raised. In the calling program, sy-subrc has the value specified for the second exception. The first exception that occurs will be raised. In the calling program, sy-subrc has the value specified for the first exception.
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, the report does not react to the event. How do you analyze this issue? (Choose three.) Check if the implementation of the handler method ON_EVT contains the desired logic. Check if the handler method ON_EVT is defined in a subroutine of the report. Check if the handler method is registered to the correct event. Check if the event is triggered by setting a breakpoint at the RAISE EVENT statement. Check if the event is triggered by setting a breakpoint at the MESSAGE ... RAISING ... statement.
Which of the following elements can a string template contain? (Choose two.) Function module calls Functional method calls Literals String processing statements.
How can you search for classic Business Add-Ins (BAdIs)? (Choose two.) Search in the application program for the CALL BADI statement. Search the relevant component in the Implementation Guide (IMG). Search in the application program for the GET BADI statement. Search in the application program for the method GET_INSTANCE of class CL_EXITHANDLER.
What are the advantages of defining text symbols in executable programs? (Choose two.) The text of the text symbol can be changed at runtime. They can store up to 256 characters. They facilitate multilingual functionality. They are easier to maintain than literals.
You enhance an SAP standard global class by defining a post-method for an SAP method. The original SAP method has an EXPORTING parameter named PAR1. What type of parameter is PAR1 in the post-method? CHANGING IMPORTING RETURNING EXPORTING.
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 "r"? (Choose two.) DATA: r TYPE p DECIMALS 2, a TYPE i VALUE 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 p DECIMALS 2, a TYPE i VALUE 201, b TYPE i VALUE 200, c TYPE p. DATA: r TYPE f, a TYPE i VALUE 201, b TYPE i VALUE 200, c TYPE f.
What must exist before you can create a new transportable function module? (Choose three.) Change request Type group Package Module pool Function group.
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? Call the implementation in the superclass. Declare the method FINAL. Change the visibility of the method to PROTECTED. Leave the signature of the method unchanged.
To which of the following can you assign a search help? (Choose three.) Structure component Table type Check table Domain Data element.
To which ABAP Dictionary definition can you assign fixed values? Data element Field of a transparent table Component of a structure Domain.
What is required to fully specify a Table Type in the ABAP Dictionary? (Choose three.) Access type Table key Table size Line type Header line.
What can you create using the ABAP Dictionary? (Choose three.) Domains Type pools Transparent tables Field symbols Internal tables.
What must you do to define a database view using the ABAP Dictionary? (Choose three.) Choose the database tables from where the view acquires data. Define the join conditions between the tables. Choose the fields from the tables that should be part of the view. Define selection criteria for the view. Define buffering settings for the underlying database tables.
In which database table type is there a one-to-one relationship between the Dictionary table definition and the relevant physical table in the database? Cluster table Pooled table Transparent table Internal table.
You define database view A and maintenance view B in the ABAP Dictionary. What restrictions apply to these views? (Choose two.) The join type of both A and B is 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.
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? CAST(arg AS type) CASTING(arg AS type) CASTING(arg FOR type) CAST(arg FOR type).
What type of ABAP Dictionary view is implemented as an INNER JOIN? Database view Help view Projection view Maintenance view.
How do you create lock objects and lock modules for use in ABAP programs that access the database? Use the ABAP Dictionary to create the lock objects. Use the Function Builder to create the lock modules. Use the Function Builder to create the lock modules. The lock objects are created automatically. 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.
Which database objects can you create in the ABAP Dictionary? (Choose two.) Foreign key relationships Views Logical databases Indexes.
What properties will be set when you define a table type in the ABAP Dictionary? (Choose three.) Primary key Line type GET/SET Parameter Change document Access mode.
Which ABAP Dictionary object can reference a domain? Database table field Data element Structure Table type.
Which of the following settings can you define for both structures and transparent tables in the ABAP Dictionary? (Choose two.) Storage type Size category Foreign key relationships Enhancement category.
You create a domain in the ABAP Dictionary. How can you use this domain? To define technical properties of data elements To describe the value range of a table field or structure component To define data objects in ABAP programs To define the data type of a table field or structure component.
Which of the following Data Types are allowed in ABAP? (Choose two.) DECFLOAT64 DECFLOAT16 DECFLOAT34 DECFLOAT32.
Which of the following statements dynamically changes the data type of field z1? Assign z1 to <fs> casting Assign z1 to <fs> Move z1 to <fs> Unassign <fs>.
Which of the following ABAP data types are compatible with the generic character-type CLIKE? (Choose three.) STRING N C XSTRING DECFLOAT.
Which data type is allowed for the reference field of the Currency field? UNIT CUKY DEC CURR.
Where can you define global data types that are visible system-wide? (Choose three.) In a method of a global class In the ABAP Dictionary In a function module In a global class In a global interface.
Which ABAP statement using the local type gty_1 correctly defines a data object? (Choose two.) DATA gv_1 TYPE gty_1. DATA gv_1 LIKE gty_1. CONSTANTS gc_1 TYPE gty_1 VALUE '1'. DATA gv_1 TYPE gty_1 DEFAULT '1'.
Which assignment will lead to a conversion error? 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. 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. 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.
Which of the following predefined ABAP types is incomplete? F P XSTRING STRING.
What do global types and local types have in common? Documentation Field labels Search help Technical information.
Which of the following variables is the self-reference variable in ABAP OO? THIS SENDER ME SUPER.
When do you need to use the GROUP BY clause in the SELECT statement? If you want to redefine the sequence of the columns in the result set If you want to use aggregate functions and all components in the field list are aggregate functions If you want to use ORDER BY to specify a sub-order If you want to use aggregate functions and at least one component in the field list is a column identifier.
What is the root class in the RTTS inheritance tree? CL_ABAP_ELEMDESCR CL_ABAP_TYPEDESCR CL_ABAP_DATADESCR CL_ABAP_COMPLEXDESCR.
What can you use to achieve polymorphism? Events Subroutines Inheritance Reports.
Which of the following statements create a data object? (Choose three.) CONSTANTS CLASS-DATA TYPES PARAMETERS CLASS.
In which of the following source code blocks can you define local data objects? (Choose three.) Function module Subroutine PBO module LOAD-OF-PROGRAM Static method.
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? 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.
Which of the following statements correctly define a data object with the type of data element s_conn_id? (Choose three.) CONSTANTS gc_id TYPE s_conn_id VALUE '0400'. DATA gv_id TYPE REF TO s_conn_id. DATA gv_id TYPE s_conn_id. PARAMETERS pa_id TYPE s_conn_id. DATA gv_id LIKE s_conn_id.
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 data object gv_var1? When value '123' is assigned to the data object When the assignment to gv_var2 is executed As soon as the program is loaded into the internal session At the beginning of the START-OF-SELECTION event block.
What pre-defined ABAP data type is deep? DECFLOAT34 STRING X N.
Which data types are incomplete ABAP standard data types? (Choose three.) N I C P D.
Which of the following are incomplete ABAP pre-defined data types? (Choose three.) T X N D P.
You always want to check the user authorization for data entered in an input field of a selection screen. Where do you do this? In the event block AT SELECTION-SCREEN In the event block AT SELECTION-SCREEN OUTPUT In the event block INITIALIZATION In the event block AT SELECTION-SCREEN on VALUE-REQUEST.
An executable ABAP program contains a standard selection screen and uses the event blocks AT SELECTION-SCREEN, AT SELECTION-SCREEN OUTPUT, INITIALIZATION, START-OF- SELECTION. In which sequence will ABAP runtime call these event blocks? 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. AT SELECTION-SCREEN 4. START-OF-SELECTION 1. INITIALIZATION 2. AT SELECTION-SCREEN OUTPUT 3. START-OF-SELECTION 4. AT SELECTION-SCREEN.
You have written a program to output data using the ALV grid control. Which sequence of steps should be executed at runtime? 1. Create a container object 2. Create a grid object 3. Pass data to the grid object 1. Create a grid object 2. Pass data to the grid object 3. Create a container object 1. Pass data to the grid object 2. Create a container object 3. Create a grid object 1. Create a grid object 2. Create a container object 3. Pass data to the grid object.
What do you need to consider when creating a secondary index on table? Note: There are 2 correct answers to this question The most frequently selected field should be the first positions in the index 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.
Which enhancement can provide a screen exit? Note: There are 3 correct answers to this question. Explicit enhancement sections Customer exits Classic BADIS New BADIS Explicit enhancement points.
What are some advantages of using open SQL? Note: There are 2 correct answers to this question Syntax is checked at design time The application server buffer is NOT used All standard SQL commands can be used It can be used with any supported DBMS.
What do enhancements spots manage? Explicit enhancement sections Implicit enhancement points Explicit enhancement points Classic BADI New BADIS.
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 of the 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? Note: There are 3 correct answers to this question. 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? Note: There are 3 correct answers to this question Event blocks such as START-OF-SELECTION Function modules Subroutines Dialog modules such as PBO modules Methods.
What properties will be set when you define a table type in the ABAP Dictionary? Note: There are 3 correct answers to this question GET/SET Parameter Line type Access mode 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 to this 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 object itself 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's objects.
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=gv_var1 gv_var1 ='123' At what point does the system reserve memory for data object gv_var2? 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 .
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.
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 a system 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 SAP Netweaver7.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 on the selection screen? PROCESS BEFORE OUTPUT INITIALIZATION AT SELECTION-SCREEN START-OF-SELECTION .
Which database objects can you create in the ABAP Dictionary? 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 executable programs? 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 at runtime .
You enhance an SAP standard global class by defining a post-method for an SAP method The original SAP method has an EXPORTIN C 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 function modules .
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 view controller. By using data binding from a view controller to another view controller.
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 SELECT statement. .
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.
Which controller types can exist within a Web Dynpro component? There are 3 correct answers to this question. Application controller Window controller View controller Component controller User controller.
You are required to add customer source code in the SAP delivered object using the new enhancement framework without modification. How can you find the available enhancement? There are 3 correct answers to this question. Perform a program-related global search for a customer exit Perform a program-related global search for GET BADI Select from the list of application-related BAdIs or enhancement spots in the SAP Ppplication Hierarchy Search for a Business Transaction Event in the Customizing tree (transaction SPRO) Select from the list of freely selected BAdIs or enhancement spots in the Repository Information System.
Which of the following are features of the Context in Web Dynpro? There are 2 correct answers to this question Data is transferred form one Context to another by firing plugs Data is shared between controllers through Context mapping Every Web Dynpro controller has multiple Contexts Every Web Dynpro controller has one Context.
What does a Web Dynpro component contain? There are 3 correct answers to this question. Exactly one interface controller Component controller UI elements A context Multiple views within a window.
What process is used to establish the automatic transport of data between the view controller's context attributes and the UI element in its layout? Context mapping Data binding Data migration View assembly.
How do you add fields to an SAP-delivered transparent table without Modification? Use the database utility to enhance the definitionon the database directly Define a structure containing the new fields and include it in the table definition Create an append structure containing the news fields Add the new fields to the table definition.
What type of method is generated automatically by the Web Dynpro Explorer when you assign an action to a button UI element? Please choose the correct answer. Event handler method Standard hook method Ordinary method Supply function.
What can be exposed in the component interface of a Web dynpro component? Public attributes of WINDOW controllers Custom methods of the component controller Context nodes of WINDOW controllers Standard hook methods of the component controller.
What do enhancement spots manage? There are 3 correct answers to this question Classical BAdIs Implicit enhancement points New BAdIs Explicit enhancement sections Explicit enhancement points.
A view can only be displayed in which circumstances? It can always be displayed It has been embedded in a window It contains an inbound ans outbound plug.
Each component has an interface; of what does this interface consist? There are 2 correct answers to this question. Interface controller Interface context Interface view Data Container.
The statements CALL BADI and GET BADI are used for which type of BAdIs? New BAdI Classical DDic Classical BAdI None of the above.
You want to add a field ZZPRICE to the SAP standard transparent table EKKO. Which of the following actions result in an enhancement of the SAP standard? There are 2 correct answers to this question. Add ZZPRICE to the customizing include for the table Create an append structure and add ZZPRICE to it Insert ZZPRICE at the end of the table Insert ZZPRICE into an SAP structure for the table.
How would you find out if an application program offers a program exit? Please select all the correct answers that apply. 4 are correct Look for a customer exist in the SAP reference IMG within an application area Use the Application Hierarchy Search for the character string CUSTOMER-FUNCTION ABAP Workbench Use the Repository Information System.
Which of the following is a true statement? There are 2 correct answers to this question. An access ins required to implement business add-ins An access key is required to enhance an SAP application using a user exit An access is required to implement an implicit enhancement point An access key is required to modify SAP repository objects.
You are establishing the business logic layer for a Web Dynpro Component. Which service types are available in the Service Call wizard? There are 3 correct answers to this question. Transaction code Class method Web service proxy Function group Function module.
When does the lifetime of a component controller begin and end? It last from creating data within the controller to cover the whole period during which the COMPONENT IS IN USE It beging within the Web Dynpro component and ends within 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 It begins first time the Web Dynpro application is called at runtime and ends when the Web Dynpro application that called and instantiated the component ends.
What transactions can be used to carry out modification adjustments after system upgrade? Note there are 2 correct answers to this question SPOD SPAU_ENH SPAU SPDA.
You are required to add customer source code in the SAP delivered object using the new enhancement framework without modification. How can you find the available enhancement? There are 3 correct answers to this question. Search for a Business Transaction Event in the Customizing tree (transaction SPRO) Perform a program-related global search for a customer exit Perform a program-related global search for GET BADI Select from the list of freely selected BAdIs or enhancement spots in the Repository Information System Select from the list of application-related BAdIs or enhancement spots in the SAP Ppplication Hierarchy.
What can be implemented using an implicit enhancement option? There are 3 correct answer to this question Additional attributes for global classes Additional exceptions in SAP function modules Overwrite methods for SAP function modules Overwrite methods for global SAP classes Additional parameters in SAP function modules.
What transactions can be used to carry out modification adjustments after a system upgrade? There are 2 correct answers to this question Object Navigator (Transaction SPAU_ENH) to adjust ABAP Dictionary objects Modification Adjustments: Dictionary Object Selection (Transaction SPDD) to adjust ABAP Dictionary objects Spool Administration: Initial Screen (Transaction SPAD) to adjust ABAP Repository objects Modification Adjustments: Object Selection (Transaction SPAU) to adjust ABAP Repository objects.
What does a Web Dynpro component contain? There are 3 correct answers to this question. Multiple views within a window Component controller Exactly one interface controller UI elements A context.
How do you add fields to an SAP-delivered transparent table without Modification? Use the database utility to enhance the definitionon the database directly Create an append structure containing the news fields Define a structure containing the new fields and include it in the table definition Add the new fields to the table definition.
What can be exposed in the component interface of a Web dynpro component? Public attributes of WINDOW controllers Standard hook methods of the component controller Context nodes of WINDOW controllers Custom methods of the component controller.
A view can only be displayed in which circumstances? It can always be displayed It contains an inbound ans outbound plug It has been embedded in a window.
Each component has an interface; of what does this interface consist? There are 2 correct answers to this question. Interface controller Data Container Interface context Interface view.
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 variant name Background job name.
What must exist before you can create a new transportable function module? 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 when you 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.
The code of an executable program does NOT contain any event keywords. what event 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 Display 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? 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 instance constructor? 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. What are 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 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 Use 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 and care 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 fields B and C are ready for input The screen is NOT displayed again. processing terminates, and the user must restart the 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 system behave. 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 to meet 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, B, 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 you want to create a foreign key relationship to the table SAPTAB under which condition is this possible? There are 2 correct answers to this question. Check field in ZTAB must have a data element that does not refer to a domain The text in ZTAB must have the same name as the corresponding fields of check table SAPTAB. The check field in ZTAB must have the same domain as the corresponding field of check table SAPTAB. The check field in ZTAB must have the same ABAP dictionary type as the corresponding fields of check table SAPTAB.
In which of the following source code blocks can you define local data objects? 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 update task. 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? Specify a regular expression Specify a secondary table key Specify a free table key Specify the line index Specify a WHERE Condition.
What is the allowed length of the ABAP Dictionary data type DF34_RAW? Please choose the correct answer. The allowed length is between 1 and 34 digits The allowed length is between 1 and 31 digits. The allowed length is between 0 and 33 digits. The allowed length is 34 digits.
Which you should specify in a non-Unicode system when opening a file in TEXT MODE? There are 2 correct answers. The ENCODING addition The byte order The code page.
Each component has an interface; of what does this interface consist? There are 2 correct answers. Interface view Interface context Interface controller Data Container.
Which of the following standards are implemented in SAP NetWeaver AS to support Web services? There are 3 correct answers to this question. WDSL USSI XML SOAP Web server.
You have written a method implementation containing the following access to an internal table defined as a changing parameter of the method. READ TABLE ct_itab INDEX 1 TRANSPORTING NO FIELDS. What are the possible type definitions for parameter ct_itab? Note there are 3 correct answers to this question. hashed table any table standard table index table sorted table.
Which of the following statements create a data object? Note there are 3 correct answers to this question. Types Constants Class Parameters Class – data.
What must before you can create a new transportable function module? There are 3 correct answers to this question. Package Function group Module pool Exception class Transport request or change request.
You have created table ZTAB you want to create a foreign key relationship to the table SAPTAB under which condition is this possible? There are 2 correct answers to this question. 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 a domain The check field in ZTAB Must have the same domain as the corresponding field of check table SAPTAB.
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 must you do to create a singleton class? There are 3 correct answers to this question Define the class as abstract Set the class instantiation to private Instantiate the class in a static method of the class itself Implement the IF_UMM_SINGLETON interface in the class Define the class as final.
Which of the following data types are predefined ABAP data types? There are 3 correct answers to this question. DECFLOAT34 STRING XSTRING FLOAT DECIMALS.
When are the changes to the VB* table transferred to the database? When the update work process is executed When the main program is executed When an update function module is executed When the enqueue work process is executed.
Which steps are needed when implementing the singleton concept for class instantiation with minimum coding? There are 3 correct answers to this question. Define the instantiation of the class as private. Create an instance of the class in a static constructor. Define the class as abstract. Save the instance of the class in a static attribute. Create an event that returns the instance of the class.
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 Concurrent write accesses are supported Memory bottlenecks result in runtime errors and have to be caught Concurrent read accesses are supported Data is saved as tables of objects.
What is the default selection screen number for the ABAP program? 1000 100 1100 None of the above.
Which parameter types can be used in the signature of a functional method? There are 2 correct answers to this question. EXPORTING IMPORTING RETURNING CHANGING.
You need to perform a downcast. What should you do? There are 2 correct answers to this question. Catch the exception CX_SY_MOVE_CAST_ERROR Use the operator "=". Use the operator "?=" Assign a subclass reference to a superclass reference.
The software component for a customer package can be... HOME Any SAP software component (i.e., SAP_APPL, SAP_BASIS, SAP_HR, etc.) Application Layer Database layer.
DOG is a subclass of ANIMAL. You have created a variable of type ANIMAL that references an instance of the DOG class. Which of the following statements can you use to copy this reference to a new variable of type DOG? MOVE.... TO..... MOVE......?TO...... WRITE......TO...... MOVE-CORRESPONDING...... TO......
If you are using external debugging (debugging of HTTP and RFC requests, which arrive in your ABAP system), what will the Debugger do? Always stop when the external breakpoint is reached. May or may not stop, depending on external factors. Do not stop when the external breakpoint is reached. Never stop; external breakpoints operate on users other than your own.
You created a transparent table and during activation got a warning message "Enhancement category for table missing". What do you have to do to eliminate the warning message? Change the Data Class and Size category in the technical settings. Select any option other than Not Classified from the enhancement category Provide the correct reference field for the Currency or Quantity field. Select the option Not Classified from the enhancement category.
Which boundary conditions lead to improved access time to an internal table? There are 3 correct answers to this question. Left justified part of key for sorted tables Fully qualified key for sorted tables Index access for hashed tables Left justified part of key for hashed tables Index access for standard tables.
To benefit from the hash algorithm when accessing a hashed internal table, how do you specify the key? Under-qualified Left aligned, gap free Fully qualified Any key.
What is unique about a functional method?There are 5 correct answers to this question. It must contain a returning parameter. It can contain an importing parameter. It can contain an exporting parameter. It can contain a changing parameter. It can be used in logical expressions. It can be used in SELECT statements. It must be a singleton.
What is the allowed length of the ABAP Dictionary data type DF16_DEC? The allowed length is between 1 and 15 digits. The allowed length is 16 digits. The allowed length is between 0 and 16 digits. The allowed length is between 0 and 15 digits.
Which components belong to an elementary search help? There are 2 correct answers to this question. Fixed values Import / export parameters Selection method Attachment to a field.
To which context object is the attribute LEAD_SELECTION_INDEX related? Supply function Node Attribute Element.
In an ABAP program you have the following code sequence: DATA var TYPE n LENGTH 1.FIELD -SYMBOLS <fs> TYPE cASSIGN var TO <fs> CASTING Which type is used to cast the assigned memory area? The type of <fs> The default type STRING The type of var The default type I.
Each ABAP program starts with an introductory statement. Which statements are correct? There are 2 correct answers to this question. The introductory statement must be the first line in the program. The introductory statement must be the first statement in the program. The introductory statement must never be modified. The introductory statement can be modified.
In which controller type can you embed a service call? Component controller Interface controller View controller Configuration controller.
You want to move a transport request from the development system to the subsequent system. Which of the following are prerequisites for this? There are 2 correct answers to this question. The extended program check must show no warnings. All objects included in the transport request must be activated. The transport request must be released All tasks of the transport request must be assigned to the same user.
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. EXIT. ROLLBACK WORK. MESSAGE axxx(nnn). MESSAGE exxx(nnn). DELETE UPDATE.
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 Create several implementations Change the name Change the signature Redefine the implementation.
Which of the following is a true statement? There are 2 correct answers to this question. An access key is required to implement business add-ins. An access key is required to modify SAP repository objects. An access key is required to enhance an SAP application using a user exit. An access key is required to implement an implicit enhancement point.
Which view types can you use to join two tables with an OUTER join? There are 2 correct answers to this question. Database view Projection view Maintenance view Help view.
Which of the following function types in a GUI status are reserved for internal use? There are 2 correct answers to this question. H- HELP REQUEST E- EXIT T- TRANSACTION S- SYSTEM.
Which SELECT statement will always bypass the SAP table buffers? SELECT ... ENDSELECT. SELECT ... SINGLE ... SELECT ... INTO TABLE ... SELECT ... FOR UPDATE ...
Which of the following steps are required to set up a shared memory area? There are 3 correct answers to this question. Declare a catalog object Enable multiple versions of an area root class Call the attach_for_write method of area root class Set the root object Generate an area root class.
Which of the following are true statements? There are 3 correct answers to this question. A reference table and field are required for fields with the data types QUAN and CURR. Table fields can be assigned to an ABAP Dictionary data type directly. Table fields can be assigned to a data element. Search helps can be defined for a table field that is assigned to a predefined data type.
When should you use a hashed internal table? There are 2 correct answers to this question. When accessing using the left-justified part of the key When accessing by secondary key When accessing mainly single records When accessing always by primary key When accessing by index.
What are the ADVANTAGES of modularization? There are 3 correct answers to this question Performance Reusability Profitability across DBMS Maintainability Transparency.
Which of the following Data Types are allowed in ABAP? There are 2 correct answers to this question. DECFLOAT64 DECFLOAT16 DECFLOAT34 DECFLOAT32.
With what can you simulate multiple inheritance? CLASS CATEGORY INTERFACES REDEFINITION INHERITING FROM.
In the CALL CUSTOMER-FUNCTION 'nnn' statement, nnn is a three-digit number used in SAP programs for which of the following types of enhancement? New BAdIs Customer exits Business add-ins User exits.
You are required to add customer source code in the SAP delivered object using the new enhancement framework without modification. How can you find the available enhancement? There are 3 correct answers to this question. Perform a program-related global search for a customer exit. Search for a Business Transaction Event in the Customizing tree (transaction SPRO). Select from the list of application-related BAdIs or enhancement spots in the SAP Application Hierarchy. Perform a program-related global search for GET BADI. Select from the list of freely selected BAdIs or enhancement spots in the Repository Information System.
What does a non-exclusive debugging mode mean? There are 4 correct answers to this question. Debugging is not possible between the statements SELECT and ENDSELECT because the database cursor needs to be closed using a COMMIT. Owing to the commit, inconsistent datasets can occur in the database. Someone else is debugging the same source code. It may be used anywhere in the landscape. Debugging is not possible for conversion or field exits. A roll-out is forced in the application after each Debugger view.
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 the entire contents of a table. Delete the selected rows. Change row content and press Save (<CTRL> + S). Delete table from memory. Change row content and press Enter (<ENTER>).
What is the difference between the INITIALIZATION and AT SELECTION-SCREEN OUTPUT events? INITIALIZATION is only processed once.- AT SELECT-SCREEN OUTPUT can be processed multiple times INITIALIZATION can change the properties of the screen fields- AT SELECTION-SCREEN OUTPUT cannot change the properties of the screen field INITIALIZATION can overwrite the default value of a PARAMETERS field- AT SELECTIION-SCREEN OUTPUT can overwrite the default values of a PARAMETERS field INITIALIZATION cannot change pushbutton texts- AT SELECTION-SCREEN OUTPUT can change pushbutton texts.
You want to define data structures to hold two fields with data elements s_carr_id and s_carrname. Which of the following declarations can be used to define this data structure? There are 2 correct answers to this question. DATA: BEGIN OF gs_flight TYPES: BEGIN OF gty_flight TYPES: BEGIN OF gs_flight DATA BEGIN OF gs_flight.
Which desktops are part of the new ABAP debugger? There are 3 correct answers to this question. Break./Watchpoints Objects Session Desktop 1 List.
Which data element property do you set so that the system logs changes to the content of fields with this data element? PARAMETER ID Documentation Change document Input history.
Which of the following customer modifications options are available in the table maintenance generator?n There are 2 correct answers to this question. Search helps Maintenance screens Append searches Events.
What is the difference between a value table and a check table? No difference; they are the same thing. A value table is a check table after a foreign key is defined. A value table is defined in the domain, whereas a check table is defined in the data element. A check table is defined in the domain, whereas a value table is defined in the data element. A value table does not exist.
When does the lifetime of a Web Dynpro component begin and end? It begins when instantiated and it ends when the program ends or the object is freed. It begins the first time it is called at runtime, and it ends with the Web Dynpro application that called and instantiated the component ends. It begins each time it is called, and it ends when the component completes. It ends each time it is called, and it ends when the component completes.
You have created a Web Dynpro view that shows data for airline connections between cities. You want to display flight data for a specific date in a different view after the user select a date and presses a button. Which of the following actions you must perform? There are 2 correct answers to this question. Set the interface property for key fields Edit the handler method in the view controller Add a client-side event in the view Create and link plugs between the views.
How can you add a session breakpoint to your program? There are 2 correct answers to this question. Set a breakpoint in the ABAP editor Execute command /h Set a breakpoint in the ABAP editor and select Save. Set a breakpoint in the ABAP debugger and press F8.
Denunciar Test