ABAP OO Class Methods

CREATE SAP Method - Create AOD Group Entity







Below is documentation, parameters and attributes of ABAP Method CREATE within SAP class IF_GRPC_API_AOD_GROUP. 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_GRPC_API_AOD_GROUP 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_GRPC_API_AOD_GROUP

Method Name

CREATE

Method Type

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






Importing Parameters:

Below is a list of importing parameters associated with this method, including its name, description and data type


IR_SESSION " Session Management for GRC APIs TYPE REF TO CL_GRFN_API_SESSION
I_REGULATION_ID " Object ID TYPE GRFN_API_OBJECT_ID

Exporting Parameters:


E_OBJECT_ID " GUID in 'CHAR' Format in Uppercase TYPE GRFN_API_OBJECT_ID

Exceptions:



Example ABAP coding


DATA:
ld_IR_SESSION TYPE REF TO CL_GRFN_API_SESSION ,
ld_I_REGULATION_ID TYPE GRFN_API_OBJECT_ID ,
ld_E_OBJECT_ID TYPE GRFN_API_OBJECT_ID.

" ld_IR_SESSION = "
" ld_I_REGULATION_ID = "

CALL METHOD IF_GRPC_API_AOD_GROUP=>CREATE(
EXPORTING
IR_SESSION = ld_IR_SESSION
I_REGULATION_ID = ld_I_REGULATION_ID
IMPORTING
E_OBJECT_ID = ld_E_OBJECT_ID ).