SAP ADJUST_PURCHASING_DATA Function Module for Adjusts purchasing data resulting to site assignment
ADJUST_PURCHASING_DATA is a standard adjust purchasing data SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Adjusts purchasing data resulting to site assignment 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 adjust purchasing data FM, simply by entering the name ADJUST_PURCHASING_DATA into the relevant SAP transaction such as SE37 or SE38.
Function Group: REF_SITE_MNG
Program Name: SAPLREF_SITE_MNG
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ADJUST_PURCHASING_DATA 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 'ADJUST_PURCHASING_DATA'"Adjusts purchasing data resulting to site assignment.
EXPORTING
* SIMULATE = ' ' "Informs if it's only a simulation
IMPORTING
TOTAL_LFM2 = "Returns number of lfm2 records
TOTAL_EINE = "Returns number of eine records
TOTAL_MARC = "Returns number of marc records
TABLES
SITE_NEW = "Site grouping for purchasing
SITE_OLD = "Site grouping for purchasing
IMPORTING Parameters details for ADJUST_PURCHASING_DATA
SIMULATE - Informs if it's only a simulation
Data type: FLAGDefault: SPACE
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for ADJUST_PURCHASING_DATA
TOTAL_LFM2 - Returns number of lfm2 records
Data type: IOptional: No
Call by Reference: Yes
TOTAL_EINE - Returns number of eine records
Data type: IOptional: No
Call by Reference: Yes
TOTAL_MARC - Returns number of marc records
Data type: IOptional: No
Call by Reference: Yes
TABLES Parameters details for ADJUST_PURCHASING_DATA
SITE_NEW - Site grouping for purchasing
Data type: MMSITEREFOptional: No
Call by Reference: Yes
SITE_OLD - Site grouping for purchasing
Data type: MMSITEREFOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for ADJUST_PURCHASING_DATA 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_simulate | TYPE FLAG, " SPACE | |||
| lt_site_new | TYPE STANDARD TABLE OF MMSITEREF, " | |||
| lv_total_lfm2 | TYPE I, " | |||
| lt_site_old | TYPE STANDARD TABLE OF MMSITEREF, " | |||
| lv_total_eine | TYPE I, " | |||
| lv_total_marc | TYPE I. " |
|   CALL FUNCTION 'ADJUST_PURCHASING_DATA' "Adjusts purchasing data resulting to site assignment |
| EXPORTING | ||
| SIMULATE | = lv_simulate | |
| IMPORTING | ||
| TOTAL_LFM2 | = lv_total_lfm2 | |
| TOTAL_EINE | = lv_total_eine | |
| TOTAL_MARC | = lv_total_marc | |
| TABLES | ||
| SITE_NEW | = lt_site_new | |
| SITE_OLD | = lt_site_old | |
| . " ADJUST_PURCHASING_DATA | ||
ABAP code using 7.40 inline data declarations to call FM ADJUST_PURCHASING_DATA
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.| DATA(ld_simulate) | = ' '. | |||
Search for further information about these or an SAP related objects