Summer Sale Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: ecus65

SAP C_S4HDEV1909 - SAP Certified Development Associate - Programming in SAP S/4HANA for SAP NetWeaver ABAP Programmer

Page: 1 / 3
Total 80 questions

You are writing an ABAP Managed Database Procedure that contains a SELECT statement. How does client handling work?

Please choose the correct answer.

A.

Use sy-mandt

B.

Use session_context( ICLIENTI )

C.

Use $session.client

D.

Client handling is automatic

Which of the following features are part of the new syntax for OpenSQL?

There are 2 correct answersto this question.

A.

Comma-separated column list

B.

Blank-separated column list

C.

ABAP variables escaped with :

D.

ABAP variables escaped with @

You want to use the extensibility app, Custom Fields and Logic, to define custom fields for an SAP Fiori app. Which of the following conditions is a prerequisite for this activity?

Please choose the correct answer.

A.

Custom fields can only be created for SAP Fiori apps that have been enabled by SAP for this type of extension.

B.

You must release the SAP Fiori app for extensibility via transaction Setup Adaptation Transport Organizer for Key User Tools (S_ATO_SETUP).

C.

You must release the SAP Fiori app for extensibility using the Enable Fields for Use transaction in the Custom Fields and Logic (SCFD_EUI) app.

D.

There is no specific requirement. Custom fields can basically be created for any SAP Fiori app.

In SAP S/4HANA, a replacement object is assigned to transparent table ANEA. Which uses of table ANEA do you have to correct when migrating an SAP ERP system to SAP S/4HANA?

There are 2 correct answers to this question.

A.

As the data source of a database view in the ABAP Dictionary

B.

In the FROM clause of a SELECT statement

C.

As the line type of a table type in the ABAP Dictionary

D.

In the FROM clause of a DELETE statement

Which of the following features are available in Open SQL release7.50?

There are 3 correct answers to this question.

A.

BETWEEN in ON conditions

B.

Up to 50 tables in JOINs

C.

FULL OUTER JOIN

D.

ASSOCIATION

E.

RIGHT OUTER JOIN

Which of the following are features of the Cloud Connector?

There are 2 correct answers to this question.

A.

Provides audit logging of configuration changes

B.

Allows user-specific configuration

C.

Runs as on-premise agent in a secured network.

D.

Closes broken connections automatically

Which of the following do you use as a separator between a table and a field name in Open SQL?

Please choose the correct answer.

A.

Pointer (->)

B.

Tilde (~)

C.

Minus (-)

D.

Period (.)

You implement an ABAP Managed Database Procedure (AMDP). You want to access some other objects from within your script code. Which of the following objects must you list after the USING addition?

There are 2 correct answers to this question.

A.

AMDP Functions

B.

Database Views

C.

Calculation Views

D.

Stored Procedures

You use the UNION in the Open SQL statement in release 7.50.Which of the following must you use?

There are 2 correct answers to this question.

A.

INTO clause at the end

B.

JOIN clauses

C.

Explicit field list

D.

DISTINCT clause

You have written a program that uses inline declarations and assigns values using expressions. The global data declarations contain the following statement: DATA o TYPE REF TO cl_class.

Which of the following are valid statements?

There are 3 correct answers to this question.

A.

DATA(p) = NEW cl_class( ).

B.

DATA(p) =NEW( ).

C.

o = NEW string( ).

D.

o = NEW( ).

E.

o =NEW cl_class( ).