SAP INM_INITIATIVE_DISPLAY Function Module for Initiative Display
INM_INITIATIVE_DISPLAY is a standard inm initiative display SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Initiative Display 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 inm initiative display FM, simply by entering the name INM_INITIATIVE_DISPLAY into the relevant SAP transaction such as SE37 or SE38.
Function Group: INM_INITIATIVE
Program Name: SAPLINM_INITIATIVE
Main Program: SAPLINM_INITIATIVE
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function INM_INITIATIVE_DISPLAY 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 'INM_INITIATIVE_DISPLAY'"Initiative Display.
EXPORTING
IS_CONTEXT = "Guid for application objects
* IV_LANGUAGE = "Language according to ISO 639
* IV_EDIT_MODE = "Edit mode of application objects
IMPORTING
ES_ATTRIBUTES = "Initiative
ES_MODE = "Object Change Mode
EV_SHORT_TEXT = "
EV_REASON = "
EV_GOAL = "
EV_BENEFITS = "
EV_STATUS_TEXT = "
EV_RC = "
TABLES
* ET_MSG = "Table Type for Messages
* ET_FIELD_DESCRIPTION = "Table for field description
* ET_STATUS = "Status
IMPORTING Parameters details for INM_INITIATIVE_DISPLAY
IS_CONTEXT - Guid for application objects
Data type: /RPM/TS_OBJECT_HIEROptional: No
Call by Reference: No ( called with pass by value option)
IV_LANGUAGE - Language according to ISO 639
Data type: LAISOOptional: Yes
Call by Reference: No ( called with pass by value option)
IV_EDIT_MODE - Edit mode of application objects
Data type: /RPM/TV_EDIT_MODEOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for INM_INITIATIVE_DISPLAY
ES_ATTRIBUTES - Initiative
Data type: INM_TS_INITIATIVE_EXTOptional: No
Call by Reference: No ( called with pass by value option)
ES_MODE - Object Change Mode
Data type: /RPM/TS_CHANGE_MODEOptional: No
Call by Reference: No ( called with pass by value option)
EV_SHORT_TEXT -
Data type: STRINGOptional: No
Call by Reference: No ( called with pass by value option)
EV_REASON -
Data type: STRINGOptional: No
Call by Reference: No ( called with pass by value option)
EV_GOAL -
Data type: STRINGOptional: No
Call by Reference: No ( called with pass by value option)
EV_BENEFITS -
Data type: STRINGOptional: No
Call by Reference: No ( called with pass by value option)
EV_STATUS_TEXT -
Data type: STRINGOptional: No
Call by Reference: No ( called with pass by value option)
EV_RC -
Data type: IOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for INM_INITIATIVE_DISPLAY
ET_MSG - Table Type for Messages
Data type: /RPM/TT_MESSAGESOptional: Yes
Call by Reference: Yes
ET_FIELD_DESCRIPTION - Table for field description
Data type: /RPM/TT_FIELDS_DESCRIPTIONOptional: Yes
Call by Reference: Yes
ET_STATUS - Status
Data type: INM_TT_STATUSOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for INM_INITIATIVE_DISPLAY 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: | ||||
| lt_et_msg | TYPE STANDARD TABLE OF /RPM/TT_MESSAGES, " | |||
| lv_is_context | TYPE /RPM/TS_OBJECT_HIER, " | |||
| lv_es_attributes | TYPE INM_TS_INITIATIVE_EXT, " | |||
| lv_es_mode | TYPE /RPM/TS_CHANGE_MODE, " | |||
| lv_iv_language | TYPE LAISO, " | |||
| lt_et_field_description | TYPE STANDARD TABLE OF /RPM/TT_FIELDS_DESCRIPTION, " | |||
| lt_et_status | TYPE STANDARD TABLE OF INM_TT_STATUS, " | |||
| lv_iv_edit_mode | TYPE /RPM/TV_EDIT_MODE, " | |||
| lv_ev_short_text | TYPE STRING, " | |||
| lv_ev_reason | TYPE STRING, " | |||
| lv_ev_goal | TYPE STRING, " | |||
| lv_ev_benefits | TYPE STRING, " | |||
| lv_ev_status_text | TYPE STRING, " | |||
| lv_ev_rc | TYPE I. " |
|   CALL FUNCTION 'INM_INITIATIVE_DISPLAY' "Initiative Display |
| EXPORTING | ||
| IS_CONTEXT | = lv_is_context | |
| IV_LANGUAGE | = lv_iv_language | |
| IV_EDIT_MODE | = lv_iv_edit_mode | |
| IMPORTING | ||
| ES_ATTRIBUTES | = lv_es_attributes | |
| ES_MODE | = lv_es_mode | |
| EV_SHORT_TEXT | = lv_ev_short_text | |
| EV_REASON | = lv_ev_reason | |
| EV_GOAL | = lv_ev_goal | |
| EV_BENEFITS | = lv_ev_benefits | |
| EV_STATUS_TEXT | = lv_ev_status_text | |
| EV_RC | = lv_ev_rc | |
| TABLES | ||
| ET_MSG | = lt_et_msg | |
| ET_FIELD_DESCRIPTION | = lt_et_field_description | |
| ET_STATUS | = lt_et_status | |
| . " INM_INITIATIVE_DISPLAY | ||
ABAP code using 7.40 inline data declarations to call FM INM_INITIATIVE_DISPLAY
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