SAP ISM_RAW_REF_DISSOLVE Function Module for Summarize Postal Data References Within Version
ISM_RAW_REF_DISSOLVE is a standard ism raw ref dissolve SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Summarize Postal Data References Within Version 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 raw ref dissolve FM, simply by entering the name ISM_RAW_REF_DISSOLVE into the relevant SAP transaction such as SE37 or SE38.
Function Group: ISM_PD_VALIDITY_SERVICE
Program Name: SAPLISM_PD_VALIDITY_SERVICE
Main Program: SAPLISM_PD_VALIDITY_SERVICE
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISM_RAW_REF_DISSOLVE 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_RAW_REF_DISSOLVE'"Summarize Postal Data References Within Version.
EXPORTING
PD_COUNTRY = "Country Key
* X_DB_MODIFY = "Checkbox Field
PD_POST_VERSION_ID = "
* X_REGARD_RAW_PRECOND = 'X' "Checkbox Field
* X_ORT = 'X' "Checkbox Field
* X_POF = 'X' "Checkbox Field
* X_STR = 'X' "Checkbox Field
* X_TRACE = "Checkbox Field
* PRT_DEVICE = "Spool: Long device names
* X_TRC_DISPLAY = "Checkbox Field
IMPORTING
ORT_CONS_NEW = "
STR_CONS_OLD = "
STR_STATE_NEW = "
STR_STATE_OLD = "
SPOOL_ID = "Spool Number of List Print
MESSAGE = "IS-M: Message Data
ORT_CONS_OLD = "
ORT_STATE_NEW = "
ORT_STATE_OLD = "
POF_CONS_NEW = "
POF_CONS_OLD = "
POF_STATE_NEW = "
POF_STATE_OLD = "
STR_CONS_NEW = "
IMPORTING Parameters details for ISM_RAW_REF_DISSOLVE
PD_COUNTRY - Country Key
Data type: LAND1Optional: No
Call by Reference: No ( called with pass by value option)
X_DB_MODIFY - Checkbox Field
Data type: XFELDOptional: Yes
Call by Reference: No ( called with pass by value option)
PD_POST_VERSION_ID -
Data type: STRINGOptional: No
Call by Reference: No ( called with pass by value option)
X_REGARD_RAW_PRECOND - Checkbox Field
Data type: XFELDDefault: 'X'
Optional: No
Call by Reference: No ( called with pass by value option)
X_ORT - Checkbox Field
Data type: XFELDDefault: 'X'
Optional: No
Call by Reference: No ( called with pass by value option)
X_POF - Checkbox Field
Data type: XFELDDefault: 'X'
Optional: No
Call by Reference: No ( called with pass by value option)
X_STR - Checkbox Field
Data type: XFELDDefault: 'X'
Optional: No
Call by Reference: No ( called with pass by value option)
X_TRACE - Checkbox Field
Data type: XFELDOptional: Yes
Call by Reference: No ( called with pass by value option)
PRT_DEVICE - Spool: Long device names
Data type: RSPOLNAMEOptional: Yes
Call by Reference: No ( called with pass by value option)
X_TRC_DISPLAY - Checkbox Field
Data type: XFELDOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISM_RAW_REF_DISSOLVE
ORT_CONS_NEW -
Data type: TABLEOptional: No
Call by Reference: Yes
STR_CONS_OLD -
Data type: TABLEOptional: No
Call by Reference: Yes
STR_STATE_NEW -
Data type: TABLEOptional: No
Call by Reference: Yes
STR_STATE_OLD -
Data type: TABLEOptional: No
Call by Reference: Yes
SPOOL_ID - Spool Number of List Print
Data type: SYSPONOOptional: No
Call by Reference: Yes
MESSAGE - IS-M: Message Data
Data type: RJMSGOptional: No
Call by Reference: Yes
ORT_CONS_OLD -
Data type: TABLEOptional: No
Call by Reference: Yes
ORT_STATE_NEW -
Data type: TABLEOptional: No
Call by Reference: Yes
ORT_STATE_OLD -
Data type: TABLEOptional: No
Call by Reference: Yes
POF_CONS_NEW -
Data type: TABLEOptional: No
Call by Reference: Yes
POF_CONS_OLD -
Data type: TABLEOptional: No
Call by Reference: Yes
POF_STATE_NEW -
Data type: TABLEOptional: No
Call by Reference: Yes
POF_STATE_OLD -
Data type: TABLEOptional: No
Call by Reference: Yes
STR_CONS_NEW -
Data type: TABLEOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISM_RAW_REF_DISSOLVE 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_pd_country | TYPE LAND1, " | |||
| lv_ort_cons_new | TYPE TABLE, " | |||
| lv_x_db_modify | TYPE XFELD, " | |||
| lv_str_cons_old | TYPE TABLE, " | |||
| lv_str_state_new | TYPE TABLE, " | |||
| lv_str_state_old | TYPE TABLE, " | |||
| lv_spool_id | TYPE SYSPONO, " | |||
| lv_message | TYPE RJMSG, " | |||
| lv_ort_cons_old | TYPE TABLE, " | |||
| lv_pd_post_version_id | TYPE STRING, " | |||
| lv_ort_state_new | TYPE TABLE, " | |||
| lv_x_regard_raw_precond | TYPE XFELD, " 'X' | |||
| lv_x_ort | TYPE XFELD, " 'X' | |||
| lv_ort_state_old | TYPE TABLE, " | |||
| lv_x_pof | TYPE XFELD, " 'X' | |||
| lv_pof_cons_new | TYPE TABLE, " | |||
| lv_x_str | TYPE XFELD, " 'X' | |||
| lv_pof_cons_old | TYPE TABLE, " | |||
| lv_x_trace | TYPE XFELD, " | |||
| lv_pof_state_new | TYPE TABLE, " | |||
| lv_prt_device | TYPE RSPOLNAME, " | |||
| lv_pof_state_old | TYPE TABLE, " | |||
| lv_str_cons_new | TYPE TABLE, " | |||
| lv_x_trc_display | TYPE XFELD. " |
|   CALL FUNCTION 'ISM_RAW_REF_DISSOLVE' "Summarize Postal Data References Within Version |
| EXPORTING | ||
| PD_COUNTRY | = lv_pd_country | |
| X_DB_MODIFY | = lv_x_db_modify | |
| PD_POST_VERSION_ID | = lv_pd_post_version_id | |
| X_REGARD_RAW_PRECOND | = lv_x_regard_raw_precond | |
| X_ORT | = lv_x_ort | |
| X_POF | = lv_x_pof | |
| X_STR | = lv_x_str | |
| X_TRACE | = lv_x_trace | |
| PRT_DEVICE | = lv_prt_device | |
| X_TRC_DISPLAY | = lv_x_trc_display | |
| IMPORTING | ||
| ORT_CONS_NEW | = lv_ort_cons_new | |
| STR_CONS_OLD | = lv_str_cons_old | |
| STR_STATE_NEW | = lv_str_state_new | |
| STR_STATE_OLD | = lv_str_state_old | |
| SPOOL_ID | = lv_spool_id | |
| MESSAGE | = lv_message | |
| ORT_CONS_OLD | = lv_ort_cons_old | |
| ORT_STATE_NEW | = lv_ort_state_new | |
| ORT_STATE_OLD | = lv_ort_state_old | |
| POF_CONS_NEW | = lv_pof_cons_new | |
| POF_CONS_OLD | = lv_pof_cons_old | |
| POF_STATE_NEW | = lv_pof_state_new | |
| POF_STATE_OLD | = lv_pof_state_old | |
| STR_CONS_NEW | = lv_str_cons_new | |
| . " ISM_RAW_REF_DISSOLVE | ||
ABAP code using 7.40 inline data declarations to call FM ISM_RAW_REF_DISSOLVE
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_x_regard_raw_precond) | = 'X'. | |||
| DATA(ld_x_ort) | = 'X'. | |||
| DATA(ld_x_pof) | = 'X'. | |||
| DATA(ld_x_str) | = 'X'. | |||
Search for further information about these or an SAP related objects