ISM_CHANGENUMBER_CREATE is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name ISM_CHANGENUMBER_CREATE into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
JS02_BAPI
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'ISM_CHANGENUMBER_CREATE' "IS-M: Create Change Number Without Dialog
EXPORTING
validfromdate = " bapiismbus001-validfrom IS-M: Date from which change number is valid
* validtodate = " bapiismbus001-validto IS-M: Date to which change number is valid
information = " bapiismbus001-description Label
* in_update = SPACE " jpsd_xfeld
* in_xuserspez = SPACE " bapiismbus001-xcreatoronly Change Number is User-Specific
* in_xdeliv_opt = SPACE " bapiismbus001-xdeliv_opt IS-M/SD: Delivery Viability Optimization for Release
* in_xenqordrel = SPACE " bapiismbus001-xenqordrel IS-M/SD: Restricted Order Block (by Geo.) for Release
* in_jorder_get = '01' " bapiismbus001-jorder_get IS-M: Procedure for determining orders during release
IMPORTING
number = " bapiismbus001-jnumber Change Number
return = " bapiret2
. " ISM_CHANGENUMBER_CREATE
The ABAP code below is a full code listing to execute function module ISM_CHANGENUMBER_CREATE including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| ld_number | TYPE BAPIISMBUS001-JNUMBER , |
| ld_return | TYPE BAPIRET2 . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_number | TYPE BAPIISMBUS001-JNUMBER , |
| ld_validfromdate | TYPE BAPIISMBUS001-VALIDFROM , |
| ld_return | TYPE BAPIRET2 , |
| ld_validtodate | TYPE BAPIISMBUS001-VALIDTO , |
| ld_information | TYPE BAPIISMBUS001-DESCRIPTION , |
| ld_in_update | TYPE JPSD_XFELD , |
| ld_in_xuserspez | TYPE BAPIISMBUS001-XCREATORONLY , |
| ld_in_xdeliv_opt | TYPE BAPIISMBUS001-XDELIV_OPT , |
| ld_in_xenqordrel | TYPE BAPIISMBUS001-XENQORDREL , |
| ld_in_jorder_get | TYPE BAPIISMBUS001-JORDER_GET . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name ISM_CHANGENUMBER_CREATE or its description.
ISM_CHANGENUMBER_CREATE - IS-M: Create Change Number Without Dialog ISM_CHANGENUMBER_CHECK - IS-M: Release Change Number ISM_CHANGENR_SHIP_DATA_CHECK - ISM_CHANGENR_POST_UPDATE - IS-M: Update Change Number for Postal Change Service ISM_CHANGENR_POSTSTATE_CHANGE - IS-M: Change Status/Postal Status of a Change No. in Postal Change Ser ISM_CHANGENR_JSTXXXUPDA_SELECT -