SAP PRS_POSTPONE_CHECK Function Module for Postponement check algorithm for DLIs
PRS_POSTPONE_CHECK is a standard prs postpone check SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Postponement check algorithm for DLIs 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 prs postpone check FM, simply by entering the name PRS_POSTPONE_CHECK into the relevant SAP transaction such as SE37 or SE38.
Function Group: PRS_EM01
Program Name: SAPLPRS_EM01
Main Program: SAPLPRS_EM01
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function PRS_POSTPONE_CHECK 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 'PRS_POSTPONE_CHECK'"Postponement check algorithm for DLIs.
EXPORTING
* IV_POSTPONEMENT = "Checkbox
IMPORTING
EV_POSTPONEV = "Amount referenced for invoicing
EV_POSTPONEQ = "Quantity billed
CHANGING
* CT_EDITED_SORTED = "Engagement mgmt:Struct for Postponement of DLI
* CS_EDITED_SORTED = "Engagement mgmt:Struct for Postponement of DLI
EXCEPTIONS
ERROR = 1
IMPORTING Parameters details for PRS_POSTPONE_CHECK
IV_POSTPONEMENT - Checkbox
Data type: XFELDOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for PRS_POSTPONE_CHECK
EV_POSTPONEV - Amount referenced for invoicing
Data type: EB_FKWRTOptional: No
Call by Reference: Yes
EV_POSTPONEQ - Quantity billed
Data type: EB_FKMNGOptional: No
Call by Reference: Yes
CHANGING Parameters details for PRS_POSTPONE_CHECK
CT_EDITED_SORTED - Engagement mgmt:Struct for Postponement of DLI
Data type: PRST_DLIEF_WIPOptional: Yes
Call by Reference: Yes
CS_EDITED_SORTED - Engagement mgmt:Struct for Postponement of DLI
Data type: PRSS_DLIEF_WIPOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
ERROR - Error
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for PRS_POSTPONE_CHECK 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_error | TYPE STRING, " | |||
| lv_ev_postponev | TYPE EB_FKWRT, " | |||
| lv_iv_postponement | TYPE XFELD, " | |||
| lv_ct_edited_sorted | TYPE PRST_DLIEF_WIP, " | |||
| lv_ev_postponeq | TYPE EB_FKMNG, " | |||
| lv_cs_edited_sorted | TYPE PRSS_DLIEF_WIP. " |
|   CALL FUNCTION 'PRS_POSTPONE_CHECK' "Postponement check algorithm for DLIs |
| EXPORTING | ||
| IV_POSTPONEMENT | = lv_iv_postponement | |
| IMPORTING | ||
| EV_POSTPONEV | = lv_ev_postponev | |
| EV_POSTPONEQ | = lv_ev_postponeq | |
| CHANGING | ||
| CT_EDITED_SORTED | = lv_ct_edited_sorted | |
| CS_EDITED_SORTED | = lv_cs_edited_sorted | |
| EXCEPTIONS | ||
| ERROR = 1 | ||
| . " PRS_POSTPONE_CHECK | ||
ABAP code using 7.40 inline data declarations to call FM PRS_POSTPONE_CHECK
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