GET_CARRIER_COMM_CUST_BUFF SAP Method Get carrier communication customizing (buffered)









Below is documentation, parameters and attributes of ABAP Method GET_CARRIER_COMM_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_CARRIER_COMM_CUST_BUFF can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method GET_CARRIER_COMM_CUST_BUFF

.

NameTypeData TypeDescriptionDefault Value
IT_TSP_INTERNAL_IDImportingTYPE
/SCMTMS/T_TEND_TSP_INTERNAL_ID
Tendering internal carrier ID
ET_COMM_PROF_TSPExportingTYPE
/SCMTMS/CL_TEND_CUST=>TT_TENDCP
ET_COMM_PROF_TSP_BUFFExportingTYPE
/SCMTMS/CL_TEND_CUST=>TT_TENDCP



Exceptions of Method GET_CARRIER_COMM_CUST_BUFF

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /SCMTMS/IF_TEND_CUST_HANDLER.
DATA: lv_ET_COMM_PROF_TSP TYPE /SCMTMS/CL_TEND_CUST=>TT_TENDCP,
lv_ET_COMM_PROF_TSP_BUFF TYPE /SCMTMS/CL_TEND_CUST=>TT_TENDCP,
lv_IT_TSP_INTERNAL_ID TYPE /SCMTMS/T_TEND_TSP_INTERNAL_ID,
lv_other TYPE c.

CALL METHOD lo_class=>GET_CARRIER_COMM_CUST_BUFF(
EXPORTING
IT_TSP_INTERNAL_ID = lv_IT_TSP_INTERNAL_ID
IMPORTING
ET_COMM_PROF_TSP = lv_ET_COMM_PROF_TSP
ET_COMM_PROF_TSP_BUFF = lv_ET_COMM_PROF_TSP_BUFF ).

Links to Related Class(s)

/SCMTMS/...
Full list of available SAP object classes

Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!