-->

Tuesday, November 7, 2023

SAP ABAP CERTIFICATION MCQs Part 6


ABAP CERTIFICATION Multiple Choice Questions (MCQs)


What information can you specify using annotations (marked with the @ sign) when you define a Core Data Services (CDS) view in an ABAP system? There are 3 correct answers to this question.
  1. The logic for aggregations, grouping records, and filtering groups of the CDS view.
  2. The join conditions of the CDS view.
  3. The name of the representation of the CDS view in the ABAP dictionary.
  4. The client dependency of the CDS view.
  5. The extent to which records of the CDS view should be buffered on the application server.
Correct Answer: 3, 4, 5

1.       Explain The Authorization Concept and the types of privileges associated with it? There are 3 correct answers to this question.
  1. System privileges
  2. Object privileges
  3. Analytic privileges
  4. Delta privileges
  5. Application privileges
Correct Answer: 1, 2, 3

             You have an SQLScript procedure with a table input parameter it_books. You want to use the parameter on the right-hand side of an assignment operator within the procedure. How do you refer to the parameter? Choose one correct answer.
  1. {it_books}
  2. :it_books
  3. @it_books
  4. it_books
        Correct Answer: 2

        What must you do when you define and implement an ABAP Managed Database Procedure (AMDP)? There are 3 correct answers to this question
  1. Use scalar types for all AMDP method parameters.
  2. Mark the AMDP method as a READ-ONLY database procedure.
  3. List all ABAP Dictionary tables used in the procedure body in the USING clause.
  4. Specify the database system and the language.
  5. Define all method parameters to be passed by value.
  6. BDC program is used for following except
Correct Answer: 3,4,5

Which of the following are performance recommendations when using SAP HANA? There are 2 correct answers to this question.
  1. Define indexes on the columns that are used in calculations.
  2. Move data-intensive calculations from the database to an application server.
  3. Avoid transferring large result sets between database and client applications.
  4. Filter data in lower layers.
Correct Answer: 3,4