ABAP OO Class Methods

CREATE_CREQUEST_FOR_PFLI SAP Method - Create Change Request for Flight Data







Below is documentation, parameters and attributes of ABAP Method CREATE_CREQUEST_FOR_PFLI 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_PFLI

Method Type

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







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_EO_GOV_API TYPE REF TO IF_USMD_GOV_API ,
ld_EV_CREQUEST_ID TYPE USMD_CREQUEST.


CALL METHOD TH_USMD_CHANGE_REQUEST=>CREATE_CREQUEST_FOR_PFLI(
IMPORTING
EO_GOV_API = ld_EO_GOV_API
EV_CREQUEST_ID = ld_EV_CREQUEST_ID ).