option
Questions
ayuda
daypo
search.php

NNNN1_0202

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
NNNN1_0202

Description:
ABAP_C_TAW12_750

Creation Date: 2022/02/02

Category: Others

Number of questions: 38

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

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

Global data types defined in SAP systems are… Please choose the correct answer. Date types defined in the program using ABAP Dictionary types. Data defined in the program that is visible to all the routines/statements within the ABAP program. Date types does not defined Dictionary types. ABAP Dictionary types.

Which controller types can exist within a Web Dynpro component? There are 3 correct answers to this question. View controller. Window controller. Application controller. User controller. Component controller.

What will happen at runtime when accessing a buffered table? Please choose the correct answer. If data is read from the table buffer, the existing indexes are not used. Following an update to a buffered record, all table buffers in the system will be updated. All SELECT statements will read data from the buffer. If table data is read using indexes, the table buffer will not be filled.

What is the maximum number of watchpoints that can exist at one time? Please choose the correct answer. No limit. 8. 6. 10.

How would you find out if an application program offers a program exit? Please select all the correct answers that apply. Look for a customer exit in the SAP reference IMG within an application area. Use the Repository Information System. Search for the character string CUSTOMER-FUNCTION. Use the Application Hierarchy.

Which of the following includes are generated when you create a function group? Please choose the correct answer. LxxxxF01. LxxxxTOP. LxxxxUXX. LxxxxO01.

How can you maintain documentation for input fields on your screen? Please choose the correct answer. Define text tables for the underlying structure. Add documentation to the SCREEN table at PROCESS BEFORE OUTPUT (PBO). Add documentation to the underlying data element. Add documentation to the SCREEN table at PROCESS AFTER INPUT (PAI).

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 partner-kind EQ ‘Residential’ INTO CORRESPONDING FIELDS OF TABLE lt_result WHERE division eq ‘Water’. 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 contract-division EQ ‘Water’ INTO TABLE lt_result WHERE kind EQ ‘Residential’.

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. Full table. Single record. Primary key. Column store.

Which statements about ABAP are true? Please choose the correct answer. Each statement must end with a period. ABAP keywords and additions must be in uppercase. Each statement must begin with a keyword. Each statement cannot begin with a keyword.

You always want to check the user authorization for data entered in an input field of a selection screen.Where do you do this? Please choose the correct answer. In the event block AT SELECTION-SCREEN on VALUE-REQUEST. In the event block AT SELECTION-SCREEN. In the event block INITIALIZATION. In the event block AT SELECTION-SCREEN OUTPUT.

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. STRING. C. T. D. X. F. I.

When does the lifetime of a component controller begin and end? Please choose the correct answer. 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 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 with the Web Dynpro component and ends with the Web Dynpro application that called it. It lasts from creating data within the controller to cover the whole period during which the component is in use.

Dynpros can be placed in which program types? There are 3 correct answers to this question. Class pools. Function groups. Executables. Module pools.

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? There are 2 correct answers to this question. Change column width and sequence. Convert currency amount columns. Display details by double-clicking on a row. Sort and filter the data by any column.

What is the allowed length of the ABAP Dictionary data type DF16_DEC? Please choose the correct answer. The allowed length is 16 digits. The allowed length is between 0 and 15 digits. The allowed length is between 0 and 16 digits. The allowed length is between 1 and 15 digits.

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

Which type of view cannot be used in a search help? Please choose the correct answer. Maintenance view. Candidates key view. Help view. Database view.

Which of the following statements are true? There are 2 correct answers to this question. 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. A conversion routine can be assigned to a data element.

Subroutines provide which types of parameters? There are 2 correct answers to this question. Exceptions. Input. Return values. Output. Input/output (changing).

Compared to a predefined ABAP type what additional properties can be assigned to a domain? There are 3 correct answers to this question. Fixed values. Value tables. Conversion exits. Search helps. Parameter IDs.

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.

What is the Web Dynpro programming model is based on? Please choose the correct answer. Business Server Pages (BSPs). Model View Controller (MVC). Classic Dynpro programming. Internet Transaction Server (ITS).

Which of the following variables is the self-reference variable in ABAP OO? Please choose the correct answer. SUPER. ME. SENDER. THIS.

Which of the following Data Types are allowed in ABAP? There are 2 correct answers to this question. DECFLOAT32. DECFLOAT64. DECFLOAT16. DECFLOAT34.

You define a generic variable that can hold the ABAP types C, D, N, STRING, and T. You want to restrict the use of other ABAP types. Which generic data type must you use in the definition? Please choose the correct answer. SIMPLE. CLIKE. DATA. CSEQUENCE.

Which of the following are true statements? There are 3 correct answers to this question. Reference data types can be used to define the data type of the data element. The technical attributes of the data element can be defined by a domain, that is, the data type, the field length, and the number of decimal places. You can also select predefined data types to define the data type of the data element. Field labels are defined for the domain.

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

Value help can be supplied from which of the following? Please select all the correct answers that apply. Search help for a data element. Search help for table or structure fields. Fixed values. Key values of a check table. Search help for a check table. Process On Value request. Search help for a screen field. Search help from a text table.

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

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

Which of the following statements are true? There are 2 correct answers to this question. Standard tables can be accessed by index. A sorted table is always accessed by a unique key. Hashed tables are always accessed by index. Hashed tables are accessed by a unique key. Standard tables cannot be accessed by index.

How can you improve the performance when accessing a large data volume database table? Please choose the correct answer. Define appropriate indexes for the database table. Apply the appropriate data class and size category. Switch the database table to fully buffered. Change the table type in the dictionary.

In addition to the primary key of an internal table, how many secondary indexes can you define for an internal table? Please choose the correct answer. 0. 1. 15. 10.

Which of the following can you use to enhance SAP standard tables and structures with fields? There are 2 correct answers to this question. Field exits. Customizing includes. Append structures. Append search helps.

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 always by primary key. When accessing by secondary key. When accessing mainly single records. When accessing by index.

How do you embed a subscreen in a main screen? Please choose the correct answer. Use CALL SUBSCREEN in the flow logic of the main screen. Use SET SUBSCREEN in a PBO module of the main screen. Use SET SUBSCREEN in the flow logic of the main screen. Use CALL SUBSCREEN in a PBO module of the main screen.

Report abuse