SAP APPOINTMENT_GRP_SEARCH_W_DIALG Function Module for Appointments Diary: Find Frame for Group Appointments (Dialog)
APPOINTMENT_GRP_SEARCH_W_DIALG is a standard appointment grp search w dialg SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Appointments Diary: Find Frame for Group Appointments (Dialog) 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 appointment grp search w dialg FM, simply by entering the name APPOINTMENT_GRP_SEARCH_W_DIALG into the relevant SAP transaction such as SE37 or SE38.
Function Group: SSC7
Program Name: SAPLSSC7
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function APPOINTMENT_GRP_SEARCH_W_DIALG 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 'APPOINTMENT_GRP_SEARCH_W_DIALG'"Appointments Diary: Find Frame for Group Appointments (Dialog).
EXPORTING
TIMEFRAME = "
ERROR_MESSAGE = "
* DURATION = "
IMPORTING
OK_CODE = "
TABLES
PARTICIPANT = "
SELECTED_TIMEFRAME = "
EXCEPTIONS
INTERNAL_ERROR = 1
IMPORTING Parameters details for APPOINTMENT_GRP_SEARCH_W_DIALG
TIMEFRAME -
Data type: SCSTIMEFRMOptional: No
Call by Reference: No ( called with pass by value option)
ERROR_MESSAGE -
Data type: SCSERROROptional: No
Call by Reference: No ( called with pass by value option)
DURATION -
Data type: SCSDURATIOOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for APPOINTMENT_GRP_SEARCH_W_DIALG
OK_CODE -
Data type: SY-XCODEOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for APPOINTMENT_GRP_SEARCH_W_DIALG
PARTICIPANT -
Data type: SCSDILISTOptional: No
Call by Reference: No ( called with pass by value option)
SELECTED_TIMEFRAME -
Data type: SCSTIMEFRMOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
INTERNAL_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for APPOINTMENT_GRP_SEARCH_W_DIALG 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_ok_code | TYPE SY-XCODE, " | |||
| lv_timeframe | TYPE SCSTIMEFRM, " | |||
| lt_participant | TYPE STANDARD TABLE OF SCSDILIST, " | |||
| lv_internal_error | TYPE SCSDILIST, " | |||
| lv_error_message | TYPE SCSERROR, " | |||
| lt_selected_timeframe | TYPE STANDARD TABLE OF SCSTIMEFRM, " | |||
| lv_duration | TYPE SCSDURATIO. " |
|   CALL FUNCTION 'APPOINTMENT_GRP_SEARCH_W_DIALG' "Appointments Diary: Find Frame for Group Appointments (Dialog) |
| EXPORTING | ||
| TIMEFRAME | = lv_timeframe | |
| ERROR_MESSAGE | = lv_error_message | |
| DURATION | = lv_duration | |
| IMPORTING | ||
| OK_CODE | = lv_ok_code | |
| TABLES | ||
| PARTICIPANT | = lt_participant | |
| SELECTED_TIMEFRAME | = lt_selected_timeframe | |
| EXCEPTIONS | ||
| INTERNAL_ERROR = 1 | ||
| . " APPOINTMENT_GRP_SEARCH_W_DIALG | ||
ABAP code using 7.40 inline data declarations to call FM APPOINTMENT_GRP_SEARCH_W_DIALG
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 XCODE FROM SY INTO @DATA(ld_ok_code). | ||||
Search for further information about these or an SAP related objects