NO.1 A. B. C. D. E.: Answer
NO.1 A. B. C. D. E.: Answer
NO.1 What should you do to follow the code-to-data approach to programming? There are 3 correct
answers to this question.
A. Perform expensive calculations on the database.
B. Transfer all data from the database to the ABAP layer, and then aggregate the results.
C. Use native SQL to access SAP HANA built-in functions.
D. Aggregate data on the database, and transfer the results to the ABAP layer.
E. Perform expensive calculations on the ABAP application server.
Answer: A,C,D
NO.2 You developed an ABAP managed database procedure (AMDP). You want to allow the
enhancement of this AMDP using business add-in (BADI). Which of the following objects must you
create? There are 3 correct answers to this question.
A. A BADI simple implementation
B. A BADI fallback implementation
C. A BADI definition
D. A database procedure
E. An enhancement spot
Answer: B,C,E
NO.4 What are the three best approach for Transitioning and optimizing ABAP applications to SAP
HANA? There are 3 correct answers to this question.
A. Scaling
B. Optimize
C. Detect
D. Tuning
E. Innovate
Answer: B,C,E
NO.5 What are the key points that should be kept in mind while performing the Non-automatic
update in SAP HANATr.Cont.? There are 2 correct answers to this question.
A. Take snapshot manually before releasing of the container
B. Changes to Delta Container
C. You need to refresh the content of the container manually
D. Automatic release of units
Answer: A,C
NO.7 What are the steps involved in supporting a database oriented programming model? There are
2 correct answers to this question.
A. A new and advanced Open SQL
B. Advanced and specific models
C. Core Data services
D. Buffer system services
Answer: A,C
NO.8 What are the Possible Approaches with AS ABAP < 7.4 SP02? There are 2 correct answers to
this question
A. Consume using native SQL
B. Stored Procedures
C. Interaction with Database
D. SQL units
Answer: A,B
NO.9 Which of the following JOIN types are supported in Open SQL? 3 ans
A. INNER JOIN
B. LEFT OUTER JOIN
C. REFERENTIAL JOIN
D. RIGHT OUTER JOIN
E. CROSS JOIN
Answer: A,B,D
NO.11 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? Please choose the correct answer.
A. {it.books}
B. it_books
C. @it_books
D. :it_books
Answer: D
NO.12 ANSI SQL owns features and adds languages. These languages divided into three parts. What
are they? There are 3 correct answers to this question.
A. The Data Control Language
B. Data Transferred Language
C. Data Manipulation Language
D. The Database Language
E. The Data Definition Language
Answer: A,C,E
NO.14 Which rules does SAP recommended to improve the performance of ABAP report on SAP
HANA? There are
2 correct answers to this question.
A. Use array variants of INSERT UPDATE MODIFY and DELETE
B. Perform all calculations and aggregations in the ABAP layer
C. Use a nested SELECT statement instead of SELECT FOR ALL ENTRIES
D. Use SELECT FOR ALL ENTRIES instead of a nested SELECT statement
Answer: A,C
NO.15 In addition to closing the result set. what does the CLOSE method of the CL_SQL_RESULT_SET
class when using ABAP Database Connectivity (ADBC) do? Please choose the correct answer.
A. Update resources
B. Release resources
C. Update packages
D. Update resources
Answer: B
NO.16 Which tools can you use to provide input data for the SQL performance tuning work list
(Transaction SWLT)?
There are 3 correct answers to this question.
A. Data base performance monitor (transaction DB50)
B. SQL Trace (transaction ST05)
NO.18 What are the two types of editors available in ADT? There are 2 correct answers to this
question.
A. ABAP (native)
B. SAP (GUI)
C. Eclipse (native)
D. Client (native)
Answer: B,C
NO.19 In ABAP Development Tools for SAP NetWeaver, you execute the ABAP Test Cockpit on an
ABAP program to find performance optimization potential.
Where can you find the result of the static code checks?
A. In the Outline view of the ABAP Performance perspective
B. In the Problems view
C. In the Project Explorer view
D. In the Performance Analysis view
Answer: B
NO.20 You want to define an ABAP Core Data Services (CDS) view that totals the NET_AMOUNT
column for each sales order (column SOJD). Which SELECT statement would you use in the definition?
Please choose the correct answer.
A. select from snwd_so {so_id( sum(net_amount) as sum_amount} group by net_amount
B. select from snwd_so {so_id( sum(net_amount) as sum_amount} order by sojd
C. select from snwd_so {sojd, sum(net_amount) as sum_amount}
D. select from snwd_so {so_id( sum(net_amount) as sum_amount} group by sojd
Answer: D