SAP PLAF_SELECT_CO Function Module for NOTRANSL: Planaufträge selektieren für CO (nacheinander für alle Werksmate
PLAF_SELECT_CO is a standard plaf select co 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: Planaufträge selektieren für CO (nacheinander für alle Werksmate 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 plaf select co FM, simply by entering the name PLAF_SELECT_CO into the relevant SAP transaction such as SE37 or SE38.
Function Group: M61D
Program Name: SAPLM61D
Main Program: SAPLM61D
Appliation area: M
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function PLAF_SELECT_CO 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 'PLAF_SELECT_CO'"NOTRANSL: Planaufträge selektieren für CO (nacheinander für alle Werksmate.
EXPORTING
DATE_FROM = "Start Date for Selection
DATE_TO = "Finish Date for Selection
PLSCN = "Planning Scenario
* BESKZ = BESKZE "
TABLES
PLAF_TAB = "Selected Planned Orders
WERKS_TAB = "Plants to be Taken into Consideration
EXCEPTIONS
SELECTION_FINISHED = 1
IMPORTING Parameters details for PLAF_SELECT_CO
DATE_FROM - Start Date for Selection
Data type: SY-DATUMOptional: No
Call by Reference: No ( called with pass by value option)
DATE_TO - Finish Date for Selection
Data type: SY-DATUMOptional: No
Call by Reference: No ( called with pass by value option)
PLSCN - Planning Scenario
Data type: PLSC-PLSCNOptional: No
Call by Reference: No ( called with pass by value option)
BESKZ -
Data type: PLAF-BESKZDefault: BESKZE
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for PLAF_SELECT_CO
PLAF_TAB - Selected Planned Orders
Data type: PLAFOptional: No
Call by Reference: No ( called with pass by value option)
WERKS_TAB - Plants to be Taken into Consideration
Data type: WERKS_TABOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
SELECTION_FINISHED - Error in SQL Access
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for PLAF_SELECT_CO 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_plaf_tab | TYPE STANDARD TABLE OF PLAF, " | |||
| lv_date_from | TYPE SY-DATUM, " | |||
| lv_selection_finished | TYPE SY, " | |||
| lv_date_to | TYPE SY-DATUM, " | |||
| lt_werks_tab | TYPE STANDARD TABLE OF WERKS_TAB, " | |||
| lv_plscn | TYPE PLSC-PLSCN, " | |||
| lv_beskz | TYPE PLAF-BESKZ. " BESKZE |
|   CALL FUNCTION 'PLAF_SELECT_CO' "NOTRANSL: Planaufträge selektieren für CO (nacheinander für alle Werksmate |
| EXPORTING | ||
| DATE_FROM | = lv_date_from | |
| DATE_TO | = lv_date_to | |
| PLSCN | = lv_plscn | |
| BESKZ | = lv_beskz | |
| TABLES | ||
| PLAF_TAB | = lt_plaf_tab | |
| WERKS_TAB | = lt_werks_tab | |
| EXCEPTIONS | ||
| SELECTION_FINISHED = 1 | ||
| . " PLAF_SELECT_CO | ||
ABAP code using 7.40 inline data declarations to call FM PLAF_SELECT_CO
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 DATUM FROM SY INTO @DATA(ld_date_from). | ||||
| "SELECT single DATUM FROM SY INTO @DATA(ld_date_to). | ||||
| "SELECT single PLSCN FROM PLSC INTO @DATA(ld_plscn). | ||||
| "SELECT single BESKZ FROM PLAF INTO @DATA(ld_beskz). | ||||
| DATA(ld_beskz) | = BESKZE. | |||
Search for further information about these or an SAP related objects