SAP FCML4H_GET_CONSUMPTION_SIDE Function Module for Read Consumption Update/Settlement Lines









FCML4H_GET_CONSUMPTION_SIDE is a standard fcml4h get consumption side SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Read Consumption Update/Settlement Lines processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for fcml4h get consumption side FM, simply by entering the name FCML4H_GET_CONSUMPTION_SIDE into the relevant SAP transaction such as SE37 or SE38.

Function Group: FCML4H_RUN_SETTLE
Program Name: SAPLFCML4H_RUN_SETTLE
Main Program: SAPLFCML4H_RUN_SETTLE
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function FCML4H_GET_CONSUMPTION_SIDE pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'FCML4H_GET_CONSUMPTION_SIDE'"Read Consumption Update/Settlement Lines
EXPORTING
IS_STRG = "Control Data for Settlement
IT_PACK = "Range Table for KALNR
IT_CUM = "Cumulative Inventory
IT_CUM_CCS = "CCS of Cumulative Inventory
IT_NDIST = "'Not Distributed' Line
IT_NDIST_CCS = "CCS of 'Not Distributed' Line

IMPORTING
ET_CONS = "Consumption Update Lines (Aggr.)
ET_CONS_CCS = "CCS of Consumption Update Lines (Aggr.)
ET_SETTLE = "Settlement Lines in VN/EB
ET_SETTLE_CCS = "CCS of Settlement Lines in VN/EB

CHANGING
CS_CUSTOM = "
.



IMPORTING Parameters details for FCML4H_GET_CONSUMPTION_SIDE

IS_STRG - Control Data for Settlement

Data type: ML4H_S_STRG
Optional: No
Call by Reference: Yes

IT_PACK - Range Table for KALNR

Data type: ML4H_T_KALNR_RG
Optional: No
Call by Reference: Yes

IT_CUM - Cumulative Inventory

Data type: ML4H0_SRT_KB
Optional: No
Call by Reference: Yes

IT_CUM_CCS - CCS of Cumulative Inventory

Data type: ML4H0_SRT_KB_CCS
Optional: No
Call by Reference: Yes

IT_NDIST - 'Not Distributed' Line

Data type: ML4H0_SRT_KB
Optional: No
Call by Reference: Yes

IT_NDIST_CCS - CCS of 'Not Distributed' Line

Data type: ML4H0_SRT_KB_CCS
Optional: No
Call by Reference: Yes

EXPORTING Parameters details for FCML4H_GET_CONSUMPTION_SIDE

ET_CONS - Consumption Update Lines (Aggr.)

Data type: ML4H0_SRT_CN
Optional: No
Call by Reference: Yes

ET_CONS_CCS - CCS of Consumption Update Lines (Aggr.)

Data type: ML4H0_SRT_CN_CCS
Optional: No
Call by Reference: Yes

ET_SETTLE - Settlement Lines in VN/EB

Data type: ML4H0_T_DOC
Optional: No
Call by Reference: Yes

ET_SETTLE_CCS - CCS of Settlement Lines in VN/EB

Data type: ML4H0_SRT_DOC_CCS
Optional: No
Call by Reference: Yes

CHANGING Parameters details for FCML4H_GET_CONSUMPTION_SIDE

CS_CUSTOM -

Data type: ML4H0_S_CUSTOM
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FCML4H_GET_CONSUMPTION_SIDE Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.

DATA:
lv_et_cons  TYPE ML4H0_SRT_CN, "   
lv_is_strg  TYPE ML4H_S_STRG, "   
lv_cs_custom  TYPE ML4H0_S_CUSTOM, "   
lv_it_pack  TYPE ML4H_T_KALNR_RG, "   
lv_et_cons_ccs  TYPE ML4H0_SRT_CN_CCS, "   
lv_it_cum  TYPE ML4H0_SRT_KB, "   
lv_et_settle  TYPE ML4H0_T_DOC, "   
lv_it_cum_ccs  TYPE ML4H0_SRT_KB_CCS, "   
lv_et_settle_ccs  TYPE ML4H0_SRT_DOC_CCS, "   
lv_it_ndist  TYPE ML4H0_SRT_KB, "   
lv_it_ndist_ccs  TYPE ML4H0_SRT_KB_CCS. "   

  CALL FUNCTION 'FCML4H_GET_CONSUMPTION_SIDE'  "Read Consumption Update/Settlement Lines
    EXPORTING
         IS_STRG = lv_is_strg
         IT_PACK = lv_it_pack
         IT_CUM = lv_it_cum
         IT_CUM_CCS = lv_it_cum_ccs
         IT_NDIST = lv_it_ndist
         IT_NDIST_CCS = lv_it_ndist_ccs
    IMPORTING
         ET_CONS = lv_et_cons
         ET_CONS_CCS = lv_et_cons_ccs
         ET_SETTLE = lv_et_settle
         ET_SETTLE_CCS = lv_et_settle_ccs
    CHANGING
         CS_CUSTOM = lv_cs_custom
. " FCML4H_GET_CONSUMPTION_SIDE




ABAP code using 7.40 inline data declarations to call FM FCML4H_GET_CONSUMPTION_SIDE

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

 
 
 
 
 
 
 
 
 
 
 


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!