option
Questions
ayuda
daypo
search.php

MileStone -2

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
MileStone -2

Description:
Dictionary

Creation Date: 2022/08/19

Category: Others

Number of questions: 50

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

Why ‘+’ sign is displayed instead of the field description while maintaining the table entries using tcode SM30?. A. Short description is not provided for the field. B. Data element Field label is not maintained. C. A and B. C. A and B.

Lock object is created with the initial letter ________?. A. B. C. E.

Value table can be assigned to ____?. Data Element. Domain. Field. All the above.

Conversion routine is assigned to ____?. Field. Domain. Data Element. None of the above.

We provide reference table and reference field to which type of fields?. A. Decimal. B. Currency. C. Quantity. B and C.

Can we create transaction code for the table maintenance?. Yes. No.

Without maintaining the following, the table cannot be activated: A. Entry help/Check. B. Technical settings. C. Primary key. D. B and C.

Text table should consist of?. A. All the key fields of main table. B. All the fields of main table. C. SPRAS field for the language key. D. A and C.

What is the maximum number of structures that can be included in a table or structure?. A. 9. B. 8. C. 4. D. 7.

Can we include customizing include or an append structure with Pooled or Cluster tables?. A. Yes. B. No.

Difference between table and structure: 1:Table hold data only during runtime of program and structure hold it all the time 2:Structure hold data only during runtime of program and table hold it all the time 3:We need to define the primary keys for the structure and not for the table. 4:We need to define the primary keys for the table and not for the structure. A. 2 and 4. B. 1 and 2. C. 2 and 3. D. 3 and 4.

We can assign search help to the select option or parameter using below statement: A. Matchcode object. B. Batchcode object. C. User command. D. None of the above.

14. We need to create primary index explicitly: A. No. B. Yes.

Single record buffering should be used when _________. A. It should be used for large tables when there are few record accesses. B. It should be used in large tables that have frequent access to records. C. It should be used for those tables where some of the fields of the table are needed. D. All the above.

Difference between the projection view and the database view. A. Projection view can be created using one or more tables and database view be created using a single table. B. Database view can be created using one or more tables and Projection view be created using a single table. C. None of the above.

Prerequisite for creating foreign key relationship are_____. A. The domain of the foreign key field and the primary key of the check table should be different. B. The foreign key field and the primary key of the check table should have the same domain. C. A value table to the domain must be assigned. D. B and C.

We cannot create data element without creating the domain. A. True. B. False.

Whenever we create and activate the table below index will get automatically created. A. Secondary index. B. Primary index. C. Unique index. D. None of the above.

When we create the table, text table will automatically gets created. A. True. B. False.

We can create the table maintenance with below types of screens. A. Overview screen. B. Single screen. C. A and B. D. None of the above.

Among the below which is not the valid delivery class. A. A – Application table (Master and transaction data). B. C – Customizing table. C. T - Temporary storage data. D. S – System table.

Transaction code for the maintaining table is __________. A. SM30. B. SM13. C. SE30. D. SM35.

We have an option for events in the table maintenance generator. A. True. B. False.

Can we create change document history (CDHDR/CDPOS entries) for custom tables?. A. Yes. B. No.

A. B. C. D.

A. B. C. D.

A. B. C. D.

A. B. C. D.

A. B. C. D.

Search help can not be attach to: Domain. field of a table. check table. Type.

What will be the output of below code?. A. B. C. D.

What will be the output of below code?. A. B. C. D.

What will be the output of below code?. A. B. C. D.

What will be the output of below code?. A. B. C. D.

REPORT test. DATA: matnr LIKE mara-matnr VALUE 'COMPUTER'. INITIALIZATION. WRITE: 'Initialization'. START-OF-SELECTION. WRITE: 'Start-of-selection'. END-OF-SELECTION. WRITE:/ 'Matnr: ', matnr. A. Start-of-selection Matnr: Computer. B. Initialization Start-of-selection Matnr: Computer. C. Matnr: Computer. D. None of the above.

Predict the output of the following program assuming that the user didn’t change the value in the parameter on the selection-screen: REPORT test. PARAMETERS: matnr LIKE mara-matnr DEFAULT 'COMPUTER'. INITIALIZATION. WRITE: 'Initialization'. START-OF-SELECTION. WRITE: 'Start-of-selection'. END-OF-SELECTION. WRITE:/ 'Matnr: ', matnr. A. Start-of-selection Matnr: Computer. B. Initialization Start-of-selection Matnr: Computer. C. Matnr: Computer. D. None of the above.

After executing the following program. what is the value seen in the parameter “MATNR” on the selection-screen: REPORT test. PARAMETERS: matnr LIKE mara-matnr. AT SELECTION-SCREEN OUTPUT. matnr = 'COMPUTER'. INITIALIZATION. matnr = 'PEN'. A. PEN. B. COMPUTER. C. Syntax error. D. None of the above.

Predict the output of the following program: REPORT test. DATA: matnr LIKE mara-matnr. TOP-OF-PAGE. matnr = 'COMPUTER'. WRITE: 'Welcome'. END-OF-SELECTION. WRITE: matnr. A. Syntax error. B. Dump. C. Welcome COMPUTER. D. Welcome.

Predict the output of the following program: REPORT test. DATA: matnr LIKE mara-matnr. TOP-OF-PAGE. WRITE: 'Welcome to SAPTechnical.COM'. PERFORM assign-value. WRITE matnr. FORM assign-value . matnr = 'COMPUTER'. ENDFORM. A. Syntax error. B. Dump. C. No output. D. None of the above.

Predict the output of the following program assuming that the user didn’t change the value in the parameter on the selection-screen: REPORT test. PARAMETERS: matnr LIKE mara-matnr. AT SELECTION-SCREEN. matnr = 'COMPUTER'. AT SELECTION-SCREEN OUTPUT. matnr = 'PEN'. START-OF-SELECTION. WRITE matnr. A. COMPUTER. B. PEN. C. Syntax error. D. None of the above.

Predict the output of the following program: REPORT test. PARAMETERS: matnr LIKE mara-matnr. AT SELECTION-SCREEN. matnr = 'PEN'. AT SELECTION-SCREEN ON matnr. matnr = 'COMPUTER'. END-OF-SELECTION. WRITE matnr. A. PEN. B. COMPUTER. C. The value entered by the user on the selection-screen. D. None of the above.

Predict the output of the following program (assume that the user doesn’t enter any values on the selection-screen): REPORT test. TABLES: mara. SELECT-OPTIONS: matnr FOR mara-matnr. AT SELECTION-SCREEN ON matnr. matnr = 'MARKER'. AT SELECTION-SCREEN ON END OF matnr. matnr = 'PEN'. END-OF-SELECTION. WRITE matnr. A. PEN. B. MARKER. C. Syntax error. D. None of the above.

Assume that the following program is executed by a user. He happens to change the value on the selection-screen to ‘CALENDAR’ and executed the program. From the list, he presses back button and returns to the selection-screen. What would be the value seen in the Parameter ‘MATNR’? REPORT test. PARAMETERS: matnr LIKE mara-matnr. INITIALIZATION. matnr = 'BOOK'. AT SELECTION-SCREEN OUTPUT. matnr = 'Notebook'. END-OF-SELECTION. WRITE matnr. A. BOOK. B. NOTEBOOK. C. CALENDAR. D. None of the above.

Can you create a table with fields not referring to data elements?. Yes. No.

The SAP Logon password is always case-insensitive. Ture. False.

The following statements will clear the header-line of an internal table: DELETE ITAB. FREE ITAB. REFRESH ITAB. CLEAR ITAB.

An ABAP editor converts all text to uppercase except text strings, which are surrounded by single quotation marks?. True. False.

Which of the below programs are directly executable and also known as Report?. Type M. Type K. Type 1. Type 2.

Which of the below programs are directly executable and also known as Report?. Objects. Data Objects. Dynamic Objects. Business Objects.

Which of the following tool can be used to organize development projects in ABAP workbench?. Change and Transport System. Function Groups. Process Blocks. Customizing Requests.

Report abuse