SAP ISH_ADDRESS_OO_SUBSCREEN_BP Function Module for
ISH_ADDRESS_OO_SUBSCREEN_BP is a standard ish address oo subscreen bp 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 address oo subscreen bp FM, simply by entering the name ISH_ADDRESS_OO_SUBSCREEN_BP into the relevant SAP transaction such as SE37 or SE38.
Function Group: NADR
Program Name: SAPLNADR
Main Program: SAPLNADR
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISH_ADDRESS_OO_SUBSCREEN_BP 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_ADDRESS_OO_SUBSCREEN_BP'".
EXPORTING
* I_EINRI = '*' "Institution (for Screen Modification)
* I_ADRESS_NUM = ' ' "Address
* I_ADDR_OBJ = ' ' "IS-H: Address object
I_INSTANCE = "Address
* I_VCODE = 'UPD' "Processing mode
* I_ENJOY = ' ' "Enjoy Transaction (ON/OFF)
* I_NPAP_SHORT = ' ' "Provisional Patient: Short Version
* I_FRG = ' ' "
* I_REPID = ' ' "If More than one Address Screen on a Screen -> F2
* I_DYNNR = ' ' "If More than one Address Screen on a Screen -> F2
* I_DELETE_REPID = ' ' "-> F2
IMPORTING
E_REPID = "Program Name of Subscreen
E_DYNNR = "Subscreen Number
E_CURSOR = "Cursor Position on Screen
CHANGING
C_ERRORHANDLER = "Instance for Error Handling
EXCEPTIONS
MISSING_INSTANCE = 1
Customer Function user exits
Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.EXIT_SAPLNADR_001 IS-H: Create Address String from Address Data
IMPORTING Parameters details for ISH_ADDRESS_OO_SUBSCREEN_BP
I_EINRI - Institution (for Screen Modification)
Data type: EINRIDefault: '*'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_ADRESS_NUM - Address
Data type: ADRNRDefault: SPACE
Optional: No
Call by Reference: No ( called with pass by value option)
I_ADDR_OBJ - IS-H: Address object
Data type: ISH_ADROBJDefault: SPACE
Optional: No
Call by Reference: No ( called with pass by value option)
I_INSTANCE - Address
Data type: CL_ISH_ADDRESSOptional: No
Call by Reference: No ( called with pass by value option)
I_VCODE - Processing mode
Data type: TNDYM-VCODEDefault: 'UPD'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_ENJOY - Enjoy Transaction (ON/OFF)
Data type: ISH_ON_OFFDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_NPAP_SHORT - Provisional Patient: Short Version
Data type: ISH_ON_OFFDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_FRG -
Data type: ISH_ON_OFFDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_REPID - If More than one Address Screen on a Screen -> F2
Data type: SY-REPIDDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_DYNNR - If More than one Address Screen on a Screen -> F2
Data type: SY-DYNNRDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_DELETE_REPID - -> F2
Data type: SY-REPIDDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISH_ADDRESS_OO_SUBSCREEN_BP
E_REPID - Program Name of Subscreen
Data type: SY-REPIDOptional: No
Call by Reference: No ( called with pass by value option)
E_DYNNR - Subscreen Number
Data type: SY-DYNNROptional: No
Call by Reference: No ( called with pass by value option)
E_CURSOR - Cursor Position on Screen
Data type: ISH_CURSOROptional: No
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for ISH_ADDRESS_OO_SUBSCREEN_BP
C_ERRORHANDLER - Instance for Error Handling
Data type: CL_ISHMED_ERRORHANDLINGOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
MISSING_INSTANCE - No Instance Transferred
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISH_ADDRESS_OO_SUBSCREEN_BP 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_e_repid | TYPE SY-REPID, " | |||
| lv_i_einri | TYPE EINRI, " '*' | |||
| lv_c_errorhandler | TYPE CL_ISHMED_ERRORHANDLING, " | |||
| lv_missing_instance | TYPE CL_ISHMED_ERRORHANDLING, " | |||
| lv_i_adress_num | TYPE ADRNR, " SPACE | |||
| lv_i_addr_obj | TYPE ISH_ADROBJ, " SPACE | |||
| lv_e_dynnr | TYPE SY-DYNNR, " | |||
| lv_i_instance | TYPE CL_ISH_ADDRESS, " | |||
| lv_i_vcode | TYPE TNDYM-VCODE, " 'UPD' | |||
| lv_e_cursor | TYPE ISH_CURSOR, " | |||
| lv_i_enjoy | TYPE ISH_ON_OFF, " SPACE | |||
| lv_i_npap_short | TYPE ISH_ON_OFF, " SPACE | |||
| lv_i_frg | TYPE ISH_ON_OFF, " SPACE | |||
| lv_i_repid | TYPE SY-REPID, " SPACE | |||
| lv_i_dynnr | TYPE SY-DYNNR, " SPACE | |||
| lv_i_delete_repid | TYPE SY-REPID. " SPACE |
|   CALL FUNCTION 'ISH_ADDRESS_OO_SUBSCREEN_BP' " |
| EXPORTING | ||
| I_EINRI | = lv_i_einri | |
| I_ADRESS_NUM | = lv_i_adress_num | |
| I_ADDR_OBJ | = lv_i_addr_obj | |
| I_INSTANCE | = lv_i_instance | |
| I_VCODE | = lv_i_vcode | |
| I_ENJOY | = lv_i_enjoy | |
| I_NPAP_SHORT | = lv_i_npap_short | |
| I_FRG | = lv_i_frg | |
| I_REPID | = lv_i_repid | |
| I_DYNNR | = lv_i_dynnr | |
| I_DELETE_REPID | = lv_i_delete_repid | |
| IMPORTING | ||
| E_REPID | = lv_e_repid | |
| E_DYNNR | = lv_e_dynnr | |
| E_CURSOR | = lv_e_cursor | |
| CHANGING | ||
| C_ERRORHANDLER | = lv_c_errorhandler | |
| EXCEPTIONS | ||
| MISSING_INSTANCE = 1 | ||
| . " ISH_ADDRESS_OO_SUBSCREEN_BP | ||
ABAP code using 7.40 inline data declarations to call FM ISH_ADDRESS_OO_SUBSCREEN_BP
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 REPID FROM SY INTO @DATA(ld_e_repid). | ||||
| DATA(ld_i_einri) | = '*'. | |||
| DATA(ld_i_adress_num) | = ' '. | |||
| DATA(ld_i_addr_obj) | = ' '. | |||
| "SELECT single DYNNR FROM SY INTO @DATA(ld_e_dynnr). | ||||
| "SELECT single VCODE FROM TNDYM INTO @DATA(ld_i_vcode). | ||||
| DATA(ld_i_vcode) | = 'UPD'. | |||
| DATA(ld_i_enjoy) | = ' '. | |||
| DATA(ld_i_npap_short) | = ' '. | |||
| DATA(ld_i_frg) | = ' '. | |||
| "SELECT single REPID FROM SY INTO @DATA(ld_i_repid). | ||||
| DATA(ld_i_repid) | = ' '. | |||
| "SELECT single DYNNR FROM SY INTO @DATA(ld_i_dynnr). | ||||
| DATA(ld_i_dynnr) | = ' '. | |||
| "SELECT single REPID FROM SY INTO @DATA(ld_i_delete_repid). | ||||
| DATA(ld_i_delete_repid) | = ' '. | |||
Search for further information about these or an SAP related objects