SAP ISP_ISZ_DETAIL Function Module for IS-M/AM: Advertiser Assignment Details
ISP_ISZ_DETAIL is a standard isp isz detail 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: Advertiser Assignment Details 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 isz detail FM, simply by entering the name ISP_ISZ_DETAIL 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_ISZ_DETAIL 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_ISZ_DETAIL'"IS-M/AM: Advertiser Assignment Details.
EXPORTING
* PAR_LEVEL_AUF_IN = "
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
PAR_RJHAPTYP = "IS-M/AM: Structure for Item Category Control
* PAR_RJHABPZ_ITAB = "IS-M/AM: Sales Document - Booking Unit Assignment
PAR_INSZ_NR_IN = "IS-M: Advertiser assignment number
CHANGING
PAR_RJHAISZ_ITAB = "IS-M/AM: Sales Document - Advertiser Assignment
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
IMPORTING Parameters details for ISP_ISZ_DETAIL
PAR_LEVEL_AUF_IN -
Data type:Optional: 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)
PAR_RJHAPTYP - IS-M/AM: Structure for Item Category Control
Data type: RJHAPTYPOptional: No
Call by Reference: No ( called with pass by value option)
PAR_RJHABPZ_ITAB - IS-M/AM: Sales Document - Booking Unit Assignment
Data type: RJHABPZ_TABOptional: Yes
Call by Reference: Yes
PAR_INSZ_NR_IN - IS-M: Advertiser assignment number
Data type: RJHAISZ-INSZ_NROptional: No
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for ISP_ISZ_DETAIL
PAR_RJHAISZ_ITAB - IS-M/AM: Sales Document - Advertiser Assignment
Data type: RJHAISZ_TABOptional: No
Call by Reference: Yes
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)
Copy and paste ABAP code example for ISP_ISZ_DETAIL 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_par_level_auf_in | TYPE STRING, " | |||
| lv_par_rjhaisz_itab | TYPE RJHAISZ_TAB, " | |||
| lv_par_tj180 | TYPE TJ180, " | |||
| lv_par_rjhagpz_itab | TYPE RJHAGPZ_TAB, " | |||
| lv_par_rjhallg | TYPE RJHALLG, " | |||
| lv_par_rjgtsadr_itab | TYPE RJGTSADR_TAB, " | |||
| lv_par_rjhak | TYPE RJHAK, " | |||
| lv_par_rjgtadre_itab | TYPE RJGTADRE_TAB, " | |||
| lv_par_rjhap | TYPE RJHAP, " | |||
| lv_par_flg_update | TYPE XFELD, " | |||
| lv_par_rjhaptyp | TYPE RJHAPTYP, " | |||
| lv_par_rjhabpz_itab | TYPE RJHABPZ_TAB, " | |||
| lv_par_insz_nr_in | TYPE RJHAISZ-INSZ_NR. " |
|   CALL FUNCTION 'ISP_ISZ_DETAIL' "IS-M/AM: Advertiser Assignment Details |
| EXPORTING | ||
| PAR_LEVEL_AUF_IN | = lv_par_level_auf_in | |
| PAR_TJ180 | = lv_par_tj180 | |
| PAR_RJHALLG | = lv_par_rjhallg | |
| PAR_RJHAK | = lv_par_rjhak | |
| PAR_RJHAP | = lv_par_rjhap | |
| PAR_RJHAPTYP | = lv_par_rjhaptyp | |
| PAR_RJHABPZ_ITAB | = lv_par_rjhabpz_itab | |
| PAR_INSZ_NR_IN | = lv_par_insz_nr_in | |
| CHANGING | ||
| PAR_RJHAISZ_ITAB | = lv_par_rjhaisz_itab | |
| 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 | |
| . " ISP_ISZ_DETAIL | ||
ABAP code using 7.40 inline data declarations to call FM ISP_ISZ_DETAIL
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 INSZ_NR FROM RJHAISZ INTO @DATA(ld_par_insz_nr_in). | ||||
Search for further information about these or an SAP related objects