Abap Interview Set4

Embed Size (px)

Citation preview

  • 8/14/2019 Abap Interview Set4

    1/17

    qwertyuiopasdfghjklzxcvbnmqwerty

    opasdfghjklzxcvbnmqwertyuiopasdfg

    klzxcvbnmqwertyuiopasdfghjklzxcvb

    nmqwertyuiopasdfghjklzxcvbnmqwe

    yuiopasdfghjklzxcvbnmqwertyuiopa

    dfghjklzxcvbnmqwertyuiopasdfghjklz

    vbnmqwertyuiopasdfghjklzxcvbnmq

    wertyuiopasdfghjklzxcvbnmqwertyu

    pasdfghjklzxcvbnmqwertyuiopasdfgh

    klzxcvbnmqwertyuiopasdfghjklzxcvbmqwertyuiopasdfghjklzxcvbnmqwer

    uiopasdfghjklzxcvbnmqwertyuiopasd

    ghjklzxcvbnmqwertyuiopasdfghjklzxvbnmqwertyuiopasdfghjklzxcvbnmrt

    uiopasdfghjklzxcvbnmqwertyuiopasd

    ghjklzxcvbnmqwertyuiopasdfghjklzx

    ABAP Interview Questions & Answers

    Set 4

    http://abap-tutorials.com

    http://abap-tutorials.com/http://abap-tutorials.com/http://abap-tutorials.com/
  • 8/14/2019 Abap Interview Set4

    2/17

    http://abap-tutorials.com 2010

    If a table does not have MANDT as part of the primary key, it is ____.

    A structure

    InvalidClient-independentNot mandatory

    In regard to CALL, which of the following is NOT a valid statement?

    CALL FUNCTIONCALL SCREENCALL TRANSACTIONCALL PROGRAM

    Name the type of ABAP Dictionary table that has these characteristics:

    me number of fields as the database tableme name as database tableps 1:1 to database table

    PooledClusterTransparentView

    An event starts with an event keyword and ends with:

    Program execution.

    END-OF-EVENT.Another event keyword.END-EVENT.

    What is the system field for the current date?

    SY-DATUMSY-DATESY-DATIDSY-SDATE

    The following code indicates:

    LECT fld1 fld2 FROM tab1 APPENDING TABLE itabHERE 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.

    http://abap-tutorials.com/http://abap-tutorials.com/http://abap-tutorials.com/
  • 8/14/2019 Abap Interview Set4

    3/17

    http://abap-tutorials.com 2010

    You may change the following data object as shown below so that it equals 3.14.

    NSTANTS: PI type P decimals 2 value '3.1'.= '3.14'.

    TrueFalse

    The SAP service that ensures data integrity by handling locking is called:

    UpdateDialogEnqueue/DequeueSpool

    Which of these sentences most accurately describes the GET VBAK LATE. event?

    This event is processed before the second time the GET VBAK event is processed.This event is processed after all occurrences of the GET VBAK event are completed.This event will only be processed after the user has selected a basic list row.This event is only processed if no records are selected from table VBAK.

    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 include database-specific SQL statements within an ABAP program, code them between:

    NATIVE SQL_ENDNATIVE.DB SQL_ENDDB.SELECT_ENDSELECT.EXEC SQL_ENDEXEC.

    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 .

    When a secondary list is being processed, the data of the basic list is available by default.

    TrueFalse

    Given:

    http://abap-tutorials.com/http://abap-tutorials.com/http://abap-tutorials.com/
  • 8/14/2019 Abap Interview Set4

    4/17

    http://abap-tutorials.com 2010

    TA: BEGIN OF itab OCCURS 10,

    type I,D OF itab.

    25 TIMES. itab-qty = sy-index. APPEND itab. ENDDO.

    OP AT itab WHERE qty > 10.RITE: /1 itab-qty.DLOOP.

    s will result in:

    Output of only those itab rows with a qty field less than 10Output of the first 10 itab rows with a qty field greater than 10

    A syntax errorNone of the above

    After a DESCRIBE TABLE statement SY-TFILL will contain

    The number of rows in the internal table.The current OCCURS value.Zero, if the table contains one or more rows.The length of the internal table row structure.

    You may declare your own internal table type using the TYPES keyword.

    TrueFalse

    After adding rows to an internal table with COLLECT, you should avoid adding more rows with APPEND.

    TrueFalse

    Which of the following is not a component of control break processing when looping at an internal table?

    AT START OFAT FIRSTAT LASTAT NEW

    A dictionary table is made available for use within an ABAP program via the TABLES statement.

    TrueFalse

    Which of the following would be best for hiding further selection criteria until a function is chosen?

    AT NEW SELECTION-SCREEN

    http://abap-tutorials.com/http://abap-tutorials.com/http://abap-tutorials.com/
  • 8/14/2019 Abap Interview Set4

    5/17

    http://abap-tutorials.com 2010

    SELECTION-SCREEN AT LINE-SELECTIONSUBMIT SELECTION-SCREEN

    CALL SELECTION-SCREEN

    What must you code in the flow logic to prevent a module from being called unless a field contains a non-initial value (astermined by its data type)?

    ON INPUTCHAINFIELDON REQUEST

    The AT USER-COMMAND event is triggered by functions defined in the ____.

    screen painterABAP report

    menu painter statusABAP Dictionary

    In regard to a function group, which of the following is NOT a true statement?

    Combines similar function modules.Shares global data with all its function modules.Exists within the ABAP workbench as an include program.Shares subroutines with all its function modules.

    In regard to SET PF-STATUS, you can deactivate unwanted function codes by using ____.

    EXCLUDINGIMMEDIATELYWITHOUTHIDE

    In regard to data transported in PAI when the FIELD statement is used, which of the following is NOT a true statement?

    Fields in PBO are transported directly from PAI.Fields with identical names are transported to the ABAP side.Fields not defined in FIELD statements are transported first.Fields that are defined in FIELD statements are transported when their corresponding module is called.

    The order in which an event appears in the ABAP code determines when the event is processed.

    TrueFalse

    A field declared as type T has the following internal representation:

    SSMMHHHHMMSS

    http://abap-tutorials.com/http://abap-tutorials.com/http://abap-tutorials.com/
  • 8/14/2019 Abap Interview Set4

    6/17

    http://abap-tutorials.com 2010

    MMHHSSHHSSMM

    Which of the following is NOT a component of the default standard ABAP report header?

    Date and TimeList titlePage numberUnderline

    Assuming a pushbutton with function code 'FUNC' is available in the toolbar of a list report, what event is processed whe button is clicked?

    AT USER-COMMAND.AT PFn.AT SELECTION-SCREEN.

    END-OF-SELECTION.

    In regard to field selection, what option of the SELECT statement is required?

    FOR ALL ENTRIESWHEREINTOMOVE-CORRESPONDING

    The following program outputs what?

    port zjgtest1

    te: /1 'Ready_'.

    RAMETER: test.

    TIALIZATION.te: /1 'Set_'.

    ART-OF-SELECTION.te: /1 'GO!!'.

    Set_ GO!! (each on its own line)Set_ Ready_ GO!! (all on their own lines)Ready_ GO!! (each on its own line)

    Ready_ Set_ GO!! (all on their own lines)

    To declare a selection criterion that does not appear on the selection screen, use:

    NO-DISPLAYINVISIBLEMODIF IDOBLIGATORY

    http://abap-tutorials.com/http://abap-tutorials.com/http://abap-tutorials.com/
  • 8/14/2019 Abap Interview Set4

    7/17

    http://abap-tutorials.com 2010

    An internal table that is nested within another internal table should not contain a header line.

    True

    False

    What is output by the following code?

    TA: BEGIN OF itab OCCURS 0, letter type c, END OF itab.

    b-letter = 'A'. APPEND itab. itab-letter = 'B'. APPEND itab.b-letter = 'C'. APPEND itab. itab-letter = 'D'. APPEND itab.

    OP AT itab.

    -TABIX = 2.RITE itab-letter.IT.

    DLOOP.

    AA B C DBB C D

    To select all database entries for a certain WHERE clause into an internal table in one step, use

    SELECT_INTO TABLE itab_SELECT_INTO itab_SELECT_APPENDING itabSELECT_itab_

    After a successful SELECT statement, what does SY-SUBRC equal?

    048Null

    This selection screen syntax forces the user to input a value:

    REQUIRED-ENTRYOBLIGATORY

    DEFAULTSELECTION-SCREEN EXCLUDE

    If the following code results in a syntax error, the remedy is:

    TA: itab TYPE SORTED TABLE OF rec_type WITH UNIQUE KEY field1TH HEADER LINE.

    b-field1 = 'Company'. itab-field2 = '1234'. INSERT TABLE itab.

    http://abap-tutorials.com/http://abap-tutorials.com/http://abap-tutorials.com/
  • 8/14/2019 Abap Interview Set4

    8/17

    http://abap-tutorials.com 2010

    b-field1 = 'Bank'. itab-field2 = 'ABC'. INSERT TABLE itab.

    RT itab.

    OP AT itab.te: /1 itab-field1, itab-field2.DLOOP.

    There is no syntax error hereRemove the SORT statementChange INSERT to APPENDAdd a WHERE clause to the loop

    If this code results in an error, the remedy is:

    LECT fld1 fld2 FROM tab1 WHERE fld3 = pfld3.RITE: /1 tab1-fld1, tab1-fld2.

    DSELECT.

    Add a SY-SUBRC check.Change the WHERE clause to use fld1 or fld2.Remove the /1 from the WRITE statement.Add INTO (tab1-fld1, tab1-fld2).

    When modifying an internal table within LOOP AT itab. _ ENDLOOP. you must include an index number.

    TrueFalse

    To allow the user to enter values on the screen for a list field, use:

    OPEN LINE.SET CURSOR FIELD.WRITE fld AS INPUT FIELD.FORMAT INPUT ON.

    Before a function module may be tested, it must first be:

    LinkedAuthorizedReleasedActive

    To include a field on your screen that is not in the ABAP Dictionary, which include program should contain the dataclaration for the field?

    PBO module include programTOP include programPAI module include programSubroutine include program

    http://abap-tutorials.com/http://abap-tutorials.com/http://abap-tutorials.com/
  • 8/14/2019 Abap Interview Set4

    9/17

    http://abap-tutorials.com 2010

    If a table contains many duplicate values for a field, minimize the number of records returned by using this SELECT

    tement addition.

    MINORDER BYDISTINCTDELETE

    The system internal table used for dynamic screen modification is named:

    ITABSCREENMODTAB

    SMOD

    Within the source code of a function module, errors are handled via the keyword:

    EXCEPTIONRAISESTOPABEND

    Which system field contains the contents of a selected line?

    SY-CUCOLSY-LILLISY-CUROWSY-LISEL

    The following statement writes what type of data object?

    RITE: /1 'Total Amount:'.

    Text literalText variableIn-code commentText integer

    For the code below, second_field is of what data type?

    TA: first_field type P, second_field like first_field.

    PCND

    Which of the following describes the internal representation of a type D data object?

    http://abap-tutorials.com/http://abap-tutorials.com/http://abap-tutorials.com/
  • 8/14/2019 Abap Interview Set4

    10/17

    http://abap-tutorials.com 2010

    DDMMYYYYYYYYDDMM

    MMDDYYYYYYYYMMDD

    A BDC program is used for all of the following except:

    Downloading data to a local fileData interfaces between SAP and external systemsInitial data transferEntering a large amount of data

    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.

    What is the transaction code for the ABAP Editor?

    SE11SE38SE36SE16

    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.

    Database locks are sufficient in a multi-user environment.

    TrueFalse

    The complete technical definition of a table field is determined by the field's:

    Domain

    Field nameData typeData element

    In regard to LEAVE, which of the following is NOT a true statement?

    May be used to return immediately to a calling program.May be used to stop the current loop pass and get the next.May be used to start a new transaction.

    http://abap-tutorials.com/http://abap-tutorials.com/http://abap-tutorials.com/
  • 8/14/2019 Abap Interview Set4

    11/17

    http://abap-tutorials.com 2010

    May be used to go to the next screen.

    The following code indicates:

    LECT fld6 fld3 fld2 fld1 FROM tab1 INTO CORRESPONDING FIELDS OF TABLE itabHERE 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.

    The ABAP statement below indicates that the program should continue with the next line of code if the internal table itab

    ECK NOT itab[] IS INITIAL.

    Contains no rowsContains at least one rowHas a header lineHas an empty header line

    What will be output by the following code?

    TA: BEGIN OF itab OCCURS 0, fval type i, END OF itab.

    b-fval = 1. APPEND itab.b-fval = 2. APPEND itab.

    EE itab.

    RITE: /1 itab-fval.

    20blank1

    To allow the user to enter a range of values on a selection screen, use the ABAP keyword:

    DATA.RANGES.PARAMETERS.SELECT-OPTIONS.

    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.

    http://abap-tutorials.com/http://abap-tutorials.com/http://abap-tutorials.com/
  • 8/14/2019 Abap Interview Set4

    12/17

    http://abap-tutorials.com 2010

    Assuming an internal table contains 2000 entries, how many entries will it have after the following line of code isecuted?

    LETE itab FROM 1500 TO 1700.

    This is a syntax error.180118001799

    To remove lines from a database table, use ____.

    UPDATEMODIFY

    ERASEDELETE

    All of the following may be performed using SET CURSOR except:

    Move the cursor to a specific field on a list.Move the cursor to a specific list line.Move the cursor to a specific pushbutton, activating that function.Move the cursor to a specific row and column on a list.

    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.

    Coding two INITIALIZATION events will cause a syntax error.

    TrueFalse

    Adding a COMMIT WORK statement between SELECT_ENDSELECT is a good method for improving performance.

    TrueFalse

    To save information on a list line for use after the line is selected, use this keyword.

    APPENDEXPORTWRITEHIDE

    To bypass automatic field input checks, include this in PAI.

    http://abap-tutorials.com/http://abap-tutorials.com/http://abap-tutorials.com/
  • 8/14/2019 Abap Interview Set4

    13/17

    http://abap-tutorials.com 2010

    AT EXIT-COMMAND

    ON INPUTON REQUEST

    LEAVE TO SCREEN 0.

    Within a function module's source code, if the MESSAGE_RAISING statement is executed, all of the following system fiele filled automatically except:

    SY-MSGTYSY-MSGNOSY-MSGV1SY-MSGWA

    The following code indicates:

    PORT ZLISTTST.ART-OF-SELECTION.RITE: text-001.RMAT HOTSPOT ON.

    RITE: text-002.RMAT HOTSPOT OFF.LINE-SELECTION.

    RITE / 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.

    The ____ type of ABAP Dictionary view consists of one or more transparent tables and may be accessed by an ABAPogram using Open SQL.

    Database viewProjection viewHelp viewEntity view

    A concrete field is associated with a field-symbol via ABAP keyword

    MOVEWRITE

    ASSIGNVALUE

    The output for the following code will be:

    port zabaprg.TA: char_field type C.

    ar_field = 'ABAP data'.

    http://abap-tutorials.com/http://abap-tutorials.com/http://abap-tutorials.com/
  • 8/14/2019 Abap Interview Set4

    14/17

    http://abap-tutorials.com 2010

    RITE char_field.

    ABAP data

    ANothing, there is a syntax errorNone of the above

    Page footers are coded in the event:

    TOP-OF-PAGE.END-OF-SELECTION.NEW-PAGE.END-OF-PAGE.

    The event AT SELECTION-SCREEN OUTPUT. occurs before the selection screen is displayed and is the best event for

    signing default values to selection criteria.

    TrueFalse

    The TABLES statement declares a data object.

    TrueFalse

    Assuming tab1-fld7 is not a key field, how can you prevent reading all the table rows?

    LECT fld1 fld2 fld3 FROM tab1 INTO (fld4, fld5, fld6)HERE fld7 = pfld7.RITE: /1 fld4, fld5, fld6.DSELECT.

    Take fld7 out of the WHERE clause.Create an index in the ABAP Dictionary for tab1-fld7.Use INTO TABLE instead of just INTO.Take the WRITE statement out of the SELECT_ENDSELECT.

    Which of the following is NOT a required attribute when creating an ABAP program?

    Application

    TitleStatusType

    When creating a transparent table in the ABAP Dictionary, which step automatically creates the table in the underlyingtabase?

    Adding technical settings to the tableChecking the table syntax

    http://abap-tutorials.com/http://abap-tutorials.com/http://abap-tutorials.com/
  • 8/14/2019 Abap Interview Set4

    15/17

    http://abap-tutorials.com 2010

    Saving the tableActivating the table

    Within the ABAP program attributes, Type = 1 represents:

    INCLUDE programOnline programModule poolFunction groupSubroutine pool

    If this code results in an error, the remedy is:

    LECT fld1 SUM( fld1 ) FROM tab1 INTO_

    Remove the spaces from SUM( fld1 ).

    Move SUM( fld1 ) before fld1.Add GROUP BY f1.Change to SUM( DISTINCT f1 ).

    Which keyword adds rows to an internal table while accumulating numeric values?

    INSERTAPPENDCOLLECT

    GROUP

    Assuming itab has a header line, what will be output by the following code?

    AD TABLE itab INDEX 3 TRANSPORTING field1.RITE: /1 itab-field1, itab-field2.

    The contents of the third row's itab-field1.The contents of the third row's itab-field1 and itab-field2.The contents of the third row's itab-field2.Nothing.

    The following code indicates:

    LECTION-SCREEN BEGIN OF BLOCK B1.RAMETERS: myparam(10) type C,

    param2(10) type N,LECTION-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 statement will sort the data of an internal table with fields FRUIT, QTY, and PRICE so that it appears as follows?

    http://abap-tutorials.com/http://abap-tutorials.com/http://abap-tutorials.com/
  • 8/14/2019 Abap Interview Set4

    16/17

    http://abap-tutorials.com 2010

    UIT QTY PRICE

    ples 12 22.50

    ples 9 18.25anges 15 17.35nanas 20 10.20nanas 15 6.89nanas 5 2.75

    SORT itab DESCENDING BY QTY PRICE.SORT itab BY PRICE FRUIT.SORT itab.SORT itab BY PRICE DESCENDING.

    Which keyword adds a line anywhere within an internal table?

    APPENDMODIFYADDINSERT

    To read a single line of an internal table, use the following:

    LOOP AT itab. _ ENDLOOP.READ itab.

    SELECT SINGLE * FROM itab.READ TABLE itab.

    Which Open SQL statement should not be used with cluster databases?

    UPDATEMODIFYDELETEINSERT

    To include a field on your screen that is not in the ABAP Dictionary, which include program should contain the dataclaration for the field?

    PBO module include programTOP include programPAI module include program

    Subroutine include program

    This flow logic statement is used to make multiple fields open for input after an error or warning message.

    GROUPFIELD-GROUPCHAINLOOP AT SCREEN

    http://abap-tutorials.com/http://abap-tutorials.com/http://abap-tutorials.com/
  • 8/14/2019 Abap Interview Set4

    17/17

    http://abap-tutorials.com 2010

    Given:

    RFORM subroutine USING var.

    e var field is known as what type of parameter?

    FormalActualStaticValue

    http://abap-tutorials.com/http://abap-tutorials.com/http://abap-tutorials.com/