SAP CRM_DATES_FBA_CREATE_PLANNER Function Module for
CRM_DATES_FBA_CREATE_PLANNER is a standard crm dates fba create planner SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 crm dates fba create planner FM, simply by entering the name CRM_DATES_FBA_CREATE_PLANNER into the relevant SAP transaction such as SE37 or SE38.
Function Group: CRM_DATES_FBA
Program Name: SAPLCRM_DATES_FBA
Main Program: SAPLCRM_DATES_FBA
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function CRM_DATES_FBA_CREATE_PLANNER 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 'CRM_DATES_FBA_CREATE_PLANNER'".
EXPORTING
* IV_DYNPRO_CONTAINER = "Abstract Container for GUI Controls
* IV_REGISTER_EVENTS = ' ' "
IV_DISPLAY_MODE = "
IS_VIEW_SETTINGS = "View Settings
IS_SEARCH_SETTINGS = "Search Settings
IV_TIMEZONE = "Time zone
* IV_APPT_DURATION = "Time Period for the Appointment Calendar Detail Display
* IT_PARTICIPANTS = "Appointment Management: Parameters for Free/Busy Analysis
* IV_APPT_DURATION_2 = "
IMPORTING
EV_PLANNER = "Appointment Management: Planning Interface
IMPORTING Parameters details for CRM_DATES_FBA_CREATE_PLANNER
IV_DYNPRO_CONTAINER - Abstract Container for GUI Controls
Data type: CL_GUI_CONTAINEROptional: Yes
Call by Reference: Yes
IV_REGISTER_EVENTS -
Data type: CRMT_BOOLEANDefault: SPACE
Optional: No
Call by Reference: Yes
IV_DISPLAY_MODE -
Data type: SC_FLAGOptional: No
Call by Reference: Yes
IS_VIEW_SETTINGS - View Settings
Data type: SCSTP_PLANNER_SETTINGSOptional: No
Call by Reference: Yes
IS_SEARCH_SETTINGS - Search Settings
Data type: SCSTP_PLANNER_SEARCH_SETTINGSOptional: No
Call by Reference: Yes
IV_TIMEZONE - Time zone
Data type: TIMEZONEOptional: No
Call by Reference: Yes
IV_APPT_DURATION - Time Period for the Appointment Calendar Detail Display
Data type: SC_INTERVAOptional: Yes
Call by Reference: Yes
IT_PARTICIPANTS - Appointment Management: Parameters for Free/Busy Analysis
Data type: SCSFBPARTTABOptional: Yes
Call by Reference: Yes
IV_APPT_DURATION_2 -
Data type: SC_DURNUMCOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for CRM_DATES_FBA_CREATE_PLANNER
EV_PLANNER - Appointment Management: Planning Interface
Data type: CL_PLANNEROptional: No
Call by Reference: Yes
Copy and paste ABAP code example for CRM_DATES_FBA_CREATE_PLANNER 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_ev_planner | TYPE CL_PLANNER, " | |||
| lv_iv_dynpro_container | TYPE CL_GUI_CONTAINER, " | |||
| lv_iv_register_events | TYPE CRMT_BOOLEAN, " SPACE | |||
| lv_iv_display_mode | TYPE SC_FLAG, " | |||
| lv_is_view_settings | TYPE SCSTP_PLANNER_SETTINGS, " | |||
| lv_is_search_settings | TYPE SCSTP_PLANNER_SEARCH_SETTINGS, " | |||
| lv_iv_timezone | TYPE TIMEZONE, " | |||
| lv_iv_appt_duration | TYPE SC_INTERVA, " | |||
| lv_it_participants | TYPE SCSFBPARTTAB, " | |||
| lv_iv_appt_duration_2 | TYPE SC_DURNUMC. " |
|   CALL FUNCTION 'CRM_DATES_FBA_CREATE_PLANNER' " |
| EXPORTING | ||
| IV_DYNPRO_CONTAINER | = lv_iv_dynpro_container | |
| IV_REGISTER_EVENTS | = lv_iv_register_events | |
| IV_DISPLAY_MODE | = lv_iv_display_mode | |
| IS_VIEW_SETTINGS | = lv_is_view_settings | |
| IS_SEARCH_SETTINGS | = lv_is_search_settings | |
| IV_TIMEZONE | = lv_iv_timezone | |
| IV_APPT_DURATION | = lv_iv_appt_duration | |
| IT_PARTICIPANTS | = lv_it_participants | |
| IV_APPT_DURATION_2 | = lv_iv_appt_duration_2 | |
| IMPORTING | ||
| EV_PLANNER | = lv_ev_planner | |
| . " CRM_DATES_FBA_CREATE_PLANNER | ||
ABAP code using 7.40 inline data declarations to call FM CRM_DATES_FBA_CREATE_PLANNER
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.| DATA(ld_iv_register_events) | = ' '. | |||
Search for further information about these or an SAP related objects