option
Questions
ayuda
daypo
search.php

Test exam questions 1

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
Test exam questions 1

Description:
Test questions

Creation Date: 2023/02/09

Category: Others

Number of questions: 60

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

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 displayed again without processing the PBO flow logic. Only fields B and C 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. 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 table T1 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 the check 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 foreign key table.

A class is defined as follows: CLASS my_class DEFINITION. PUBLIC SECTION. METHODS do_something. EVENTS state_changed. CLASS-METHODS static1. PRIVATE SECTION. TYPES t table TYPE STANDARD TABLE OF t001 WITH NON-UNIQUE DEFAULT KEY. CONSTANTS gc_const TYPE IVALUE 1. ENDCLASS. Which components of the class can static method static1 address directly? There are 2 correct answers to this question. The do_something method. The t_table type. The gc_const constant. The state_changed event.

Which additions to the PARAMETERS statement can you use to fill the input field on the selection screen with a suggested value? There are 2 correct answers to this question. MODIF ID. VALUE-CHECK. MEMORY ID. DEFAULT.

You create a domain in the ABAP dictionary. How can you use this domain? Please choose the correct answer. To define the data type of a table field or structure component. To describe the value range of a table field or structure component. To define technical properties of data elements. To define data objects in ABAP programs.

What can be exposed in the component interface of a Web dynpro component? Please choose the correct answer. Context nodes of WINDOW controllers. Public attributes of WINDOW controllers. Standard hook methods of the component controller. Custom methods of the component controller.

What can you enhance using BAdIs? There are 3 correct answers to this question. Source code. Database tables. Menus. Screens. Data elements.

What must you do to create a singleton class? There are 2 correct answers to this question. Create the objection a static method of the class itself. Store the reference to the singleton objection an instance attribute of the object itself. Set the class instantiation to private. Define the class as abstract.

Which of the followings components are part of SAP NetWeaver AS ABAP version 7.1x and higher? There are 2 correct answers to this question. Message Server. Software Deployment Manager (SOM). SAP GUI for Java. Internet Communication Manager (ICM).

You are writing a function module that will be called from external system via remote function call (RFC). How do you report an error back to the external caller? Please choose the correct answer. Write the error data into an EXPORTING parameters passed by reference. Write the error data into TABLES parameters that is passed by reference. Write the error data into a CHANGING parameters passed by value. Write the error data into a RECEIVING parameter that is passed by value.

Which of the following types of SQL statements always bypass the SAP table buffers? There are 2 correct answers to this question. SELECT … UP TO 1 ROW. SELECT SINGLE. SELECT SUM (sales). SELECT … INNER JOIN….

Which of the following is a true statement? There are 3 correct answers to this question. A package can be nested. Packages use interfaces and visibility to make their elements visible to other packages. All customer repository objects have to be assigned to a package. The transport layer is a mandatory input field for the package.

Which of the following statements correctly define a data object with the type of data element s_conn_id? There are 3 correct answers to this question. DATA gv_id TYPE REF TO s_conn_id. DATA gv_id LIKE s_conn_id. DATA gv_id TYPE s_conn_id. CONSTANTS gc_id TYPE s_conn_id VALUE '0400'. PARAMETERS pa_id TYPE s_conn_id.

Which enhancements can provide a screen exit? There are 3 correct answers to this question. Explicit enhancement sections. New BAdIs. Customer exits. Explicit enhancement points. Classic BAdIs.

How is an ABAP program with several dialog steps executed? Please choose the correct answer. The ABAP dispatcher takes over the entire execution without assigning any work process. Usually, dialog steps are assigned to different dialog work processes. The program is always executed in just one dialog work process with roll out. The program is always executed in just one dialog work process without roll out.

Which screen in the ABAP Dictionary allows you to log data changes to the table? Please choose the correct answer. Attributes tab. Utilities Settings. Delivery and Maintenance tab. Technical Settings. Utilities Database Object Database Utility.

Which of the following predefined data types are character types? There are 3 correct answers to this question. T. P. D. X. N.

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 PAR 1. What type of parameter is PAR 1 in the post-method? Please choose the correct answer. EXPORTING. IMPORTING. RETURNING. CHANGING.

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. Function module. Class method. Web service proxy. Function group.

What can you create using the ABAP Dictionary? There are 3 correct answers to this question. Domains. Transparent tables. Type pools. Field symbols. Internal tables.

For which of the following requirements can you implement a functional method? There are 2 correct answers to this question. A method to set an instance attribute with one importing parameter and no other parameters. A handler method for an event that has a returning parameter. A private static helper method that returns a single value as the result of an algorithm. A factory method that returns an object reference.

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

Which of the following is a true statement? There are 2 correct answers to this question. A sorted table can have a unique or a non-unique key. A standard table should always have a multiple key. A standard table should always have a unique key. A hashed table should always have a unique table key.

The order of fields for a transparent table in the database… Please choose the correct answer. Is created in the order of the ABAP Dictionary. Needs to match the ABAP Dictionary. Is allowed to be different than the ABAP Dictionary. Is created in the order of the Data Dictionary.

You define a database view A and maintenance view B in the ABAP dictionary. What restrictions apply to these views? There are 2 correct answers to this question. Only B can have either a left outer join or an inner join. 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.

Which of the following tools belong to the ABAP Workbench? There are 3 correct answers to this question. Screen Painter. Class Builder. Form Builder. Function Builder. Easy Access Menu.

What is variable-length structure called? Please choose the correct answer. Nested link structure. Link structure. Flat structure. Nested structure.

Which of the following rules must you follow when you create a static constructor? There are 2 correct answers to this question. You CANNOT define parameters. You must name the method CONSTRUCTOR. You can define class-based or classic exceptions. You must define the method as pubic.

What is unique about a functional method? There are 5 correct answers to this question. It can be used in logical expressions. It must be a singleton. It can contain an importing parameter. It can contain an exporting parameter. It can be used in SELECT statements. It can contain a changing parameter. It must contain a returning parameter.

Which of the following interface technologies are available in SAP systems? There are 3 correct answers to this question. ODBC. OLE. RFC. HTTP. Ethernet.

The software component for a customer package can be... Please choose the correct answer. Database layer. Any SAP software component (i.e., SAP_APPL, SAP_BASIS, SAP_HR, etc.). Application Layer. Home.

Where can you set the GUI status and the GUI title for a classical screen (dynpro)? Please choose the correct answer. In the attributes of the screen. In the properties of the related header UI element. In a module called from PBO of the screen. In a module called from PAI of the screen.

The code of an executable program does NOT contain any event keywords. What event block does the code belong to? Please choose the correct answer. LOAD-OF-PROGRAM. INITIALIZATION. AT SELECTION-SCREEN. START-OF-SELECTION.

Your program performs a database 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. MESSAGE TYPE W. MESSAGE TYPE A. MESSAGE TYPE E. MESSAGE TYPE X. ROLLBACK WORK.

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

In an ABAP program you have the following code sequence: DATA text TYPE string. DATA Text_ref TYPE REF TO string. DATA data_ref TYPE REF TO data. FIELD-SYMBOLS <fs> TYPE any Text = ‘Content of Data Object’ GET REFERENCE OF text INTO data_ref. Which of the following pieces of code can you use to output the content of variable text? There are 2 correct answers to this question. GET REFERENCE OF data_ref->* INTO text_ref. WRITE text_ref->*. WRITE data_ref->*. text_ref ?= data_ref. WRITE text_ref->*. ASSIGN data_ref->* TO<fs> WRITE <fs>.

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

Which SELECT statement will always bypass the SAP table buffers? Please choose the correct answer. SELECT … SINGLE …. SELECT … INTO TABLE …. SELECT … ENDSELECT. SELECT … FOR UPDATE ….

Which prerequisites must be fulfilled before a repository object can be transported? There are 3 correct answers to this question. An inactive version of the repository object must exist. An application component must be assigned to the repository object. A transport layer must be assigned to the package. The repository object must be assigned to a package. The repository object must be assigned to a change request.

How many work areas are available in the Debugger? Please choose the correct answer. 15. 12. 7. 9.

In which event block can you overwrite the default value of a PARAMETERS field on the selection screen? Please choose the correct answer. INITIALIZATION. AT SELECTION-SCREEN. START-OF-SELECTION. PROCESS BEFORE OUTPUT.

What does the Refactoring Assistant allow you to do? There are 2 correct answers to this question. Move components between superclasses and subclasses. Rename all subclasses of a method. Move between classes and interfaces. Rename all occurrences of a method.

What does SAP recommend that you use a hashed table? Please choose the correct answer. When a table is very large and you want to access the table by key only. When a table is very large and you want to access the table by index only. When a table must be accessible by both index and key. When a table must be sorted automatically by key in ascending order.

You add the CREATE PROTECTED addition to a class definition. From where you can instantiate the class? There are 3 correct answers to this question. From a child class. From a parent class. From a friend class. From any protected class. From the class itself.

What are characteristics of a hashed internal table? There are 2 correct answers to this question. It must have a unique key. It can have a non-unique key. It can be accessed using the index. It can be accessed using the key.

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? Please choose the correct answer. DATA: r TYPE p DECIMALS 2, a TYPE iVALUE 201, b TYPE iVALUE 200, c TYPE p. DATA: r TYPE f, a TYPE iVALUE 201, b TYPE iVALUE 200, c TYPE f. DATA: r type p, a type iVALUE 201, b type iVALUE 200, c type i. DATA: r TYPE p DECIMALS 2, a TYPE iVALUE 201, b TYPE iVALUE 200, c TYPE f.

Which of the following ABAP statements throws an error at the syntax check? Please choose the correct answer. DATA variable(5) TYPE n. DATA variable(5) TYPE p. DATA variable(5) TYPE t. DATA variable.

When you define local classes in ABAP, which syntactical sequence must you follow? Please choose the correct answer. The order doesn’t matter. The order is handled automatically. PUBLIC SECTION, PROTECTED SECTION, PRIVATE SECTION. PRIVATE SECTION, PROTECTED SECTION, PUBLIC SECTION.

Which of the following predefined ABAP types is incomplete? Please choose the correct answer. XSTRING. P. F. STRING.

Which of the following is a true statement? There are 2 correct answers to this question. 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. An access key is required to implement business add-ins.

Which of the following statements correctly define a data object with the type of data element s_conn_id? There are 3 correct answers to this question. PARAMETERS pa_id TYPE s_conn_id. DATA gv_id TYPE REF TO s_conn_id. DATA gv_id LIKE s_conn_id. CONSTANTS gc_id TYPE s_conn_id VALUE '0400'. DATA gv_id TYPE s_conn_id.

What are some of the new features of Open SQL in SAP NetWeaver 7.5? There are 2 correct answers to this question. Intersection. Full Join. String expressions. CASE expressions.

Which of the following repository objects can you maintain in the ABAP Workbench? There are 3 correct answers to this question. Business functions. Function modules. Module pools. Transparent tables. Internal tables.

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

In an ABAP program you have the following code sequence: DATA var TYPE n LENGTH 1. FIELD –SYMBOLS <fs> TYPE c ASSIGN var TO <fs> CASTING Which type is used to cast the assigned memory area? Please choose the correct answer. The default type I. The default type STRING. The type of <fs>. The type of var.

You are creating an inspection using the Code Inspector. Which entities can you select for inspection? There are 3 correct answers to this question. Contents of an object set. Contents of a transport request. Contents of a single object. Contents of named user's objects. Contents of a package.

Which actions release a database lock? There are 7 correct answers to this question. ENQUEUE_. ROLLBACK WORK. An “/n” in the command field. A CALL TRANSACTION. A SUBMIT. A call to a function module. COMMIT WORK. The display of a dialog message type A. The display of a dialog message type E. The display of an SAP screen.

What must exist before you can create a new transportable function module? There are 3 correct answers to this question. Module pool. Type group. Package. Function group. Change request.

Which of the following data types are predefined ABAP data types? There are 3 correct answers to this question. FLOAT. DECIMALS. DECFLOAT34. XSTRING. STRING.

A customer has asked that you improve performance for a small table with frequent read accesses. What buffering type do you recommend? Please choose the correct answer. Column store. Single record. Full table. Primary key.

Report abuse