Which rules are valid for the sub constructor?

Class super has subclass sub. Which rules are valid for the sub constructor? Note: There are 2 correct answers to this question.A . The method signature can be changed.B . Import parameters can only be evaluated after calling the constructor of super.C . The constructor of super must be called...

December 3, 2023 No Comments READ MORE +

What is the purpose of a foreign key relationship between two tables in the ABAP Dictionary?

What is the purpose of a foreign key relationship between two tables in the ABAP Dictionary?A . To document the relationship between the two tablesB . To ensure the integrity of data in the corresponding database tablesC . To create a corresponding foreign key relationship in the databaseView AnswerAnswer: B...

December 2, 2023 No Comments READ MORE +

What RESTful Application Programming object contains only the fields required for a particular app?

What RESTful Application Programming object contains only the fields required for a particular app?A . Database viewB . Metadata extensionC . Projection ViewD . Data model viewView AnswerAnswer: C Explanation: A projection view is a RESTful Application Programming object that contains only the fields required for a particular app. A...

December 2, 2023 No Comments READ MORE +

b is joined with c

b is joined with cView AnswerAnswer: C Explanation: The nested join is evaluated from the top to the bottom in the order of the ON conditions. This means that the join expression is formed by assigning each ON condition to the directly preceding JOIN from left to right. The join...

December 2, 2023 No Comments READ MORE +

When accessing the subclass instance through go_super, what can you do?

Refer to Exhibit. When accessing the subclass instance through go_super, what can you do? Note: There are 2 correct answers to this question.A . Access the inherited private components.B . Access the inherited public components.C . Call a subclass specific public methodD . Call inherited public redefined methods.View AnswerAnswer: AB...

December 2, 2023 No Comments READ MORE +

Which extensibility type does SAP recommend you use to enhance the existing UI for an SAP Fiori app?

Which extensibility type does SAP recommend you use to enhance the existing UI for an SAP Fiori app?A . Key userB . ClassicC . Side-by-sideD . DeveloperView AnswerAnswer: D Explanation: According to the SAP clean core extensibility and ABAP cloud topic, SAP recommends using developer extensibility to enhance the existing...

December 2, 2023 No Comments READ MORE +

Which internal table type allows unique and non-unique keys?

Which internal table type allows unique and non-unique keys?A . SortedB . HashedC . StandardView AnswerAnswer: C Explanation: The internal table type that allows both unique and non-unique keys is the standard table. A standard table has an internal linear index that can be used to access the table entries....

December 2, 2023 No Comments READ MORE +

When does SAP recommend to use a sorted or a hashed table respectively? Note: There are 2 correct answers to this question.

When does SAP recommend to use a sorted or a hashed table respectively? Note: There are 2 correct answers to this question.A . A hashed table, when you read a single record and specify the complete key.B . A hashed table, when you read a subset in a loop and...

December 1, 2023 No Comments READ MORE +

What are valid statements? Note: There are 2 correct answers to this question.

What are valid statements? Note: There are 2 correct answers to this question.A . ##NEEDED is checked by the syntax checker.B . The pragma is not checked by the syntax checker.C . #EC_NEEDED is not checked by the syntax checker.D . The pseudo-comment is checked by the syntax checkerView AnswerAnswer:...

December 1, 2023 No Comments READ MORE +

Which patterns raise an exception? Note: There are 3 correct answers to this question.

Which patterns raise an exception? Note: There are 3 correct answers to this question.A . DATA: gv_target TYPE p DECIMALS 2. CONSTANTS: go intl TYPE i VALUE 3. gv_target -U EXACT (2 gcojntl).B . DATA: gv_target TYPE string. □ CONSTANTS: gco_string TYPE LENGTH 16 VALUE 0123456789ABCDEF*. gv_target = EXACT #...

December 1, 2023 No Comments READ MORE +