SAP ISM_OL_SOLL_KZ_GET_PREPARE_1 Function Module for IS-M: Online Determine Planned Gross Impressions
ISM_OL_SOLL_KZ_GET_PREPARE_1 is a standard ism ol soll kz get prepare 1 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: Online Determine Planned Gross Impressions 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 ism ol soll kz get prepare 1 FM, simply by entering the name ISM_OL_SOLL_KZ_GET_PREPARE_1 into the relevant SAP transaction such as SE37 or SE38.
Function Group: JH13
Program Name: SAPLJH13
Main Program: SAPLJH13
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISM_OL_SOLL_KZ_GET_PREPARE_1 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 'ISM_OL_SOLL_KZ_GET_PREPARE_1'"IS-M: Online Determine Planned Gross Impressions.
EXPORTING
* PT_RJHAIKZ = "
* PS_RJHAP = "
PS_RJHAPO = "
* PT_RJHAUO = "
PT_RJHAE = "
PT_RJHAEO = "
* PT_RJHATGZ = "
PV_UR_BELEINH = "IS-M: Initial booking unit of the OPM item
IMPORTING
PV_S_TERMIN_FIRST = "IS-M: Planned publication date
PV_S_TERMIN_LAST = "IS-M: Planned publication date
PV_RJHAEO_REL_CNT = "
PT_RJHAEO_REL = "
PT_BOOKED = "IS-M: Online Planning Booking TAB
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_SAPLJH13_001 IS-M/AM: Online Planning Determine Actual Gross Impressions
EXIT_SAPLJH13_002 IS-MAM: Online Planning Distribute Gross Impressions Amongst Target Groups
EXIT_SAPLJH13_003 IS-MAM: Online Planning Determine Target Gross Impressions
EXIT_SAPLJH13_004 IS-M/AM: Online Planning Determine Target Gross Impressions Remaining
EXIT_SAPLJH13_005 IS-M/AM: Online Planning ALV
EXIT_SAPLJH13_006 IS-M/AM: Online Planning ALV Bookings
EXIT_SAPLJH13_007 IS-M/AM: Online Planning Color Key
EXIT_SAPLJH13_008 IS-MAM: Online Planning Fill Order Grid
EXIT_SAPLJH13_009 IS-MAM: Online Planning Fill Fixed Space Grid
EXIT_SAPLJH13_010 IS-M/AM: Online Planning Other Order Information
EXIT_SAPLJH13_011 IS-M/AM: Online Planning Other Fixed Space Info
IMPORTING Parameters details for ISM_OL_SOLL_KZ_GET_PREPARE_1
PT_RJHAIKZ -
Data type: JHA1_RJHAIKZ_TABOptional: Yes
Call by Reference: Yes
PS_RJHAP -
Data type: JHA1_RJHAP_STROptional: Yes
Call by Reference: Yes
PS_RJHAPO -
Data type: JHA1_RJHAPO_STROptional: No
Call by Reference: Yes
PT_RJHAUO -
Data type: JHA1_RJHAUO_TABOptional: Yes
Call by Reference: Yes
PT_RJHAE -
Data type: JHA1_RJHAE_TABOptional: No
Call by Reference: Yes
PT_RJHAEO -
Data type: JHA1_RJHAEO_TABOptional: No
Call by Reference: Yes
PT_RJHATGZ -
Data type: JHA1_RJHATGZ_TABOptional: Yes
Call by Reference: Yes
PV_UR_BELEINH - IS-M: Initial booking unit of the OPM item
Data type: UR_BELEINHOptional: No
Call by Reference: Yes
EXPORTING Parameters details for ISM_OL_SOLL_KZ_GET_PREPARE_1
PV_S_TERMIN_FIRST - IS-M: Planned publication date
Data type: S_TERMINOptional: No
Call by Reference: Yes
PV_S_TERMIN_LAST - IS-M: Planned publication date
Data type: S_TERMINOptional: No
Call by Reference: Yes
PV_RJHAEO_REL_CNT -
Data type: IOptional: No
Call by Reference: Yes
PT_RJHAEO_REL -
Data type: JHA1_RJHAEO_TABOptional: No
Call by Reference: Yes
PT_BOOKED - IS-M: Online Planning Booking TAB
Data type: RJHA_OL_DISPO_BOOKED_TABOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISM_OL_SOLL_KZ_GET_PREPARE_1 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_pt_rjhaikz | TYPE JHA1_RJHAIKZ_TAB, " | |||
| lv_pv_s_termin_first | TYPE S_TERMIN, " | |||
| lv_ps_rjhap | TYPE JHA1_RJHAP_STR, " | |||
| lv_pv_s_termin_last | TYPE S_TERMIN, " | |||
| lv_ps_rjhapo | TYPE JHA1_RJHAPO_STR, " | |||
| lv_pv_rjhaeo_rel_cnt | TYPE I, " | |||
| lv_pt_rjhauo | TYPE JHA1_RJHAUO_TAB, " | |||
| lv_pt_rjhaeo_rel | TYPE JHA1_RJHAEO_TAB, " | |||
| lv_pt_rjhae | TYPE JHA1_RJHAE_TAB, " | |||
| lv_pt_booked | TYPE RJHA_OL_DISPO_BOOKED_TAB, " | |||
| lv_pt_rjhaeo | TYPE JHA1_RJHAEO_TAB, " | |||
| lv_pt_rjhatgz | TYPE JHA1_RJHATGZ_TAB, " | |||
| lv_pv_ur_beleinh | TYPE UR_BELEINH. " |
|   CALL FUNCTION 'ISM_OL_SOLL_KZ_GET_PREPARE_1' "IS-M: Online Determine Planned Gross Impressions |
| EXPORTING | ||
| PT_RJHAIKZ | = lv_pt_rjhaikz | |
| PS_RJHAP | = lv_ps_rjhap | |
| PS_RJHAPO | = lv_ps_rjhapo | |
| PT_RJHAUO | = lv_pt_rjhauo | |
| PT_RJHAE | = lv_pt_rjhae | |
| PT_RJHAEO | = lv_pt_rjhaeo | |
| PT_RJHATGZ | = lv_pt_rjhatgz | |
| PV_UR_BELEINH | = lv_pv_ur_beleinh | |
| IMPORTING | ||
| PV_S_TERMIN_FIRST | = lv_pv_s_termin_first | |
| PV_S_TERMIN_LAST | = lv_pv_s_termin_last | |
| PV_RJHAEO_REL_CNT | = lv_pv_rjhaeo_rel_cnt | |
| PT_RJHAEO_REL | = lv_pt_rjhaeo_rel | |
| PT_BOOKED | = lv_pt_booked | |
| . " ISM_OL_SOLL_KZ_GET_PREPARE_1 | ||
ABAP code using 7.40 inline data declarations to call FM ISM_OL_SOLL_KZ_GET_PREPARE_1
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