GET_DEFAULT_SETTINGS SAP Method Get default settings









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

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


Parameters of Method GET_DEFAULT_SETTINGS

.

NameTypeData TypeDescriptionDefault Value
IV_EXPLANATION_MODEImportingTYPE
BOOLEAN
Boolean Variable (X=True, -=False, Space=Unknown)
IV_MSG_KEYImportingTYPE
/BOBF/CONF_KEY
NodeID
IV_MSG_NODE_KEYImportingTYPE
/BOBF/OBM_NODE_KEY
Node
EV_COMM_SETTINGS_IDExportingTYPE
/SCMTMS/TEND_COMM_SETTINGS_ID
Tendering Communication Settings
EV_ERROR_IN_CUSTOMIZINGExportingTYPE
ABAP_BOOL
EV_MSGExportingTYPE
C
EV_PROC_SETTINGS_IDExportingTYPE
/SCMTMS/TEND_PROC_SETTINGS_ID
Tendering Process Settings
EV_QUOTE_EVAL_USERExportingTYPE
/SCMTMS/TEND_QUOTE_EVAL_USER
Quotation Evaluation User
EV_RFQ_NUMRNGINTVExportingTYPE
/SCMTMS/TEND_RFQ_NUMBRANGEINTV
Number Range Interval for Request for Quotations
EV_TTEMP_CDOExportingTYPE
/SCMTMS/TEND_TTEMP_CDO
Change Documents for Tendering Profiles
CO_MESSAGEChangingTYPE REF TO
/BOBF/IF_FRW_MESSAGE
Interface of Message Object



Exceptions of Method GET_DEFAULT_SETTINGS

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /SCMTMS/IF_TEND_CUST_HANDLER.
DATA: lv_CO_MESSAGE TYPE /BOBF/IF_FRW_MESSAGE,
lv_EV_COMM_SETTINGS_ID TYPE /SCMTMS/TEND_COMM_SETTINGS_ID,
lv_EV_ERROR_IN_CUSTOMIZING TYPE ABAP_BOOL,
lv_EV_MSG TYPE C,
lv_EV_PROC_SETTINGS_ID TYPE /SCMTMS/TEND_PROC_SETTINGS_ID,
lv_EV_QUOTE_EVAL_USER TYPE /SCMTMS/TEND_QUOTE_EVAL_USER,
lv_EV_RFQ_NUMRNGINTV TYPE /SCMTMS/TEND_RFQ_NUMBRANGEINTV,
lv_EV_TTEMP_CDO TYPE /SCMTMS/TEND_TTEMP_CDO,
lv_IV_EXPLANATION_MODE TYPE BOOLEAN,
lv_IV_MSG_KEY TYPE /BOBF/CONF_KEY,
lv_IV_MSG_NODE_KEY TYPE /BOBF/OBM_NODE_KEY,
lv_other TYPE c.

CALL METHOD lo_class=>GET_DEFAULT_SETTINGS(
EXPORTING
IV_EXPLANATION_MODE = lv_IV_EXPLANATION_MODE
IV_MSG_KEY = lv_IV_MSG_KEY
IV_MSG_NODE_KEY = lv_IV_MSG_NODE_KEY
IMPORTING
EV_COMM_SETTINGS_ID = lv_EV_COMM_SETTINGS_ID
EV_ERROR_IN_CUSTOMIZING = lv_EV_ERROR_IN_CUSTOMIZING
EV_MSG = lv_EV_MSG
EV_PROC_SETTINGS_ID = lv_EV_PROC_SETTINGS_ID
EV_QUOTE_EVAL_USER = lv_EV_QUOTE_EVAL_USER
EV_RFQ_NUMRNGINTV = lv_EV_RFQ_NUMRNGINTV
EV_TTEMP_CDO = lv_EV_TTEMP_CDO
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



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!