Labour Day - Special 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: 70dumps

C_TAW12_750 Questions and Answers

Question # 6

How do you create lock objects and lock modules for use in ABAP programs that's access the database?

A.

Use the function builder to create the lock modules.

B.

The lock objects are created automatically.

C.

Use the ABAP Dictionary to create the lock objects. Use the functions builder to create the lock modules.

D.

Use the function builder to create the lock modules and the lock objects.

E.

Use the ABAP Dictionary to create the lock objects. The lock module is created automatically

Full Access
Question # 7

Which of the following statement create a data object? Note: There are 3 correct answers to this question.

A.

CLASS

B.

CONSTANT

C.

class-data

D.

type

E.

parameters

Full Access
Question # 8

You have been asked by a customer to develop open SQL code to convert the value of argument "arg" into the ABAP Dictionary type specified, which SQL syntax do you use tomeet this requirement?

A.

CASTING (arg FOR type)

B.

CASTING (arg AS type)

C.

CAST (arg AS type)

D.

CAST (arg FOR type)

Full Access
Question # 9

You write a program that updates a data record in the database using the following statements. UPDATE scar FROM Is_scarr, which of the following task does the database interface perform?

Note: There are 2 correct answers to this question

A.

It translates the statement to native SQL

B.

It restricts the access to the logon client

C.

It checks the authorization of the current user

D.

It applies a logical lock to the updated date record

Full Access
Question # 10

You defined database view A and maintenance view B in the ABAP Dictionary. What restrictions apply to these views? Note: There are 2 correct answers to this question

A.

The join of both A and B is an inner join

B.

Only A can be used in the FROM clause of a SELECT statement

C.

The tables joined in A must have foreign key relationships

D.

The tables joined in B must have foreign key relationship

Full Access
Question # 11

Which of the following statements correctly define a data object with the data type of data element s_conn_id? Note: There are 3 correct answers to this question

A.

PARAMETER pa_id TYPE s_conn_id

B.

DATA: gv_id LIKE s_conn_id

C.

DATA: gv_id TYPE REF TO s_conn_id

D.

DATA: gv_id TYPE s_conn_id

E.

CONSTANTS gc_id TYPE s_conn_id VALUE '0400'

Full Access
Question # 12

An ABAP Program processes the following expression r=a/b+c which of the following data declarations would cause the runtime environment to use fixed-point arithmetic for the above expression to calculate the value of"/'?

A.

DATA r TYPE p. a TYPE I VALUE201. B TYPE I VALUE 200. c TYPE f

B.

DATA r TYPE D DECIMALS 2. A TYPE I VALUE 201. B TYPE I VALUE 200. C TYPE f

C.

DATA r TYPE a DECIMAL2; a TYPE I CALUE201. B TYPE I VALUE200. C TYPE p

D.

DATA r TYPE f. a TYPE I VALUE201. b TYPE i VALUE200. c TYPE f

Full Access