Question:
You run an executable program which contains the following code:
DATA: gv_var1 TYPE n LENGTH 3,
Gv_var2 TYPE n LENGTH 3 VALUE 456.
START-OF-SELECTION
CLEAR gv_var2
Gv_var2 = gv_var1.
Gv_var1 = 123.
At what point does the system reserve memory for the data object gv_var1?
Please choose the correct answer.
Response:
When the value 123 is assigned to the data
object
When the assignment to gv_var2 is executed
As soon as the program is loaded into thie
internal session
At the beginning of the START-OF-SELECTION
event block
Score 0 of 1
Question:
Which assignment will lead to a conversion error?
Please choose the correct answer.
Response:
An XSTRING type data object to a STRING type
data object DATA.gv_xstring TYPE xstring,
gv_string TYPE string. gv_xstring = 'AF00'.
gv_string = gv_xstring.
A type C data object with the value '123' to a
type C data object with length 2 DATA.gv_c3(3)
TYPE c VALUE '123', gv_c2(2) TYPE c. gv_c2 =
gv_c3.
A type C data object with the value '1.50E4' to a
type I data object DATA.gv_c(6) TYPE c VALUE
'1.50E4', gv_i TYPE i. gv_i = gv_c.
A type P data object to a type F data object
DATA.gv_p TYPE p VALUE '15000', gv_f TYPE f.
gv_f = gv_p.
Score 1 of 1
Question:
In addition to the primary key of an internal table, how many secondary indexes can you define for an internal table?
Please choose the correct answer.
Response:
10
15
Score 0 of 1
Question:
What features are provided by the database interface?
There are 3 correct answers to this question.
Response:
Syntax check of Native SQL commands
Data consistency check using foreign key
relationships
Database independence of application programs
Conversion of Open SQL statements from ABAP
statements into the corresponding database
statements
Access to SAP table buffers
Score 1 of 1
Question:
Which of the following statements regarding the event AT SELECTIONSCREEN ON HELP-REQUEST FOR <FIELD> is correct?
Please choose the correct answer.
Response:
None of the above.
This event will display self-defined (F1) help for
the input field programmed in the event block
and will override any help possibly defined in the
ABAP Dictionary for the field.
This event will display self-defined (F1) help for
the output field programmed in the event block
and will override any help possibly defined in
the ABAP Dictionary for the field.
This event will display (F1) help for the input field
on the selection screen.
Score 1 of 1
Question:
What can you use to achieve polymorphism?
Please choose the correct answer.
Response:
Reports
Inheritance
Events
Subroutines
Score 1 of 1
Question:
Each button on a Dynpro (screen) requires the assignment of a function code. This function code
Please choose the correct answer.
Response:
Prevents the function code from be assigned to a
menu item.
Can be used to identify when the button is clicked
by looking for the function code in the screens
OK_CODE field.
Is used to define global variables that receive a
value when the button is clicked.
Prevents the function code from be assigned to a
category item.
Score 0 of 1
Question:
What is the SAP recommended naming convention for append structures of standard SAPtables?
Please choose the correct answer.
Response:
The components of an append structure should
start with Z or Y.
The name of the append structure must start
with ZA.
The components of an append structure should
start with ZZ or YY.
The name of the append structure must start
with ZZ or YY.
Score 0 of 1
Question:
Which statements about ABAP are true?
Please choose the correct answer.
Response:
Each statement must end with a period.
Each statement must begin with a keyword.
ABAP keywords and additions must be in
uppercase.
Each statement cannot begin with a keyword.
Score 0 of 1
Question:
How can you add a session breakpoint to your program?
There are 2 correct answers to this question.
Response:
Set a breakpoint in the ABAP editor and select
Save.
Set a breakpoint in the ABAP debugger and press
F8
Execute command /h
Set a breakpoint in the ABAP editor
Score 1 of 1
Question:
Which of the following includes are generated when you create a function group?
Please choose the correct answer.
Response:
LxxxxF01
LxxxxTOP
LxxxxO01
LxxxxUXX
Score 1 of 1
Question:
To which ABAP Dictionary definition can you assign fixed values?
Please choose the correct answer.
Response:
Domain
Data element
Component of a structure
Field of a transparent table
Score 0 of 1
Question:
Which of the following can you assign a search help to?
There are 3 correct answers to this question
Response:
Domain
Structure component
Table type
Data element
Check table
Score 1 of 1
Question:
How is an ABAP program with several dialog steps executed?
Please choose the correct answer.
Response:
Usually, dialog steps are assigned to different
dialog work processes.
The program is always executed in just one dialog
work process with roll out.
The program is always executed in just one dialog
work process without roll out
The ABAP dispatcher takes over the entire
execution without assigning any work process.
Score 1 of 1
Question:
Which of the following tools belong to the ABAP Workbench?
There are 3 correct answers to this question.
Response:
Form Builder
Easy Access Menu
Screen Painter
Class Builder
Function Builder
Score 1 of 1
Question:
Which of the following characters is the first of a menu exit function code?
Please choose the correct answer.
Response:
&
Score 0 of 1
(skipped)
Question:
Which objects are automatically created when you create a new function group?
Please choose the correct answer.
Response:
A function pool and two include programs
A function pool and two function modules
A function pool and two module pools
A function pool and two subroutine pools
Score 0 of 1
(skipped)
Question:
Which of the following can you do with the SAP code inspector?
Please choose the correct answer.
Response:
Monitor runtime behavior
Monitor background tasks
Perform static code checks
Analyze runtime data.
Score 0 of 1
(skipped)
Question:
You have implemented a class CL_CUSTOMER in which you defined a private attribute. From where can you access this attribute
directly?
There are 2 correct answers to this question.
Response:
From all methods of all subclasses of
CL_CUSTOMER
From all methods of the class CL_CUSTOMER
From all methods of a class to which
CL_CUSTOMER grants friendship
From any program using the class CL_CUSTOMER
Score 0 of 1
(skipped)
Question:
Which ABAP statement using the local type gty_1 correctly defines a data object?
There are 2 correct answers to this question.
Response:
DATA gv_1 TYPE gty_1.
DATA gv_1 LIKE gty_1.
CONSTANTS gc_1 TYPE gty_1 VALUE '1'.
DATA gv_1 TYPE gty_1 DEFAULT '1'.
Score 0 of 1
(skipped)
Question:
How do you create lock objects and lock modules for use in ABAP programs that access the database?
Please choose the correct answer.
Response:
Use the Function Builder to create the lock
modules and the lock objects
Use the ABAP dictionary to create the lock
objects. Use the function builder to create the
lock modules
Use the Function Builder to create the lock
modules. The lock objects are created in the
program logic
Use the ABAP Dictionary to create the lock
objects. The lock modules are created
automatically
Score 1 of 1
Question:
Identify the types of controller.
There are 5 correct answers to this question.
Response:
Window controller
Custom controller
Consumer controller
View controller
Configuration controller
Component controller
Score 0 of 1
(skipped)
Question:
Which of the following customer modifications options are available in the table maintenance generator?
There are 2 correct answers to this question.
Response:
Search helps
Maintenance screens
Append searches
Events
Score 1 of 1
Question:
What does SAP recommend that you use a hashed table?
Please choose the correct answer.
Response:
When a table must be accessible by both index
and key
When a table is very large and you want to
access the table by key only
When a table is very large and you want to
access the table by index only.
When a table must be sorted automatically by
key in ascending order
Score 0 of 1
(skipped)
Question:
What can be exposed in the component interface of a Web dynpro component?
Please choose the correct answer.
Response:
Custom methods of the component controller
Context nodes of WINDOW controllers
Standard hook methods of the component
controller
Public attributes of WINDOW controllers
Score 1 of 1
Question:
In the CALL CUSTOMER-FUNCTION 'nnn' statement, nnn is a three-digit number used in SAP programs for which of the following
types of enhancement?
Please choose the correct answer.
Response:
User exits
Customer exits
Business add-ins
New BAdIs
Score 0 of 1
(skipped)
Question:
Which of the following must you do to be able to use a Business Add-in(BADI)?
There are 2 correct answers to this question
Response:
Activate the enhancement project
Write code for methods
Modify the adapter class
Create the BADI implementation
Score 0 of 1
(skipped)
Question:
You perform an update task using update function modules and detect an error in the program that calls the update function
modules. Which statement can be used to discard all update requests for the current SAP LUW?
There are 2 correct answers to this question.
Response:
EXIT.
ROLLBACK WORK.
MESSAGE axxx(nnn).
MESSAGE exxx(nnn).
DELETE UPDATE.
Score 1 of 1
Question:
To which of the following you must assign newly created SAP repository objects?
Please choose the correct answer.
Response:
Function group
Transport request
Package
Transport task
Score 1 of 1
Question:
What is the default length of the type C data type?
Please choose the correct answer.
Response:
165535
100
10
Score 1 of 1
Question:
Which of the following is a true statement?
There are 3 correct answers to this question.
Response:
Inactive objects can be transported.
Local repository objects can be transported.
Client-specific customization objects are assigned
to the customizing request.
All transportable objects have to be assigned to a
package.
Repository objects and cross-client customization
objects are assigned to the workbench request.
Score 1 of 1
Question:
Which type of view uses an inner join in a search help?
Please choose the correct answer.
Response:
Candidate key view
Database view
Maintenance view
Help view
Score 1 of 1
Question:
Which of the following are key capabilities of SAP NetWeaver?
There are 3 correct answers to this question.
Response:
Enterprise Resource Planning
Supply Chain Management
Information Integration
Application Platform
People Integration
Score 0 of 1
(skipped)
Question:
What is mandatory for automatic data transport between a variable and an input field on a classical screen (dynpro)?
Please choose the correct answer.
Response:
The variable must be declared using the DATA
statement.
The property OUTPUT of the input field must be
set.
The variable must be declared using the TABLES
statement.
The name of the variable and the name of the
input field must be identical.
Score 1 of 1
Question:
How do you add fields to an SAP-delivered transparent table without modification?
Please choose the correct answer.
Response:
Add the new fields to the table definition.
Define a structure containing the new fields and
include it in the table definition.
Use the database utility to enhance the definition
on the database directly.
Create an append structure containing the new
fields.
Score 0 of 1
Question:
You want to define two database tables with different structures. Both tables should contain the fields CHANGE_DATE and
CHANGE_TIME.
How do you implement this in order to minimize the maintenance effort?
Please choose the correct answer.
Response:
Define a structure with these two fields and
include this structure in both database tables.
Define an append structure with these two fields
and assign this append structure to both
database tables.
Define the two fields in each database table
separately.
Define the two fields in one database table and
copy them to the other database table.
Score 0 of 1
Question:
What is the difference between a value table and a check table?
Please choose the correct answer.
Response:
No difference; they are the same thing.
A value table does not exist.
A value table is defined in the domain, whereas a
check table is defined in the data element.
A value table is a check table after a foreign key
is defined.
A check table is defined in the domain, whereas
a value table is defined in the data element.
Score 1 of 1
Question:
Which controller types can exist within a Web Dynpro component?
There are 3 correct answers to this question.
Response:
Component controller
Application controller
User controller
Window controller
View controller
Score 0 of 1
Question:
An executable ABAP program contains a standard selection screen and uses the event blocks AT SELECTION SCREEN, AT SELECTION-
SCREEN OUTPUT, INITIALIZATION, START-OFSELECTION.
In which sequence will ABAP runtime call these event blocks?
Please choose the correct answer.
Response:
1. INITIALIZATION
2. AT SELECTION-SCREEN
3. AT SELECTION-SCREEN OUTPUT
4. START-OF-SELECTION
1. INITIALIZATION
2. AT SELECTION-SCREEN OUTPUT
3. START-OF-SELECTION
4. AT SELECTION-SCREEN
1. AT SELECTION-SCREEN OUTPUT
2. INITIALIZATION
3. AT SELECTION-SCREEN
4. START-OF-SELECTION
1. INITIALIZATION
2. AT SELECTION-SCREEN OUTPUT
3. AT SELECTION-SCREEN
4. START-OF-SELECTION
Score 0 of 1
(skipped)
Question:
How do you embed a subscreen in a main screen?
Please choose the correct answer.
Response:
Use SET SUBSCREEN in a PBO module of the
main screen.
Use SET SUBSCREEN in the flow logic of the main
screen.
Use CALL SUBSCREEN in the flow logic of the
main screen.
Use CALL SUBSCREEN in a PBO module of the
main screen
Score 0 of 1
(skipped)
Question:
Using the screen system table, what can you modify through a LOOP AT SCREEN ENDLOOP construct?
Please choose the correct answer.
Response:
Values of screen elements
Screen status
Attributes of screen elements
Function code of buttons
Score 0 of 1
(skipped)
Question:
Which components of the class can be accessed in the implementation of a static method in that class?
There are 2 correct answers to this question
Response:
Constants
All events
Instance attributes
Types
Score 0 of 1
(skipped)
Question:
There are ____ versions of the ABAP Editor.
Please choose the correct answer.
Response:
1
Score 0 of 1
(skipped)
Question:
When does the lifetime of a component controller begin and end?
Please choose the correct answer.
Response:
It begins with the Web Dynpro component and
ends with the Web Dynpro application that called
it.
It begins the first time the Web Dynpro
application is called at runtime and ends when
the Web Dynpro application that called and
instantiated the component ends.
It lasts from creating data within the controller to
cover the whole period during which the
component is in use.
It ends the first time the Web Dynpro application
is called at runtime and ends when the
Web Dynpro application that called
and instantiated the component ends.
Score 0 of 1
(skipped)
Question:
can you search for suitable classic Business Add-Ins(BAdIs)?
There are 2 correct answers to this question
Response:
Search for suitable entries in the relevant
component in the Implementation Guide (IMG)
Search in an application program for the method
GET_INSTANCE of class CL_EXITHANDLER
Use the SAP menu Tools -> ABAP Workbench ->
Development -> Business Object Builder
Search in the Repository Information System and
choose Enhancements - >Customer Exits
Score 0 of 1
(skipped)
Question:
Identify the ways to map context structures.
There are 2 correct answers to this question.
Response:
Direct context mapping
External context mapping
Dynamic context mapping
Static context mapping
Score 0 of 1
(skipped)
Question:
You are using the new debugger and you want to change the content of an internal table.
Which actions are allowed?
There are 3 correct answers to this question.
Response:
Delete the entire contents of a table.
Change row content and press Save (<CTRL> +
S).
Delete table from memory.
Delete the selected rows.
Change row content and press Enter (<ENTER>).
Score 1 of 1
Question:
Which of the following tasks does the BADI implementing class perform?
Please choose the correct answer.
Response:
Deleting
Sequencing
Inserting
Filtering
Score 0 of 1
(skipped)
Question:
Your selection screen can be modified at which event?
Please choose the correct answer.
Response:
AT SELECTION-SCREEN OUTPUT
AT SELECTION-SCREEN
AT SELECTION-SCREEN ON <field_name>
None of the above
Score 1 of 1
Question:
You defined data reference z1 generically.
Which statement would you use to access the content of the referenced variable?
Please choose the correct answer.
Response:
Assign z1->* to <fs>
Get reference of z1 into wa
Assign z1 to <fs>
Assign (z1) to <fs>
Score 0 of 1
(skipped)
Question:
Which statements are true regarding ABAP inheritance?
There are 4 correct answers to this question.
Response:
You can access the superclass component with
the prefix SUPER->.
The instance constructor can be overwritten as
part of inheritance.
The static constructor can be overwritten as part
of inheritance.
Overloading allows a method to have several
definitions with different signatures.
Instance constructors must call the superclasss
constructor.
Static constructors do not need to call the
superclasss constructor.
Polymorphism requires the developer to specify
which method to use with inheritance.
Score 0 of 1
(skipped)
Question:
Which types of programs or parts of programs can be tested directly from the ABAP Workbench or ABAP Editor?
There are 4 correct answers to this question.
Response:
REPORT
PROGRAM
FUNCTION-POOL
FUNCTION MODULE
CLASS-POOL
METHOD
INTERFACE-POOL
TYPE-POOL
INCLUDE
Score 0 of 1
(skipped)
Question:
Which data element property do you set so that the system logs changes to the content of fields with this data element?
Please choose the correct answer.
Response:
PARAMETER ID
Documentation
Change document
Input history
Score 0 of 1
(skipped)
Question:
You are writing a program that uses ABAP class.
Which components of the class can you create directly from the program?
Please choose the correct answer.
Response:
Only private components
Only protected components
Only public components
All components
Score 0 of 1
(skipped)
Question:
Which type of view cannot be used in a search help?
Please choose the correct answer.
Response:
Database view
Maintenance view
Help view
Candidates key view
Score 1 of 1
Question:
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.
Response:
CSEQUENCE
SIMPLE
CLIKE
DATA
Score 0 of 1
(skipped)
Question:
What is the difference between SAP Basis and SAP NetWeaver?
Please choose the correct answer.
Response:
There is no difference; the name change was
driven by marketing alone.
All versions of SAP NetWeaver require the use of
Unicode.
All versions of SAP NetWeaver include the ability
to handle HTTP requests.
All versions of SAP NetWeaver require the use
of UTF-8.
Score 0 of 1
(skipped)
Question:
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.
Response:
Set the interface property for key fields
Edit the handler method in the view controller
Add a client-side event in the view
Create and link plugs between the views
Score 1 of 1
Question:
You use Unified Modelling language (UML) to design your classes. You want to describe the message exchange between objects.
Which diagram can you use?
Please choose the correct answer.
Response:
Object diagram
Sequence diagram
Component diagram
Class diagram
Score 0 of 1
(skipped)
Question:
Which of the following program types can contain screens?
There are 3 correct answers to this question
Response:
Interface pools
Module pools
Executable programs
Function groups
Class pools
Score 0 of 1
(skipped)
Question:
Your task is to enhance the screen of an SAP standard application.
How do you determine if there is a customer exit for this task?
Please choose the correct answer.
Response:
You search in the source code of the application
for GET BADI statement
You search in the SAP reference Implementation
Guide (IMG) for a suitable user exit
You search in the flow logic of the screen for CAL
CUSTOMER-SUBSCREEN statement
You use the BAdI Builder (transaction SE19) to
check for a suitable Business Add-In(BAdI)
Score 0 of 1
(skipped)
Question:
What can you do with the code inspector?
There are 2 correct answers to this question
Response:
Create only local inspections, objects sets and
check variants
Create your own inspections, object sets and
check variants
Create an object set to represent the programs
and objects to be inspected
Choose from only the performance, security and
user interface check categories
Score 0 of 1
(skipped)
Question:
What do you need to consider when creating a secondary index on a table?
There are 2 correct answers to this question
Response:
The index must always be unique
The table will be updated more quickly if you
create more indexes
The most frequently selected fields should be at
the first positions in the index
The index can be created for specific database
systems only
Score 0 of 1
(skipped)
Question:
Which of the following structures is created when you use a table type to define one of its components?
Please choose the correct answer.
Response:
Append structure
Deep structure
Flat structure
Nested structure
Score 0 of 1
(skipped)
Question:
Which of the following statements are correct?
There are 3 correct answers to this question.
Response:
An enhancement spot can contain an explicit
enhancement point and an enhancement section.
An enhancement spot can contain an explicit
enhancement point, explicit enhancement
section, and new BAdI.
An enhancement spot can contain either an
explicit enhancement point and enhancement
section or a new BAdI only, but all three cannot
be in the same enhancement spot.
An enhancement spot can contain one or more
simple or composite enhancements.
Score 0 of 1
Question:
Which of the following is a true statement?
There are 3 correct answers to this question.
Response:
A package can be nested.
All customer repository objects have to be
assigned to a package.
The transport layer is a mandatory input field for
the package.
Packages use interfaces and visibility to make
their elements visible to other packages.
Score 0 of 1
(skipped)
Question:
Which options do you have to read data from multiple tables while using a SELECT statement?
There are 3 correct answers to this question.
Response:
Nested select statements
Nested loop statements
Database views
Join statements
Pooled tables
Score 0 of 1
(skipped)
Question:
Which method of passing parameters is preferred for its performance?
Please choose the correct answer.
Response:
Pass by reference
Pass by value
Pass by class
Pass by subclass
Score 1 of 1
Question:
What is the difference between the INITIALIZATION and AT SELECTION-SCREEN OUTPUT events?
Please choose the correct answer
Response:
INITIALIZATION is only processed once.
AT SELECT-SCREEN OUTPUT can be processed
multiple times
INITIALIZATION can overwrite the default value
of a PARAMETERS field
AT SELECTIION-SCREEN OUTPUT can overwrite
the default values of a PARAMETERS field
INITIALIZATION cannot change pushbutton
texts
AT SELECTION-SCREEN OUTPUT can change
pushbutton texts
INITIALIZATION can change the properties of the
screen fields
AT SELECTION-SCREEN OUTPUT cannot change
the properties of the screen field
Score 0 of 1
(skipped)
Question:
You create a domain in the ABAP dictionary
How can you use this domain?
Please choose the correct answer.
Response:
As the data type of a variable in an ABAP
program
As the data type of a data element in the ABAP
Dictionary
As the data type of an input field on a dialog
screen
As the data type of a selection screen field
Score 0 of 1
(skipped)
Question:
Which of the following statements are true?
There are 2 correct answers to this question.
Response:
Static attributes can be declared only in the
private visibility section of the class.
Static attributes are declared with the CLASS-
DATA statement.
A static attribute is the same across all instances
of the class. There is only one static attribute
across all instances of the class.
Static attributes cannot be changed by an object.
Score 0 of 1
(skipped)
Question:
For a given date(variable lv_date), you want to find all the connections from Frankfurt to Sydney with exactly one stopover. You
want to fly from the stopover city to Sydney on the same day you arrive in the stopover city.
Table ZFLIGHTS hold the following information about flights.
-flightid: primary key
-cityfrom:departure city
-datefrom: departure date
-timefrom:departure time
-cityto:destination city
-dateto:destination date
-timeto:destination time
Which of the following Open SQL Queries can you use to find all the possible stopover cities?
Please choose the correct answer.
Response:
SELECT DISTINCT cityto INTO TABLE lt_cities
FROM zflights AS destination
WHERE cityfrom IN (SELECT cityto FROM zflights
WHERE dateto = destination~datefrom AND
timeto < destination~timefrom AND
cityfrom = FRANKFURT AND
datefrom = lv_date )
AND destination~cityto = Sydney
SELECT cityto INTO TABLE lt_cities FROM zflights
AS destination
WHERE cityfrom IN (SELECT DISTINCT cityto
FROM zflights
WHERE dateto = destination~datefrom AND
timeto < destination~timefrom AND
cityfrom = FRANKFURT AND
datefrom = lv_date )
AND destination~cityto = Sydney
SELECT cityfrom INTO TABLE lt_cities FROM
zflights AS destination
WHERE cityto IN (SELECT DISTINCT cityfrom
FROM zflights
WHERE dateto = destination~datefrom AND
timeto < destination~timefrom AND
cityfrom = FRANKFURT AND
datefrom = lv_date )
AND destination~cityto = Sydney
SELECT DISTINCT cityfrom INTO TABLE lt_cities
FROM zflights AS destination
WHERE cityfrom IN (SELECT cityto FROM zflights
WHERE dateto = destination~datefrom AND
timeto < destination~timefrom AND
cityfrom = FRANKFURT AND
datefrom = lv_date )
AND destination~cityto = Sydney
Score 0 of 1
(skipped)
Question:
When does SAP recommend that you use a full buffering type for a database table?
Please choose the correct answer.
Response:
When the table is small and frequently written
When the table is small and seldom written
When the table is large and frequently written
When the table is large and seldom written
Score 0 of 1
(skipped)
Question:
Which ABAP statement can make an element visible that you statically defined as invisible?
Please choose the correct answer.
Response:
SCREEN-INVISIBLE = 1
SCREEN-ACTIVE = 1
SCREEN-ACTIVE = 0
SCREEN-INVISIBLE = 0
Score 0 of 1
(skipped)
Question:
Each component has an interface; of what does this interface consist?
There are 2 correct answers to this question.
Response:
Interface view
Interface context
Interface controller
Data Container
Score 0 of 1
(skipped)
Question:
How many work areas are available in the Debugger?
Please choose the correct answer.
Response:
12
15
Score 0 of 1
(skipped)
Question:
What is the purpose of implicit enhancement points?
Please choose the correct answer.
Response:
To add fields to an SAP database table
To add code to a standard SAP program
To change code in a standard SAP program
To create a secondary index for an SAP database
table
Score 0 of 1
Question:
What is the result of the following arithmetic operation?
DATA: intTYPEI.
int=5*(3/10).
Please choose the correct answer.
Response:
1.5
Score 0 of 1
(skipped)
Question:
You Created the following ABAP Code:
DATA x TYPE REF TO DATA
DATA y TYPE REF TO OBJECT
ASSIGN x TO <fs>
ASSIGN y TO <fs>
You want to add a declaration of <fs> to the Code.
Which of the Following Declarations are Valid?
There are 2 correct answers to this question.
Response:
FIELD-SYMBOLS <fs>
FIELD-SYMBOLS <fs> TYPE REF TO ANY
FIELD-SYMBOLS TYPE REF TO DATA
FIELD-SYMBOLS <fs> TYPE ANY
Score 0 of 1
(skipped)
Question:
Which of the following actions can be performed in the Process After Input (PAI) processing block?
Please choose the correct answer.
Response:
Check the function code.
Modify screen attributes dynamically.
Set the GUI status of the screen.
Set the title bar.