SAP ISHMED_PLANDISP_OBJEKTE Function Module for









ISHMED_PLANDISP_OBJEKTE is a standard ishmed plandisp objekte 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 ishmed plandisp objekte FM, simply by entering the name ISHMED_PLANDISP_OBJEKTE into the relevant SAP transaction such as SE37 or SE38.

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



Function ISHMED_PLANDISP_OBJEKTE 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 'ISHMED_PLANDISP_OBJEKTE'"
EXPORTING
I_EINRI = "
* I_BAU_VALID_INTERVAL = 'X' "
* I_CONS_DAY_PROG = 'X' "
I_ORGID = "
I_DATVO = "
I_DATBI = "
* I_REIKZ = "
* I_SKALA = "
* I_INTPK = "
* I_HANDK = "
* I_FRDBK = "

TABLES
* TA_N1POB = "
* TA_N1VFZ = "
* TA_NPOB = "
.



IMPORTING Parameters details for ISHMED_PLANDISP_OBJEKTE

I_EINRI -

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

I_BAU_VALID_INTERVAL -

Data type: ISH_ON_OFF
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_CONS_DAY_PROG -

Data type: RNT40-MARK
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_ORGID -

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

I_DATVO -

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

I_DATBI -

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

I_REIKZ -

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

I_SKALA -

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

I_INTPK -

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

I_HANDK -

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

I_FRDBK -

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

TABLES Parameters details for ISHMED_PLANDISP_OBJEKTE

TA_N1POB -

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

TA_N1VFZ -

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

TA_NPOB -

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

Copy and paste ABAP code example for ISHMED_PLANDISP_OBJEKTE 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_einri  TYPE NORG-EINRI, "   
lt_ta_n1pob  TYPE STANDARD TABLE OF SN1POB, "   
lv_i_bau_valid_interval  TYPE ISH_ON_OFF, "   'X'
lv_i_cons_day_prog  TYPE RNT40-MARK, "   'X'
lv_i_orgid  TYPE NORG-ORGID, "   
lt_ta_n1vfz  TYPE STANDARD TABLE OF SN1VFZ, "   
lv_i_datvo  TYPE SCSINTERVA-DATE_FROM, "   
lt_ta_npob  TYPE STANDARD TABLE OF NPOB, "   
lv_i_datbi  TYPE SCSINTERVA-DATE_TO, "   
lv_i_reikz  TYPE SN1POB-REIKZ, "   
lv_i_skala  TYPE SN1POB-SKALA, "   
lv_i_intpk  TYPE SN1VFZ-INTPK, "   
lv_i_handk  TYPE SN1VFZ-HANDK, "   
lv_i_frdbk  TYPE SN1VFZ. "   

  CALL FUNCTION 'ISHMED_PLANDISP_OBJEKTE'  "
    EXPORTING
         I_EINRI = lv_i_einri
         I_BAU_VALID_INTERVAL = lv_i_bau_valid_interval
         I_CONS_DAY_PROG = lv_i_cons_day_prog
         I_ORGID = lv_i_orgid
         I_DATVO = lv_i_datvo
         I_DATBI = lv_i_datbi
         I_REIKZ = lv_i_reikz
         I_SKALA = lv_i_skala
         I_INTPK = lv_i_intpk
         I_HANDK = lv_i_handk
         I_FRDBK = lv_i_frdbk
    TABLES
         TA_N1POB = lt_ta_n1pob
         TA_N1VFZ = lt_ta_n1vfz
         TA_NPOB = lt_ta_npob
. " ISHMED_PLANDISP_OBJEKTE




ABAP code using 7.40 inline data declarations to call FM ISHMED_PLANDISP_OBJEKTE

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 EINRI FROM NORG INTO @DATA(ld_i_einri).
 
 
DATA(ld_i_bau_valid_interval) = 'X'.
 
"SELECT single MARK FROM RNT40 INTO @DATA(ld_i_cons_day_prog).
DATA(ld_i_cons_day_prog) = 'X'.
 
"SELECT single ORGID FROM NORG INTO @DATA(ld_i_orgid).
 
 
"SELECT single DATE_FROM FROM SCSINTERVA INTO @DATA(ld_i_datvo).
 
 
"SELECT single DATE_TO FROM SCSINTERVA INTO @DATA(ld_i_datbi).
 
"SELECT single REIKZ FROM SN1POB INTO @DATA(ld_i_reikz).
 
"SELECT single SKALA FROM SN1POB INTO @DATA(ld_i_skala).
 
"SELECT single INTPK FROM SN1VFZ INTO @DATA(ld_i_intpk).
 
"SELECT single HANDK FROM SN1VFZ INTO @DATA(ld_i_handk).
 
 


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!