SAP COP0_EDIT_PI_SHEET Function Module for Bearbeiten von Prozeßvorgabenlisten
COP0_EDIT_PI_SHEET is a standard cop0 edit pi sheet SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Bearbeiten von Prozeßvorgabenlisten 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 cop0 edit pi sheet FM, simply by entering the name COP0_EDIT_PI_SHEET into the relevant SAP transaction such as SE37 or SE38.
Function Group: COP0
Program Name: SAPLCOP0
Main Program: SAPLCOP0
Appliation area: C
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function COP0_EDIT_PI_SHEET 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 'COP0_EDIT_PI_SHEET'"Bearbeiten von Prozeßvorgabenlisten.
EXPORTING
* I_CRID = ' ' "Number of process instruction list
* LOCAL_TABS = ' ' "Read data from parameter tables
* SELECT_SCREEN = 'X' "Includes selection screen
IMPORTING
FUNCTION = "
TABLES
TCOCHP = "Control recipe header
TCOFTP = "Process instructions
TCOFVP = "Control recipe characteristics
EXCEPTIONS
NOT_FOUND = 1
IMPORTING Parameters details for COP0_EDIT_PI_SHEET
I_CRID - Number of process instruction list
Data type: COCHP-CRIDDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
LOCAL_TABS - Read data from parameter tables
Data type: CDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
SELECT_SCREEN - Includes selection screen
Data type: CDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for COP0_EDIT_PI_SHEET
FUNCTION -
Data type: SY-UCOMMOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for COP0_EDIT_PI_SHEET
TCOCHP - Control recipe header
Data type: COCHPOptional: No
Call by Reference: No ( called with pass by value option)
TCOFTP - Process instructions
Data type: COFTPOptional: No
Call by Reference: No ( called with pass by value option)
TCOFVP - Control recipe characteristics
Data type: COFVPOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NOT_FOUND - Plant/process instruction list not found
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for COP0_EDIT_PI_SHEET 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_i_crid | TYPE COCHP-CRID, " SPACE | |||
| lt_tcochp | TYPE STANDARD TABLE OF COCHP, " | |||
| lv_function | TYPE SY-UCOMM, " | |||
| lv_not_found | TYPE SY, " | |||
| lt_tcoftp | TYPE STANDARD TABLE OF COFTP, " | |||
| lv_local_tabs | TYPE C, " SPACE | |||
| lt_tcofvp | TYPE STANDARD TABLE OF COFVP, " | |||
| lv_select_screen | TYPE C. " 'X' |
|   CALL FUNCTION 'COP0_EDIT_PI_SHEET' "Bearbeiten von Prozeßvorgabenlisten |
| EXPORTING | ||
| I_CRID | = lv_i_crid | |
| LOCAL_TABS | = lv_local_tabs | |
| SELECT_SCREEN | = lv_select_screen | |
| IMPORTING | ||
| FUNCTION | = lv_function | |
| TABLES | ||
| TCOCHP | = lt_tcochp | |
| TCOFTP | = lt_tcoftp | |
| TCOFVP | = lt_tcofvp | |
| EXCEPTIONS | ||
| NOT_FOUND = 1 | ||
| . " COP0_EDIT_PI_SHEET | ||
ABAP code using 7.40 inline data declarations to call FM COP0_EDIT_PI_SHEET
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.| "SELECT single CRID FROM COCHP INTO @DATA(ld_i_crid). | ||||
| DATA(ld_i_crid) | = ' '. | |||
| "SELECT single UCOMM FROM SY INTO @DATA(ld_function). | ||||
| DATA(ld_local_tabs) | = ' '. | |||
| DATA(ld_select_screen) | = 'X'. | |||
Search for further information about these or an SAP related objects