CLAIM_SIMULATE SAP Method Create claim and start action without database update









Below is documentation, parameters and attributes of ABAP Method CLAIM_SIMULATE within SAP class IF_DP_WTY_UI_BACKEND_CALLS. 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 IF_DP_WTY_UI_BACKEND_CALLS 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 CLAIM_SIMULATE can also be found below:

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


Parameters of Method CLAIM_SIMULATE

.

NameTypeData TypeDescriptionDefault Value
IS_HEADERDATAImportingTYPE
DPWTY_HEADERDATA_CLAIM_G
Structure for Claim header data FE with guid
IS_OBJECTDATAImportingTYPE
DPWTY_OBJECTDATA_CLAIM_G
Structure for Object data in Claim with claim guid
IS_RECALLDATAImportingTYPE
DPWTY_RECALL_LIST
Structure for Recall result list
IS_VERSIONDATAImportingTYPE
DPWTY_VERSIONDATA_CLAIM_G
Structure for Claim version data with guid
IT_ITEMDATAImportingTYPE
DPWTY_T_ITEMDATA_CLAIM_G
Claim item data FE
IT_LTEXTImportingTYPE
DPWTY_T_TEXTS
Texts for Dealer Portal Warranty Processing FE
IT_MEASUREMENTImportingTYPE
DPWTY_T_MEASUREMENT_CLAIM_G
Warranty Claim measurement RFC
ET_MSGExportingTYPE
BAPIRET2_T
Protocol Messages
ET_RETURNExportingTYPE
BAPIRET2_T
Return parameter table
EV_ICONExportingTYPE
DPWTY_MSG_ICON
Icon to make message importance visible



Exceptions of Method CLAIM_SIMULATE

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_DP_WTY_UI_BACKEND_CALLS.
DATA: lv_ET_MSG TYPE BAPIRET2_T,
lv_ET_RETURN TYPE BAPIRET2_T,
lv_EV_ICON TYPE DPWTY_MSG_ICON,
lv_IS_HEADERDATA TYPE DPWTY_HEADERDATA_CLAIM_G,
lv_IS_OBJECTDATA TYPE DPWTY_OBJECTDATA_CLAIM_G,
lv_IS_RECALLDATA TYPE DPWTY_RECALL_LIST,
lv_IS_VERSIONDATA TYPE DPWTY_VERSIONDATA_CLAIM_G,
lv_IT_ITEMDATA TYPE DPWTY_T_ITEMDATA_CLAIM_G,
lv_IT_LTEXT TYPE DPWTY_T_TEXTS,
lv_IT_MEASUREMENT TYPE DPWTY_T_MEASUREMENT_CLAIM_G,
lv_other TYPE c.

CALL METHOD lo_class=>CLAIM_SIMULATE(
EXPORTING
IS_HEADERDATA = lv_IS_HEADERDATA
IS_OBJECTDATA = lv_IS_OBJECTDATA
IS_RECALLDATA = lv_IS_RECALLDATA
IS_VERSIONDATA = lv_IS_VERSIONDATA
IT_ITEMDATA = lv_IT_ITEMDATA
IT_LTEXT = lv_IT_LTEXT
IT_MEASUREMENT = lv_IT_MEASUREMENT
IMPORTING
ET_MSG = lv_ET_MSG
ET_RETURN = lv_ET_RETURN
EV_ICON = lv_EV_ICON ).

Links to Related Class(s)

IF_DP_WT...
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!