SAP VB_CP_EBR_SHOW_FROM_ARCHIV Function Module for NOTRANSL: Anzeigen Chargenprotokoll aus Archivsystem
VB_CP_EBR_SHOW_FROM_ARCHIV is a standard vb cp ebr show from archiv SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Anzeigen Chargenprotokoll aus Archivsystem 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 vb cp ebr show from archiv FM, simply by entering the name VB_CP_EBR_SHOW_FROM_ARCHIV into the relevant SAP transaction such as SE37 or SE38.
Function Group: VBP_EBR
Program Name: SAPLVBP_EBR
Main Program: SAPLVBP_EBR
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function VB_CP_EBR_SHOW_FROM_ARCHIV 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 'VB_CP_EBR_SHOW_FROM_ARCHIV'"NOTRANSL: Anzeigen Chargenprotokoll aus Archivsystem.
TABLES
MCHP_TAB = "Batch Record for a Batch
MCHPV_TAB = "Batch Record: Versions
MCHPVS_TAB = "Batch Record: Shadow Table for Link to Archive
MCHPVT_TAB = "Batch Record: Long Text for Version
TC71_TAB = "Digital Signature
TC71D_TAB = "Signed Document for Signature
TC75_TAB = "Digital Signature for Batch Record
TABLES Parameters details for VB_CP_EBR_SHOW_FROM_ARCHIV
MCHP_TAB - Batch Record for a Batch
Data type: MCHPOptional: No
Call by Reference: No ( called with pass by value option)
MCHPV_TAB - Batch Record: Versions
Data type: MCHPVOptional: No
Call by Reference: No ( called with pass by value option)
MCHPVS_TAB - Batch Record: Shadow Table for Link to Archive
Data type: MCHPVSOptional: No
Call by Reference: No ( called with pass by value option)
MCHPVT_TAB - Batch Record: Long Text for Version
Data type: MCHPVTOptional: No
Call by Reference: No ( called with pass by value option)
TC71_TAB - Digital Signature
Data type: TC71Optional: No
Call by Reference: No ( called with pass by value option)
TC71D_TAB - Signed Document for Signature
Data type: TC71DOptional: No
Call by Reference: No ( called with pass by value option)
TC75_TAB - Digital Signature for Batch Record
Data type: TC75Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for VB_CP_EBR_SHOW_FROM_ARCHIV 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: | ||||
| lt_mchp_tab | TYPE STANDARD TABLE OF MCHP, " | |||
| lt_mchpv_tab | TYPE STANDARD TABLE OF MCHPV, " | |||
| lt_mchpvs_tab | TYPE STANDARD TABLE OF MCHPVS, " | |||
| lt_mchpvt_tab | TYPE STANDARD TABLE OF MCHPVT, " | |||
| lt_tc71_tab | TYPE STANDARD TABLE OF TC71, " | |||
| lt_tc71d_tab | TYPE STANDARD TABLE OF TC71D, " | |||
| lt_tc75_tab | TYPE STANDARD TABLE OF TC75. " |
|   CALL FUNCTION 'VB_CP_EBR_SHOW_FROM_ARCHIV' "NOTRANSL: Anzeigen Chargenprotokoll aus Archivsystem |
| TABLES | ||
| MCHP_TAB | = lt_mchp_tab | |
| MCHPV_TAB | = lt_mchpv_tab | |
| MCHPVS_TAB | = lt_mchpvs_tab | |
| MCHPVT_TAB | = lt_mchpvt_tab | |
| TC71_TAB | = lt_tc71_tab | |
| TC71D_TAB | = lt_tc71d_tab | |
| TC75_TAB | = lt_tc75_tab | |
| . " VB_CP_EBR_SHOW_FROM_ARCHIV | ||
ABAP code using 7.40 inline data declarations to call FM VB_CP_EBR_SHOW_FROM_ARCHIV
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