SAP CGPL_VERSION_HEADER_POST Function Module for Verbuchungsbaustein CGPL_ENTITY









CGPL_VERSION_HEADER_POST is a standard cgpl version header post SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Verbuchungsbaustein CGPL_ENTITY 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 cgpl version header post FM, simply by entering the name CGPL_VERSION_HEADER_POST into the relevant SAP transaction such as SE37 or SE38.

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



Function CGPL_VERSION_HEADER_POST 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 'CGPL_VERSION_HEADER_POST'"Verbuchungsbaustein CGPL_ENTITY
EXPORTING
* IT_DELETE_HEADER = "Zu löschende Versions
* IT_INSERT_HEADER = "Einzufügende Versions
* IT_UPDATE_HEADER = "Aufzufrischende Versi
* IT_DELETE_HEADER_T = "Zu löschende Versions
* IT_INSERT_HEADER_T = "Einzufügende Versions
* IT_UPDATE_HEADER_T = "Aufzufrischende Versi

EXCEPTIONS
ERR_DELETE = 1 ERR_INSERT = 2 ERR_UPDATE = 3
.



IMPORTING Parameters details for CGPL_VERSION_HEADER_POST

IT_DELETE_HEADER - Zu löschende Versions

Data type: CGPL_TT_VRSN_HDR
Optional: Yes
Call by Reference: No ( called with pass by value option)

IT_INSERT_HEADER - Einzufügende Versions

Data type: CGPL_TT_VRSN_HDR
Optional: Yes
Call by Reference: No ( called with pass by value option)

IT_UPDATE_HEADER - Aufzufrischende Versi

Data type: CGPL_TT_VRSN_HDR
Optional: Yes
Call by Reference: No ( called with pass by value option)

IT_DELETE_HEADER_T - Zu löschende Versions

Data type: CGPL_TT_VRSN_HDR_T
Optional: Yes
Call by Reference: No ( called with pass by value option)

IT_INSERT_HEADER_T - Einzufügende Versions

Data type: CGPL_TT_VRSN_HDR_T
Optional: Yes
Call by Reference: No ( called with pass by value option)

IT_UPDATE_HEADER_T - Aufzufrischende Versi

Data type: CGPL_TT_VRSN_HDR_T
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

ERR_DELETE - Fehler beim Löschen

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

ERR_INSERT - Fehler beim Einfügen

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

ERR_UPDATE - Fehler beim Update

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for CGPL_VERSION_HEADER_POST 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_err_delete  TYPE STRING, "   
lv_it_delete_header  TYPE CGPL_TT_VRSN_HDR, "   
lv_err_insert  TYPE CGPL_TT_VRSN_HDR, "   
lv_it_insert_header  TYPE CGPL_TT_VRSN_HDR, "   
lv_err_update  TYPE CGPL_TT_VRSN_HDR, "   
lv_it_update_header  TYPE CGPL_TT_VRSN_HDR, "   
lv_it_delete_header_t  TYPE CGPL_TT_VRSN_HDR_T, "   
lv_it_insert_header_t  TYPE CGPL_TT_VRSN_HDR_T, "   
lv_it_update_header_t  TYPE CGPL_TT_VRSN_HDR_T. "   

  CALL FUNCTION 'CGPL_VERSION_HEADER_POST'  "Verbuchungsbaustein CGPL_ENTITY
    EXPORTING
         IT_DELETE_HEADER = lv_it_delete_header
         IT_INSERT_HEADER = lv_it_insert_header
         IT_UPDATE_HEADER = lv_it_update_header
         IT_DELETE_HEADER_T = lv_it_delete_header_t
         IT_INSERT_HEADER_T = lv_it_insert_header_t
         IT_UPDATE_HEADER_T = lv_it_update_header_t
    EXCEPTIONS
        ERR_DELETE = 1
        ERR_INSERT = 2
        ERR_UPDATE = 3
. " CGPL_VERSION_HEADER_POST




ABAP code using 7.40 inline data declarations to call FM CGPL_VERSION_HEADER_POST

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!