ABAP OO Class Methods

INIT SAP Method - Init







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

IWCI_GRPC_OLSP_OIF

Method Name

INIT

Method Type

Instance Method:   This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.






Importing Parameters:

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


I_JOBID " TYPE GUID_32
I_OLSP " TYPE GRPC_ORGUNITGRP
JOBNAME " TYPE GRPC_JOBNAME

Exceptions:



Example ABAP coding


DATA:
ld_I_JOBID TYPE GUID_32 ,
ld_I_OLSP TYPE GRPC_ORGUNITGRP ,
ld_JOBNAME TYPE GRPC_JOBNAME.

" ld_I_JOBID = "
" ld_I_OLSP = "
" ld_JOBNAME = "

DATA: lo_OIF TYPE REF TO IWCI_GRPC_OLSP_OIF .
CALL METHOD lo_OIF->INIT(
EXPORTING
I_JOBID = ld_I_JOBID
I_OLSP = ld_I_OLSP
JOBNAME = ld_JOBNAME ).