• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/28

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

28 Cards in this Set

  • Front
  • Back

How do you define an internal table in a private method of a class?


There are 3 correct answers to this question.



A. DATA lt_itabTYPE <Table Type>



B. DATA lt_itab TYPE TABLE OF <Dictionary Table >



C. DATA lt_itab TYPE TABLE OF <Structure Type>



D. DATA lt_itab TYPE <Dictionary Table>



E. DATA lt_itab TYPE TABLE OF <Dictionary Table > WITH HEADER LINE

A , B , C

In which controller type can you embed a service call? Please choose the correct answer.



A. View controller


B. Interface controller


C. Component controller


D. Configuration controller

C

How would you define a method of an ABAP class to prevent this method from being available in a subclass?


Please choose the correct answer.


A. Private


B. Final


C. Protected


D. Abstract

A

You want to translate dynamic text in a web dynpro. From which abstract class should you inherit?


Please choose the correct answer.


A.


CL_WD_COMPONENT_SERVICES


B.


CL_WD_CONFIGURATION_MODEL


C.


CL_WD_CONTEXT_SERVICES


D. CL_WD_COMPONENT_ASSISTANCE

D

You have created a Web Dynpro view that shows data for airline connections between cities. You want to display flight data for a specific date in a different view after the user select a date and presses a button. Which of the following actions you must perform?


There are 2 correct answers to this question.



A. Add a client-side event in the view


B. Create and link plugs between the views


C. Edit the handler method in the view controller


D. Set the interface property for key fields

B , C

You define a generic variable that can hold the ABAP types C, D, N, STRING, and T. You want to restrict the use of other ABAP types. Which generic data type must you use in the definition?


Please choose the correct answer.


A. CSEQUENCE


B. SIMPLE


C. CLIKE


D. DATA

C

Which objects can share data through context mapping? Please choose the correct answer.


A. View controller and another view controller


B. Global classes and component controllers


C. Custom controllers and transparent tables


D. Component controllers and view controllers

D

When would you call the RFC function module synchronously? There are 2 correct answers to this question.



A. During queue processing


B. During unidirectional communication


D. During interactive communication


E . During two-way communication

A , E

When does SAP recommend that you use a full buffering type for a database table? Please choose the correct answer.



A. When the table is large and frequently written


B. When the table is small and seldom written


C. When the table is small and frequently written


D. When the table is large and seldom written



B

Which of the following tools belong to the ABAP Workbench?


There are 3 correct answers to this question.



A. Easy Access Menu


B. Form Builder


C. Class Builder


D. Screen Painter


E. Function Builder

C , D , E

DOG is a subclass of ANIMAL. You have created a variable of type ANIMAL that references an instance of the DOG class. Which of the following statements can you use to copy this reference to a new variable of type DOG?


Please choose the correct answer.



A. MOVE…. TO…..


B. MOVE……?TO……


C. MOVE-CORRESPONDING……


D. TO…… WRITE……TO……

B

Which of the following ABAP code lines is valid? There are 3 correct answers to this question.



A. SELECT-OPTIONS s_mantr TYPE mantr DEFAULT ‘100’


B. CONSTANTS gc_mantr TYPE mantr VALUE ‘100’


C. DATA gc_mantr TYPE mantr DEFAULT ‘100’


D. PARAMETERS p_mantr TYPE mantr DEFAULT ‘100’


E. STATICS s_mantr TYPE mantr VALUE ‘100’


B , D , E

Which of the following can you do with the ABAP debugger? There are 3 correct answers to this question.



A. Analyze SQL traces.


B. Analyze memory usage.


C. Analyze internal tables


D. Compare data objects.


E. Change source code.

B, C, D

Which of the following transactions can you use to define transparent tables? Please choose the correct answer.


A. SE16N


B. SM37


C. SE38


D. SE11

D

What will happen at runtime when accessing a buffered table? Please choose the correct answer.



A. If table data is read using indexes, the table buffer will not be filled.


B. If data is read from the table buffer, the existing indexes are not used.


C. Following an update to a buffered record, all table buffers in the system will be updated.


D. All SELECT statements will read data from the buffer.

B

Which of the following characters is the first of a menu exit function code? Please choose the correct answer.


A. +


B. &


C. *


E. -

A

How can you add a session breakpoint to your program?


There are 2 correct answers to this question.



A. Set a breakpoint in the ABAP editor


B. Set a breakpoint in the ABAP editor and select Save.


C. Set a breakpoint in the ABAP debugger and press F8


D. Execute command /h

A, B

Which type of transport task is used when you modify SAP standard objects? Please choose the correct answer.


A. Transport of copies


B. Workbenc


C. Development/Correction


D. Repair

D

Which of the following can you use to enhance SAP standard tables and structures with fields? There are 2 correct answers to this question.



A. Field exits


B. Append search helps


C. Append structures


D. Customizing includes

C , D

Which of the following ABAP statements throws an error at the syntax check? Please choose the correct answer.



A. DATA variable(5) TYPE n.


B. DATA variable


C. DATA variable(5) TYPE t.


E. DATA variable(5) TYPE p.

C

What can you change in the ABAP Debugger? Please choose the correct answer.


A. Value of a reference variable


B. Value of a constant


C. Content of an internal table


E. Definition of a structure

C

Which statement ends a screen sequence and starts from initial screen? Please choose the correct answer.


A. SET SCREEN 0


B. CALL SCREEN


C. LEAVE SCREEN


D. LEAVE TO SCREEN

A

You want to include an element of type ‘Table’ in your web dynpro. What actions add the corresponding columns to the table automatically? Please choose the correct answer.



A. Bind the table attribute ‘DATA_SOURCE’ to the context node B. Generate a ‘BIND_TABLE’ method using the web dynpro method wizard.


C. Include the method BIND_TABLE of IF_WD_CONTEXT_NODE.


D. Right click the table and select the ‘CREATE_BINDING’ option

C

The USER has the following fields: ID, FIRST_NAME, LAST_NAME. FIRST_NAME, LAST_NAME have the same basic type and length. You want to compare fields FIRST_NAME, LAST_NAME to each other. Which of the following SELECT statements can you use? There are 2 correct answers to this question.



A. SELECT*FROM users AS a INTO TABLE It_users WHERE a»first_name = a»last_name


B. SELECT*FROM users AS a INTO TABLE It_users WHERE a first_name = last_name.


C. SELECT*FROM users INTO TABLE It_users WHERE first name = users »last_name.


D. SELECT*FROM users INTO TABLE It_users WHERE first_name = users last_name

A , C

How do you add fields to an SAP-delivered transparent table without modification? Please choose the correct answer.


A. Use the database utility to enhance the definition on the database directly.


B. Define a structure containing the new fields and include it in the table definition.


C. Create an append structure containing the new fields.


D. Add the new fields to the table definition.

C

When is a foreign key check performed on an input/output field? Please choose the correct answer.



A. If the field refers to the dictionary field for which a check table is defined


B. If the field refers to the dictionary field for which a search is defined


C. If the field refers to the dictionary field for which a append search is defined


D. If the field refers to the dictionary field for which a value help is defined

A

Which of the following customer modifications options are available in the table maintenance generator? There are 2 correct answers to this question.



A. Events


B. Maintenance screens


C. Append searches


D. Search helps

A , B

Bonus Question .


Which amount of money is equal to Satan?



A. R 12000


B. R 9000


C. R 17000


D. R 6000

D - What on earth can you do with R6000?