CREATE_STANDING_ORDER_EXECUTE SAP Method create a standing order
Below is documentation, parameters and attributes of ABAP Method CREATE_STANDING_ORDER_EXECUTE within SAP class /FSCAA/IF_STANDING_ORDER. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name /FSCAA/IF_STANDING_ORDER into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
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.The following technical details of method CREATE_STANDING_ORDER_EXECUTE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CREATE_STANDING_ORDER_EXECUTE
.| Name | Type | Data Type | Description | Default Value |
| PI_IREF_SO | Importing | TYPE REF TO /FSCAA/IF_SO_CONTENT |
Exceptions of Method CREATE_STANDING_ORDER_EXECUTE
/FSCAA/CX_EXCEPTION - FS-CAA Exception classExample ABAP coding
DATA: lo_class TYPE REF TO /FSCAA/IF_STANDING_ORDER.
DATA: lv_PI_IREF_SO TYPE /FSCAA/IF_SO_CONTENT,
lv_other TYPE c.
CALL METHOD lo_class=>CREATE_STANDING_ORDER_EXECUTE(
EXPORTING
PI_IREF_SO = lv_PI_IREF_SO ).
Links to Related Class(s)
/FSCAA/I...Full list of available SAP object classes
Search for further information about these or an SAP related objects