Weekend Sale Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: xmas50

SAP C_TAW12_750 - SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50

Page: 2 / 3
Total 81 questions

You are making changes to a program that already has transaction code ZZZZ linked to it. Your colleague is testing transaction code ZZZZ in the same system. When does the changed version of the program becomes visible to your colleague via transaction code ZZZZ?

A.

When you execute the program from the ABAP Editor

B.

When the syntax of the program is correct

C.

When you active the program

D.

When you save the program

You have created a screen on which the user enters data that is to be inserted into table Tl. How do you ensure that the content of field F in Table Tl is checked against table T2?

A.

Create a foreign-key for field F of table Tl and make table T2 the check table.

B.

Create a foreign-key for field F of table Tl and make table T2 and the foreign-key table.

C.

Create a foreign-key for the assigned field of field F of table Tl in table T2 and make table Tl the check table.

D.

Create a foreign-key for the assigned field of field F of table Tl in table T2 and make table T2 the check table.

What ABAP statements can you use to create instance of class CL_GUI_CUSTOM_CONTAINER in an ABAP program?

A.

DATA: go_containerTYPE CL_GUI_CUSTOM_CONTAINER CREATEOBJECT go_container...

B.

DATA: go_containerTYPE CL_GUI_CUSTOM_CONTAINER. CREATEDATA go_container...

C.

DATA: go_containerTYPE REFTO CL_GUI_CUSTOM_CONTAINER. CREATEOBJECT go_container...

D.

DATA: go_containerTYPE REFTO CL_GUI_CUSTOM_CONTAINER. CREATEDATA go_container...

Where can you define data types that can be used throughout the system? Note: There are 3 correct answers to this question.

A.

In a function module

B.

In a method

C.

In a global interface

D.

In the ABAP Dictionary

Which are the functions of the ABAP dispatcher? Note: There are 3 correct answers to this question

A.

It integrates the presentation layer

B.

It saves the processing request in request in request queues

C.

It performs a roll-in and roll-out of user context

D.

It requests the data from the database or the buffers

E.

It distributes the request among the work processes

What must exist before you can create a new transportable function module? Note: There are 3 correct answers to this question.

A.

Type group

B.

Change request

C.

Function group

D.

Package

E.

Module pool

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)

You run an executable program that contains the following code: DATA: gv_varl TYPE n LENGTH 3. gv_var2 TYPE n LENGTH 3 VALUE '456' START OF SELECTION. CLEAR gv_var2 gv_var2=g

A.

When the assignment to gv_var2 is executed

B.

When value '123' is assigned to the data object

C.

As soon as the program is loaded into the terminal session

D.

At the beginning of the START-OF-SELECTION event block

What can be implemented using an implicit enhancement option? Note: There are 3 correct answers to this question

A.

Overwrite methods for SAP function modules

B.

Overwrite methods for global SAP classes

C.

Additional exceptions in SAP function modules

D.

Additional parameters in SAP function modules

E.

Additional attributes for global SAP classes

You have declared a sorted internal table with the columns A AND B AND C AND D. The key consists of columns A AND B AND C in this order. Which combination of columns in the where clause of a Loop statement allows the system to optimize the access to table?

Note: There are 2 correct answers to this question.

A.

A AND B

B.

C AND D

C.

B and C

D.

A AND BAND C AND D