option
Questions
ayuda
daypo
search.php

atest111

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
atest111

Description:
asdfwefwefasdf

Creation Date: 2022/12/20

Category: Others

Number of questions: 80

Rating:(0)
Share the Test:
Nuevo ComentarioNuevo Comentario
New Comment
NO RECORDS
Content:

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. Response: DATA: go_container TYPE REF TO CL_GUI_CUSTOM_CONTAINER. CREATE DATA go_container…. DATA: go_container TYPE CL_GUI_CUSTOM_CONTAINER. CREATE OBJECT go_container…. DATA: go_container TYPE CL_GUI_CUSTOM_CONTAINER. CREATE DATA go_container…. DATA: go_container TYPE REF TO CL_GUI_CUSTOM_CONTAINER. CREATE OBJECT go_container…..

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. Response: 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 desired logic. Check if the handler method is registered. Check if the event is triggered by setting a breakpoint at the RAISE EVENT statement. Check if the handler method ON_EVT is defined in a subroutine of the report.

Which data types are incomplete ABAP standard data types? There are 3 correct answers to this question. Response: I. N. C. F. P.

Your 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 Response: ROLLBACK WORK. MESSAGE TYPE X. MESSAGE TYPE W. MESSAGE TYPE E. MESSAGE TYPE A.

What is data binding? Please choose the correct answer. Response: Connecting an outbound plug on one view to the inbound plug of another view. Connecting one Web Dynpro component to another Web Dynpro component. Connecting a context node in one controller to a context node in another controller. Connecting the values of user interface elements to the context attributes of the corresponding controller.

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 Note: Answers of this question are not verified by our experts, please study yourself and select the appropriate answers. Response: Create several implementations. Change the name. Change the signature. Redefine the implementation.

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. Response: Enter the name of a data object in the Paramter ID attribute of the screen field. Define a data object in the program with the same name as the screen field. Use a MOVE statement in a PAI module to copy the data to a data object. Use the GET statement in the program to transport the data from the screen field.

Which of the elementary data types is deep? Please choose the correct answer. Response: N. String. DECFLOAT34. X.

What are the advantages of defining texts symbols in executable programs? There are 2 correct answers to this question Response: They facilitate multilingual functionality. Then can store up to 256 characters. The same text symbol can be used by other programs. They are easier to maintain than literals.

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 Response: Only A can be used in the FROM clause of a SELECT statement. The tables joined in A must have foreign key relationships. The tables joined in B must have foreign key relationships. Only B can have either a left outer join or an inner join.

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. Response: 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.

Which database objects can you create in the ABAP Dictionary? There are 3 correct answers to this question Response: views. Logical databases. Indexes. Foreign key relationships.

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. Response: The screen is NOT displayed again. Processing terminates and the user must restart the ABAP program. 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 displayed again and the PBO flow logic is processed. Only fields B and C are ready for input.

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 Note: Answers of this question are not verified by our experts, please study yourself and select the appropriate answers. Response: Type xsequence. Type any. Type clike. Type any table. Type csequence.

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 Response: CX_SY_OPEN_SQL_ERROR. SYSTEM_FAILURE. FOREIGN_LOCK. CX_SY_DATA_ACCESS_ERROR.

What are the advantages of modularization? There are 3 correct answers to this question Response: "실제 시험에선 Improved 등 수식어가 붙어서 나옵니다. Performance. Reusability. Profitability across DBMS. Maintainability. Transparency.

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. Response: Ordinary method. Event handler method. Supply function. Standard hook method.

What type of ABAP Dictionary view is implemented as an INNER JOIN? Please choose the correct answer. Response: Database view. Projection view. Help view. Maintenance view.

Which of the following standard hook methods exist in all Web Dynpro controllers? There are 2 correct answers to this question Response: Wddoinit. Wddoafteractions. Wddobeforenavigation. Wddoexit.

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 Response: Display details by double-clicking on a row. Change column width and sequence. Sort and filter the data by any column. Convert currency amount columns.

What do enhancement spots manage? There are 3 correct answers to this question Response: Implicit enhancement points. Classic BAdIs. Explicit enhancement sections. New BAdIs. Explicit enhancement points.

What do you need to consider when creating a secondary index on a table? There are 2 correct answers to this question Response: The index must always be unique. The table will be updated more quickly if you create more indexes. The most frequently selected fields should be at the first positions in the index. The index can be created for specific database systems only.

After which statement will the runtime system initialize the ABAP memory Please choose the correct answer. Response: SUBMIT… AND RETURN. CALL TRANSACTION. LEAVE TO TRANSACTION. SUBMIT.

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 Response: An EXPORT parameter named PARM1. A CHANGING parameter named PARM1. A RETURNING parameter named PARM1. An OMPORT parameter named PARM1.

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 Note: Answers of this question are not verified by our experts, please study yourself and select the appropriate answers. Response: DATA: r TYPE f, a TYPE i VALUE 201, b TYPE i VALUE 200, c TYPE f. 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.

Which of the following program types can contain screens? There are 3 correct answers to this question Response: Interface pools. Module pools. Executable programs. Function groups. Class pools.

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. Response: " 실제 시험에선 from A to B 라고 나옵니다. They are copied from right to left. They are copied to fields with the same name. They are copied to fields with the same type. They are copied from left to right.

What can be defined using an implicit enhancement option? There are 3 correct answers to this question Response: Replacements for global SAP methods. Additional attributes in global SAP classes. Replacement for SAP function modules. Additional parameters in SAP function modules. Additional exceptions in SAP function modules.

In which of the following source code blocks can you define local data objects? There are 3 correct answers to this question Response: Function module. Subroutine. AT SELECTION-SCREEN event block. Static method. PBO module.

What transactions can be used to carry out modification adjustments after a system upgrade? There are 2 correct answers to this question Response: "실제 시험에선 Transaction code만 나옵니다. Spool Administration: Initial Screen (Transaction SPAD) to adjust ABAP Repository objects. Object Navigator (Transaction SPAU_ENH) to adjust ABAP Dictionary objects. Modification Adjustment: Dictionary Object Selection (Transaction SPDD) to adjust ABAP Dictionary objects. Modification Adjustment: Object Selection (Transaction SPAU) to adjust ABAP Repository objects.

What are some of the advantages of using OPEN SQL? There are 2 correct answers to this question Response: All standard SQL commands can be used. Syntax is checked at design time. It can be used with any DBMS. The application server buffer is NOT used.

You have located a new (kernel) Business Add-in(BAdI) in an SAP standard application? What must you create to implement the BAdI, and in which order? Please choose the correct answer. Note: Answers of this question are not verified by our experts, please study yourself and select the appropriate answers. Response: - Enhancement Spot Implementation - BAdI Implementation. - Enhancement Project - BAdI Implementation. - BAdI Implementation - Enhancement Spot Implementation. - BadI Implementation - Enhancement Project.

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. Response: When the value ‘123’ is assigned to the data object. At the beginning of the START-OF-SELECTION event block. When the assignment to gv_var2 is executed. As soon as the program is loaded into thie internal session.

What must before you can create a new transportable function modules? There are 3 correct answers to this question Response: Module pool. Exception class. Function group. Transport request. Package.

What must you do to create a singleton class? There are 3 correct answers to this question Response: Implement the IF_UMM_SINGLETON interface in the class. Set the class instantiation to private. Instantiate the class in a static method of the class itself. Define the class as final. Define the class as abstract.

Which of the following rules must you follow when you create a static constructor? There are 3 correct answers to this question Response: " 실제 시험에선 You CANNOT use parameters라고만 나옴. 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.

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 strings expressions and functions What are the main benefits of using string expressions and string functions? There are 2 correct answers to this question Response: You can write compact syntax instead of a long sequence of statements. You can reduce the number of intermediate variables. You can improve the performance significantly. You can write code that is very easy to read and understand.

You write a program that updates a data record in the data base using the following statement: UPDATE scar FROM Is_scarr. Which of the following tasks does the Database Interface perform? There are 2 correct answers to this question Response: It restricts the access to the log-on client. It checks the authorization of the current user. It applies a logical lock to the updated data record. It translates the statement to native SQL.

Your code contains the following statement: READ TABLE gt_itab INTO gs_struc INDEX1. When defining gt_itab, which internal table types can you use?. Index table. Standard table. Sorted table. Hashed table. Any Table.

To which ABAP Dictionary definition can you assign fixed values? Please choose the correct answer. Response: Data element. Field of a transparent table. Component of a structure. Domain.

You want to develop a validation routine for a selection screen field. If a wrong value is entered into the field an error message should be displayed and the focus should move to the field. Which event do you use to achieve this? Please choose the correct answer. Response: AT SELECTION-SCREEN. START-OF-SELECTION. INITIALIZATION. END-OF-SELECTION.

can you search for suitable classic Business Add-Ins(BAdIs)? There are 2 correct answers to this question Response: Search for suitable entries in the relevant component in the Implementation Guide (IMG). Search in an application program for the method GET_INSTANCE of class CL_EXITHANDLER. Use the SAP menu Tools -> ABAP Workbench -> Development -> Business Object Builder. Search in the Repository Information System and choose Enhancements - >Customer Exits.

Which of the following ABAP code lines is valid? There are 3 correct answers to this question. Response: "실제 시험에서 PARAMETERS p_mantr TYPE mantr 라고만 나옴. STATICS s_mantr TYPE mantr VALUE ‘100’. PARAMETERS p_mantr TYPE mantr DEFAULT ‘100’. DATA gc_mantr TYPE mantr DEFAULT ‘100’. SELECT-OPTIONS s_mantr TYPE mantr DEFAULT ‘100’. CONSTANTS gc_mantr TYPE mantr VALUE ‘100’.

You are making changes to a program that already has a transaction code linked to it. Your colleague is testing the transaction in your development system. At what point can the changed version of the program be tested? Please choose the correct answer. Response. When you activate the program. When you release the transport requests for the program. When you perform a syntax check on the program. When you save the program.

Which of the following can you assign a search help to? There are 3 correct answers to this question Response: Structure component. Data element. Domain. Check table. Table type.

What can be part of the signature of an instance constructor? There are 2 correct answers to this question Response: Import parameters. Changing parameters. Exceptions. Export parameters.

What can be defined using an implicit enhancement option? (3). Additional attributes in global SAP classes. Additional parameters in SAP function modules. Additional exceptions in SAP function modules. Overwritten method of sap function modules. Overwritten method of global SAP classes.

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. Response: A SET HANDLER statement to register the handler to the event. A method to read the registration table. A handler method for the event. A CATCH statement to capture the event. A handler class.

Which of the following characters is the first of a menu exit function code? Please choose the correct answer. Response: -. &. +. *.

Where can you define global data types that are visible system-wide? There are 3 correct answers to this question. Response: In a method of a global class. In the ABAP Dictionary "이 보기 없었음. In a function module " 얘는 a Function module In function group이라고 나왔습니다. In a global class " 이 보기 없었음. In a global interface.

parameter의 기본 값을 overwrite 할 수 있는 event-block 은?.

데이터가 작고, 자주 읽히면 어떤 buffer 써야 하나?.

Data object만들 때 쓰는 키워드. data,. class-data,. class,. type,. parameter,. constants,. static,. tables,. nodes,. literal,.

750에 새로 나온 기능?. case expression,. string expression,. intersection,. full join,.

Which of the following settings can you define for both structure and transparent tables in the ABAP Dictionary? (2). Storage type. Size category. Foreign key relationship. enhancement category.

What is the purpose of the enqueuer work process? Please choose the correct answer. Response: It translates Open SQL statements. It manages logical locks in the lock table. It processes user entries. It processes update requests.

What must before you can create a new transportable function modules? There are 3 correct answers to this question. Module pool. Exception class. Function group. Transport request. Package.

You create a domain in the ABAP dictionary How can you use this domain? Please choose the correct answer. Response: As the data type of a variable in an ABAP program. As the data type of a data element in the ABAP Dictionary. As the data type of an input field on a dialog screen. As the data type of a selection screen field.

Which of the following actions can you perform both the ABAP Editor ann In the ABAP Debugger?. Create a breakpoint for a specific message. Create a breakpoint for a specific line. Create a watchpoint for a specific variable. Create a breakpoint for a specific statement.

Which of the followings components are part of SAP NETWeavers AS ABAP version 7.1x and higher?. Message Server. Internet Communication manager(ICM). SAP GUI for JAVA. Software Development Manager(SDM).

Which of the following elements can string template contain? (2). Function module calls. Functional method calls. String processing statement. Literals.

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 table T1 is checked against Table T2?. Create a foreign key for the assigned field F of table T1 in Table2 and Make table T1 the check table. Create a foreign key for the assigned field F of table T1 in Table2 and Make table T2 the check table. Create a foreign key for field F of table T1 and Make T2 the check table. Create a foreign key for field F of table T1 and Make T2 the foreign table.

you want to read a single line of an interanl table using table expression itab[...]. how can you identify the line?. Specify the line index. Specify a free table key. Sepcify a regular expression. Specify a secondary table key. Specify a WHREE condition.

You have been aksed 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 FOR type). casting(arg FOR type). cast(arg AS type).

you have benn asked to review the following expression, which process character strings: result = find( val='abapABAP' sub='A’ occ=2 case = 'X' ....). What is the expected value of result?. 1. 4. 6. 2.

첫 번째 Exception에 걸려서 sy-subrc도 첫 번째 ( ) 에 대해서 값을 갖는다.

You have declared a sorted internal table with columns A,B,C, and D. The Key consists of colimn A, B, and C, In this order Which Combinations of columns in the where clause of a loop statement allows the system to optimize the aceess to the table?. A and B. B and C. A, B, C and D. C and D.

Which additions to the PARAMETERS statement can you use to fill the input field on the selection screen with a suggested value?. Value-Check. Message ID. Modify ID. Default.

You have the following class definition: CLASS lei_airplane DEFINITION. Public section. Methods set_passengers. Protected Section. Constatant: C_pos type I value 100. methods: get_passanger. Private Section. Data: mw_passanger type I. methods: set_attribute. endclass Which components can be adressed directly from a subclass of classic_airplane? (3). set_attribute. mv_passenger. get_passenger. c_pos. set_pasengers.

You have the following class definition: clss my_class definitions. public section methods do_something. events state_changed. class-methods static1. private section type t table type standard table of t001 with non-unique key default key. constants gc_const type I value 1. endcalss Which components of the class static method static1 address directly? (2). the t_table type. the state_changed event. the gc_const constant. the do_something method.

Which are the functions of the ABAP Dispatcher? (3). It performs a roll-in and roll-out of user context. It saves the processing requests in request queues. it distributes the request among work processes. it request the data from the database or the buffers. it integrates the presentation layer.

What parameters can you set when you run the code inspector? (3). background job name. check variant name. object set name. work process name. inspection name.

You are creating an inspection using the code inspector. which entries can you select for inspector?. Contents of a single object. Contents of named user's object. Contents of a transport request. Contents of a objects set. Contents of a package.

Program exit 기능 사용 가능한 곳 (3개). New BAdI. Classig BAdI. Customer exit. Enhancement point. Enhancement section.

How is data shred between Wed dynpros controllers? (2). By Using Context mapping from a View controllers to the component controller. By Using Context mapping from a View controllers to a custom controllers. By Using Context mapping from a View controllers to another view controller. By Using Context mapping from a View controllers to View controller.

What is required to fully specify a Table Type in the ABAP Dictionary? There are 3 correct answers to this question. Response: Access mode. Primary key. Table size. Line type. Header Line.

문제:you create a table ZTAB1 and ~~~~~ZTAB2 Which condition ~ 어떤 조건에서 너가 설정할 수 있는게 뭐냐?. ZTAB1 ~ as the same domain as ~ check table ~. ZTAB1 ~ as the same data elements as ~.

When must a foreign key have domain equality? Please choose the correct answer. Response: Always. Never. For a check field. For a text table.

What does Software Layer Aware Debugging allow you to do? There are 3 correct answers to this question. Response: Trace executing code. Debug only a small portion of code. Debug a large portion of code. Bypass authorization objects. Specify as much or as little code to debug.

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. Response: 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.

Report abuse