SAP ISH_DP_OCC_PLAN_LIST_DATA_GET Function Module for









ISH_DP_OCC_PLAN_LIST_DATA_GET is a standard ish dp occ plan list data get 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 dp occ plan list data get FM, simply by entering the name ISH_DP_OCC_PLAN_LIST_DATA_GET into the relevant SAP transaction such as SE37 or SE38.

Function Group: N_WP_009
Program Name: SAPLN_WP_009
Main Program: SAPLN_WP_009
Appliation area: N
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function ISH_DP_OCC_PLAN_LIST_DATA_GET 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_DP_OCC_PLAN_LIST_DATA_GET'"
EXPORTING
* I_GET_NEW_LISTS = 'X' "
* I_INCLUDING_FREE_BEDS = ' ' "
I_DISPVAR = "

TABLES
* E_OCCUPANCY_LIST = "
* E_ARRIVAL_LIST = "
* E_DEPARTURE_LIST = "
* E_OCCPLANNING_LIST = "Occupancy Characteristic
* I_SELECTION_CRITERIA = "ABAP/4: General Structure for PARAMETERS and SELECT-OPTIONS
* I_REFRESH_CASE = "
* I_ISH_OBJECTS = "

EXCEPTIONS
NO_MOVEMENTS_EXIST = 1 NO_AUTHORITY = 2
.



IMPORTING Parameters details for ISH_DP_OCC_PLAN_LIST_DATA_GET

I_GET_NEW_LISTS -

Data type: ISH_ON_OFF
Default: 'X'
Optional: Yes
Call by Reference: Yes

I_INCLUDING_FREE_BEDS -

Data type: ISH_ON_OFF
Default: SPACE
Optional: Yes
Call by Reference: Yes

I_DISPVAR -

Data type: LVC_T_FCAT
Optional: No
Call by Reference: Yes

TABLES Parameters details for ISH_DP_OCC_PLAN_LIST_DATA_GET

E_OCCUPANCY_LIST -

Data type: ISH_T_OCCUPANCY_LIST
Optional: Yes
Call by Reference: No ( called with pass by value option)

E_ARRIVAL_LIST -

Data type: ISH_T_ARRIVAL_LIST
Optional: Yes
Call by Reference: No ( called with pass by value option)

E_DEPARTURE_LIST -

Data type: ISH_T_DEPARTURE_LIST
Optional: Yes
Call by Reference: No ( called with pass by value option)

E_OCCPLANNING_LIST - Occupancy Characteristic

Data type: ISH_T_OCCPLANNING_LIST
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_SELECTION_CRITERIA - ABAP/4: General Structure for PARAMETERS and SELECT-OPTIONS

Data type: RSPARAMS
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_REFRESH_CASE -

Data type: RNRANGEFALNR
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_ISH_OBJECTS -

Data type: ISH_T_DRAG_DROP_DATA
Optional: Yes
Call by Reference: Yes

EXCEPTIONS details

NO_MOVEMENTS_EXIST -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

NO_AUTHORITY -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for ISH_DP_OCC_PLAN_LIST_DATA_GET 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_i_get_new_lists  TYPE ISH_ON_OFF, "   'X'
lt_e_occupancy_list  TYPE STANDARD TABLE OF ISH_T_OCCUPANCY_LIST, "   
lv_no_movements_exist  TYPE ISH_T_OCCUPANCY_LIST, "   
lv_no_authority  TYPE ISH_T_OCCUPANCY_LIST, "   
lt_e_arrival_list  TYPE STANDARD TABLE OF ISH_T_ARRIVAL_LIST, "   
lv_i_including_free_beds  TYPE ISH_ON_OFF, "   SPACE
lv_i_dispvar  TYPE LVC_T_FCAT, "   
lt_e_departure_list  TYPE STANDARD TABLE OF ISH_T_DEPARTURE_LIST, "   
lt_e_occplanning_list  TYPE STANDARD TABLE OF ISH_T_OCCPLANNING_LIST, "   
lt_i_selection_criteria  TYPE STANDARD TABLE OF RSPARAMS, "   
lt_i_refresh_case  TYPE STANDARD TABLE OF RNRANGEFALNR, "   
lt_i_ish_objects  TYPE STANDARD TABLE OF ISH_T_DRAG_DROP_DATA. "   

  CALL FUNCTION 'ISH_DP_OCC_PLAN_LIST_DATA_GET'  "
    EXPORTING
         I_GET_NEW_LISTS = lv_i_get_new_lists
         I_INCLUDING_FREE_BEDS = lv_i_including_free_beds
         I_DISPVAR = lv_i_dispvar
    TABLES
         E_OCCUPANCY_LIST = lt_e_occupancy_list
         E_ARRIVAL_LIST = lt_e_arrival_list
         E_DEPARTURE_LIST = lt_e_departure_list
         E_OCCPLANNING_LIST = lt_e_occplanning_list
         I_SELECTION_CRITERIA = lt_i_selection_criteria
         I_REFRESH_CASE = lt_i_refresh_case
         I_ISH_OBJECTS = lt_i_ish_objects
    EXCEPTIONS
        NO_MOVEMENTS_EXIST = 1
        NO_AUTHORITY = 2
. " ISH_DP_OCC_PLAN_LIST_DATA_GET




ABAP code using 7.40 inline data declarations to call FM ISH_DP_OCC_PLAN_LIST_DATA_GET

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.

DATA(ld_i_get_new_lists) = 'X'.
 
 
 
 
 
DATA(ld_i_including_free_beds) = ' '.
 
 
 
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!