MUST_PPO_ORDERS_BE_CREATED SAP Method Create PPO Requests for Combination of Source and Target?
Below is documentation, parameters and attributes of ABAP Method MUST_PPO_ORDERS_BE_CREATED within SAP class MDS_CTRL_CUSTOMIZING. 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 MDS_CTRL_CUSTOMIZING into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Static
This is a Static Method so you can call it directlyThe following technical details of method MUST_PPO_ORDERS_BE_CREATED can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method MUST_PPO_ORDERS_BE_CREATED
.| Name | Type | Data Type | Description | Default Value |
| SYNC_OBJ_SOURCE | Importing | TYPE MDS_CTRL_OBJ_SOURCE | Source Synchronization Object | |
| SYNC_OBJ_TARGET | Importing | TYPE MDS_CTRL_OBJ_TARGET | Target Synchronization Object | |
| PPO_ORDERS_TO_BE_CREATED | Returning | TYPE XFELD | 'X' = Yes ' ' = No |
Exceptions of Method MUST_PPO_ORDERS_BE_CREATED
This method does not have any exceptionsExample ABAP coding
DATA: lv_PPO_ORDERS_TO_BE_CREATED TYPE XFELD,
lv_SYNC_OBJ_SOURCE TYPE MDS_CTRL_OBJ_SOURCE,
lv_SYNC_OBJ_TARGET TYPE MDS_CTRL_OBJ_TARGET,
lv_other TYPE c.
CALL METHOD MDS_CTRL_CUSTOMIZING=>MUST_PPO_ORDERS_BE_CREATED(
EXPORTING
SYNC_OBJ_SOURCE = lv_SYNC_OBJ_SOURCE
SYNC_OBJ_TARGET = lv_SYNC_OBJ_TARGET
RECEIVING
PPO_ORDERS_TO_BE_CREATED = lv_PPO_ORDERS_TO_BE_CREATED )
"Alternate coding for Method Call with returning parameter
lv_PPO_ORDERS_TO_BE_CREATED = MDS_CTRL_CUSTOMIZING=>MUST_PPO_ORDERS_BE_CREATED(
EXPORTING
SYNC_OBJ_SOURCE = lv_SYNC_OBJ_SOURCE
SYNC_OBJ_TARGET = lv_SYNC_OBJ_TARGET ).
Links to Related Class(s)
MDS_CTRL...Full list of available SAP object classes
Search for further information about these or an SAP related objects