SAP ISB_RM_PH_SHOW Function Module for IS-B: RM Anzeige einer Portfoliohierarchie
ISB_RM_PH_SHOW is a standard isb rm ph show SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for IS-B: RM Anzeige einer Portfoliohierarchie 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 isb rm ph show FM, simply by entering the name ISB_RM_PH_SHOW into the relevant SAP transaction such as SE37 or SE38.
Function Group: JBRJ
Program Name: SAPLJBRJ
Main Program: SAPLJBRJ
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISB_RM_PH_SHOW 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 'ISB_RM_PH_SHOW'"IS-B: RM Anzeige einer Portfoliohierarchie.
EXPORTING
* MODE = "P: Knoten auswählen, S: Sichern od. abbr.
* I_TITLE = "Fensterüberschrift
* I_TEXT_LENGTH = '50' "Länge des Texts zu PH-Knoten
* I_CALLBACK_PROGRAM = "Programmname für Callback-Routinen
* I_FORM_TOP_OF_PAGE = "Unterprogramm zus. Top of Page
* I_NO_CONTROL = "Kennzeichen: 'klassische' Anzeige ohne Control
IMPORTING
NODE = "Ausgewählter Knoten
TABLES
I_JBRPHBAUM = "Baumtabelle Portfoliohierarchie
I_JBRNAMEDAT = "Texttabelle Portfoliohierarchie
* I_ADD_INFO_T = "Tabelle Zusatzinformationen PH
* E_MARKED_NODES_T = "Tabelle ausgewählte Knoten
EXCEPTIONS
CANCEL = 1
IMPORTING Parameters details for ISB_RM_PH_SHOW
MODE - P: Knoten auswählen, S: Sichern od. abbr.
Data type: COptional: Yes
Call by Reference: No ( called with pass by value option)
I_TITLE - Fensterüberschrift
Data type:Optional: Yes
Call by Reference: No ( called with pass by value option)
I_TEXT_LENGTH - Länge des Texts zu PH-Knoten
Data type: SNODETEXT-TLENGTHDefault: '50'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_CALLBACK_PROGRAM - Programmname für Callback-Routinen
Data type: SY-REPIDOptional: Yes
Call by Reference: No ( called with pass by value option)
I_FORM_TOP_OF_PAGE - Unterprogramm zus. Top of Page
Data type: SLIS_FORMNAMEOptional: Yes
Call by Reference: No ( called with pass by value option)
I_NO_CONTROL - Kennzeichen: 'klassische' Anzeige ohne Control
Data type: XFELDOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for ISB_RM_PH_SHOW
NODE - Ausgewählter Knoten
Data type: SEUCOMMOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISB_RM_PH_SHOW
I_JBRPHBAUM - Baumtabelle Portfoliohierarchie
Data type: JBRPHBAUMOptional: No
Call by Reference: No ( called with pass by value option)
I_JBRNAMEDAT - Texttabelle Portfoliohierarchie
Data type: JBRNAMEDATOptional: No
Call by Reference: No ( called with pass by value option)
I_ADD_INFO_T - Tabelle Zusatzinformationen PH
Data type: RMPHAINFOOptional: Yes
Call by Reference: No ( called with pass by value option)
E_MARKED_NODES_T - Tabelle ausgewählte Knoten
Data type: SNODETEXTOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
CANCEL - 'Abbrechen' wurde gewählt.
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISB_RM_PH_SHOW 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_mode | TYPE C, " | |||
| lv_node | TYPE SEUCOMM, " | |||
| lv_cancel | TYPE SEUCOMM, " | |||
| lt_i_jbrphbaum | TYPE STANDARD TABLE OF JBRPHBAUM, " | |||
| lv_i_title | TYPE JBRPHBAUM, " | |||
| lt_i_jbrnamedat | TYPE STANDARD TABLE OF JBRNAMEDAT, " | |||
| lt_i_add_info_t | TYPE STANDARD TABLE OF RMPHAINFO, " | |||
| lv_i_text_length | TYPE SNODETEXT-TLENGTH, " '50' | |||
| lt_e_marked_nodes_t | TYPE STANDARD TABLE OF SNODETEXT, " | |||
| lv_i_callback_program | TYPE SY-REPID, " | |||
| lv_i_form_top_of_page | TYPE SLIS_FORMNAME, " | |||
| lv_i_no_control | TYPE XFELD. " |
|   CALL FUNCTION 'ISB_RM_PH_SHOW' "IS-B: RM Anzeige einer Portfoliohierarchie |
| EXPORTING | ||
| MODE | = lv_mode | |
| I_TITLE | = lv_i_title | |
| I_TEXT_LENGTH | = lv_i_text_length | |
| I_CALLBACK_PROGRAM | = lv_i_callback_program | |
| I_FORM_TOP_OF_PAGE | = lv_i_form_top_of_page | |
| I_NO_CONTROL | = lv_i_no_control | |
| IMPORTING | ||
| NODE | = lv_node | |
| TABLES | ||
| I_JBRPHBAUM | = lt_i_jbrphbaum | |
| I_JBRNAMEDAT | = lt_i_jbrnamedat | |
| I_ADD_INFO_T | = lt_i_add_info_t | |
| E_MARKED_NODES_T | = lt_e_marked_nodes_t | |
| EXCEPTIONS | ||
| CANCEL = 1 | ||
| . " ISB_RM_PH_SHOW | ||
ABAP code using 7.40 inline data declarations to call FM ISB_RM_PH_SHOW
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 TLENGTH FROM SNODETEXT INTO @DATA(ld_i_text_length). | ||||
| DATA(ld_i_text_length) | = '50'. | |||
| "SELECT single REPID FROM SY INTO @DATA(ld_i_callback_program). | ||||
Search for further information about these or an SAP related objects