Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ONTest04

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
Test04

Description:
ABAP Questionary

Author:
hEcKsAnZ
(Other tests from this author)

Creation Date:
12/06/2012

Category:
Computers

Number of questions: 46
Share the Test:
Facebook
Twitter
Whatsapp
Share the Test:
Facebook
Twitter
Whatsapp
Last comments
antsurea ( uploaded 11 years )
i canĀ“t make this test. I dont see the questions.
Answer
Content:
In regard to CALL, which of the following is NOT a valid statement? CALL FUNCTION CALL SCREEN CALL TRANSACTION CALL PROGRAM.
An event starts with an event keyword and ends with Program execution END-OF-EVENT Another event keyword. END-EVENT.
The following code indicates: SELECT fld1 fld2 FROM tab1 APPENDING TABLE itab WHERE fld1 IN sfld1 Add rows to the existing rows of itab Add rows to itab after first deleting any existing rows of itab Select rows from tab1 for matching itab entries Nothing, this is a syntax error.
The SAP service that ensures data integrity by handling locking is called Update Dialog Enqueue/Dequeue Spool.
Which of the following is not a true statement in regard to a hashed internal table type? Its key must always be UNIQUE May only be accessed by its key Response time for accessing a row depends on the number of entries in the table Declared using internal table type HASHED TABLE.
To measure how long a block of code runs, use the ABAP statement GET TIME SET TIME FIELD GET RUN TIME FIELD SET CURSOR FIELD.
Given: DATA: BEGIN OF itab OCCURS 10, qty type I, END OF itab. DO 25 TIMES. itab-qty = sy-index. APPEND itab. ENDDO. LOOP AT itab WHERE qty> 10. WRITE: /1 itab-qty. ENDLOOP. This will result in: Output of only those itab rows with a qty field less than 10 Output of the first 10 itab rows with a qty field greater than 10 A syntax error None of the above.
You may declare your own internal table type using the TYPES keyword TRUE FALSE.
Which of the following is not a component of control break processing when looping at an internal table? AT START OF AT FIRST AT LAST AT NEW.
Which of the following would be best for hiding further selection criteria until a function is chosen? AT NEW SELECTION-SCREEN SELECTION-SCREEN AT LINE-SELECTION SUBMIT SELECTION-SCREEN CALL SELECTION-SCREEN.
The AT USER-COMMAND event is triggered by functions defined in the __________. screen painter ABAP report menu painter status ABAP Dictionary.
In regard to SET PF-STATUS, you can deactivate unwanted function codes by using ________. EXCLUDING IMMEDIATELY WITHOUT HIDE.
The order in which an event appears in the ABAP code determines when the event is processed TRUE FALSE.
Which of the following is NOT a component of the default standard ABAP report header? Date and Time List title Page number Underline.
In regard to field selection, what option of the SELECT statement is required? FOR ALL ENTRIES WHERE INTO MOVE-CORRESPONDING.
To declare a selection criterion that does not appear on the selection screen, use NO-DISPLAY INVISIBLE MODIF ID OBLIGATORY.
What is output by the following code? DATA: BEGIN OF itab OCCURS 0, letter type c, END OF itab. itab-letter = 'A'. APPEND itab. itab-letter = 'B'. APPEND itab. itab-letter = 'C'. APPEND itab. itab-letter = 'D'. APPEND itab. LOOP AT itab. SY-TABIX = 2. WRITE itab-letter. EXIT. ENDLOOP. A A B C D B B C D.
After a successful SELECT statement, what does SY-SUBRC equal? 0 4 8 Null.
If the following code results in a syntax error, the remedy is: DATA: itab TYPE SORTED TABLE OF rec_type WITH UNIQUE KEY field1 WITH HEADER LINE. itab-field1 = 'Company'. itab-field2 = '1234'. INSERT TABLE itab. itab-field1 = 'Bank'. itab-field2 = 'ABC'. INSERT TABLE itab. SORT itab. LOOP AT itab. write: /1 itab-field1, itab-field2. ENDLOOP. There is no syntax error here Remove the SORT statement Change INSERT to APPEND Add a WHERE clause to the loop.
When modifying an internal table within LOOP AT itab. _ ENDLOOP.you must include an index number TRUE FALSE.
Before a function module may be tested, it must first be Linked Authorized Released Active.
If a table contains many duplicate values for a field, minimize the number of records returned by using this SELECT statement addition MIN ORDER BY DISTINCT DELETE.
Within the source code of a function module, errors are handled via the keyword EXCEPTION RAISE STOP ABEND.
The following statement writes what type of data object? WRITE: /1 'Total Amount:'. Text literal Text variable In-code comment Text integer.
Which of the following describes the internal representation of a type D data object? DDMMYYYY YYYYDDMM MMDDYYYY YYYYMMDD.
In regard to PERFORM, which of the following is NOT a true statement? May be used within a subroutine Requires actual parameters Recursive calls are allowed in ABAP Can call a subroutine in another program.
In regard to HIDE, which of the following is NOT a true statement? Saves the contents of variables in relation to a list line's row number The hidden variables must be output on a list line The HIDE area is retrieved when using the READ LINE statement The HIDE area is retrieved when an interactive event is triggered.
The complete technical definition of a table field is determined by the field's Domain Field name Data Type Data Element.
The following code indicates: SELECT fld6 fld3 fld2 fld1 FROM tab1 INTO CORRESPONDING FIELDS OF TABLE itab WHERE fld3 = pfld3. The order of the fields in itab does not matter Fill the header line of itab, but not the body Table itab can only contain fields also in table tab1 None of the above.
What will be output by the following code? DATA: BEGIN OF itab OCCURS 0, fval type i, END OF itab. itab-fval = 1. APPEND itab. itab-fval = 2. APPEND itab. FREE itab. WRITE: /1 itab-fval. 2 0 blank 1.
If an internal table is declared without a header line, what else must you declare to work with the table's rows? Another internal table with a header line A work area with the same structure as the internal table An internal table type using the TYPES statement A PARAMETER.
To remove lines from a database table, use _________. UPDATE MODIFY ERASE DELETE.
When is it optional to pass an actual parameter to a required formal parameter of a function module? The actual parameter is type C The formal parameter contains a default value The formal parameter's \"Reference\" attribute is turned on It is never optional.
Adding a COMMIT WORK statement between SELECT_ENDSELECT is a good method for improving performance TRUE FALSE.
To bypass automatic field input checks, include this in PAI AT EXIT-COMMAND ON INPUT ON REQUEST LEAVE TO SCREEN 0.
The following code indicates: REPORT ZLISTTST. START-OF-SELECTION. WRITE: text-001. FORMAT HOTSPOT ON. WRITE: text-002. FORMAT HOTSPOT OFF. AT LINE-SELECTION. WRITE / text-003. Text-002 may not be selected The value of text-002 is stored in a special memory area. Text-002 may be clicked once to trigger the output of text-003 None of the above.
A concrete field is associated with a field-symbol via ABAP keyword MOVE WRITE ASSIGN VALUE.
Page footers are coded in the event TOP-OF-PAGE END-OF-SELECTION NEW-PAGE END-OF-PAGE.
The TABLES statement declares a data object TRUE FALSE.
Which of the following is NOT a required attribute when creating an ABAP program? Application Title Status Type.
Within the ABAP program attributes, Type = 1 represents INCLUDE program Online program Module pool Function group Subroutine pool.
Which keyword adds rows to an internal table while accumulating numeric values? INSERT APPEND COLLECT GROUP.
The following code indicates: SELECTION-SCREEN BEGIN OF BLOCK B1. PARAMETERS: myparam(10) type C, Myparam2(10) type N, SELECTION-SCREEN END OF BLOCK. Draw a box around myparam and myparam2 on the selection screen. Allow myparam and myparam2 to be ready for input during an error dialog Do not display myparam and myparam2 on the selection screen Display myparam and myparam2 only if both fields have default values.
Which keyword adds a line anywhere within an internal table? APPEND MODIFY ADD INSERT.
Which Open SQL statement should not be used with cluster databases? UPDATE MODIFY DELETE INSERT.
This flow logic statement is used to make multiple fields open for input after an error or warning message GROUP FIELD-GROUP CHAIN LOOP AT SCREEN.
Report abuse Consent Terms of use