SAP CRM_ISU_PDO_READ Function Module for Read session data from DB
CRM_ISU_PDO_READ is a standard crm isu pdo read SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Read session data from DB 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 crm isu pdo read FM, simply by entering the name CRM_ISU_PDO_READ into the relevant SAP transaction such as SE37 or SE38.
Function Group: CRM_ISU_PDO_CLUSTER_DB
Program Name: SAPLCRM_ISU_PDO_CLUSTER_DB
Main Program: SAPLCRM_ISU_PDO_CLUSTER_DB
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:
Function CRM_ISU_PDO_READ 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_ISU_PDO_READ'"Read session data from DB.
EXPORTING
IV_HEADER_GUID = "N
* IV_HEADER_GUID_22 = "GUID in 'CHAR' format with upper-/lowercase (!)
IMPORTING
ET_ORDERADM_H = "List of Admin Header Data (Database + Dynamic Part)
ET_ORDERADM_I = "Item: Database + Dynamic Part
ET_ISU_REL = "EEW: Generated Object (Do not Process Manually)
ET_ISU_CONT = "ISU Container
ET_ISU_CONT_TS = "EEW: Generated Object (Do Not Process Manually)
ER_READ_TABLES = "
ES_ORDER_DATA = "
ES_READ_BUFFER = "
EXCEPTIONS
LOCKED = 1 NOT_FOUND = 2
IMPORTING Parameters details for CRM_ISU_PDO_READ
IV_HEADER_GUID - N
Data type: CRMT_HEADER_GUIDOptional: No
Call by Reference: Yes
IV_HEADER_GUID_22 - GUID in 'CHAR' format with upper-/lowercase (!)
Data type: GUID_22Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for CRM_ISU_PDO_READ
ET_ORDERADM_H - List of Admin Header Data (Database + Dynamic Part)
Data type: CRMT_ORDERADM_H_WRKTOptional: No
Call by Reference: Yes
ET_ORDERADM_I - Item: Database + Dynamic Part
Data type: CRMT_ORDERADM_I_WRKT_SECOptional: No
Call by Reference: Yes
ET_ISU_REL - EEW: Generated Object (Do not Process Manually)
Data type: CRMT_ISU_REAX_WRKTOptional: No
Call by Reference: Yes
ET_ISU_CONT - ISU Container
Data type: CRMT_ISU_CONT_WRKTOptional: No
Call by Reference: Yes
ET_ISU_CONT_TS - EEW: Generated Object (Do Not Process Manually)
Data type: CRMT_ISU_CONT_TS_WRKTOptional: No
Call by Reference: Yes
ER_READ_TABLES -
Data type: DATAOptional: No
Call by Reference: No ( called with pass by value option)
ES_ORDER_DATA -
Data type: CL_CRM_ISU_ORDER_REF=>TYPE_ORDER_DATAOptional: No
Call by Reference: Yes
ES_READ_BUFFER -
Data type: CL_CRM_ISU_ORDER_REF=>TYPE_READ_BUFFEROptional: No
Call by Reference: Yes
EXCEPTIONS details
LOCKED - Gesperrt
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NOT_FOUND - Not found
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for CRM_ISU_PDO_READ 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_locked | TYPE STRING, " | |||
lv_et_orderadm_h | TYPE CRMT_ORDERADM_H_WRKT, " | |||
lv_iv_header_guid | TYPE CRMT_HEADER_GUID, " | |||
lv_not_found | TYPE CRMT_HEADER_GUID, " | |||
lv_et_orderadm_i | TYPE CRMT_ORDERADM_I_WRKT_SEC, " | |||
lv_iv_header_guid_22 | TYPE GUID_22, " | |||
lv_et_isu_rel | TYPE CRMT_ISU_REAX_WRKT, " | |||
lv_et_isu_cont | TYPE CRMT_ISU_CONT_WRKT, " | |||
lv_et_isu_cont_ts | TYPE CRMT_ISU_CONT_TS_WRKT, " | |||
lv_er_read_tables | TYPE DATA, " | |||
lv_es_order_data | TYPE CL_CRM_ISU_ORDER_REF=>TYPE_ORDER_DATA, " | |||
lv_es_read_buffer | TYPE CL_CRM_ISU_ORDER_REF=>TYPE_READ_BUFFER. " |
  CALL FUNCTION 'CRM_ISU_PDO_READ' "Read session data from DB |
EXPORTING | ||
IV_HEADER_GUID | = lv_iv_header_guid | |
IV_HEADER_GUID_22 | = lv_iv_header_guid_22 | |
IMPORTING | ||
ET_ORDERADM_H | = lv_et_orderadm_h | |
ET_ORDERADM_I | = lv_et_orderadm_i | |
ET_ISU_REL | = lv_et_isu_rel | |
ET_ISU_CONT | = lv_et_isu_cont | |
ET_ISU_CONT_TS | = lv_et_isu_cont_ts | |
ER_READ_TABLES | = lv_er_read_tables | |
ES_ORDER_DATA | = lv_es_order_data | |
ES_READ_BUFFER | = lv_es_read_buffer | |
EXCEPTIONS | ||
LOCKED = 1 | ||
NOT_FOUND = 2 | ||
. " CRM_ISU_PDO_READ |
ABAP code using 7.40 inline data declarations to call FM CRM_ISU_PDO_READ
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