option
Questions
ayuda
daypo
search.php

SEPTIMA PARTE TEST ABAP

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
SEPTIMA PARTE TEST ABAP

Description:
SEPTIMA PARTE TEST ABAP

Creation Date: 2023/04/20

Category: Others

Number of questions: 41

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

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? ' Please choose the correct answer. Data binding. Data migration. Context mapping. View assembly.

To benefit from the hash algorithm when accessing a hashed internal table, how do you specify the key? Please choose the correct answer. Left aligned, gap free. Fully qualified. Under-qualified. Any key.

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. Insert ZZPRICE into an SAP structure for the table. 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.

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? Please choose the correct answer. It starts with an asterisk (*). It starts with a dollar ($). It starts with a plus (+). It starts with an ampersand (&).

When are the changes to the VB* table transferred to the database? Please choose the correct answer. When the update work process is executed. When an update function module is executed. When the main program is executed. When the enqueue work process is executed.

How can you find customer exists in an ABAP program? There are 2 correct answers to this question. Search for ‘CALL CUSTOMER’ in the program. Search for ‘CL_EXTHANDLER’ in the program. Search for customer exists in the Repository Information System. Search for customer exists in the program documentation.

How do you program an input validation on a selection screen that allows users to correct their input? Please choose the correct answer. Implement the check at the event AT SELECTION-SCREEN. In case of an input error, a type A 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 AT SELECTION-SCREEN OUTPUT. 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.

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

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 index only. When a table is very large and you want to access the table by key only. When a table must be sorted automatically by key in ascending order. When a table must be accessible by both index and key.

What is the result of the following arithmetic operation? DATA: intTYPEI. int=5*(3/10). Please choose the correct answer. 1. 2. 1.5. 0.

Which of the following items are used in a Web Dynpro Application to transport database data to the user interface? There are 2 correct answers to this question. Supply function. Context node. Interface controller. Inbound plug.

A structure has enhancement category 3, can be enhanced (character-type). Which set of elementary types is allowed for the new fields? Please choose the correct answer. F, I, P, X. D, I, string, T. C, D, N, X. C, D, N, T.

You want to select data from two tables and store the result in as structure. Table PARTNER contains the fields PART_ID and KIND. Table CONTRACT contains the fields CONT_ID, CONT_TYPE and DIVISION. The structure is defined as follows DATA: BEGIN OF wa_result, Part_id type partner-part_id, cont_id type contract-cont_id, Cont_type TYPE contract-cont_type, END of wa_result, Lt_result type table of wa_result. How can you replace the following SELECT statement with an outer join? SELECT part_id from partner INTO wa_result WHERE kind = ‘Residential’. SELECT cont_id from CONTRACT into wa_result-cont_id WHERE part EQ wa_partner-part_id And DIVISION eq ‘Water’. Append wa_result to lt_result. ENDSELECT. If sy-subrc<>0. CLEAR wa_result-cont_id APPEND wa_result TO lt_result. ENDIF. ENDSELECT. Please choose the correct answer. SELECT part_idcont_id from partner LEFT JOIN contract on partner-part_id = contract-part_id AND contract-division EQ ‘Water’ INTO TABLE lt_result WHERE kind EQ ‘Residential’. SELECT part_idcont_id from partner AS A LEFT JOIN contract AS b ON a~part_id = b~part_id AND b~division EQ ‘Water’ INTO TABLElt_result WHERE kind = ‘Residential’. SELECT part_idcont_id from partner AS A LEFT JOIN contract AS b ON a~part_id = b~part_id INTO CORRESPONDING FIELDS OF TABLE lt_result WHERE kind = ‘Residential’ and AND division EQ ‘Water’. SELECT part_idcont_id from partner LEFT JOIN contract on partner-part_id = contract-part_id AND partner-kind EQ ‘Residential’ INTO CORRESPONDING FIELDS OF TABLE lt_result WHERE division eq ‘Water’.

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

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? Please choose the correct answer. The first exception that occurs will be raised. In the calling program, sy-subrc has the value specified for the first exception. 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 OTHERS option. Both exceptions will be raised. In the calling program, sy-subrc has the value specified for the second except on.

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

You need to perform a downcast. What should you do? There are 2 correct answers to this question. Assign a subclass reference to a superclass reference. Catch the exception CX_SY_MOVE_CAST_ERROR. Use the operator “?=”. Use the operator “=“.

When is a foreign key check performed on an input/output field? Please choose the correct answer. If the field refers to the dictionary field for which a value help is defined. If the field refers to the dictionary field for which a search is defined. If the field refers to the dictionary field for which a append search is defined. If the field refers to the dictionary field for which a check table is defined.

The Internet Communication Manager (ICM)… Please choose the correct answer. Choose one: Allows the ABAP stack and the Java stack to exchange data. Can not replaced SAP ITS. Replaced SAP ITS. Allows SAP NetWeaver Application Server to process HTTP requests.

At most, how many menu items (including functions, separators and sub- menus) can a menu have on the screen? Please choose the correct answer. Choose one: 15. 20. None of the above. 10.

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? Please choose the correct answer. Choose one: Internal table. Cluster table. Pooled table. Transparent table.

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

Which of the following enhancements calls a customer function module. There are 2 correct answers to this question. Customer exit. Business Add-in (BADIs). User exit. Business Transaction event.

Which of the following statements create a data object? There are 3 correct answers to this question. CONSTANTS. CLASS-DATA. CLASS. PARAMETERS. TYPES.

Which ABAP statement using the local type gty_1 correctly defines a data object? There are 2 correct answers to this question. DATA gv_1 LIKE gty_1. DATA gv_1 TYPE gty_1 DEFAULT '1'. DATA gv_1 TYPE gty_1. CONSTANTS gc_1 TYPE gty_1 VALUE '1'.

What is the SAP recommended naming convention for append structures of standard SAPtables? Please choose the correct answer. The name of the append structure must start with ZZ or YY. The name of the append structure must start with ZA. The components of an append structure should start with ZZ or YY. The components of an append structure should start with Z or Y.

Which of the following actions can be performed in the Process After Input (PAI) processing block? Please choose the correct answer. Set the GUI status of the screen. Modify screen attributes dynamically. Check the function code. Set the title bar.

Which of the following can you define in the technical settings of a transparent table? There are 3 correct answers to this question. Delivery class. Buffering type. Table name. Data class. Size category.

Which of the following functions does the ABAP Dispatcher perform? There are 2 correct answers to this question. It communicates with other instances in the system. It directs HTTP requests from an SAP system to a web server. It distributes user requests among available work processes. It enables communication between SAP systems and external application systems.

When included in a structure, which elementary field types allow the structure to be considered a character-type data object? There are 4 correct answers to this question. XSTRING. N. D. I. C. F. T. X. STRING.

When should you use a hashed internal table? There are 2 correct answers to this question. Choose: When accessing by index. When accessing always by primary key. When accessing using the left-justified part of the key. When accessing mainly single records.

Which you should specify in a non-Unicode system when opening a file in TEXT MODE? There are 2 correct answers to this question. The ENCODING addition. The byte order. The storage order. The code page.

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? Please choose the correct answer. Call the implementation in the superclass. Declare the method FINAL. Leave the signature of the method unchanged. Change the visibility of the method to PROTECTED.

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

You have 2 objects: O1 of type class C1 and O2 of type class C2. Class C2 is a subclass of class C1. Which of the following statements implements an up cast? Please choose the correct answer. Choose one: MOVE O1 ?TO O2. MOVE O1 TO O2. O2 ?= O1. O1 = O2.

A view can only be displayed in which circumstances? Please choose the correct answer. Choose one: It has been embedded in a window. It can always be displayed. It cannot always be displayed. It contains an inbound and outbound plug.

Each work process is assigned a type of task that can be performed. Which statements related to this are true? There are 3 correct answers to this question. Choose: It is possible to have multiple enqueue work processes on an SAP NetWeaver Application Server. To switch a work process type requires a restart of the SAP NetWeaver Application Server ABAP. A work process can communicate directly with an external system through a Remote Function Call. It is possible to have multiple spool work processes on an ABAP application server. All work processes communicate with the dispatcher. All work processes have the same structure. It can always be displayed.

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? Please choose the correct answer. Choose one: AT SELECTION-SCREEN. AT SELECTION-SCREEN ON VALU E-REQUEST. AT SELECTION-SCREEN OUTPUT. AT SELECTION-SCREEN ON HELP-REQUEST.

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

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

Which must a search help do? There are 4 correct answers to this question. Choose: Have a dialog with the user. Be used from a screen. Allow the user to select a response. Determine the values for selection by the user. Use a table or a view for data selection.

Report abuse