DATA_FILL_PLANNED_SINGLE SAP Method Individual Processing of Planned Qties During Data Transf.









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

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


Parameters of Method DATA_FILL_PLANNED_SINGLE

.

NameTypeData TypeDescriptionDefault Value
I_AFKO_WAImportingTYPE
AFKO
Header Data in PP Orders
I_AFPO_WAImportingTYPE
CCRCTT_AFPO
Order Item
I_AUFK_WAImportingTYPE
AUFK
Order Master Data
I_DETTYPE_FCTImportingTYPE
CCRCC_DETDOCTYPE
EHS: Modules for Regulation/Scenario/Scenario Category
I_EBAN_WAImportingTYPE
EBAN
Purchase Requisition
I_EKET_TABImportingTYPE
CCRCTT_EKET
Sch. Agmt Sched. Lines
I_EKKO_WAImportingTYPE
EKKO
Purchasing Document Header
I_EKPO_WAImportingTYPE
EKPO
Purchasing Document Item
I_FLG_NO_DELIVImportingTYPE
ESEBOOLE
Indicator: Do Not Take Deliveries into Account
I_LIKP_WAImportingTYPE
LIKP
SD Document: Delivery Header Data
I_LIPS_WAImportingTYPE
LIPS
SD Document: Delivery: Item Data
I_MATNR_SUB_TABImportingTYPE
CCRCTT_FIELDS
Table for Material-Substance Assignments
I_PLAF_WAImportingTYPE
PLAF
Planned Order
I_REGImportingTYPE
ESESLSTID
Regulatory list
I_RESB_TABImportingTYPE
CCRCTT_RESB
Table for Sales Document: Partner
I_SCENImportingTYPE
CCRCE_SCEN
Scenario
I_VALFRImportingTYPE
SY-DATUM
Current Date of Application Server
I_VALTOImportingTYPE
SY-DATUM
Current Date of Application Server
I_VBAK_WAImportingTYPE
VBAK
Sales Document: Header Data
I_VBAP_WAImportingTYPE
VBAP
Sales Document: Item Data
I_VBEP_TABImportingTYPE
CCRCTT_VBEP
Sales Document: Schedule Line Data
I_VBPA_TABImportingTYPE
CCRCTT_VBPA
Sales Document: Partner
I_VBUP_WAImportingTYPE
VBUP
Sales Document: Item Status
I_AFKO_WAImportingTYPE
AFKO
Order Header Data PP Orders
E_ERROR_TABExportingTYPE
CCRCTT_MSG
Message Table for Application Log
E_FLG_ERRORExportingTYPE
ESEBOOLE
Indicator: Error
X_COPL_DEL_TABChangingTYPE
CCRCTT_COPL
Deleted Planned Quantities (CON)
X_COPL_TABChangingTYPE
CCRCTT_COPL
Planned Quantities (CON)
X_PRPL_DEL_TABChangingTYPE
CCRCTT_PRPL
Deleted Planned Quantities (PRO)
X_PRPL_TABChangingTYPE
CCRCTT_PRPL
Planned Quantities (PRO)
X_PUPL_DEL_TABChangingTYPE
CCRCTT_PUPL
Deleted Planned Quantities (PUR)
X_PUPL_TABChangingTYPE
CCRCTT_PUPL
Planned Quantities (PUR)
X_SOPL_DEL_TABChangingTYPE
CCRCTT_SOPL
Deleted Planned Quantities (SO)
X_SOPL_TABChangingTYPE
CCRCTT_SOPL
Planned Quantities (SO)



Exceptions of Method DATA_FILL_PLANNED_SINGLE

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_BADI_EHSRC_TRACK_PROC.
DATA: lv_E_ERROR_TAB TYPE CCRCTT_MSG,
lv_E_FLG_ERROR TYPE ESEBOOLE,
lv_I_AFKO_WA TYPE AFKO,
lv_I_AFPO_WA TYPE CCRCTT_AFPO,
lv_I_AUFK_WA TYPE AUFK,
lv_I_DETTYPE_FCT TYPE CCRCC_DETDOCTYPE,
lv_I_EBAN_WA TYPE EBAN,
lv_I_EKET_TAB TYPE CCRCTT_EKET,
lv_I_EKKO_WA TYPE EKKO,
lv_I_EKPO_WA TYPE EKPO,
lv_I_FLG_NO_DELIV TYPE ESEBOOLE,
lv_I_LIKP_WA TYPE LIKP,
lv_I_LIPS_WA TYPE LIPS,
lv_I_MATNR_SUB_TAB TYPE CCRCTT_FIELDS,
lv_I_PLAF_WA TYPE PLAF,
lv_I_REG TYPE ESESLSTID,
lv_I_RESB_TAB TYPE CCRCTT_RESB,
lv_I_SCEN TYPE CCRCE_SCEN,
lv_I_VALFR TYPE SY-DATUM,
lv_I_VALTO TYPE SY-DATUM,
lv_I_VBAK_WA TYPE VBAK,
lv_I_VBAP_WA TYPE VBAP,
lv_I_VBEP_TAB TYPE CCRCTT_VBEP,
lv_I_VBPA_TAB TYPE CCRCTT_VBPA,
lv_I_VBUP_WA TYPE VBUP,
lv_X_COPL_DEL_TAB TYPE CCRCTT_COPL,
lv_X_COPL_TAB TYPE CCRCTT_COPL,
lv_X_PRPL_DEL_TAB TYPE CCRCTT_PRPL,
lv_X_PRPL_TAB TYPE CCRCTT_PRPL,
lv_X_PUPL_DEL_TAB TYPE CCRCTT_PUPL,
lv_X_PUPL_TAB TYPE CCRCTT_PUPL,
lv_X_SOPL_DEL_TAB TYPE CCRCTT_SOPL,
lv_X_SOPL_TAB TYPE CCRCTT_SOPL,
lv_I_AFKO_WA TYPE AFKO,
lv_other TYPE c.

CALL METHOD lo_class=>DATA_FILL_PLANNED_SINGLE(
EXPORTING
I_AFKO_WA = lv_I_AFKO_WA
I_AFPO_WA = lv_I_AFPO_WA
I_AUFK_WA = lv_I_AUFK_WA
I_DETTYPE_FCT = lv_I_DETTYPE_FCT
I_EBAN_WA = lv_I_EBAN_WA
I_EKET_TAB = lv_I_EKET_TAB
I_EKKO_WA = lv_I_EKKO_WA
I_EKPO_WA = lv_I_EKPO_WA
I_FLG_NO_DELIV = lv_I_FLG_NO_DELIV
I_LIKP_WA = lv_I_LIKP_WA
I_LIPS_WA = lv_I_LIPS_WA
I_MATNR_SUB_TAB = lv_I_MATNR_SUB_TAB
I_PLAF_WA = lv_I_PLAF_WA
I_REG = lv_I_REG
I_RESB_TAB = lv_I_RESB_TAB
I_SCEN = lv_I_SCEN
I_VALFR = lv_I_VALFR
I_VALTO = lv_I_VALTO
I_VBAK_WA = lv_I_VBAK_WA
I_VBAP_WA = lv_I_VBAP_WA
I_VBEP_TAB = lv_I_VBEP_TAB
I_VBPA_TAB = lv_I_VBPA_TAB
I_VBUP_WA = lv_I_VBUP_WA
I_AFKO_WA = lv_I_AFKO_WA
IMPORTING
E_ERROR_TAB = lv_E_ERROR_TAB
E_FLG_ERROR = lv_E_FLG_ERROR
CHANGING
X_COPL_DEL_TAB = lv_X_COPL_DEL_TAB
X_COPL_TAB = lv_X_COPL_TAB
X_PRPL_DEL_TAB = lv_X_PRPL_DEL_TAB
X_PRPL_TAB = lv_X_PRPL_TAB
X_PUPL_DEL_TAB = lv_X_PUPL_DEL_TAB
X_PUPL_TAB = lv_X_PUPL_TAB
X_SOPL_DEL_TAB = lv_X_SOPL_DEL_TAB
X_SOPL_TAB = lv_X_SOPL_TAB ).

Links to Related Class(s)

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