GET_COMMUNICATION_CUST_BUFF SAP Method Get communication customizing (buffered)
Below is documentation, parameters and attributes of ABAP Method GET_COMMUNICATION_CUST_BUFF 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_COMMUNICATION_CUST_BUFF can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_COMMUNICATION_CUST_BUFF
.| Name | Type | Data Type | Description | Default Value |
| IT_COMM_SETTINGS_ID | Importing | TYPE /SCMTMS/T_TEND_COMM_SETT_ID | Tendering Communication Settings ID | |
| IV_MSG_KEY | Importing | TYPE /BOBF/CONF_KEY | NodeID | |
| ET_COMM_SETTINGS | Exporting | TYPE /SCMTMS/T_TEND_COMM_SETTINGS | Tendering General Communication Settings | |
| EV_ERROR_IN_CUSTOMIZING | Exporting | TYPE ABAP_BOOL | ||
| EV_MSG | Exporting | TYPE C | ||
| CO_MESSAGE | Changing | TYPE REF TO /BOBF/IF_FRW_MESSAGE | Interface of Message Object |
Exceptions of Method GET_COMMUNICATION_CUST_BUFF
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_COMM_SETTINGS TYPE /SCMTMS/T_TEND_COMM_SETTINGS,
lv_EV_ERROR_IN_CUSTOMIZING TYPE ABAP_BOOL,
lv_EV_MSG TYPE C,
lv_IT_COMM_SETTINGS_ID TYPE /SCMTMS/T_TEND_COMM_SETT_ID,
lv_IV_MSG_KEY TYPE /BOBF/CONF_KEY,
lv_other TYPE c.
CALL METHOD lo_class=>GET_COMMUNICATION_CUST_BUFF(
EXPORTING
IT_COMM_SETTINGS_ID = lv_IT_COMM_SETTINGS_ID
IV_MSG_KEY = lv_IV_MSG_KEY
IMPORTING
ET_COMM_SETTINGS = lv_ET_COMM_SETTINGS
EV_ERROR_IN_CUSTOMIZING = lv_EV_ERROR_IN_CUSTOMIZING
EV_MSG = lv_EV_MSG
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