SAP BURX_BUPR_ADJUST_DATA Function Module for Function module for adjusting time slices
BURX_BUPR_ADJUST_DATA is a standard burx bupr adjust 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 Function module for adjusting time slices 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 burx bupr adjust data FM, simply by entering the name BURX_BUPR_ADJUST_DATA into the relevant SAP transaction such as SE37 or SE38.
Function Group: BURX_GEN_BDT
Program Name: SAPLBURX_GEN_BDT
Main Program: SAPLBURX_GEN_BDT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function BURX_BUPR_ADJUST_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 'BURX_BUPR_ADJUST_DATA'"Function module for adjusting time slices.
EXPORTING
IV_PARTNER1 = "Business Partner Number
IV_PARTNER2 = "Business Partner Number
IV_RELCAT = "Business Partner Relationship Category
IV_DATETO = "Validity Date (Valid To)
IV_DATEFROM = "Validity date (valid from)
IV_DATETO_NEW = "Validity Date (Valid To)
IV_DATEFROM_NEW = "Validity date (valid from)
IV_TIMESLICE = "TimeSlice Scenario
IMPORTING Parameters details for BURX_BUPR_ADJUST_DATA
IV_PARTNER1 - Business Partner Number
Data type: BU_PARTNEROptional: No
Call by Reference: Yes
IV_PARTNER2 - Business Partner Number
Data type: BU_PARTNEROptional: No
Call by Reference: Yes
IV_RELCAT - Business Partner Relationship Category
Data type: BU_RELTYPOptional: No
Call by Reference: Yes
IV_DATETO - Validity Date (Valid To)
Data type: BU_DATTOOptional: No
Call by Reference: Yes
IV_DATEFROM - Validity date (valid from)
Data type: BU_DATFROMOptional: No
Call by Reference: Yes
IV_DATETO_NEW - Validity Date (Valid To)
Data type: BU_DATTOOptional: No
Call by Reference: Yes
IV_DATEFROM_NEW - Validity date (valid from)
Data type: BU_DATFROMOptional: No
Call by Reference: Yes
IV_TIMESLICE - TimeSlice Scenario
Data type: COptional: No
Call by Reference: Yes
Copy and paste ABAP code example for BURX_BUPR_ADJUST_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_iv_partner1 | TYPE BU_PARTNER, " | |||
| lv_iv_partner2 | TYPE BU_PARTNER, " | |||
| lv_iv_relcat | TYPE BU_RELTYP, " | |||
| lv_iv_dateto | TYPE BU_DATTO, " | |||
| lv_iv_datefrom | TYPE BU_DATFROM, " | |||
| lv_iv_dateto_new | TYPE BU_DATTO, " | |||
| lv_iv_datefrom_new | TYPE BU_DATFROM, " | |||
| lv_iv_timeslice | TYPE C. " |
|   CALL FUNCTION 'BURX_BUPR_ADJUST_DATA' "Function module for adjusting time slices |
| EXPORTING | ||
| IV_PARTNER1 | = lv_iv_partner1 | |
| IV_PARTNER2 | = lv_iv_partner2 | |
| IV_RELCAT | = lv_iv_relcat | |
| IV_DATETO | = lv_iv_dateto | |
| IV_DATEFROM | = lv_iv_datefrom | |
| IV_DATETO_NEW | = lv_iv_dateto_new | |
| IV_DATEFROM_NEW | = lv_iv_datefrom_new | |
| IV_TIMESLICE | = lv_iv_timeslice | |
| . " BURX_BUPR_ADJUST_DATA | ||
ABAP code using 7.40 inline data declarations to call FM BURX_BUPR_ADJUST_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.Search for further information about these or an SAP related objects