Examq

99 Questions | Attempts: 268
Share

SettingsSettingsSettings
Examq - Quiz

Preparation for ABAP exam


Questions and Answers
  • 1. 

    Which statements are allowed if you are working with an internal table of the type SORTED?

    • A.

      SORT

    • B.

      APPEND

    • C.

      MODIFY

    • D.

      COLLECT

    • E.

      READ

    Correct Answer(s)
    D. COLLECT
    E. READ
  • 2. 

    Which of the following ABAP statements create a list for executable programs?

    • A.

      SKIP

    • B.

      WRITE

    • C.

      PERFORM

    • D.

      CLEAR

    • E.

      ULINE

    Correct Answer(s)
    A. SKIP
    B. WRITE
    E. ULINE
  • 3. 

    Which of the following statements are correct?

    • A.

      You can select from several database tables using a database view or a join.

    • B.

      A secondary index for non-key fields generally works like a primary index for key fields.

    • C.

      A key field in a database table uniquely identifies a data record.

    • D.

      The client field is a selective field and should therefore always be specified in the WHERE condition for SELECT.

    • E.

      The OPEN SQL statements are converted into database-specific statements by the database interface.

    Correct Answer(s)
    A. You can select from several database tables using a database view or a join.
    B. A secondary index for non-key fields generally works like a primary index for key fields.
    C. A key field in a database table uniquely identifies a data record.
    E. The OPEN SQL statements are converted into database-specific statements by the database interface.
  • 4. 

    In program P, the SUBMIT statement is used to call report R. How can you pass data from P to R?

    • A.

      Using the SET/GET parameters.

    • B.

      By passing parameters using additions in the SUBMIT statement.

    • C.

      Using the ABAP memory.

    • D.

      By declaring the data objects with the same name in both programs, using the DATA statement.

    Correct Answer(s)
    A. Using the SET/GET parameters.
    B. By passing parameters using additions in the SUBMIT statement.
    C. Using the ABAP memory.
  • 5. 

    Which of the following statements about the SELECT statement are correct?

    • A.

      With SELECT SINGLE access, the result is one data record maximum.

    • B.

      The SELECT statement supports the return code (SY-SUBRC).

    • C.

      With SELECT...ENDSELECT access. the result is one data record maximum.

    • D.

      The SELECT statement always reads the data into the SAP memory first.

    • E.

      With SELECT...INTO TABLE access, the result is one data record maximum.

    Correct Answer(s)
    A. With SELECT SINGLE access, the result is one data record maximum.
    B. The SELECT statement supports the return code (SY-SUBRC).
  • 6. 

     Which of the following statements about data types, data objects, and field symbols are correct?

    • A.

      If you change the value of a field symbol, the value of the data object to which the field symbol is assigned also changed.

    • B.

      A field symbol always reference a data element.

    • C.

      You can no longer create data objects at runtime(dynamically) since the ABAP runtime system combines all the declarative statements in on processing block and executes these first.

    • D.

      A field symbols only references a data object after the latter has been assigned to the field symbols using the ASSIGN statement.

    • E.

      You can change the type of the assigned data object using the CASTING-TYPE addition for the ASSIGN statement.

    Correct Answer(s)
    A. If you change the value of a field symbol, the value of the data object to which the field symbol is assigned also changed.
    D. A field symbols only references a data object after the latter has been assigned to the field symbols using the ASSIGN statement.
    E. You can change the type of the assigned data object using the CASTING-TYPE addition for the ASSIGN statement.
  • 7. 

    Which of the following statements about internal tables is correct?

    • A.

      Key access to an internal table of the type STANDARD generally has even less runtime consumption than index access.

    • B.

      Index access to an internal table of type SORTED will, in certain cases, violate the sort sequence.

    • C.

      Access to nested internal tables using field symbols usually increase performance.

    • D.

      Index access to an internal table of the type HASHED has less runtime consumption.

    • E.

      You can perform a binary search on internal tables of the type SORTED using the addition BINARY SEARCH only.

    Correct Answer
    C. Access to nested internal tables using field symbols usually increase performance.
  • 8. 

    You want a subroutine U to have a formal parameter P that is used to return a value. Which of the following definitions of U would you use to ensure that the value is passed back to the calling program only if the processing of U ends normally and is not terminated with a MESSAGE statement? (Single selection)

    • A.

      FORM U CHANGING VALUE(P).

    • B.

      FORM U CHANGING P.

    • C.

      FROM U USING p.

    • D.

      FORM U USING VALUE(P).

    Correct Answer
    A. FORM U CHANGING VALUE(P).
  • 9. 

    Which statement at the time of AT SELECTION-SCREEN causes the selection screen to be displayed again with fields ready for input and a message in the status line? (Single selection)

    • A.

      A MESSAGE E...statement

    • B.

      An AUTHORITY-CHECK statement that return code SY-SUBRC NE 0.

    • C.

      A MESSAGE I...statement.

    Correct Answer
    A. A MESSAGE E...statement
  • 10. 

    What do you get when you refer to a client-specific transparent table in the Dictionary if you have a data definition with TABLES? (Single selection)

    • A.

      A structured work area (line).

    • B.

      A field

    • C.

      An internal table

    Correct Answer
    A. A structured work area (line).
  • 11. 

    Which of the following events generate lists?

    • A.

      PROCESS BEFORE OUTPUT

    • B.

      START-OF-SELECTION.

    • C.

      AT SELECTION-SCREEN.

    • D.

      INITIALIZATION.

    • E.

      AT LINE-SELECTION.

    Correct Answer
    E. AT LINE-SELECTION.
  • 12. 

    Which techniques are basic requirements for polymorphism?

    • A.

      Implementation of methods of an interface in the respective classes (for polymorphism through interfaces).

    • B.

      Narrowing Cast

    • C.

      Redifinition of methods (for polymorphism through inheritance)

    • D.

      Widening Cast

    Correct Answer
    C. Redifinition of methods (for polymorphism through inheritance)
  • 13. 

    Which component of an application sever controls the data traffic between a work process and a presentation server? (Single selection)

    • A.

      Dispatcher

    • B.

      SAPGUI.

    • C.

      Front-end processor.

    • D.

      Message Handler.

    • E.

      Screen processor.

    Correct Answer
    A. Dispatcher
  • 14. 

    For which tasks is the database interface responsible?

    • A.

      Syntax check of "native" SQL commands.

    • B.

      Conversion of Open SQL statement from ABAP statements into the corresponding database statements.

    • C.

      Data consistency check with respect to foreign key relationships.

    • D.

      Database independence of application programs.

    • E.

      Usage of the SAP buffers.

    Correct Answer(s)
    B. Conversion of Open SQL statement from ABAP statements into the corresponding database statements.
    D. Database independence of application programs.
    E. Usage of the SAP buffers.
  • 15. 

    Which SAP GUI types are there?

    • A.

      SAP GUI for Windows

    • B.

      SAP GUI for HTML

    • C.

      SAP GUI for Web AS

    • D.

      SAP GUI for ITS

    • E.

      SAP GUI for Java

    Correct Answer(s)
    A. SAP GUI for Windows
    B. SAP GUI for HTML
    E. SAP GUI for Java
  • 16. 

    Where can you have automatic input checks against the check table? (Single Selection)

    • A.

      For input fields on screens if the input fields have been copied from the Dication into the Screen Painter.

    • B.

      For input fields on ABAP lists.

    • C.

      For input fields on selection screens.

    Correct Answer
    A. For input fields on screens if the input fields have been copied from the Dication into the Screen Painter.
  • 17. 

    Is it possible to increase the number of key fields in transparent tables that are already active? (Single selection)

    • A.

      No, Key changes are not allowed.

    • B.

      Yes, irrespective of whether the table already contains data or not.

    • C.

      Yes, However, the table must not contain any data yet.

    Correct Answer
    A. No, Key changes are not allowed.
  • 18. 

    Which of the following statements about APPEND structures are true?

    • A.

      After adding an APPEND structure to a table, you must convert the table.

    • B.

      You can use an APPEND structure like any other structure in ABAP programs.

    • C.

      An APPEND structure allow you to append field to an SAP table without having to modify the table itself.

    • D.

      An APPEND structure is the same as substructure.

    Correct Answer
    C. An APPEND structure allow you to append field to an SAP table without having to modify the table itself.
  • 19. 

    Which of the following statements apply to a database view?

    • A.

      A database view supplies the results quantity of an outer join logic.

    • B.

      Using a database view, you can read data from several tables.

    • C.

      Using a database view, you can insert data into several tables.

    • D.

      A database view is a special view of transparent tables.

    • E.

      A database view can have one or several base tables.

    Correct Answer(s)
    B. Using a database view, you can read data from several tables.
    E. A database view can have one or several base tables.
  • 20. 

    The search help function know various link options in the ABAP dictionary. Which of the following statements apply?

    • A.

      A search help function that is linked to the table field can return values only for the search field (field where the f4 help was triggered).

    • B.

      A search help function that is linked to the data element can return values only for the search field (field where the f4 help was triggered).

    • C.

      If the search help function is linked to the data element as well as to the field. The search help for the field is displayed.

    • D.

      If the search help function is linked to a table A. this search help is displayed whenever there are input field from A on the screen.

    • E.

      If the search help function is linked to a table A. this search help displayed whenever there are input fields on that screen that have A as the check table.

    Correct Answer(s)
    C. If the search help function is linked to the data element as well as to the field. The search help for the field is displayed.
    E. If the search help function is linked to a table A. this search help displayed whenever there are input fields on that screen that have A as the check table.
  • 21. 

    Which statements about parameters for an elementary search help apply?

    • A.

      Parameters can be displayed on the result list.

    • B.

      Parameters must be fields from the selection method only.

    • C.

      Import parameters control which data can be included in the data selection.

    • D.

      Export parameters control which data can be returned to the input template.

    • E.

      A parameter is either an import or an export parameter

    Correct Answer(s)
    A. Parameters can be displayed on the result list.
    C. Import parameters control which data can be included in the data selection.
    D. Export parameters control which data can be returned to the input template.
  • 22. 

    Which of the following statements about indexes are correct?

    • A.

      The primary index consists of the key fields of the database table.

    • B.

      An Index can be assigned to several database tables.

    • C.

      A database table can have more than one index.

    • D.

      Using an index speeds up data selection from a table.

    Correct Answer(s)
    A. The primary index consists of the key fields of the database table.
    C. A database table can have more than one index.
    D. Using an index speeds up data selection from a table.
  • 23. 

    For what purpose are foreign key (FK) defined in the ABAP Dictionary? (Single selection)

    • A.

      For the purpose of data consistency: when you active the table the FKs are created in the database. You thus prevent invalid data from getting into the table.

    • B.

      For the propose data consistency: when you maintain data records using dialog transaction (screens).

    • C.

      The input values are automatically check in accordance with the FKs.

    • D.

      FKs are used solely for documenting table relationships.

    Correct Answer(s)
    B. For the propose data consistency: when you maintain data records using dialog transaction (screens).
    C. The input values are automatically check in accordance with the FKs.
  • 24. 

    In which of the following table types is there a one-to-one relationship between the table defined in the ABAP Dictionary and relevant physical table in the database?

    • A.

      Cluster table.

    • B.

      Pooled table.

    • C.

      Structure.

    • D.

      Transparent database table.

    Correct Answer
    D. Transparent database table.
  • 25. 

    What is allowed within class definitions?

    • A.

      Typing with LIKE to ABAP Dictionary types.

    • B.

      The definition of internal tables with header lines.

    • C.

      The TABLES statement.

    • D.

      The definition of internal tables without header lines.

    • E.

      Typing with TYPE to ABAP Dictionary types.

    Correct Answer(s)
    D. The definition of internal tables without header lines.
    E. Typing with TYPE to ABAP Dictionary types.
  • 26. 

    Which of the following statements about interfaces are correct?

    • A.

      Interfaces actually stand for an interface (protocol) between a client (interface user) and a server (implementing class).

    • B.

      Interfaces are used to call static components of a class.

    • C.

      Using interface references you can reference all the public components of an object that have been defined in the corresponding interface-implementing class.

    • D.

      A client (caller) can use interface reference to access all methods of the interfaces and thus archive polymorphism behavior.

    • E.

      Using interfaces you can simulate multiple inheritance.

    Correct Answer(s)
    A. Interfaces actually stand for an interface (protocol) between a client (interface user) and a server (implementing class).
    D. A client (caller) can use interface reference to access all methods of the interfaces and thus archive polymorphism behavior.
    E. Using interfaces you can simulate multiple inheritance.
  • 27. 

    Using the statement CREATE OBJECT you can instantiate objects of a class. What situations can arise here?

    • A.

      All objects of the same class contain the same number of attributes and methods after being created

    • B.

      You can preset different objects of a class with different values immediately when they are being created.

    • C.

      The contents of the attributes of different objects in a class always contain the same content or value immediately after being created.

    • D.

      You define the type and number of attributes of an object through the corresponding class.

    Correct Answer(s)
    A. All objects of the same class contain the same number of attributes and methods after being created
    B. You can preset different objects of a class with different values immediately when they are being created.
    D. You define the type and number of attributes of an object through the corresponding class.
  • 28. 

    Ref_cl is a reference to the class cl_document. ref_if is a reference to the interface if_display. The interface if_display is implemented by the class cl_document. What option do you have to create an object of the class cl_docment?

    • A.

      CREATE OBJECT ref_cl.

    • B.

      CREATE OBJECT ref_if TYPE cl_document.

    • C.

      CREATE OBJECT ref_if.

    • D.

      DATA class_name TYPE string. class_name = "CL_DOCUMENT". CREATE OBJECT ref_if TYPE (class_name).

    Correct Answer(s)
    B. CREATE OBJECT ref_if TYPE cl_document.
    D. DATA class_name TYPE string. class_name = "CL_DOCUMENT". CREATE OBJECT ref_if TYPE (class_name).
  • 29. 

    In the case of classes, we distinguish between two types of components (attributes and methods): Instance components and static components. Which of the following statements apply in this context?

    • A.

      In a static method, instance attributes can also be used, provided they are declared as READ ONLY.

    • B.

      Instance methods can use both static as well as instance components in their implementation part.

    • C.

      Both static as well as instance attributes are declared using the DATA statement

    • D.

      Static methods can be called through the class: =>.

    • E.

      Static attributes exist only once for each class.

    Correct Answer(s)
    B. Instance methods can use both static as well as instance components in their implementation part.
    D. Static methods can be called through the class: =>.
    E. Static attributes exist only once for each class.
  • 30. 

    Which of the following statements about functional methods are correct?

    • A.

      Functional methods cannot have any EXPORTING or CHANGING parameters.

    • B.

      Functional methods have exactly one RETURNING parameter.

    • C.

      You can functional methods directly in a WRITE statement.

    • D.

      You can use functional methods directly in an arithmetic expression.

    Correct Answer(s)
    A. Functional methods cannot have any EXPORTING or CHANGING parameters.
    B. Functional methods have exactly one RETURNING parameter.
    D. You can use functional methods directly in an arithmetic expression.
  • 31. 

    Which of the following statements apply to the SAP grid control?

    • A.

      Can only be implemented in module pools.

    • B.

      Can only display single-line lists.

    • C.

      Cannot print data.

    • D.

      Provides standard functions such as sorting.

    • E.

      Can only display structures from the Dictionary.

    Correct Answer(s)
    B. Can only display single-line lists.
    D. Provides standard functions such as sorting.
  • 32. 

    Which access authorizations apply to friend relationships?

    • A.

      A friend of a class access to the public attributes of the class allowing the friendship.

    • B.

      A subclass of a friend class has automatic access to the private attributes of the class allowing the friendship.

    • C.

      A friend of a class has access to the private attributes of the class allowing the friendship.

    • D.

      The allowing of a friendship is not inherited.

    Correct Answer(s)
    A. A friend of a class access to the public attributes of the class allowing the friendship.
    C. A friend of a class has access to the private attributes of the class allowing the friendship.
    D. The allowing of a friendship is not inherited.
  • 33. 

    Which statements in connection with methods are correct?

    • A.

      You can call methods in ABAP objects in the same way as function modules.

    • B.

      You can call methods only within ABAP Objects classes.

    • C.

      Like form routines or function modules, methods are a means to modularize software.

    • D.

      Similar to the case with function modules, you have the option with methods of marking parameters as "optional".

    Correct Answer(s)
    C. Like form routines or function modules, methods are a means to modularize software.
    D. Similar to the case with function modules, you have the option with methods of marking parameters as "optional".
  • 34. 

    SE24If you have a "Singleton Pattern", you must ensure that only one object can be created from a cl_singleton class. What mechanisms must you avail of here?

    • A.

      The singleton class must have a class method implemented in which the CREATE OBJECT call is programmed for this one object.

    • B.

      The singleton class must have the addition CREATE PRIVATE in the definition part.

    • C.

      In the singleton class, there must be an even defined that is triggered when the first and only object is created and also prevents further objects of this class from being created.

    • D.

      The singleton class must have an instance method implemented in which the CREATE OBJECT call is programmed for this one object.

    • E.

      The CREATE OBJECT call for this one object can take place in the class constructor of the singleton class.

    Correct Answer(s)
    A. The singleton class must have a class method implemented in which the CREATE OBJECT call is programmed for this one object.
    B. The singleton class must have the addition CREATE PRIVATE in the definition part.
    D. The singleton class must have an instance method implemented in which the CREATE OBJECT call is programmed for this one object.
    E. The CREATE OBJECT call for this one object can take place in the class constructor of the singleton class.
  • 35. 

    The reference ME is defined by the system and has the following function.(Single selection)

    • A.

      You use the reference ME within a class solely to reference the private methods of the class itself.

    • B.

      You use the reference ME within a class to call attributes and methods of the class itself.

    • C.

      You use the reference ME within a class solely to reference the private attributes of the class itself.

    Correct Answer
    B. You use the reference ME within a class to call attributes and methods of the class itself.
  • 36. 

    In a OO transaction, a transaction code is assigned to a method of a global class CL_A. Afterwards, this method can be called directly using the transaction code. What limitation exists with regard to the (instance) constructor of this class CL_A?

    • A.

      The constructor must not have any importing parameters.

    • B.

      There is no limitation.

    • C.

      The constructor must be defined in the protected section.

    Correct Answer
    A. The constructor must not have any importing parameters.
  • 37. 

    Which of the following statements about inheritance are correct?

    • A.

      Through inheritance, the public attributes of the super class are inherited to the subclass.

    • B.

      Through inheritance, the private attributes of the super class are inherited to the subclass and they can be addressed in the subclass directly using "ME->".

    • C.

      Through inheritance, the protected attributes of the super class are inherited to the subclass.

    • D.

      Through inheritance, the private attributes of the super class are inherited to the subclass and they can be addressed in the subclass directly using "THIS->".

    Correct Answer(s)
    A. Through inheritance, the public attributes of the super class are inherited to the subclass.
    C. Through inheritance, the protected attributes of the super class are inherited to the subclass.
  • 38. 

    Typing is not always necessary in ABAP, for example, for interface parameters of a subroutine. Which of the following statements applies to ABAP objects? (Single selection)

    • A.

      Typing is imperative for interface parameters of a method belonging to an ABAP objects class.

    • B.

      To simplify writing the software and design it clearly, you can do without typing altogether within the ABAP object classes.

    • C.

      If you have numeric interface parameter in an ABAP Objects class. You can do without typing.

    Correct Answer
    A. Typing is imperative for interface parameters of a method belonging to an ABAP objects class.
  • 39. 

    What is a (instance) constructor? (Single selection)

    • A.

      An instance attribute that is automatically given a unique identification by the system when an object is created.

    • B.

      An instance method for initializing the attributes of an object; it is automatically called by the system during CREATE OBJECT.

    • C.

      An instance method for controlling how much main memory is to be reserved for an object.

    Correct Answer
    B. An instance method for initializing the attributes of an object; it is automatically called by the system during CREATE OBJECT.
  • 40. 

    Which statements apply to dialog program? (Single selection)

    • A.

      If you are using asynchronous update, the database changes are executed directly from the program

    • B.

      If you are using asynchronous update, the statement COMMIT WORK is not required because it is executed implicitly after each screen change.

    • C.

      In the PAI of each screen, you must use the statement COMMIT WORK.

    • D.

      If an inline change has resulted in an error, the statement ROLLBACK WORK must be listed in the last screen in order to rollback the entire SAP LUW.

    • E.

      All inline change must be done in the PAI of the last screen in order to ensure the rollback ability of the SAP LUW.

    Correct Answer
    B. If you are using asynchronous update, the statement COMMIT WORK is not required because it is executed implicitly after each screen change.
  • 41. 

    What can you do to undo database changes executed beforehand in a dialog?

    • A.

      Output a termination message.(ABORT, X)

    • B.

      Analyze the log record.

    • C.

      Output an error message.

    • D.

      Perform a ROLLBACK WORK.

    • E.

      Raise an exception.

    Correct Answer(s)
    A. Output a termination message.(ABORT, X)
    D. Perform a ROLLBACK WORK.
  • 42. 

    Which of the following steps should be carried out in a transaction that implements an updating technique?

    • A.

      Call the ABAP command COMMIT WORK.

    • B.

      Unlock the data record that is to be updated

    • C.

      Lock the data record that to be update.

    • D.

      Read the data record that is to be update.

    • E.

      Pass the changes entered by the user to the update process.

    Correct Answer
    A. Call the ABAP command COMMIT WORK.
  • 43. 

    You call an update function using CALL FUNCTION ... IN UPDATE TASK. At what time are the values of the function parameters determined? (Single selection)

    • A.

      At the end of the dialog step.

    • B.

      At the start of the V1 update.

    • C.

      At the time of the call

    • D.

      At the start of function execution.

    • E.

      At COMMIT WORK.

    Correct Answer
    E. At COMMIT WORK.
  • 44. 

    You are writing a transaction to update a database table. Which of the following elements must the program contain?

    • A.

      A logical database.

    • B.

      A table buffer refresh on the application server.

    • C.

      A call for ENQUEUE/DEQUEUE function modules.

    • D.

      An AUTHORITY-CHECK statement.

    • E.

      A call for an update function module in the case of time-consuming changes.

    Correct Answer(s)
    C. A call for ENQUEUE/DEQUEUE function modules.
    D. An AUTHORITY-CHECK statement.
    E. A call for an update function module in the case of time-consuming changes.
  • 45. 

    What are the main reasons for using update techniques?

    • A.

      To log the database changes.

    • B.

      To achieve delayed implementation of database changes.

    • C.

      To collect database change requests from several dialog step in order to process them or delete them together.

    • D.

      To create reusable modules for database changes.

    • E.

      To relieve the load on the dialog work processes.

    Correct Answer(s)
    C. To collect database change requests from several dialog step in order to process them or delete them together.
    D. To create reusable modules for database changes.
    E. To relieve the load on the dialog work processes.
  • 46. 

    What happens if you have a CALL TRANSACTION statement?

    • A.

      The update process triggered by the called transaction can be executed asynchronously or synchronously, as required.

    • B.

      - The called transaction is processed in a separated database LUW.

    • C.

      Processing of the calling program will be continued at the end of the transaction.

    • D.

      Another internal session is opened for the transaction.

    Correct Answer(s)
    A. The update process triggered by the called transaction can be executed asynchronously or synchronously, as required.
    B. - The called transaction is processed in a separated database LUW.
    C. Processing of the calling program will be continued at the end of the transaction.
    D. Another internal session is opened for the transaction.
  • 47. 

    Which sub objects can an SAP enhancement contain?

    • A.

      Menu exits.

    • B.

      Screen exits.

    • C.

      Append Structures.

    • D.

      Function module exits.

    • E.

      User exits.

    Correct Answer(s)
    A. Menu exits.
    B. Screen exits.
    C. Append Structures.
    D. Function module exits.
  • 48. 

    You want to supply your users with a transaction variant. Using transaction variants you can ..

    • A.

      ... have transaction run in the background.

    • B.

      ... change the flow logic of a screen.

    • C.

      ... reduce the complexity of transactions.

    • D.

      ... suppress individual fields.

    • E.

      ... suppress entire(a) screens.

    Correct Answer(s)
    D. ... suppress individual fields.
    E. ... suppress entire(a) screens.
  • 49. 

    Which of the following statements apply to table appends?

    • A.

      There can be several append structures for one table.

    • B.

      If you copy a table to which an append structure has been added, the fields in the append structure become standard fields in the table.

    • C.

      When you active the table, all the active append structure of the table are established and appended to the table in the database.

    • D.

      An append structure can be assigned to several tables.

    Correct Answer(s)
    A. There can be several append structures for one table.
    B. If you copy a table to which an append structure has been added, the fields in the append structure become standard fields in the table.
    C. When you active the table, all the active append structure of the table are established and appended to the table in the database.
  • 50. 

    You wish to use a Business Transaction Event (BTE) to enhance an SAP application. Which statement applies?

    • A.

      BTEs are called on a cross-client basis.

    • B.

      BTEs allow you to call additional components in other systems.

    • C.

      BTEs allow you to link up additional components to the SAP standard system.

    • D.

      BTEs interface can be used repeatedly

    Correct Answer(s)
    C. BTEs allow you to link up additional components to the SAP standard system.
    D. BTEs interface can be used repeatedly

Quiz Review Timeline +

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

  • Current Version
  • Mar 22, 2022
    Quiz Edited by
    ProProfs Editorial Team
  • Mar 28, 2012
    Quiz Created by
    Abhy17
Back to Top Back to top
Advertisement