SAP PEG02_READ_CLIENT_CUSTOMIZING Function Module for Read pegging Customizing (DIMP 4.71)









PEG02_READ_CLIENT_CUSTOMIZING is a standard peg02 read client customizing 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 pegging Customizing (DIMP 4.71) 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 peg02 read client customizing FM, simply by entering the name PEG02_READ_CLIENT_CUSTOMIZING into the relevant SAP transaction such as SE37 or SE38.

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



Function PEG02_READ_CLIENT_CUSTOMIZING 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 'PEG02_READ_CLIENT_CUSTOMIZING'"Read pegging Customizing (DIMP 4.71)
EXPORTING
I_MANDT = "SAP System, client number from logon
* IT_GROUPS = "Pegging: Table of Groups

IMPORTING
ES_PEG_CLIENT = "Pegging: General settings for customizing

TABLES
* ET_PEG_EXC_WERKS = "Pegging: Distribution of surplus, scrap, lost - Plant based
* ET_PEG_EXC_GRPNR = "Pegging: Distribution of surplus, scrap, lost - group based
* ET_PEGEXC_WRK_GRP = "Pegging: Distribution of surplus, scrap, lost, plant & group
.



IMPORTING Parameters details for PEG02_READ_CLIENT_CUSTOMIZING

I_MANDT - SAP System, client number from logon

Data type: SY-MANDT
Optional: No
Call by Reference: Yes

IT_GROUPS - Pegging: Table of Groups

Data type: PEG_T_GRP
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for PEG02_READ_CLIENT_CUSTOMIZING

ES_PEG_CLIENT - Pegging: General settings for customizing

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

TABLES Parameters details for PEG02_READ_CLIENT_CUSTOMIZING

ET_PEG_EXC_WERKS - Pegging: Distribution of surplus, scrap, lost - Plant based

Data type: PEG_EXC_WERKS
Optional: Yes
Call by Reference: Yes

ET_PEG_EXC_GRPNR - Pegging: Distribution of surplus, scrap, lost - group based

Data type: PEG_EXC_GRPNR
Optional: Yes
Call by Reference: Yes

ET_PEGEXC_WRK_GRP - Pegging: Distribution of surplus, scrap, lost, plant & group

Data type: PEGEXC_WRK_GRP
Optional: Yes
Call by Reference: Yes

Copy and paste ABAP code example for PEG02_READ_CLIENT_CUSTOMIZING 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_i_mandt  TYPE SY-MANDT, "   
lv_es_peg_client  TYPE PEG_CLIENT, "   
lt_et_peg_exc_werks  TYPE STANDARD TABLE OF PEG_EXC_WERKS, "   
lv_it_groups  TYPE PEG_T_GRP, "   
lt_et_peg_exc_grpnr  TYPE STANDARD TABLE OF PEG_EXC_GRPNR, "   
lt_et_pegexc_wrk_grp  TYPE STANDARD TABLE OF PEGEXC_WRK_GRP. "   

  CALL FUNCTION 'PEG02_READ_CLIENT_CUSTOMIZING'  "Read pegging Customizing (DIMP 4.71)
    EXPORTING
         I_MANDT = lv_i_mandt
         IT_GROUPS = lv_it_groups
    IMPORTING
         ES_PEG_CLIENT = lv_es_peg_client
    TABLES
         ET_PEG_EXC_WERKS = lt_et_peg_exc_werks
         ET_PEG_EXC_GRPNR = lt_et_peg_exc_grpnr
         ET_PEGEXC_WRK_GRP = lt_et_pegexc_wrk_grp
. " PEG02_READ_CLIENT_CUSTOMIZING




ABAP code using 7.40 inline data declarations to call FM PEG02_READ_CLIENT_CUSTOMIZING

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.

"SELECT single MANDT FROM SY INTO @DATA(ld_i_mandt).
 
 
 
 
 
 


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!