ABAP OO Class Methods

CREATE SAP Method - Create







Below is documentation, parameters and attributes of ABAP Method CREATE within SAP class IF_GRRM_API_CLUSTER. There is also a number of example ABAP code snipts to help you implement this method.

This method is available within SAP systems depending on your version and release level and you can view further information by entering the class name IF_GRRM_API_CLUSTER into relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in. Also check out the contributions below to view or add related hints, tips, example screen shots and any other information.


SAP Class method belongs too

IF_GRRM_API_CLUSTER

Method Name

CREATE

Method Type

Static Method:  This is a Static Method so you can call it directly







Returning Parameters:


EV_CLUSTER_ID " Object ID TYPE GRFN_API_OBJECT_ID

Exceptions:


CX_GRFN_EXCEPTION - Generic GRC API exception



Example ABAP coding


DATA:
ld_EV_CLUSTER_ID TYPE GRFN_API_OBJECT_ID.


CALL METHOD IF_GRRM_API_CLUSTER=>CREATE(
RECEIVING
EV_CLUSTER_ID = ld_EV_CLUSTER_ID
EXCEPTIONS
CX_GRFN_EXCEPTION = 1 ).

"Alternate coding for Method Call with returning parameter



ld_EV_CLUSTER_ID = IF_GRRM_API_CLUSTER=>CREATE().


ld_EV_CLUSTER_ID = IF_GRRM_API_CLUSTER=>CREATE().