Antonio de Ancos Cid
Quiz by , created more than 1 year ago

ABAP 7.50 ABAP Quiz on ABAP Test 3, created by Antonio de Ancos Cid on 19/09/2017.

9
0
0
Antonio de Ancos Cid
Created by Antonio de Ancos Cid over 6 years ago
Antonio de Ancos Cid
Copied by Antonio de Ancos Cid over 6 years ago
Close

ABAP Test 3

Question 1 of 80

1

You display the content of an internal table using an ALV grid control. The content of the internal table changes during the program. Which CL_GUI_ALV_GRID class method can you use to display the changed content?

Please choose the correct answer.

Select one of the following:

  • SET_TABLE_FOR_FIRST_DISPLAY in module PAI

  • REFRESH_TABLE_DISPLAY in module PAI

  • REFRESH_TABLE_DISPLAY in module PBO

  • SET_TABLE _FOR_FIRST_DISPLAY in module PBO

Explanation

Question 2 of 80

1

What is the predefined reference variable used in ABAP OO to address the object itself?

Please choose the correct answer.

Select one of the following:

  • SELF

  • SUPER

  • ME

  • THIS

Explanation

Question 3 of 80

1

What do you need to have in your program to respond to the DOUBLE_CLICK event raised by an instance of the CL_GUI_ALV_GRID class?

There are 3 correct answers to this question.

Select one or more of the following:

  • A CATCH statement to capture the event

  • A handler class

  • A handler method for the event

  • A SET HANDLER statement to register the handler to the event

  • A method to read the registration table

Explanation

Question 4 of 80

1

Which of the following Data Types are allowed in ABAP?

There are 2 correct answers to this question.

Select one or more of the following:

  • DECFLOAT16

  • DECFLOAT34

  • DECFLOAT64

  • DECFLOAT32

Explanation

Question 5 of 80

1

What is the purpose of implicit enhancement points?

Please choose the correct answer.

Select one of the following:

  • To add fields to an SAP database table

  • To create a secondary index for an SAP database table

  • To change code in a standard SAP program

  • To add code to a standard SAP program

Explanation

Question 6 of 80

1

When is a foreign key check performed on an input/output field?

Please choose the correct answer.

Select one of the following:

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

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

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

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

Explanation

Question 7 of 80

1

Which of the following customer modifications options are available in the table maintenance generator?

There are 2 correct answers to this question.

Select one or more of the following:

  • Events

  • Search helps

  • Append searches

  • Maintenance screens

Explanation

Question 8 of 80

1

What process is used to establish the automatic transport of data between the view controller's context-attributes and the UI element in its layout?

Please choose the correct answer.

Select one of the following:

  • View assembly

  • Data binding

  • Context mapping

  • Data migration

Explanation

Question 9 of 80

1

Where can you define global data types that are visible system-wide?

There are 3 correct answers to this question.

Select one or more of the following:

  • In the ABAP Dictionary

  • In a global class

  • In a function module

  • In a global interface

  • In a method of a global class

Explanation

Question 10 of 80

1

For which of the following purposes can you use the ABAP dictionary?

There are 2 correct answers to this question.

Select one or more of the following:

  • To maintain program translations

  • To create development classes

  • To activate logging for transparent tables

  • To create lock objects

Explanation

Question 11 of 80

1

Which of the following values are replaceable in debugger mode?

Please choose the correct answer.

Select one of the following:

  • Table names

  • Field names

  • Variables

  • Constants

Explanation

Question 12 of 80

1

What can you change in the ABAP Debugger?

Please choose the correct answer.

Select one of the following:

  • Value of a reference variable

  • Definition of a structure

  • Content of an internal table

  • Value of a constant

Explanation

Question 13 of 80

1

A transport company keeps track of this availability in two tables, table VEHICLES and table TRANSPORT. To accept a new transport of a certain capacity must be found in table VEHICLES. If a record is found, a record is created in table TRANSPORT. The capacity is then adjusted in table VEHICLES.\

You have four function modules at your disposal.

UPD_VEHI_A and UPD_VEHI_B update a matching report in table VEHICLES. If an error occurs both issue a message of type X. If no error occurs only UPD_VEHI_A issues a message of type X. If no error occurs UPD_VEHI_B issues a message of type I.

UPD_TRAN_A and UPD_TRAN_B create a single record in table TRANSPORT. If an error occurs both issues a message of type X. If no error occurs only UPD_TRAN_A issues a message of type I.

Which of the following function module calls ensures a single logical unit of work?

Please choose the correct answer.

Select one of the following:

  • 1. UPD_TRAN_A
    2. UPD_VEHI_B

  • 1. UPD_TRAN_B
    2. UPD_VEHI_B

  • 1.UPD_VEHI_A
    2.UPD_TRAN_B

  • 1.UPD_VEHI_A
    2.UPD_TRAN_A

Explanation

Question 14 of 80

1

Which of the following enhancement options does not require any preparation from SAP?

Please choose the correct answer.

Select one of the following:

  • Explicit enhancement sections

  • New BAdIs

  • Implicit enhancement point

  • Explicit enhancement point

Explanation

Question 15 of 80

1

How can you improve the performance when accessing a large data volume database table?

Please choose the correct answer.

Select one of the following:

  • Apply the appropriate data class and size category.

  • Define appropriate indexes for the database table.

  • Change the table type in the dictionary.

  • Switch the database table to fully buffered.

Explanation

Question 16 of 80

1

You define a formal parameter to a subroutine that accepts only internal table of type standard and type sorted as actual parameters. Which of the following generic ABAP data types must you use?

Please choose the correct answer.

Select one of the following:

  • Sorted table

  • Index table

  • Hashed table

  • Standard table

Explanation

Question 17 of 80

1

You want to develop a validation routine for a selection screen field. If a wrong value is entered into the field an error message should be displayed and the focus should move to the field. Which event do you use to achieve this?

Please choose the correct answer.

Select one of the following:

  • START-OF-SELECTION

  • END-OF-SELECTION

  • AT SELECTION-SCREEN

  • INITIALIZATION

Explanation

Question 18 of 80

1

Which property of the InputField UI element must be bound to a context attribute?

Please choose the correct answer.

Select one of the following:

  • state

  • enable

  • value

  • visible

Explanation

Question 19 of 80

1

Which of the following includes are generated when you create a function group?

Please choose the correct answer.

Select one of the following:

  • LxxxxUXX

  • LxxxxO01

  • LxxxxF01

  • LxxxxTOP

Explanation

Question 20 of 80

1

Which SELECT statement will always bypass the SAP table buffers?

Please choose the correct answer.

Select one of the following:

  • SELECT … INTO TABLE …

  • SELECT … SINGLE …

  • SELECT … ENDSELECT.

  • SELECT … FOR UPDATE …

Explanation

Question 21 of 80

1

What types of changes to the repository does SAP provide?

There are 3 correct answers to this question.

Select one or more of the following:

  • Deployments from SDN.SAP.COM

  • SAP Notes

  • Transports

  • Support Packages

  • Enhancement Packages

Explanation

Question 22 of 80

1

What happens when an authorization check fails?

Please choose the correct answer.

Select one of the following:

  • The program is terminated.

  • A type E message is displayed.

  • The system field SY-SUBRC is set to a value other than zero.

  • A CX_AUTH_FAILED type exception is raised.

Explanation

Question 23 of 80

1

What do global types and local types have in common?

Please choose the correct answer.

Select one of the following:

  • Technical information

  • Documentation

  • Search help

  • Field labels

Explanation

Question 24 of 80

1

To which context object is the attribute LEAD_SELECTION_INDEX related?

Please choose the correct answer.

Select one of the following:

  • Element

  • Supply function

  • Node

  • Attribute

Explanation

Question 25 of 80

1

Which components belong to an elementary search help?

There are 2 correct answers to this question.

Select one or more of the following:

  • Selection method

  • Attachment to a field

  • Fixed values

  • Import / export parameters

Explanation

Question 26 of 80

1

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.

Select one or more of the following:

  • 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.

  • 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.

Explanation

Question 27 of 80

1

You want to check the user input in the field FIELD_NAME on a classical screen. If an incorrect value is entered, the user should be able to correct the field value.
How do you call the module CHECK_MODULE in the PAI of the screen to accomplish this?

Please choose the correct answer.

Select one of the following:

  • FIELD field_name MODULE check_module MESSAGE Ennn.

  • MODULE check_module ON ERROR.

  • FIELD field_name MODULE check_module.

  • CHAIN. MODULE check_module FIELD field_name. ENDCHAIN.

Explanation

Question 28 of 80

1

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

Please choose the correct answer.

Select one of the following:

  • CL_WD_CONFIGURATION_MODEL

  • CL_WD_CONTEXT_SERVICES

  • CL_WD_COMPONENT_SERVICES

  • CL_WD_COMPONENT_ASSISTANCE

Explanation

Question 29 of 80

1

Where can you set the GUI status and the GUI title for a classical screen (dynpro)?

Please choose the correct answer.

Select one of the following:

  • In a module called from PAI of the screen

  • In the attributes of the screen

  • In the properties of the related header UI element

  • In a module called from PBO of the screen

Explanation

Question 30 of 80

1

When should you use a hashed internal table?

There are 2 correct answers to this question.

Select one or more of the following:

  • When accessing always by primary key

  • When accessing using the left-justified part of the key

  • When accessing mainly single records

  • When accessing by secondary key

Explanation

Question 31 of 80

1

Which of the following enhancements calls a customer function module.

There are 2 correct answers to this question.

Select one or more of the following:

  • Business Transaction event

  • User exit

  • Customer exit

  • Business Add-in (BADIs)

Explanation

Question 32 of 80

1

Which controller types can exist within a Web Dynpro component?

There are 3 correct answers to this question.

Select one or more of the following:

  • Application controller

  • Component controller

  • View controller

  • User controller

  • Window controller

Explanation

Question 33 of 80

1

You want to select all the records from a database table where field CITY contains substring ‘BU’ in any position. Which WHERE clause can you use in an Open SQL select statement?

Please choose the correct answer.

Select one of the following:

  • WHERE city LIKE ‘%BU*’

  • WHERE city LIKE ‘*BU*’

  • WHERE city LIKE ‘_BU’

  • WHERE city LIKE ‘%BU%’

Explanation

Question 34 of 80

1

Which ABAP statement can make an element visible that you statically defined as invisible?

Please choose the correct answer.

Select one of the following:

  • SCREEN-INVISIBLE = 1

  • SCREEN-INVISIBLE = 0

  • SCREEN-ACTIVE = 1

  • SCREEN-ACTIVE = 0

Explanation

Question 35 of 80

1

You always want to check the user authorization for data entered in an input field of a selection screen.Where do you do this?

Please choose the correct answer.

Select one of the following:

  • In the event block AT SELECTION-SCREEN

  • In the event block INITIALIZATION

  • In the event block AT SELECTION-SCREEN on VALUE-REQUEST

  • In the event block AT SELECTION-SCREEN OUTPUT

Explanation

Question 36 of 80

1

dbtab is a transparent table. What is declared by the following statement?
DATA myvar TYPE dbtab.

Please choose the correct answer.

Select one of the following:

  • A reference to an internal table

  • An elementary field

  • A structure variable

  • An internal table

Explanation

Question 37 of 80

1

When do you need to use the GROUP BY clause in the SELECT statement?

Please choose the correct answer.

Select one of the following:

  • If you want to redefine the sequence of the columns in the result set

  • If you want to use aggregate functions and at least one component in the field list is a column identifier

  • If you want to use ORDER BY to specify a sub-order

  • If you want to use aggregate functions and all components in the field list are aggregate functions

Explanation

Question 38 of 80

1

Which of the following items are used in a Web Dynpro Application to transport database data to the user interface?

There are 2 correct answers to this question.

Select one or more of the following:

  • Supply function

  • Context node

  • Inbound plug

  • Interface controller

Explanation

Question 39 of 80

1

In a subclass, you want to redefine a method of the super class. Which of the following conditions must be fulfilled?

There are 2 correct answers to this question.

Select one or more of the following:

  • The super class method is abstract

  • The subclass method has a lower visibility than the super class method

  • The superclass method is an instance method

  • The subclass method has same visibility as the super class method

Explanation

Question 40 of 80

1

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.

Select one or more of the following:

  • ROLLBACK WORK.

  • MESSAGE axxx(nnn).

  • DELETE UPDATE.

  • MESSAGE exxx(nnn).

  • EXIT.

Explanation

Question 41 of 80

1

Compared to a predefined ABAP type what additional properties can be assigned to a domain?

There are 3 correct answers to this question.

Select one or more of the following:

  • Search helps

  • Value tables

  • Fixed values

  • Conversion exits

  • Parameter IDs

Explanation

Question 42 of 80

1

Which of the following predefined ABAP types is incomplete?

Please choose the correct answer.

Select one of the following:

  • XSTRING

  • P

  • STRING

  • F

Explanation

Question 43 of 80

1

You want to move a transport request from the development system to the subsequent system. Which of the following are prerequisites for this?

There are 2 correct answers to this question.

Select one or more of the following:

  • The extended program check must show no warnings.

  • All tasks of the transport request must be assigned to the same user.

  • The transport request must be released.

  • All objects included in the transport request must be activated.

Explanation

Question 44 of 80

1

How do you add fields to an SAP-delivered transparent table without modification?

Please choose the correct answer.

Select one of the following:

  • 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.

  • Add the new fields to the table definition.

Explanation

Question 45 of 80

1

Why should you bundle database updates in your dialog programs?

Please choose the correct answer.

Select one of the following:

  • To be able to rollback database changes performed in the same dialog step

  • To process the SAP LUW within the database LUW to ensure data consistency

  • To avoid database locks set by an SQL statement that persists until the end of the program

  • To allow you to use SAP locks to ensure data consistency

Explanation

Question 46 of 80

1

Which of the following are valid combinations of event visibility and handler method visibility?

There are 2 correct answers to this question.

Select one or more of the following:

  • Private event and public handler

  • Private event and private handler

  • Public event and protected handler

  • Protected event and public handler

Explanation

Question 47 of 80

1

You want to create a transparent table in the ABAP dictionary.
When the table is physically created in the database?

Please choose the correct answer.

Select one of the following:

  • When you insert the table name and select create

  • When you run the database utility transaction (SE14)

  • When you save the table

  • When you activate the table

Explanation

Question 48 of 80

1

How do you embed a subscreen in a main screen?

Please choose the correct answer.

Select one of the following:

  • Use CALL SUBSCREEN in a PBO module of the main screen.

  • Use SET SUBSCREEN in the flow logic of the main screen.

  • Use SET SUBSCREEN in a PBO module of the main screen.

  • Use CALL SUBSCREEN in the flow logic of the main screen.

Explanation

Question 49 of 80

1

Which of the following ABAP statements throws an error at the syntax check?

Please choose the correct answer.

Select one of the following:

  • DATA variable(5) TYPE n.

  • DATA variable(5) TYPE t.

  • DATA variable(5) TYPE p.

  • DATA variable.

Explanation

Question 50 of 80

1

Which of the following ABAP data types are compatible with the generic character-type CLIKE?

There are 3 correct answers to this question.

Select one or more of the following:

  • C

  • XSTRING

  • N

  • DECFLOAT

  • STRING

Explanation

Question 51 of 80

1

When are the changes to the VB* table transferred to the database?

Please choose the correct answer.

Select one of the following:

  • When the update work process is executed

  • When the enqueue work process is executed

  • When an update function module is executed

  • When the main program is executed

Explanation

Question 52 of 80

1

You add the CREATE PROTECTED addition to a class definition.
From where you can instantiate the class?

There are 3 correct answers to this question.

Select one or more of the following:

  • From the class itself

  • From a friend class

  • From any protected class

  • From a parent class

  • From a child class

Explanation

Question 53 of 80

1

Which statements are allowed for processing internal tables?

There are 3 correct answers to this question.

Select one or more of the following:

  • DELETE

  • INSERT

  • MODIFY

  • UPDATE

  • SELECT

Explanation

Question 54 of 80

1

A structure has enhancement category 3, can be enhanced (character-type).
Which set of elementary types is allowed for the new fields?

Please choose the correct answer.

Select one of the following:

  • D,I,string, T

  • F,I,P,X

  • C,D,N,T

  • C,D,N,X

Explanation

Question 55 of 80

1

Which of the following variables is the self-reference variable in ABAP OO?

Please choose the correct answer.

Select one of the following:

  • THIS

  • ME

  • SENDER

  • SUPER

Explanation

Question 56 of 80

1

You are establishing the business logic layer for a Web Dynpro Component. Which service types are available in the Service Call wizard?

There are 3 correct answers to this question.

Select one or more of the following:

  • Function module

  • Web service proxy

  • Transaction code

  • Function group

  • Class method

Explanation

Question 57 of 80

1

To which of the following you must assign newly created SAP repository objects?

Please choose the correct answer.

Select one of the following:

  • Transport task

  • Function group

  • Transport request

  • Package

Explanation

Question 58 of 80

1

Which steps are needed when implementing the singleton concept for class instantiation with minimum coding?

There are 3 correct answers to this question.

Select one or more of the following:

  • Define the class as abstract.

  • Create an event that returns the instance of the class.

  • Define the instantiation of the class as private.

  • Save the instance of the class in a static attribute.

  • Create an instance of the class in a static constructor.

Explanation

Question 59 of 80

1

What must you do to define a database view using the ABAP Dictionary?

There are 3 correct answers to this question.

Select one or more of the following:

  • Define buffering settings for the underlying database tables.

  • Choose the fields from the tables that should be part of the view.

  • Define selection criteria for the view.

  • Choose the database tables from where the view acquires data.

  • Define the join conditions between the tables.

Explanation

Question 60 of 80

1

Using the screen system table, what can you modify through a LOOP AT SCREEN … ENDLOOP construct?

Please choose the correct answer.

Select one of the following:

  • Values of screen elements

  • Function code of buttons

  • Screen status

  • Attributes of screen elements

Explanation

Question 61 of 80

1

You created a transparent table and during activation got a warning message "Enhancement category for table missing".
What do you have to do to eliminate the warning message?

Please choose the correct answer.

Select one of the following:

  • Select any option other than Not Classified from the enhancement category.

  • Provide the correct reference field for the Currency or Quantity field.

  • Change the Data Class and Size category in the technical settings.

  • Select the option Not Classified from the enhancement category.

Explanation

Question 62 of 80

1

Which of the following is an implicit enhancement?

There are 2 correct answers to this question.

Select one or more of the following:

  • Private method

  • Pre-method

  • Overwrite method

  • Protected method

Explanation

Question 63 of 80

1

When you add programming logic to your ABAP program that checks authorizations,which of the following do you have to create?

There are 2 correct answers to this question.

Select one or more of the following:

  • An authorization role

  • An authorization profile

  • An authorization Access

  • An authorization object

Explanation

Question 64 of 80

1

What is the root class in the RTTS inheritance tree?

Please choose the correct answer.

Select one of the following:

  • CL_ABAP_DATADESCR

  • CL_ABAP_COMPLEXDESCR

  • CL_ABAP_ELEMDESCR

  • CL_ABAP_TYPEDESCR

Explanation

Question 65 of 80

1

You are writing a function module that will be called from external system via remote function call (RFC). How do you report an error back to the external caller?

Please choose the correct answer.

Select one of the following:

  • Write the error data into a RECEIVING parameter that is passed by value.

  • Write the error data into a CHANGING parameters passed by value.

  • Write the error data into an EXPORTING parameters passed by reference.

  • Write the error data into TABLES parameters that is passed by reference.

Explanation

Question 66 of 80

1

Which of the following tools belong to the ABAP Workbench?

There are 3 correct answers to this question.

Select one or more of the following:

  • Easy Access Menu

  • Class Builder

  • Function Builder

  • Screen Painter

  • Form Builder

Explanation

Question 67 of 80

1

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

There are 3 correct answers to this question.

Select one or more of the following:

  • DATA lt_itab TYPE <Dictionary Table>

  • DATA lt_itab TYPE <Table Type>

  • DATA lt_itab TYPE TABLE OF < Dictionary Table >

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

  • DATA lt_itab TYPE TABLE OF <Structure Type>

Explanation

Question 68 of 80

1

Which of the following steps are required to set up a shared memory area?

There are 3 correct answers to this question.

Select one or more of the following:

  • Declare a catalog object

  • Enable multiple versions of an area root class

  • Set the root object

  • Call the attach_for_write method of area root class

  • Generate an area root class

Explanation

Question 69 of 80

1

You defined data reference z1 generically.
Which statement would you use to access the content of the referenced variable?

Please choose the correct answer.

Select one of the following:

  • Assign z1 to <fs>

  • Assign z1->* to <fs>

  • Get reference of z1 into wa

  • Assign (z1) to <fs>

Explanation

Question 70 of 80

1

What options do you have when setting a watchpoint?

There are 2 correct answers to this question.

Select one or more of the following:

  • Stop at predefined conditions for all variables.

  • Stop at predefined conditions for a specific variable.

  • Stop at any change of all variables.

  • Stop at any change of a specific variable.

Explanation

Question 71 of 80

1

Which view types can you use to join two tables with an outer join?

There are 2 correct answers to this question.

Select one or more of the following:

  • Help view

  • Database view

  • Projection view

  • Maintenance view

Explanation

Question 72 of 80

1

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.

Select one of the following:

  • SIMPLE

  • CSEQUENCE

  • DATA

  • CLIKE

Explanation

Question 73 of 80

1

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.

Select one of the following:

  • MOVE…. TO…..

  • WRITE……TO……

  • MOVE……?TO……

  • MOVE-CORRESPONDING…… TO……

Explanation

Question 74 of 80

1

What can you create using the ABAP Dictionary?

There are 3 correct answers to this question.

Select one or more of the following:

  • Internal tables

  • Domains

  • Transparent tables

  • Type pools

  • Field symbols

Explanation

Question 75 of 80

1

You want to use a BAdI to extend the functions of an SAP program. Which of the following tasks is necessary?

Please choose the correct answer.

Select one of the following:

  • Define an interface for the BAdI.

  • Implement a class that implements the BAdI interface.

  • Create an enhancement project using a customer exit.

  • Call the BAdI.

Explanation

Question 76 of 80

1

Which parameter types can be used in the signature of a functional method?

There are 2 correct answers to this question.

Select one or more of the following:

  • RETURNING

  • EXPORTING

  • IMPORTING

  • CHANGING

Explanation

Question 77 of 80

1

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.

Select one of the following:

  • Object diagram

  • Sequence diagram

  • Component diagram

  • Class diagram

Explanation

Question 78 of 80

1

How can you declare an internal table using the transparent table A as its line type?

Please choose the correct answer.

Select one of the following:

  • DATA gt_itab TYPE LINE OF a.

  • DATA gt_itab TYPE REF TO a.

  • DATA gt_itab TYPE a.

  • DATA gt_itab TYPE TABLE OF a.

Explanation

Question 79 of 80

1

In an ABAP program, you to assign an initial value to an elementary data object when you define it. Which addition must you use?

Please choose the correct answer.

Select one of the following:

  • DEFAULT

  • OBLIGATORY

  • VALUE

  • READ-ONLY

Explanation

Question 80 of 80

1

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.

Select one of the following:

  • Generate a ‘BIND_TABLE’ method using the web dynpro method wizard.

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

  • Include the method BIND_TABLE of IF_WD_CONTEXT_NODE.

  • Bind the table attribute ‘DATA_SOURCE’ to the context node.

Explanation