SAP ACE_SCHEDMAN_PARAM_FILL Function Module for Start Schedule Manager
ACE_SCHEDMAN_PARAM_FILL is a standard ace schedman param fill SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Start Schedule Manager 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 ace schedman param fill FM, simply by entering the name ACE_SCHEDMAN_PARAM_FILL into the relevant SAP transaction such as SE37 or SE38.
Function Group: ACE_SCHEDMAN
Program Name: SAPLACE_SCHEDMAN
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ACE_SCHEDMAN_PARAM_FILL 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 'ACE_SCHEDMAN_PARAM_FILL'"Start Schedule Manager.
EXPORTING
ID_COMP = "Application Component for Accrual
* ID_EFFDATE = "Posting Date / Key Date for Accruals
* ID_MANUAL_PERIOD = "Posting Period in Accounting (Enter Manually)
* ID_FISC_YEAR = "Fiscal Year
* ID_RUNTYPE = "Run Type of Periodic Posting Program
* ID_RUNID_TO_REVERS = "Run ID of the Posting Run To Be Reversed
* ID_SERVER_GROUP = "Server Group for Parallel Processing
TABLES
ET_PARAM = "Selection Criteria for a Job: Overall Structure
IMPORTING Parameters details for ACE_SCHEDMAN_PARAM_FILL
ID_COMP - Application Component for Accrual
Data type: ACE_COMPOptional: No
Call by Reference: Yes
ID_EFFDATE - Posting Date / Key Date for Accruals
Data type: ACE_EFFDATEOptional: Yes
Call by Reference: Yes
ID_MANUAL_PERIOD - Posting Period in Accounting (Enter Manually)
Data type: ACEPS_MANUAL_PERIODOptional: Yes
Call by Reference: Yes
ID_FISC_YEAR - Fiscal Year
Data type: GJAHROptional: Yes
Call by Reference: Yes
ID_RUNTYPE - Run Type of Periodic Posting Program
Data type: ACE_RUNTYPEOptional: Yes
Call by Reference: Yes
ID_RUNID_TO_REVERS - Run ID of the Posting Run To Be Reversed
Data type: ACEPS_RUNID_TO_REVERSOptional: Yes
Call by Reference: Yes
ID_SERVER_GROUP - Server Group for Parallel Processing
Data type: SPTA_RFCGROptional: Yes
Call by Reference: Yes
TABLES Parameters details for ACE_SCHEDMAN_PARAM_FILL
ET_PARAM - Selection Criteria for a Job: Overall Structure
Data type: ACE_SCHEDMAN_SELKRIT_TOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for ACE_SCHEDMAN_PARAM_FILL 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_id_comp | TYPE ACE_COMP, " | |||
| lt_et_param | TYPE STANDARD TABLE OF ACE_SCHEDMAN_SELKRIT_T, " | |||
| lv_id_effdate | TYPE ACE_EFFDATE, " | |||
| lv_id_manual_period | TYPE ACEPS_MANUAL_PERIOD, " | |||
| lv_id_fisc_year | TYPE GJAHR, " | |||
| lv_id_runtype | TYPE ACE_RUNTYPE, " | |||
| lv_id_runid_to_revers | TYPE ACEPS_RUNID_TO_REVERS, " | |||
| lv_id_server_group | TYPE SPTA_RFCGR. " |
|   CALL FUNCTION 'ACE_SCHEDMAN_PARAM_FILL' "Start Schedule Manager |
| EXPORTING | ||
| ID_COMP | = lv_id_comp | |
| ID_EFFDATE | = lv_id_effdate | |
| ID_MANUAL_PERIOD | = lv_id_manual_period | |
| ID_FISC_YEAR | = lv_id_fisc_year | |
| ID_RUNTYPE | = lv_id_runtype | |
| ID_RUNID_TO_REVERS | = lv_id_runid_to_revers | |
| ID_SERVER_GROUP | = lv_id_server_group | |
| TABLES | ||
| ET_PARAM | = lt_et_param | |
| . " ACE_SCHEDMAN_PARAM_FILL | ||
ABAP code using 7.40 inline data declarations to call FM ACE_SCHEDMAN_PARAM_FILL
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