BADI_FSR_TELESALES_ANWB SAP Method Check Application Area from Beverage Telephone Sales









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

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


Parameters of Method BADI_FSR_TELESALES_ANWB

.

NameTypeData TypeDescriptionDefault Value
IF_PROCNOImportingTYPE
/DSD/SL_FSR_PROCNO
DSD: Number of Final Settlement Run
IS_DUE_LIST_ENTRYImportingTYPE
/DSD/SL_FSR_DELFFMT_DUE_LIST_S
DSD Final Settlement Run: Worklist Delivery Execution
IS_VBAKImportingTYPE
VBAK
Sales Document: Header Data
CS_RADELHDChangingTYPE
/DSD/HH_RADELHD_S
Structure Outbound Delivery Header
CT_RADELHD_ERRChangingTYPE
/DSD/HH_RADELHD_KEY_HSD_TT
DSD Route Settlement: Hashed Table Key Shipment Header



Exceptions of Method BADI_FSR_TELESALES_ANWB

ERROR_IN_BADI - Application Area Is Initial or Not Relevant for Visit List

Example ABAP coding


DATA: lo_class TYPE REF TO /DSD/IF_EX_SL_FSR_TS_ANWB.
DATA: lv_CS_RADELHD TYPE /DSD/HH_RADELHD_S,
lv_CT_RADELHD_ERR TYPE /DSD/HH_RADELHD_KEY_HSD_TT,
lv_IF_PROCNO TYPE /DSD/SL_FSR_PROCNO,
lv_IS_DUE_LIST_ENTRY TYPE /DSD/SL_FSR_DELFFMT_DUE_LIST_S,
lv_IS_VBAK TYPE VBAK,
lv_other TYPE c.

CALL METHOD lo_class=>BADI_FSR_TELESALES_ANWB(
EXPORTING
IF_PROCNO = lv_IF_PROCNO
IS_DUE_LIST_ENTRY = lv_IS_DUE_LIST_ENTRY
IS_VBAK = lv_IS_VBAK
CHANGING
CS_RADELHD = lv_CS_RADELHD
CT_RADELHD_ERR = lv_CT_RADELHD_ERR ).

Links to Related Class(s)

/DSD/IF_...
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!