SAP ISM_COLL_DATE_CUST_DETERM Function Module for Determine Recall Date for Customer
ISM_COLL_DATE_CUST_DETERM is a standard ism coll date cust determ SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Determine Recall Date for Customer 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 ism coll date cust determ FM, simply by entering the name ISM_COLL_DATE_CUST_DETERM into the relevant SAP transaction such as SE37 or SE38.
Function Group: JKSDCOLLECTION01
Program Name: SAPLJKSDCOLLECTION01
Main Program: SAPLJKSDCOLLECTION01
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISM_COLL_DATE_CUST_DETERM 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 'ISM_COLL_DATE_CUST_DETERM'"Determine Recall Date for Customer.
EXPORTING
* IM_JKSDISSUEDATE = "Recall Dates for Media Issues
IM_COLL_VISIT = "Recall Visit Days
IM_SUSPENSIONS_TAB = "IS-M: Table of Planning Suspensions for Business Partner
* IM_DATE = "IS-M: Recall Date
* IM_AUART = "Return Collection Types
* IM_SUSPENSIONS = "X = Take Account of Suspension Regardless of Recall Type
IMPORTING
EX_DATE = "IS-M: Recall Date
EX_PROCDATE = "Date for Collection from Customer
IMPORTING Parameters details for ISM_COLL_DATE_CUST_DETERM
IM_JKSDISSUEDATE - Recall Dates for Media Issues
Data type: JKSDISSUEDATEOptional: Yes
Call by Reference: Yes
IM_COLL_VISIT - Recall Visit Days
Data type: RJKSDCOLL_VISITOptional: No
Call by Reference: Yes
IM_SUSPENSIONS_TAB - IS-M: Table of Planning Suspensions for Business Partner
Data type: RJGTEUWVCALTABOptional: No
Call by Reference: Yes
IM_DATE - IS-M: Recall Date
Data type: ISMCOLLDATEOptional: Yes
Call by Reference: Yes
IM_AUART - Return Collection Types
Data type: JKSDAUART_RETURNCOLLOptional: Yes
Call by Reference: Yes
IM_SUSPENSIONS - X = Take Account of Suspension Regardless of Recall Type
Data type: XFELDOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for ISM_COLL_DATE_CUST_DETERM
EX_DATE - IS-M: Recall Date
Data type: ISMCOLLDATEOptional: No
Call by Reference: Yes
EX_PROCDATE - Date for Collection from Customer
Data type: ISMPROCDATEOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISM_COLL_DATE_CUST_DETERM 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_ex_date | TYPE ISMCOLLDATE, " | |||
| lv_im_jksdissuedate | TYPE JKSDISSUEDATE, " | |||
| lv_ex_procdate | TYPE ISMPROCDATE, " | |||
| lv_im_coll_visit | TYPE RJKSDCOLL_VISIT, " | |||
| lv_im_suspensions_tab | TYPE RJGTEUWVCALTAB, " | |||
| lv_im_date | TYPE ISMCOLLDATE, " | |||
| lv_im_auart | TYPE JKSDAUART_RETURNCOLL, " | |||
| lv_im_suspensions | TYPE XFELD. " |
|   CALL FUNCTION 'ISM_COLL_DATE_CUST_DETERM' "Determine Recall Date for Customer |
| EXPORTING | ||
| IM_JKSDISSUEDATE | = lv_im_jksdissuedate | |
| IM_COLL_VISIT | = lv_im_coll_visit | |
| IM_SUSPENSIONS_TAB | = lv_im_suspensions_tab | |
| IM_DATE | = lv_im_date | |
| IM_AUART | = lv_im_auart | |
| IM_SUSPENSIONS | = lv_im_suspensions | |
| IMPORTING | ||
| EX_DATE | = lv_ex_date | |
| EX_PROCDATE | = lv_ex_procdate | |
| . " ISM_COLL_DATE_CUST_DETERM | ||
ABAP code using 7.40 inline data declarations to call FM ISM_COLL_DATE_CUST_DETERM
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