SAP ABAP Basic

50 Questions | Attempts: 477
Share

SettingsSettingsSettings
SAP ABAP Basic - Quiz

ABAP certification questions


Questions and Answers
  • 1. 

    Menu bar will have the following menus by default when created

    • A.

      A) File, help

    • B.

      B) Edit, Help

    • C.

      C) Window, System

    • D.

      D) None of the above

    Correct Answer
    D. D) None of the above
  • 2. 

    Internal table can be of type:

    • A.

      A) Standard

    • B.

      B) Sorted

    • C.

      C) Hashed

    • D.

      D) All of the above

    Correct Answer
    D. D) All of the above
  • 3. 

    A GUI status is composed of which of the following?

    • A.

      Menu Bar and Checkboxes

    • B.

      Menu Bar, Tool Bar, and Checkboxes

    • C.

      Tool Bar and Checkboxes

    • D.

      Menu Bar, Tool Bar, and Title

    Correct Answer
    D. Menu Bar, Tool Bar, and Title
  • 4. 

    Transaction for creating message class

    • A.

      SE93

    • B.

      SM12

    • C.

      SM37

    • D.

      SE91

    Correct Answer
    D. SE91
  • 5. 

    While debugging you can assign a new value to a variable

    • A.

      True

    • B.

      False

    Correct Answer
    A. True
  • 6. 

    SORT statement can sort

    • A.

      External as well as internal table

    • B.

      Only database table

    • C.

      Only internal table

    Correct Answer
    C. Only internal table
  • 7. 

    In debugging if you want to test a transaction you enter in command field.

    • A.

      /a

    • B.

      /h

    • C.

      /d

    • D.

      /tr

    Correct Answer
    B. /h
  • 8. 

    What is the transaction code for the ABAP Editor

    • A.

      Se11

    • B.

      Se38

    • C.

      Se36

    • D.

      Se14

    Correct Answer
    B. Se38
  • 9. 

    Following data types are present in ABAP 4

    • A.

      Char

    • B.

      Alpha numeric

    • C.

      Decimal

    • D.

      Varchar

    Correct Answer
    A. Char
  • 10. 

    What can be assigned directly to a data element

    • A.

      Table type

    • B.

      Built-in type

    • C.

      Table field

    • D.

      Check table

    Correct Answer
    B. Built-in type
  • 11. 

    A screen field has been dynamically changed in a dialog program. When does it get re-initialized?

    • A.

      Only when the program encounters more code to modify the field attributes

    • B.

      At the end of the transaction

    • C.

      At PAI execution

    • D.

      At PBO execution

    Correct Answer
    D. At PBO execution
  • 12. 

    How many dialog steps in an SAP Transaction

    • A.

      At least One

    • B.

      Only One

    • C.

      One for every transaction in the SAP LUW

    • D.

      One for every explicit database commit

    Correct Answer
    A. At least One
  • 13. 

    Ranges are same as number ranges

    • A.

      True

    • B.

      False

    Correct Answer
    A. True
  • 14. 

    Which is not a type of RFC Call

    • A.

      Synchronous

    • B.

      Transactional

    • C.

      Asynchronous

    • D.

      All the above

    Correct Answer
    D. All the above
  • 15. 

    A Tabstrip control consists of the following elements except

    • A.

      Scroll bar

    • B.

      Tab title

    • C.

      Subscreen

    • D.

      None of the above

    Correct Answer
    C. Subscreen
  • 16. 

    Process code refers to an workflow or a function module which helps in reading or writing data from/to Idoc. The statement is:

    • A.

      True

    • B.

      False

    Correct Answer
    A. True
  • 17. 

    What is needed to ensure a check field is verified against the referenced key field of the check table

    • A.

      Same data type only is required for check field and referenced field

    • B.

      Same domain is required for check field and referenced field

    • C.

      Same data element is required for check field and referenced field

    • D.

      All key fields MUST have domain equality between check table and foreign key table

    Correct Answer
    B. Same domain is required for check field and referenced field
  • 18. 

    What is proper coding practice in the flow logic of a Dynpro when a subscreen is defined on the screen

    • A.

      The Call Subscreen statement is not required

    • B.

      Call Subscreen in the PBO only

    • C.

      Call Subscreen in the PAI and PBO

    • D.

      Call Subscreen in the PAI only

    Correct Answer
    C. Call Subscreen in the PAI and PBO
  • 19. 

    Buffering can be good for which type of table

    • A.

      When a table is read infrequently

    • B.

      When a table is read frequently and the data is always changing

    • C.

      When a table is read frequently and the data seldom changes

    • D.

      When a table is linked to check tables

    Correct Answer
    C. When a table is read frequently and the data seldom changes
  • 20. 

    What addition to the read table statement must be used when reading a hashed or sorted internal table to ensure that a binary search will be used?

    • A.

      WITH KEY

    • B.

      WITH TABLE KEY

    • C.

      WHERE

    • D.

      None of the above

    Correct Answer
    A. WITH KEY
  • 21. 

    You have added an append structure to a standard SAP table. What happens to the standard table when a new version of the table is imported during an upgrade?

    • A.

      The standard table is returned to standard. Therefore, the append structure must be manually re-applied

    • B.

      When the standard tables are activated, the append structure is automatically appended to the standard table

    • C.

      The append fields are automatically appended to the table upon activation but you must still convert the table

    • D.

      All append structures are deleted. A new append structuremust be created and then appended to the standard table

    Correct Answer
    B. When the standard tables are activated, the append structure is automatically appended to the standard table
  • 22. 

    Which of the following is correct in the case of READ with BINARY SEARCH on a standard internal table

    • A.

      The internal table needs to be sorted using the key fields

    • B.

      The internal table need not be sorted

    • C.

      The internal table needs to be sorted using the fields in sequence as used in BINARY SEARCH

    • D.

      None of the above

    Correct Answer
    C. The internal table needs to be sorted using the fields in sequence as used in BINARY SEARCH
  • 23. 

    Where is the current active tab stored for a tabstrip

    • A.

      ACTIVETAB

    • B.

      Tab strip

    • C.

      Function Code

    • D.

      OK_Code

    Correct Answer
    A. ACTIVETAB
  • 24. 

    Identify the key word that determines if a CMOD function exit has been provided:

    • A.

      CALL PROGRAM-EXIT

    • B.

      CALL CUSTOMER-FUNCTION

    • C.

      CALL CUSTOMER-SUBSCREEN

    • D.

      CALL USER-EXIT

    Correct Answer
    B. CALL CUSTOMER-FUNCTION
  • 25. 

    Which of the following provides general information on the SAP system and transaction or task on which you are working?

    • A.

      Status bar

    • B.

      Menupath

    • C.

      Rolebar

    • D.

      None of the above

    Correct Answer
    A. Status bar
  • 26. 

    Which of the project phase is most important from process design and definition perspective

    • A.

      Realization

    • B.

      Project Preparation

    • C.

      Blueprint

    • D.

      Acceptance testing

    Correct Answer
    B. Project Preparation
  • 27. 

    The system performance is affected by the following

    • A.

      The number of users active in the system

    • B.

      The activities of these users

    • C.

      How much data is being addressed

    • D.

      All of the above

    Correct Answer
    D. All of the above
  • 28. 

    It is possible to protect a variant from changes by other users

    • A.

      True

    • B.

      False

    Correct Answer
    A. True
  • 29. 

    Any changes that your development teams make to Customizing or Repository objects in the development system are automatically transported to the target systems (such as the quality assurance and production systems) when they are released

    • A.

      True

    • B.

      False

    Correct Answer
    B. False
  • 30. 

    Where is the Permanent data (e.g. Customizing setting, Master data, Transaction data) usually stored in an R/3 system?

    • A.

      Database tables

    • B.

      Data Elements

    • C.

      Domains

    • D.

      ABAP Objects

    Correct Answer
    A. Database tables
  • 31. 

    You can use the F1 help to

    • A.

      Display an explanation of a field's uses

    • B.

      Display a list of possible input values

    • C.

      End the session you are in

    • D.

      Change the logon language

    Correct Answer
    A. Display an explanation of a field's uses
  • 32. 

    SAP for Utilities is a

    • A.

      Module

    • B.

      Program

    • C.

      Approach

    • D.

      Industry Solution

    Correct Answer
    D. Industry Solution
  • 33. 

    What is the SAP GUI ?

    • A.

      SAP transaction for screen enhancement

    • B.

      Graphical User Interface

    • C.

      Generic Utility Interface

    • D.

      None of the above

    Correct Answer
    B. Graphical User Interface
  • 34. 

    If a list is not to be printed that gets generated during background job. It will not have

    • A.

      Print request

    • B.

      Spool request

    • C.

      Output request

    • D.

      None of the above

    Correct Answer
    A. Print request
  • 35. 

    Which is the standard SAP component for intergration of different third party systems

    • A.

      XI

    • B.

      BW

    • C.

      SM

    • D.

      EP

    Correct Answer
    A. XI
  • 36. 

    If you want to display technical names for the respective tasks you can do this using the following tab in the menu bar

    • A.

      System

    • B.

      Extras

    • C.

      Favorites

    Correct Answer
    B. Extras
  • 37. 

    Which of the following is not a category of SAP notes in service market place

    • A.

      Consulting

    • B.

      Correction

    • C.

      Configuration

    • D.

      Customer

    Correct Answer
    A. Consulting
  • 38. 

    Where can you see the Tcode for the screen in the SAP window

    • A.

      In the menu bar

    • B.

      In the status field of the status bar

    • C.

      Using system -> status menu

    • D.

      All of the above

    Correct Answer
    B. In the status field of the status bar
  • 39. 

    Transaction code for accesssing SAP mailbox is

    • A.

      SBWP

    • B.

      SPHA

    • C.

      SSC1

    • D.

      SWUI

    Correct Answer
    A. SBWP
  • 40. 

    The configuration of the R/3 is done through:

    • A.

      The Implementation Guide

    • B.

      The Implementation Assistant

    • C.

      Business Navigator

    • D.

      Business Engineer

    Correct Answer
    A. The Implementation Guide
  • 41. 

    Language for SAP menu in the transaction depends on

    • A.

      Setting in user master

    • B.

      Language selected during login

    • C.

      Selection in the transaction

    • D.

      All of the above

    Correct Answer
    B. Language selected during login
  • 42. 

     What is the ABAP Dictionary being used for?

    • A.

      Defining database objects, e.g. Tables and Views on the Database

    • B.

      Maintaining ABAP programs

    • C.

      Maintaining Documentation

    • D.

      Maintaining help files

    Correct Answer
    A. Defining database objects, e.g. Tables and Views on the Database
  • 43. 

    For a user in SAP R/3 client, the maximum number of sessions that could be open is:

    • A.

      4

    • B.

      6

    • C.

      8

    • D.

      9

    Correct Answer
    B. 6
  • 44. 

    This SAP product is the foundation for SOA in an enterprise

    • A.

      SAP XI

    • B.

      SAP BI

    • C.

      SAP Netweaver

    • D.

      None of the above

    Correct Answer
    C. SAP Netweaver
  • 45. 

    Which of these is not entered in the SAP logon screen

    • A.

      Client No

    • B.

      System ID

    • C.

      User Password

    • D.

      Language Key

    Correct Answer
    B. System ID
  • 46. 

    Background jobs can not be scheduled periodically

    • A.

      Using a given frequency

    • B.

      Based on status of another job

    • C.

      Based on a event

    • D.

      None of the above

    Correct Answer
    D. None of the above
  • 47. 

    Report printed by SAP system can be reprinted without generating it again

    • A.

      True

    • B.

      False

    Correct Answer
    A. True
  • 48. 

    SAP Best Practices are the sound foundation for pre-packaged ready-to-use business solutions             

    • A.

      True

    • B.

      False

    Correct Answer
    A. True
  • 49. 

    Customizing is for...

    • A.

      ) Adjusting the company-neutral delivered functions to your company\'s business requirements (e.g. defining sales organizations and distribution channels for adapting to the organizational structure of a company

    • B.

      Tuning the Performance of a system (e.g. setting of Parameters for defining the size of memory areas on a server or for optimizing database access)

    • C.

      Personalizing the End user\'s access to the system (e.g. setting font size and user specific parameters to fill frequently used input fields with default values)

    • D.

      For initiating backgroung processing

    Correct Answer
    A. ) Adjusting the company-neutral delivered functions to your company\'s business requirements (e.g. defining sales organizations and distribution channels for adapting to the organizational structure of a company
  • 50. 

    Which one of the following is true about the access costs for a sorted internal table

    • A.

      Increases linearly

    • B.

      Increases logarithmically

    • C.

      Is constant

    • D.

      None of the above

    Correct Answer
    B. Increases logarithmically

Quiz Review Timeline +

Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.

  • Current Version
  • Nov 08, 2013
    Quiz Edited by
    ProProfs Editorial Team
  • Mar 29, 2013
    Quiz Created by
    Kandalgaonkarsag
Back to Top Back to top
Advertisement