Object Oriented ABAP Part2
Object Oriented ABAP Part2
parameters of a class
Go to SE38 and create a program.
REPORT ZLOCALCLASS_VARIABLES.
*How we can use import and export and changing parameters in the class.
*Provide the variables
DATA: V_IMP TYPE I,
V_CHA TYPE I VALUE 100.
*Define the class.
CLASS CL_LC DEFINITION.
PUBLIC SECTION.
METHODS: DISPLAY IMPORTING A TYPE I
EXPORTING B TYPE I
CHANGING C TYPE I.
ENDCLASS.
*Implement the class.
CLASS CL_LC IMPLEMENTATION.
METHOD DISPLAY.
B = A + 20.
C = A + 30.
ENDMETHOD.
ENDCLASS.
*Create the object.
DATA OBJ TYPE REF TO CL_LC.
START-OF-SELECTION.
CREATE OBJECT OBJ.
CALL METHOD OBJ->DISPLAY
EXPORTING
A = 10
IMPORTING
B = V_IMP
CHANGING
C = V_CHA.
WRITE:/ 'OUTPUT PARAMETR', V_IMP,
'CHANGING PARAMETER', V_CHA.
Press F5.
Then
Final output.
Working on Polymorphism
POLYMORPHISM:-
Go to SE24 T-code.
Provide methods.
Select the first method then provide the parameters for this method.
Provide SUBCLASS:
Go to attribute provide the values that means provide super class name.
Go to Attributes.
Output :-
Click on continue.
Enter the New method “GET_DATA_NEW”
Click on Parameters.
Click on Pattern.
Click on continue.
Paste the Below Code.
*&---------------------------------------------------------------------*
*& Report ZENHANCE_TEST
*& DEMO FOR ENHANCING THE STANDARD CLASS.
REPORT ZENHANCE_TEST.
* TYPE DECLARATIONS
DATA : TABLE TYPE STRING,
ROW_COUNT TYPE I,
DATA_OUT TYPE TABLE OF SFLIGHT,
W_OUT LIKE LINE OF DATA_OUT.
* Calling the Enhanced class and Enhanced methods.
CALL METHOD CL_WDR_FLIGHTS=>GET_DATA_NEW
EXPORTING
* ROW_COUNT =
TAB_NAME = 'SFLIGHT'
CHANGING
DATA = DATA_OUT.
LOOP AT DATA_OUT INTO W_OUT.
WRITE :/ W_OUT-CARRID, W_OUT-FLDATE.
ENDLOOP.
We can use ABAP classes in the definition and runtime components of SAP Web Flow
Engine in the same way as object types defined in the Business object Repository (BOR).
Before proceeding further we need to know where to create and maintain ABAP Classes
and ABAP Interfaces.
The Class Builder allows us to create and maintain global ABAP classes and interfaces.
Both of these object types, like global data types, are defined in the ABAP Repository,
thus composing a central class library. Together, they form a central class library and are
visible throughout the system. We can display existing classes and interfaces in the class
library using the Class Browser.
We can define local classes as well as global classes. They are defined locally in programs,
function groups or as auxiliary classes of global classes of the class pools. Local classes are
only visible within the defining module.
To reach the initial screen of the Class Builder, choose Development Class Builder from
the initial screen of the ABAP Workbench or enter transaction code SE24.
4. How does it integrate?
The Class Builder allows us to create Web development objects within the ABAP Workbench.
We can use the Class Browser to display and maintain existing global object types from the
class library.
The diagram below illustrates the architecture of the Class Builder and the relationships
between its components (including the Class Browser)
From here, we can either display the contents of the class library or edit a class using the
Class Editor. Once we have defined an object type, we can implement its methods. From the
initial screen or the Class Editor, we can also access the Class Builder‟s test environment.
We can define the object types immediately after implementing the method in the ABAP
Editor. It is also possible to access the test environment from the initial screen or Class
Editor.
Display an overview (in the Class Browser) of global object types and their
relationships.
Maintain existing global classes or interfaces.
Create new global classes and interfaces.
Implement inheritance between global classes.
Create compound interfaces.
Create and specify the attributes, methods, and events of global classes and
interfaces.
Define internal types in classes.
Implement methods.
Redefine methods.
Maintain local auxiliary classes.
Test classes or interfaces in a simulated runtime environment.
Global classes and interfaces that we create in the Class Builder are stored in the class
library and administered by the R/3 Repository: they therefore have the same namespace
as all other Repository objects. It is therefore necessary to have naming conventions for
object types and their components and to use them uniformly within program
development.
The following naming convention has been conceived for use within the SAP namespace. If
we do not observe the naming conventions for object types (classes and interfaces),
conflicts will occur when the system creates persistent classes, since it will be unable to
generate the necessary co-classes.
For parameters:
RESULT RE_<result>
Within the SAP WebFlow Engine we can use ABAP classes that support the IF_WORKFLOW
interface. Classes that have implemented the IF_WORKFLOW interface are recognized as
workflow-enabled in the Class Builder.
The key attributes are used to define the object key. There can also be other defined
attributes other than key attributes. The SAP Web Flow Engine can access all public
attributes of a class.
Key Attributes:
In the Class Builder there is an additional column Key Attributes on the tab
page as shown below:
We need to check this box when we are defining any attribute as the Key Attribute.
All key fields must be character-type fields (elementary types: CHAR, NUMC) and have a
defined length. The maximum length allowed for all key fields is 32 characters. The length
of the key field for the persistent display is 32 characters.
In the case of persistent ABAP objects we can use the GUID, which is generated
automatically by the object manager when an instance is created.
Attributes:
In addition to all the other data types that the Class Builder supports, we can also define
attributes with reference to an object from the Business Object Repository (BOR). To do
this, we have to use the structure SWOTOBJID as the data type. The BOR object is
determined using the corresponding value.
To assign a BOR object instance to an attribute we need to use the corresponding BOR
macros. Normally, this is implemented within the CONSTRUCTOR of a class.
The IF_WORKFLOW interface is necessary when using an ABAP class within the SAP Web
Flow Engine. The interface contains methods that allow the object to be used within the SAP
Web Flow Engine.
The SAP Web Flow Engine handles all objects generically. Objects have to be saved in the
event of a context change. Therefore, it is necessary to convert object references in such a
way that they can be saved persistently. Conversely, we have to be able to generate the
corresponding instance of an ABAP class from the persistently saved key.
There are also a number of SAP Web Flow Engine components, for example, the Workflow
Log that can display objects. In this case the object has to provide corresponding functions.
The IF_WORKFLOW interface puts a logical parenthesis round the BI_PERSISTENT (instance
management) and BI_OBJECT (object behavior) interfaces. The IF_WORKFLOW interface
contains the following methods:
BI_PERSISTENT~FIND_BY_LPOR
BI_PERSISTENT~LPOR
BI_PERSISTENT~REFRESH
BI_OBJECT~DEFAULT_ATTRIBUTE_VALUE
BI_OBJECT~EXECUTE_DEFAULT_METHOD
BI_OBJECT~RELEASE
A class that implements the IF_WORKFLOW interface can be used in any workflow. The
class is automatically released for use in workflows when the interface is implemented.
Therefore, we can only make compatible changes to a class after implementation (we
cannot delete attributes, change types or delete methods). There is no where-used list to
show which workflows the class is used in.
Internal classes of an application should not implement the IF_WORKFLOW interface, since
this could mean that each method of the class is used in the workflow. Therefore, we should
encapsulate the workflow functions in another class that calls the selected methods of the
internal class.
Each method of the IF_WORKFLOW Interface as mentioned earlier has its distinct
functionality, which is discussed below.
Features:
The method parameter LPOR is the persistent object reference and is of SIBFLPOR structure
type. A reference of BI_PERSISTENT type is returned.
Field Description
CATID Describes the object type ( CL for ABAP classes)
TYPEID ABAP class name
INSTID Object key. The key is limited to 32 characters.
We can implement this method in several ways. In the case of persistent classes we can
create the ABAP object instance using the generated classes. In the case of individual
persistence management we have to implement the individual actions (such as creating an
instance, performing an existence check, entering public attributes, and so on) manually
within the class.
Instance management takes place automatically in the case of persistent classes. In the
case of individual persistence management we also have to carry out instance management
by class. The SAP Web Flow Engine does not provide any instance management. We must
therefore implement our own instance management in the case of individual persistence
management.
The FIND_BY_LPOR method should always return the same instance if the following
problems are to be avoided:
Inconsistency in the data display
Instance data being overwritten by another instance
Locking conflicts
There is an implementation example in the CL_SWF_FORMABSENC demo class.
17. BI_PERSISTENT~LPOR Method:
Features:
The method returns the persistent display of an object reference as a SIBFLPOR type
structure as described earlier.
There are also several ways of implementing this method in this case. There is an
implementation example in the CL_SWF_FORMABSENC demo class.
SAP Web Flow Engine calls the BI_PERSISTENT~REFRESH method when the system has to
ensure that all values of an object are valid or that they agree exactly with the persistent
display of the object.
Features:
The method implementation depends on the internal organization of the class. We can check
the object instance data in the database, if necessary.
If we do not need the method in our class, then we need only to carry out a “dummy”
implementation (without further coding) to avoid program errors when the system calls the
method.
Features:
We can display references to process objects or process step objects at different positions
within the SAP Web Flow Engine (for example, in Business Workplace and in Workflow Log).
The object key is normally displayed here. If, for example, we want to display a descriptive
text instead, the BI_OBJECT~DEFAULT_ATTRIBUTE_VALUE method has to return the
corresponding value.
If the method does not contain implementation or does not return a value, the object key is
displayed.
If we do not need the method in our class, then we need only to carry out a “dummy”
implementation (without further coding) to avoid program errors when the system calls the
method.
Features:
We can display process objects or process step objects at different positions within the SAP
Web Flow Engine (for example, in Business Workplace and in Workflow Log). The SAP Web
Flow Engine calls the BI_OBJECT~EXECUTE_DEFAULT_METHOD method.
If we do not need the method in our class, then we need only to carry out a “dummy”
implementation (without further coding) to avoid program errors when the system calls the
method.
The system indicates that the reference to the instance is no longer needed by using the
BI_OBJECT~RELEASE method. This means we can delete the reference from instance
management. Once the last reference has been deleted from instance management, the
GARBAGE COLLECTOR can release the corresponding memory area.
Features:
If we do not need the method in our class, then we need only to carry out a “dummy”
implementation (without further coding) to avoid program errors when the system calls the
method.
In process steps we can use methods and attributes of ABAP classes in the same way as
methods and attributes of Business Object Repository (BOR) objects. We can call these
methods in the process context.
Features:
While using the ABAP Classes in the Process Steps the methods may contain dialogs, they
can be synchronous or asynchronous; they may appear in the workflow log, and so on.
In general, we can use any method that is implemented as a public method. The method
can be implemented in the class itself, in one of the super classes of the class, or by way of
an interface.
The maximum permitted length for methods that are implemented by way of an interface,
for example IF_WORKFLOW~FIND_BY_LPOR, is 30 characters. If the method name is too
long, we can choose a shorter name for the method by defining an alias. If the method is
implemented in the class or in a super class, the name of the method cannot be longer than
30 characters, so this limitation does not apply.
Parameters:
We can assign values from the workflow container to the method parameters. Conversely,
export parameters can be entered as workflow container values. The following overview
shows how the individual types can be used as parameters:
TYPE SIBFLPORB
BOR objects
TYPE SIBFLPORB
TYPE SWOTOBJID
Object is transferred using the persistent display; this display is only valid for
BOR objects
TYPE SWC_OBJECT
Exceptions:
The SAP Web Flow Engine can deal with exceptions that are triggered by the methods. It
differentiates between application exceptions and temporary exceptions. The two exception
categories are differentiated by the exception in the class hierarchy or by naming
conventions. In the case of a temporary exception, the SAP Web Flow Engine attempts to
execute the method again. In the case of a permanent error the status for the workflow is
set to error.
Class-Based Exceptions:
To create a temporary exception, we can use, for example, the CX_BO_TEMPORARY class or
a corresponding subclass. It can be helpful to trigger an exception for dialog methods when
the user cancels the dialog. Here, for example, we could trigger the
CX_BO_ACTION_CANCELED exception (subclass of the CX_BO_TEMPORARY class).
We can also trigger exceptions not based on class. The SAP Web Flow Engine can
differentiate between the two exception categories (temporary and permanent) by the
name. If the exception begins with TMP or TEMP, it is a temporary exception; otherwise it is
a permanent exception.
Working with events in a Global Class
“I would like to explain about Working with Events in Global Class” .
Save it.
Go to event tab.
Save it.
Then provide link between method and also the event method.
METHOD METHOD_EVENT .
MESSAGE I000(0) WITH 'enter the values between 1000 and 2000'.
ENDIF.
SELECT *
FROM LFA1
INTO TABLE IT_LFA1
IT_LFA11 = IT_LFA1.
ENDMETHOD.
REPORT ZCL_EVENT_OPERATION .
START-OF-SELECTION.
EXPORTING
S_LIFNR_LOW = S_LIFNR-LOW
S_LIFNR_HIGH = S_LIFNR-HIGH
IT_LFA1 = IT_LFA1.
WRITE:/ WA_LFA1-LIFNR,
WA_LFA1-LAND1,
WA_LFA1-NAME1,
WA_LFA1-ORT01.
ENDLOOP.
Interfaces are listed in the definition part of the class, and must always be in the
PUBLIC SECTION.
Operations defined in the interface are implemented as methods of the class. All
methods of the interface must be present in the implementation part of the class.
Attributes, events, constants and types defined in the interface are automatically
available to the class carrying out the implementation.
Interface components are addressed in the class by <interface name>~<component
name>
Provide description.
Save it.
Save it.
Create it.
Save it.
Go to interface tab.
Save it.
Then we can see the interface method name in the class method.
Then double click on the method then write the logic here.
Then save it, check it, activate it.