NET_DEMAND_CALC_INT SAP Method Net Demand Calculation, Internal









Below is documentation, parameters and attributes of ABAP Method NET_DEMAND_CALC_INT within SAP class /SCMB/CL_NETDEMAND_CALC. 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 /SCMB/CL_NETDEMAND_CALC into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Static

This is a Static Method so you can call it directly

The following technical details of method NET_DEMAND_CALC_INT can also be found below:

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


Parameters of Method NET_DEMAND_CALC_INT

.

NameTypeData TypeDescriptionDefault Value
IO_DATAMATRIXImportingTYPE REF TO
/SCMB/CL_DATAMATRIX
Reference to Data Matrix
IV_DECIMALSImportingTYPE
DECIMALS
Number of Decimal Places
IV_PERIDImportingTYPE
/SCMB/TSDM_PERID
Period
IV_SEM_LOWVOLTHRESHOLDImportingTYPE
/SCMB/PRM_SEM
Semantics for Slow-Moving Threshold Value
IV_SEM_MINLEVELImportingTYPE
/SCMB/PRM_SEM
Semantics for Minimum Level
IV_SEM_NETDEMANDImportingTYPE
/SCMB/PRM_SEM
Semantics for Net Demand
IV_SEM_PROJSTOCKImportingTYPE
/SCMB/PRM_SEM
Semantics for Projected Stock
IV_SET_PROJSTOCKImportingTYPE
XFELD
Switch to Set Projected Stock in Data Matrix
IV_UPDATE_PROJSTOCKImportingTYPE
XFELD
Update CV_PROJSTOCK
IV_USE_DECIMALSImportingTYPE
XFELD
Indicator: Decimal Rounding
EV_NETDEMANDExportingTYPE
F
Net Demand Results
CV_PROJSTOCKChangingTYPE
F
Projected Stock



Exceptions of Method NET_DEMAND_CALC_INT

/SCMB/CX_DMX_CELL_READONLY - Data Matrix Cell Set to Read Only

Example ABAP coding


DATA: lv_CV_PROJSTOCK TYPE F,
lv_EV_NETDEMAND TYPE F,
lv_IO_DATAMATRIX TYPE /SCMB/CL_DATAMATRIX,
lv_IV_DECIMALS TYPE DECIMALS,
lv_IV_PERID TYPE /SCMB/TSDM_PERID,
lv_IV_SEM_LOWVOLTHRESHOLD TYPE /SCMB/PRM_SEM,
lv_IV_SEM_MINLEVEL TYPE /SCMB/PRM_SEM,
lv_IV_SEM_NETDEMAND TYPE /SCMB/PRM_SEM,
lv_IV_SEM_PROJSTOCK TYPE /SCMB/PRM_SEM,
lv_IV_SET_PROJSTOCK TYPE XFELD,
lv_IV_UPDATE_PROJSTOCK TYPE XFELD,
lv_IV_USE_DECIMALS TYPE XFELD,
lv_other TYPE c.

CALL METHOD /SCMB/CL_NETDEMAND_CALC=>NET_DEMAND_CALC_INT(
EXPORTING
IO_DATAMATRIX = lv_IO_DATAMATRIX
IV_DECIMALS = lv_IV_DECIMALS
IV_PERID = lv_IV_PERID
IV_SEM_LOWVOLTHRESHOLD = lv_IV_SEM_LOWVOLTHRESHOLD
IV_SEM_MINLEVEL = lv_IV_SEM_MINLEVEL
IV_SEM_NETDEMAND = lv_IV_SEM_NETDEMAND
IV_SEM_PROJSTOCK = lv_IV_SEM_PROJSTOCK
IV_SET_PROJSTOCK = lv_IV_SET_PROJSTOCK
IV_UPDATE_PROJSTOCK = lv_IV_UPDATE_PROJSTOCK
IV_USE_DECIMALS = lv_IV_USE_DECIMALS
IMPORTING
EV_NETDEMAND = lv_EV_NETDEMAND
CHANGING
CV_PROJSTOCK = lv_CV_PROJSTOCK ).

Links to Related Class(s)

/SCMB/CL...
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!