ABAP OO Class Methods

CREATE_CREQUEST_FOR_CARR SAP Method - Create Change Request for Airline







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

TH_USMD_CHANGE_REQUEST

Method Name

CREATE_CREQUEST_FOR_CARR

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


IV_CARRID " Airline Code TYPE S_CARR_ID

Exporting Parameters:


EO_GOV_API " Governance API TYPE REF TO IF_USMD_GOV_API
EV_CREQUEST_ID " Change Request TYPE USMD_CREQUEST

Exceptions:



Example ABAP coding


DATA:
ld_IV_CARRID TYPE S_CARR_ID ,
ld_EO_GOV_API TYPE REF TO IF_USMD_GOV_API ,
ld_EV_CREQUEST_ID TYPE USMD_CREQUEST.

" ld_IV_CARRID = "

CALL METHOD TH_USMD_CHANGE_REQUEST=>CREATE_CREQUEST_FOR_CARR(
EXPORTING
IV_CARRID = ld_IV_CARRID
IMPORTING
EO_GOV_API = ld_EO_GOV_API
EV_CREQUEST_ID = ld_EV_CREQUEST_ID ).