GET_PROCESS_CUST SAP Method Get process customizing
Below is documentation, parameters and attributes of ABAP Method GET_PROCESS_CUST within SAP class /SCMTMS/IF_TEND_CUST_HANDLER. 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 /SCMTMS/IF_TEND_CUST_HANDLER 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 GET_PROCESS_CUST can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_PROCESS_CUST
.| Name | Type | Data Type | Description | Default Value |
| IT_PROC_SETTINGS_ID | Importing | TYPE /SCMTMS/T_TEND_PROC_SETT_ID | Tendering Process Settings ID | |
| IV_MSG_KEY | Importing | TYPE /BOBF/CONF_KEY | NodeID | |
| ET_PROC_SETTINGS | Exporting | TYPE /SCMTMS/T_TEND_PROC_SETTINGS | Tendering Process Settings | |
| ET_PROC_SETTINGS_BUFF | Exporting | TYPE /SCMTMS/T_TEND_PROC_SETTINGS | Tendering Process Settings | |
| EV_ERROR_IN_CUSTOMIZING | Exporting | TYPE ABAP_BOOL | ||
| EV_MSG_BUFF | Exporting | TYPE C | ||
| CO_MESSAGE | Changing | TYPE REF TO /BOBF/IF_FRW_MESSAGE | Interface of Message Object |
Exceptions of Method GET_PROCESS_CUST
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /SCMTMS/IF_TEND_CUST_HANDLER.
DATA: lv_CO_MESSAGE TYPE /BOBF/IF_FRW_MESSAGE,
lv_ET_PROC_SETTINGS TYPE /SCMTMS/T_TEND_PROC_SETTINGS,
lv_ET_PROC_SETTINGS_BUFF TYPE /SCMTMS/T_TEND_PROC_SETTINGS,
lv_EV_ERROR_IN_CUSTOMIZING TYPE ABAP_BOOL,
lv_EV_MSG_BUFF TYPE C,
lv_IT_PROC_SETTINGS_ID TYPE /SCMTMS/T_TEND_PROC_SETT_ID,
lv_IV_MSG_KEY TYPE /BOBF/CONF_KEY,
lv_other TYPE c.
CALL METHOD lo_class=>GET_PROCESS_CUST(
EXPORTING
IT_PROC_SETTINGS_ID = lv_IT_PROC_SETTINGS_ID
IV_MSG_KEY = lv_IV_MSG_KEY
IMPORTING
ET_PROC_SETTINGS = lv_ET_PROC_SETTINGS
ET_PROC_SETTINGS_BUFF = lv_ET_PROC_SETTINGS_BUFF
EV_ERROR_IN_CUSTOMIZING = lv_EV_ERROR_IN_CUSTOMIZING
EV_MSG_BUFF = lv_EV_MSG_BUFF
CHANGING
CO_MESSAGE = lv_CO_MESSAGE ).
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects