SAP ISM_SDCIRCCAT_FIND Function Module for
ISM_SDCIRCCAT_FIND is a standard ism sdcirccat find 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 ism sdcirccat find FM, simply by entering the name ISM_SDCIRCCAT_FIND into the relevant SAP transaction such as SE37 or SE38.
Function Group: JISDCIRCCAT
Program Name: SAPLJISDCIRCCAT
Main Program: SAPLJISDCIRCCAT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISM_SDCIRCCAT_FIND 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_SDCIRCCAT_FIND'".
EXPORTING
PV_VBELN = "
PV_POSNR = "
* PV_XPROT_ERROR = 'X' "
* PV_XPROT_SUCCESS = ' ' "
IMPORTING
PV_CIRCCAT = "
CHANGING
* PV_LOGHANDLE = "
EXCEPTIONS
ITEM_NOT_CHANGEABLE = 1 NO_CATEGORY_FOUND = 2 ITEM_NOT_EXISTS = 3 WRONG_INPUT = 4 ORDER_NOT_LOCKED = 5 NO_CIRC_AUDIT_TYPE = 6 NO_FM_FOR_CIRC_AUDIT_TYPE = 7
IMPORTING Parameters details for ISM_SDCIRCCAT_FIND
PV_VBELN -
Data type: RJISDCIRCCAT-VBELNOptional: No
Call by Reference: Yes
PV_POSNR -
Data type: RJISDCIRCCAT-POSNROptional: No
Call by Reference: Yes
PV_XPROT_ERROR -
Data type: RJISEL_SDORDER-XPROTOCOLDefault: 'X'
Optional: Yes
Call by Reference: Yes
PV_XPROT_SUCCESS -
Data type: RJISEL_SDORDER-XPROT_SUCCESSDefault: SPACE
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for ISM_SDCIRCCAT_FIND
PV_CIRCCAT -
Data type: RJISDCIRCCAT-ISMCIRC_CATOptional: No
Call by Reference: Yes
CHANGING Parameters details for ISM_SDCIRCCAT_FIND
PV_LOGHANDLE -
Data type: BALLOGHNDLOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
ITEM_NOT_CHANGEABLE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_CATEGORY_FOUND -
Data type:Optional: No
Call by Reference: Yes
ITEM_NOT_EXISTS -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
WRONG_INPUT -
Data type:Optional: No
Call by Reference: Yes
ORDER_NOT_LOCKED -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_CIRC_AUDIT_TYPE -
Data type:Optional: No
Call by Reference: Yes
NO_FM_FOR_CIRC_AUDIT_TYPE -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISM_SDCIRCCAT_FIND 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_pv_vbeln | TYPE RJISDCIRCCAT-VBELN, " | |||
| lv_pv_circcat | TYPE RJISDCIRCCAT-ISMCIRC_CAT, " | |||
| lv_pv_loghandle | TYPE BALLOGHNDL, " | |||
| lv_item_not_changeable | TYPE BALLOGHNDL, " | |||
| lv_pv_posnr | TYPE RJISDCIRCCAT-POSNR, " | |||
| lv_no_category_found | TYPE RJISDCIRCCAT, " | |||
| lv_pv_xprot_error | TYPE RJISEL_SDORDER-XPROTOCOL, " 'X' | |||
| lv_item_not_exists | TYPE RJISEL_SDORDER, " | |||
| lv_wrong_input | TYPE RJISEL_SDORDER, " | |||
| lv_pv_xprot_success | TYPE RJISEL_SDORDER-XPROT_SUCCESS, " SPACE | |||
| lv_order_not_locked | TYPE RJISEL_SDORDER, " | |||
| lv_no_circ_audit_type | TYPE RJISEL_SDORDER, " | |||
| lv_no_fm_for_circ_audit_type | TYPE RJISEL_SDORDER. " |
|   CALL FUNCTION 'ISM_SDCIRCCAT_FIND' " |
| EXPORTING | ||
| PV_VBELN | = lv_pv_vbeln | |
| PV_POSNR | = lv_pv_posnr | |
| PV_XPROT_ERROR | = lv_pv_xprot_error | |
| PV_XPROT_SUCCESS | = lv_pv_xprot_success | |
| IMPORTING | ||
| PV_CIRCCAT | = lv_pv_circcat | |
| CHANGING | ||
| PV_LOGHANDLE | = lv_pv_loghandle | |
| EXCEPTIONS | ||
| ITEM_NOT_CHANGEABLE = 1 | ||
| NO_CATEGORY_FOUND = 2 | ||
| ITEM_NOT_EXISTS = 3 | ||
| WRONG_INPUT = 4 | ||
| ORDER_NOT_LOCKED = 5 | ||
| NO_CIRC_AUDIT_TYPE = 6 | ||
| NO_FM_FOR_CIRC_AUDIT_TYPE = 7 | ||
| . " ISM_SDCIRCCAT_FIND | ||
ABAP code using 7.40 inline data declarations to call FM ISM_SDCIRCCAT_FIND
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 VBELN FROM RJISDCIRCCAT INTO @DATA(ld_pv_vbeln). | ||||
| "SELECT single ISMCIRC_CAT FROM RJISDCIRCCAT INTO @DATA(ld_pv_circcat). | ||||
| "SELECT single POSNR FROM RJISDCIRCCAT INTO @DATA(ld_pv_posnr). | ||||
| "SELECT single XPROTOCOL FROM RJISEL_SDORDER INTO @DATA(ld_pv_xprot_error). | ||||
| DATA(ld_pv_xprot_error) | = 'X'. | |||
| "SELECT single XPROT_SUCCESS FROM RJISEL_SDORDER INTO @DATA(ld_pv_xprot_success). | ||||
| DATA(ld_pv_xprot_success) | = ' '. | |||
Search for further information about these or an SAP related objects