Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ON액기스

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
액기스

Description:
kkamangeo ppaengeo

Author:
youjae
(Other tests from this author)

Creation Date:
09/02/2019

Category:
Others

Number of questions: 68
Share the Test:
Facebook
Twitter
Whatsapp
Share the Test:
Facebook
Twitter
Whatsapp
Last comments
No comments about this test.
Content:
Which of the following is correct? The screen attributes can be modified in the PROCESS BEFORE OUTPUT and PROCESS AFTER INPUT event blocks. None of the above. The screen attributes can be modified in the PROCESS BEFORE OUTPUT event block. The screen attributes can be modified in the PROCESS AFTER INPUT event block.
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?(2) ROLLBACK WORK. EXIT. MESSAGE axxx(nnn) DELETE UPDATE. MESSAGE exxx(nnn).
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? (2) TYPES: BEGIN OF gty_flight DATA BEGIN OF gs_flight DATA: BEGIN OF gs_flight TYPES: BEGIN OF gs_flight.
The software component for a customer package can be... Database layer HOME Any SAP software component (i.e., SAP_APPL, SAP_BASIS, SAP_HR, etc.) Application Layer.
Which of the following ABAP standard types are numeric? (3) N D F P I.
You want to use a BAdI to extend the functions of an SAP program. Which of the following tasks is necessary? Call the BAdI Define an interface for the BAdI. Create an enhancement project using a customer exit. Implement a class that implements the BAdI interface.
You are writing an ABAP declaration using the data element S_CARR_ID. Which of the following statements correctly define a data object? (2) CONSTANTS gc_qf TYPE s_carr_id VALUE ‘QF’ DATA gv_id TYPE s_carr_id DATA gv_id LIKE s_carr_id DATA gv_id TYPE s_carr_id DEFAULT ‘QF’.
With what can you simulate multiple inheritance? REDEFINITION INHERITING FROM CLASS CATEGORY INTERFACES.
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 an ampersand (&) It starts with a dollar($) It start with a plus (+) It starts with an asterisk (*).
What is the default selection screen number for the ABAP program? 1100 None of the above 1000 100.
When starting the Debugger, what circumstance causes the runtime error DEBUGGING_NOT_POSSIBLE? When more than six sessions are already associated with this login user When more than five sessions are already associated with this login user When the number of debugging sessions on the server exceeds the value defined by the profile parameter rdisp/wpdbug_max_no Starting a non-exclusive mode in a productive system .
Which action on the underlying dictionary objects triggers a database table conversion? Reducing the size of the field. Changing the order of non-key fields Inserting an APPEND structure Inserting a field of type reference.
Which of the following enhancement options does not require any preparation from SAP? Explicit enhancement point New BAdIs Implicit enhancement point Explicit enhancement sections.
How can you improve the performance when accessing a large data volume database table? Define appropriate indexes for the database table. Change the table type in the dictionary Apply the appropriate data class and size category. Switch the database table to fully buffered.
Which assignment will lead to a conversion error? 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. 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 '1.50E4' to a type I data object DATA.gv_c(6) TYPE c VALUE '1.50E4', gv_i TYPE i. gv_i = gv_c. A type P data object to a type F data object DATA.gv_p TYPE p VALUE '15000', gv_f TYPE f. gv_f = gv_p.
Which of the following statements are true?(2). A conversion routine can be assigned to a data element. A conversion routine can be assigned to a domain. You define the value range in the data element. You can enter documentation for the data element in the ABAP Dictionary.
When are the changes to the VB* table transferred to the database? When the main program is executed When the enqueue work process is executed When the update work process is executed When an update function module is executed.
Each button on a Dynpro (screen) requires the assignment of a function code. This function code __________ ? Is used to define global variables that receive a value when the button is clicked. Can be used to identify when the button is clicked by looking for the function code in the screen’s OK_CODE field. Prevents the function code from be assigned to a menu item. Prevents the function code from be assigned to a category item.
In which controller type can you embed a service call? Interface controller Component controller View controller Configuration controller.
What is a plug? (4) Can be defined as default inbound Can be assigned to multiple views Can be defined as a startup Can be defined as outbound controlling multiple inbound plugs Can be defined as inbound and be controlled by multiple outbound plugs Forms the basis of navigation within a Web Dynpro Can be defined as inbound, outbound, or both Can be defined as an exit.
Which of the following statements are true? (2) A database view is implemented as an inner join. A database view is implemented as an outer join. A maintenance view is implemented as an outer join. A maintenance view is implemented as an inner join.
You are using the new debugger and you want to change the content of an internal table. Which actions are allowed? (Choose three) Delete the entire contents of a table. Change row content and press Save (<CTRL> + S). Delete table from memory. Delete the selected rows. Change row content and press Enter (<ENTER>).
Which of the following includes are generated when you create a function group? LxxxxTOP LxxxxO01 LxxxxUXX LxxxxF01.
To benefit from the hash algorithm when accessing a hashed internal table, how do you specify the key? Left aligned, gap free Under-qualified Fully qualified Any key.
Which of the following statements are correct? (3) You can only specify default values for the LOW and HIGH fields of the SELECT-OPTIONS input field. The SELECT-OPTIONS statement creates an internal table with a header line. The internal table is also known as the selection table. You can use the addition NO-DISPLAY to hide the input field on the selection screen. The structure of the selection table created with SELECT-OPTIONS has four components: SIGN, OPTION, LOW, and HIGH.
Which of the following variables is the self-reference variable in ABAP OO? ME SENDER SUPER THIS.
What is the result of the following arithmetic operation? DATA: intTYPEI. int=5*(3/10). 0 1.5 1 2.
Which options do you have to read data from multiple tables while using a SELECT statement? Pooled tables Nested loop statements Database views Join statements Nested select statements.
Which statements are true about a class that has granted friendship to another class? (4) The friend has access to public attributes. All classes the friend has granted friendship access status to also have the same access. All classes that inherit from the friend (subclasses) also have the same access. The friend has access to private attributes. The friend has access to protected attributes.
which of the following ABAP code lines is valid? (3) STATICS s_mantr TYPE mantr VALUE ‘100’ DATA gc_mantr TYPE mantr DEFAULT ‘100’ SELECT-OPTIONS s_mantr TYPE mantr DEFAULT ‘100’ PARAMETERS p_mantr TYPE mantr DEFAULT ‘100’ CONSTANTS gc_mantr TYPE mantr VALUE ‘100’.
Which of the following predefined ABAP types is incomplete? STRING XSTRING P F.
Which elementary field types are considered a character type? (5) XSTRING STRING X N C F I T D.
Which of the following ABAP statements throws an error at the syntax check? DATA variable DATA variable(5) TYPE p. DATA variable(5) TYPE n. DATA variable(5) TYPE t.
In which modularization units can you use parameters? (3) Methods Event blocks such as START-OF-SELECTION Function modules Subroutines Dialog modules such as PBO modules.
Which of the following statements are correct? You can call private methods within the public methods without reference to the object or class. Static methods can be defined in both the public and private visibility section of the class. None of the above Only public methods can be addressed outside the class. Class methods assigned to the public visibility section can be accessed outside the class using the static component selector and the class name.
Which data type is allowed for the reference field of the Currency field? CURR CUKY UNIT DEC.
Which of the following ABAP data types are compatible with the generic character-type CLIKE? (3) N STRING DECFLOAT C XSTRING.
What is variable-length structure called? Nested link structure Link structure Flat structure Nested structure.
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? (3) Check if the event is triggered by setting a breakpoint at the MESSAGE … RAISING statement. Check if the implementation of the handler method ON_EVT contains the correct logic 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 RAISE EVENT statement Check if the handler method is registered.
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-CORRESPONDING…… TO…… WRITE……TO…… MOVE…. TO….. MOVE……?TO…….
What must you do to define a database view using the ABAP Dictionary?(3) Choose the database tables from where the view acquires data. Define the join conditions between the tables. Define selection criteria for the view. Choose the fields from the tables that should be part of the view. Define buffering settings for the underlying database tables.
Which statements about ABAP are true? ABAP keywords and additions must be in uppercase. Each statement must end with a period. Each statement must begin with a keyword. Each statement cannot begin with a keyword.
You want to define two database tables with different structures. Both tables should contain the fields CHANGE_DATE and CHANGE_TIME. How do you implement this in order to minimize the maintenance effort? Define the two fields in one database table and copy them to the other database table. Define an append structure with these two fields and assign this append structure to both database tables. Define the two fields in each database table separately. Define a structure with these two fields and include this structure in both database tables.
If you are using external debugging (debugging of HTTP and RFC requests, which arrive in your ABAP system), what will the Debugger do? May or may not stop, depending on external factors. Do not stop when the external breakpoint is reached. Always stop when the external breakpoint is reached. Never stop; external breakpoints operate on users other than your own.
What are characteristics of a hashed internal table? (2) It can be accessed using the key. It must have a unique key. It can have a non-unique key. It can be accessed using the index.
What are the prerequisites when creating an append structure for a standard SAP table? (2) The fields in the append structure should star with YY or ZZ The table cannot have any fields of type FLTP The enhancement category of the table is NOT set to ‘Not enhacable’ The table must be copied before the append structure can be created.
Which controller types can exist within a Web Dynpro component? (3) Window controller User controller Component controller Application controller View controller.
How do you embed a subscreen in a main screen? Use SET SUBSCREEN in a PBO module of the main screen. Use CALL SUBSCREEN in a PBO module of the main screen Use SET SUBSCREEN in the flow logic of the main screen. Use CALL SUBSCREEN in the flow logic of the main screen. .
What is the Web Dynpro programming model is based on? Business Server Pages (BSPs) Classic Dynpro programming Model View Controller (MVC) Internet Transaction Server (ITS).
Which parameter types can be used in the signature of a functional method? (2) CHANGING RETURNING IMPORTING EXPORTING.
Which rules do you have to consider when working with pooled tables? (2) An append structure can be created Only key fields should be used in WHERE condition Only key fields should be used in ORDER BY clauses All fields can be used in indexes.
Which of the following ABAP dictionary types can you use to define domains? (3) NUMC CHAR FLOAT DEC DATE.
Which screen in the ABAP Dictionary allows you to log data changes to the table? Utilities Database Object Database Utility Delivery and Maintenance tab Technical Settings Attributes tab Utilities Settings.
Which of the following standard types is numeric? (3) Decfloat32 I F P.
Which of the following is a true statement? (3) Local repository objects can be transported. Client-specific customization objects are assigned to the customizing request. All transportable objects have to be assigned to a package. Repository objects and cross-client customization objects are assigned to the workbench request. Inactive objects can be transported. .
Which of the following generic types can you use to define a field symbol that will be assigned to a character string? (3) Type xsequence Type any Type csequence Type any table Type clike .
You need to perform a downcast. What should you do? (2) Assign a subclass reference to a superclass reference. Perform the downcast only if an upcast has already been done for the object reference Use the operator “=“. Catch the exception CX_SY_MOVE_CAST_ERROR. .
You have to overwrite spaces in a string with the letter ‘A’. Which of the following statements can you use? (3) REPLACE SHIFT LEFT OVERLAY CONDENSE TRANSLATE .
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. Add a client-side event in the view Create and link plugs between the views Set the interface property for key fields Edit the handler method in the view controller.
Why should you bundle database updates in your dialog programs? To be able to rollback database changes performed in the same dialog step To allow you to use SAP locks to ensure data consistency To process the SAP LUW within the database LUW to ensure data consistency To avoid database locks set by an SQL statement that persists until the end of the program .
Which actions release a lock object (with a default value for _SCOPE)?(5) The display of a dialog message type A An “/n” in the command field A call to a function module ROLLBACK WORK DEQUEUE_ The display of a dialog message type E A CALL TRANSACTION A SUBMIT COMMIT WORK The display of an SAP screen.
Which type of view cannot be used in a search help? Candidates key view Maintenance view Database view Help view.
What is unique about a singleton?(2) It must be instantiated using a static protected constructor. It cannot be defined as FINAL. It must be instantiated using a protected instance constructor. It must be instantiated using a public instance constructor. It must be defined as FINAL. It must be instantiated using a static public constructor. It must be instantiated using a private instance constructor. It must be instantiated using a static private constructor.
You need to create a piece of code that can be used by multiple programs. Which of the following techniques for modul arization does SAP recommend?(2) A method in a local class A subroutine in a program A method in a global class A function module in a function group.
Which of the following statements are true? None of the above. Implicit enhancement options allow you to enhance interface parameters for function modules and methods without modifying the repository object. An implicit enhancement point can be used to insert code in an SAP pro- gram and is always available to the customer. Implicit enhancement can be used to enhance SAP objects developed prior to SAP NetWeaver 7.0.
For a given date(variable lv_date), you want to find all the connections from Frankfurt to Sydney with exactly one stopover. You want to fly from the stopover city to Sydney on the same day you arrive in the stopover city. Table ZFLIGHTS hold the following information about flights. -flightid: primary key -cityfrom:departure city -datefrom: departure date -timefrom:departure time -cityto:destination city -dateto:destination date -timeto:destination time Which of the following Open SQL Queries can you use to find all the possible stopover cities? SELECT cityto INTO TABLE lt_cities FROM zflights AS destination WHERE cityfrom IN (SELECT DISTINCT cityto FROM zflights WHERE dateto = destination~datefrom AND timeto < destination~timefrom AND cityfrom = ‘FRANKFURT’ AND datefrom = lv_date ) AND destination~cityto = ‘Sydney’ SELECT cityfrom INTO TABLE lt_cities FROM zflights AS destination WHERE cityto IN (SELECT DISTINCT cityfrom FROM zflights WHERE dateto = destination~datefrom AND timeto < destination~timefrom AND cityfrom = ‘FRANKFURT’ AND datefrom = lv_date ) AND destination~cityto = ‘Sydney’ SELECT DISTINCT cityto INTO TABLE lt_cities FROM zflights AS destination WHERE cityfrom IN (SELECT cityto FROM zflights WHERE dateto = destination~datefrom AND timeto < destination~timefrom AND cityfrom = ‘FRANKFURT’ AND datefrom = lv_date ) AND destination~cityto = ‘Sydney’ SELECT DISTINCT cityfrom INTO TABLE lt_cities FROM zflights AS destination WHERE cityfrom IN (SELECT cityto FROM zflights WHERE dateto = destination~datefrom AND timeto < destination~timefrom AND cityfrom = ‘FRANKFURT’ AND datefrom = lv_date ) AND destination~cityto = ‘Sydney’.
Which of the following can you use to enhance SAP standard tables and structures with fields? Customizing includes Append structures Field exits Append search helps.
Which of the following must you do to be able to use a Business Add-in(BADI)?(2) Create the BADI implementation Write the code for methods Modify the adapter class Activate the enhancement project.
Report abuse Consent Terms of use