Question 16

After you created a database table in the RESTful Application Programming model, what do you create next?
  • Question 17

    In a subclass sub1 you want to redefine a component of a superclass super1.
    How do you achieve this? Note: There are 2 correct answers to this question.
  • Question 18

    Which of the following rules apply for dividing with ABAP SQL? Note: There are 3 correct answers to this question A)The division operator "/" accepts floating point input.
    SELECT FROM TABLE dbtab1
    FIELDS f1, f2/f3...
    B) Numeric function div(nominator, denominator) expects only integer input.
    SELECT FROM TABLE dbtab1
    FIELDS f1, div (f2, 13)...
    C) Numeric function division (nominator, denominator, decimal places) accepts decimal input. SELECT FROM TABLE dbtab1 FIELDS f1, division ( f2, f3,2)...
    D) The division operator "/" accepts decimal input.
    SELECT FROM TABLE dbtab1
    FIELDS f1, f2/f3...
    E) Numeric function division(nominator, denominator, decimal places) accepts floating point input.
    SELECT FROM TABLE dbtabl
    FIELDS f1, division( f2, f3, 2)...
  • Question 19

    Which function call produces the string "LORE IPSUM FACTUM?
  • Question 20

    Which of the following are valid ABAP SQL type conversions? Note: There are 3 correct answers to this question.