SAP ISP_BE_SELECT Function Module for IS-M/AM: Select Voucher Copy Recipient
ISP_BE_SELECT is a standard isp be select 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-M/AM: Select Voucher Copy Recipient 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 isp be select FM, simply by entering the name ISP_BE_SELECT into the relevant SAP transaction such as SE37 or SE38.
Function Group: JHPD
Program Name: SAPLJHPD
Main Program: SAPLJHPD
Appliation area: J
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISP_BE_SELECT 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 'ISP_BE_SELECT'"IS-M/AM: Select Voucher Copy Recipient.
EXPORTING
PAR_LEVEL_AUF_IN = "
PAR_RJHAEA_ITAB = "IS-M/AM: Order-Publishing-Media-Sub-Item-Sch.Line Display
* PAR_RJHAES_ITAB = "IS-M/AM: Order-Publishing-Media Sub-Item - AI Schedule Line
* PAR_RJHAEV_ITAB = "IS-M: Order-publishing-media sub-item distribution sched.lne
* PAR_FLG_FIRST_IN = "
* PAR_EIN_NR_IN = "IS-M: Schedule Line
* PAR_UPOS_NR_IN = "IS-M: Order Sub-Item Number
* PAR_STATUSK_IN = "IS-M: Status
PAR_TJ180 = "Initial Values of Transaction in IS-M
PAR_RJHALLG = "IS-M/AM: General Control Structure for Order
PAR_RJHAK = "IS-M/AM: OPM Header Structure
PAR_RJHAP = "IS-M/AM: Order-Publishing-Media Item Structure
CHANGING
PAR_RJHAGPZ_ITAB = "IS-M/AM: Sales Document - Business Partner Assignment
PAR_RJGTSADR_ITAB = "IS-M: Address
PAR_RJGTADRE_ITAB = "IS-M: Address - Print Formatting
PAR_FLG_UPDATE = "Checkbox Field
EXCEPTIONS
KEINE_EINTEILUNG = 1
IMPORTING Parameters details for ISP_BE_SELECT
PAR_LEVEL_AUF_IN -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
PAR_RJHAEA_ITAB - IS-M/AM: Order-Publishing-Media-Sub-Item-Sch.Line Display
Data type: RJHAEA_TABOptional: No
Call by Reference: Yes
PAR_RJHAES_ITAB - IS-M/AM: Order-Publishing-Media Sub-Item - AI Schedule Line
Data type: RJHAES_TABOptional: Yes
Call by Reference: Yes
PAR_RJHAEV_ITAB - IS-M: Order-publishing-media sub-item distribution sched.lne
Data type: RJHAEV_TABOptional: Yes
Call by Reference: Yes
PAR_FLG_FIRST_IN -
Data type:Optional: Yes
Call by Reference: No ( called with pass by value option)
PAR_EIN_NR_IN - IS-M: Schedule Line
Data type: RJHAE-EIN_NROptional: Yes
Call by Reference: No ( called with pass by value option)
PAR_UPOS_NR_IN - IS-M: Order Sub-Item Number
Data type: RJHAUA-UPOS_NROptional: Yes
Call by Reference: No ( called with pass by value option)
PAR_STATUSK_IN - IS-M: Status
Data type: RJHAP-STATUSKOptional: Yes
Call by Reference: No ( called with pass by value option)
PAR_TJ180 - Initial Values of Transaction in IS-M
Data type: TJ180Optional: No
Call by Reference: No ( called with pass by value option)
PAR_RJHALLG - IS-M/AM: General Control Structure for Order
Data type: RJHALLGOptional: No
Call by Reference: No ( called with pass by value option)
PAR_RJHAK - IS-M/AM: OPM Header Structure
Data type: RJHAKOptional: No
Call by Reference: No ( called with pass by value option)
PAR_RJHAP - IS-M/AM: Order-Publishing-Media Item Structure
Data type: RJHAPOptional: No
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for ISP_BE_SELECT
PAR_RJHAGPZ_ITAB - IS-M/AM: Sales Document - Business Partner Assignment
Data type: RJHAGPZ_TABOptional: No
Call by Reference: Yes
PAR_RJGTSADR_ITAB - IS-M: Address
Data type: RJGTSADR_TABOptional: No
Call by Reference: Yes
PAR_RJGTADRE_ITAB - IS-M: Address - Print Formatting
Data type: RJGTADRE_TABOptional: No
Call by Reference: Yes
PAR_FLG_UPDATE - Checkbox Field
Data type: XFELDOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
KEINE_EINTEILUNG -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISP_BE_SELECT 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_keine_einteilung | TYPE STRING, " | |||
| lv_par_level_auf_in | TYPE STRING, " | |||
| lv_par_rjhagpz_itab | TYPE RJHAGPZ_TAB, " | |||
| lv_par_rjhaea_itab | TYPE RJHAEA_TAB, " | |||
| lv_par_rjhaes_itab | TYPE RJHAES_TAB, " | |||
| lv_par_rjhaev_itab | TYPE RJHAEV_TAB, " | |||
| lv_par_flg_first_in | TYPE RJHAEV_TAB, " | |||
| lv_par_rjgtsadr_itab | TYPE RJGTSADR_TAB, " | |||
| lv_par_ein_nr_in | TYPE RJHAE-EIN_NR, " | |||
| lv_par_rjgtadre_itab | TYPE RJGTADRE_TAB, " | |||
| lv_par_flg_update | TYPE XFELD, " | |||
| lv_par_upos_nr_in | TYPE RJHAUA-UPOS_NR, " | |||
| lv_par_statusk_in | TYPE RJHAP-STATUSK, " | |||
| lv_par_tj180 | TYPE TJ180, " | |||
| lv_par_rjhallg | TYPE RJHALLG, " | |||
| lv_par_rjhak | TYPE RJHAK, " | |||
| lv_par_rjhap | TYPE RJHAP. " |
|   CALL FUNCTION 'ISP_BE_SELECT' "IS-M/AM: Select Voucher Copy Recipient |
| EXPORTING | ||
| PAR_LEVEL_AUF_IN | = lv_par_level_auf_in | |
| PAR_RJHAEA_ITAB | = lv_par_rjhaea_itab | |
| PAR_RJHAES_ITAB | = lv_par_rjhaes_itab | |
| PAR_RJHAEV_ITAB | = lv_par_rjhaev_itab | |
| PAR_FLG_FIRST_IN | = lv_par_flg_first_in | |
| PAR_EIN_NR_IN | = lv_par_ein_nr_in | |
| PAR_UPOS_NR_IN | = lv_par_upos_nr_in | |
| PAR_STATUSK_IN | = lv_par_statusk_in | |
| PAR_TJ180 | = lv_par_tj180 | |
| PAR_RJHALLG | = lv_par_rjhallg | |
| PAR_RJHAK | = lv_par_rjhak | |
| PAR_RJHAP | = lv_par_rjhap | |
| CHANGING | ||
| PAR_RJHAGPZ_ITAB | = lv_par_rjhagpz_itab | |
| PAR_RJGTSADR_ITAB | = lv_par_rjgtsadr_itab | |
| PAR_RJGTADRE_ITAB | = lv_par_rjgtadre_itab | |
| PAR_FLG_UPDATE | = lv_par_flg_update | |
| EXCEPTIONS | ||
| KEINE_EINTEILUNG = 1 | ||
| . " ISP_BE_SELECT | ||
ABAP code using 7.40 inline data declarations to call FM ISP_BE_SELECT
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 EIN_NR FROM RJHAE INTO @DATA(ld_par_ein_nr_in). | ||||
| "SELECT single UPOS_NR FROM RJHAUA INTO @DATA(ld_par_upos_nr_in). | ||||
| "SELECT single STATUSK FROM RJHAP INTO @DATA(ld_par_statusk_in). | ||||
Search for further information about these or an SAP related objects