SAP ISH_OM_INFTY_WRITE Function Module for
ISH_OM_INFTY_WRITE is a standard ish om infty write 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 ish om infty write FM, simply by entering the name ISH_OM_INFTY_WRITE into the relevant SAP transaction such as SE37 or SE38.
Function Group: N_OM_RH
Program Name: SAPLN_OM_RH
Main Program: SAPLN_OM_RH
Appliation area: H
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISH_OM_INFTY_WRITE 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 'ISH_OM_INFTY_WRITE'".
EXPORTING
* I_FCODE = 'INSE' "
* I_PLVAR = "Plan Version
I_OTYPE = "
I_OBJID = "Object ID
I_INFTY = "
* I_SUBTY = "
I_BEGDA = "
I_ENDDA = "
* I_WRITE_TO_DB = "
CHANGING
C_INNNN_EXP = "
EXCEPTIONS
NO_ACTIVE_PLVAR = 1 WRITE_ERROR = 2 INFTY_NOT_ALLOWED = 3
IMPORTING Parameters details for ISH_OM_INFTY_WRITE
I_FCODE -
Data type: FCODEDefault: 'INSE'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_PLVAR - Plan Version
Data type: PLVAROptional: Yes
Call by Reference: No ( called with pass by value option)
I_OTYPE -
Data type: OTYPEOptional: No
Call by Reference: No ( called with pass by value option)
I_OBJID - Object ID
Data type: HROBJIDOptional: No
Call by Reference: No ( called with pass by value option)
I_INFTY -
Data type: INFOTYPOptional: No
Call by Reference: No ( called with pass by value option)
I_SUBTY -
Data type: SUBTYPOptional: Yes
Call by Reference: No ( called with pass by value option)
I_BEGDA -
Data type: SYDATUMOptional: No
Call by Reference: No ( called with pass by value option)
I_ENDDA -
Data type: SYDATUMOptional: No
Call by Reference: No ( called with pass by value option)
I_WRITE_TO_DB -
Data type: FLAGOptional: Yes
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for ISH_OM_INFTY_WRITE
C_INNNN_EXP -
Data type: STANDARD TABLEOptional: No
Call by Reference: Yes
EXCEPTIONS details
NO_ACTIVE_PLVAR -
Data type:Optional: No
Call by Reference: Yes
WRITE_ERROR -
Data type:Optional: No
Call by Reference: Yes
INFTY_NOT_ALLOWED -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISH_OM_INFTY_WRITE 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_i_fcode | TYPE FCODE, " 'INSE' | |||
| lv_c_innnn_exp | TYPE STANDARD TABLE, " | |||
| lv_no_active_plvar | TYPE STANDARD TABLE, " | |||
| lv_i_plvar | TYPE PLVAR, " | |||
| lv_write_error | TYPE PLVAR, " | |||
| lv_i_otype | TYPE OTYPE, " | |||
| lv_infty_not_allowed | TYPE OTYPE, " | |||
| lv_i_objid | TYPE HROBJID, " | |||
| lv_i_infty | TYPE INFOTYP, " | |||
| lv_i_subty | TYPE SUBTYP, " | |||
| lv_i_begda | TYPE SYDATUM, " | |||
| lv_i_endda | TYPE SYDATUM, " | |||
| lv_i_write_to_db | TYPE FLAG. " |
|   CALL FUNCTION 'ISH_OM_INFTY_WRITE' " |
| EXPORTING | ||
| I_FCODE | = lv_i_fcode | |
| I_PLVAR | = lv_i_plvar | |
| I_OTYPE | = lv_i_otype | |
| I_OBJID | = lv_i_objid | |
| I_INFTY | = lv_i_infty | |
| I_SUBTY | = lv_i_subty | |
| I_BEGDA | = lv_i_begda | |
| I_ENDDA | = lv_i_endda | |
| I_WRITE_TO_DB | = lv_i_write_to_db | |
| CHANGING | ||
| C_INNNN_EXP | = lv_c_innnn_exp | |
| EXCEPTIONS | ||
| NO_ACTIVE_PLVAR = 1 | ||
| WRITE_ERROR = 2 | ||
| INFTY_NOT_ALLOWED = 3 | ||
| . " ISH_OM_INFTY_WRITE | ||
ABAP code using 7.40 inline data declarations to call FM ISH_OM_INFTY_WRITE
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_i_fcode) | = 'INSE'. | |||
Search for further information about these or an SAP related objects