SAP FM00_CHECK_ISPS Function Module for









FM00_CHECK_ISPS is a standard fm00 check isps 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 fm00 check isps FM, simply by entering the name FM00_CHECK_ISPS into the relevant SAP transaction such as SE37 or SE38.

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



Function FM00_CHECK_ISPS 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 'FM00_CHECK_ISPS'"
EXPORTING
* I_CLIENT = SY-MANDT "

IMPORTING
E_DA_ACTIV = "Separate commitment budget exists
E_MEASURE_VISIBLE = "
E_GRANT_ACTIVE = "
E_GRANT_START_HR = "
E_PS_US_ACTIVE = "
E_CL_CONTROL_ACTIVE = "
E_BUD_PER_ACTIVE = "
E_BUD_PER_START_HR = "
E_EU_ACTIV = "
E_KOM_ACTIV = "
E_FLG_ISPS_NOT_ACTIVE = "
E_FUNCTION_ACTIVE = "
E_FUNCTION_START_HR = "
E_FUND_ACTIVE = "
E_FUND_START_HR = "
E_MEASURE_ACTIVE = "
.



IMPORTING Parameters details for FM00_CHECK_ISPS

I_CLIENT -

Data type: MANDT
Default: SY-MANDT
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for FM00_CHECK_ISPS

E_DA_ACTIV - Separate commitment budget exists

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

E_MEASURE_VISIBLE -

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

E_GRANT_ACTIVE -

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

E_GRANT_START_HR -

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

E_PS_US_ACTIVE -

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

E_CL_CONTROL_ACTIVE -

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

E_BUD_PER_ACTIVE -

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

E_BUD_PER_START_HR -

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

E_EU_ACTIV -

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

E_KOM_ACTIV -

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

E_FLG_ISPS_NOT_ACTIVE -

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

E_FUNCTION_ACTIVE -

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

E_FUNCTION_START_HR -

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

E_FUND_ACTIVE -

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

E_FUND_START_HR -

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

E_MEASURE_ACTIVE -

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

Copy and paste ABAP code example for FM00_CHECK_ISPS 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_client  TYPE MANDT, "   SY-MANDT
lv_e_da_activ  TYPE MANDT, "   
lv_e_measure_visible  TYPE FM_MEASURE_VISIBLE, "   
lv_e_grant_active  TYPE FMISPS-GRANT_ACTIVE, "   
lv_e_grant_start_hr  TYPE FMISPS-GRANT_START_HR, "   
lv_e_ps_us_active  TYPE FMISPS-PS_US_ACTIVE, "   
lv_e_cl_control_active  TYPE FMISPS-VS_ACTIVE, "   
lv_e_bud_per_active  TYPE FM_BUD_PER_ACTIVE, "   
lv_e_bud_per_start_hr  TYPE FM_BUD_PER_START_HR, "   
lv_e_eu_activ  TYPE FM_BUD_PER_START_HR, "   
lv_e_kom_activ  TYPE FM_BUD_PER_START_HR, "   
lv_e_flg_isps_not_active  TYPE FM_BUD_PER_START_HR, "   
lv_e_function_active  TYPE FMISPS-FUNCTION_ACTIVE, "   
lv_e_function_start_hr  TYPE FMISPS-FUNCTION_STARTHR, "   
lv_e_fund_active  TYPE FMISPS-FUND_ACTIVE, "   
lv_e_fund_start_hr  TYPE FMISPS-FUND_START_HR, "   
lv_e_measure_active  TYPE FMISPS-MEASURE_ACTIVE. "   

  CALL FUNCTION 'FM00_CHECK_ISPS'  "
    EXPORTING
         I_CLIENT = lv_i_client
    IMPORTING
         E_DA_ACTIV = lv_e_da_activ
         E_MEASURE_VISIBLE = lv_e_measure_visible
         E_GRANT_ACTIVE = lv_e_grant_active
         E_GRANT_START_HR = lv_e_grant_start_hr
         E_PS_US_ACTIVE = lv_e_ps_us_active
         E_CL_CONTROL_ACTIVE = lv_e_cl_control_active
         E_BUD_PER_ACTIVE = lv_e_bud_per_active
         E_BUD_PER_START_HR = lv_e_bud_per_start_hr
         E_EU_ACTIV = lv_e_eu_activ
         E_KOM_ACTIV = lv_e_kom_activ
         E_FLG_ISPS_NOT_ACTIVE = lv_e_flg_isps_not_active
         E_FUNCTION_ACTIVE = lv_e_function_active
         E_FUNCTION_START_HR = lv_e_function_start_hr
         E_FUND_ACTIVE = lv_e_fund_active
         E_FUND_START_HR = lv_e_fund_start_hr
         E_MEASURE_ACTIVE = lv_e_measure_active
. " FM00_CHECK_ISPS




ABAP code using 7.40 inline data declarations to call FM FM00_CHECK_ISPS

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_client) = SY-MANDT.
 
 
 
"SELECT single GRANT_ACTIVE FROM FMISPS INTO @DATA(ld_e_grant_active).
 
"SELECT single GRANT_START_HR FROM FMISPS INTO @DATA(ld_e_grant_start_hr).
 
"SELECT single PS_US_ACTIVE FROM FMISPS INTO @DATA(ld_e_ps_us_active).
 
"SELECT single VS_ACTIVE FROM FMISPS INTO @DATA(ld_e_cl_control_active).
 
 
 
 
 
 
"SELECT single FUNCTION_ACTIVE FROM FMISPS INTO @DATA(ld_e_function_active).
 
"SELECT single FUNCTION_STARTHR FROM FMISPS INTO @DATA(ld_e_function_start_hr).
 
"SELECT single FUND_ACTIVE FROM FMISPS INTO @DATA(ld_e_fund_active).
 
"SELECT single FUND_START_HR FROM FMISPS INTO @DATA(ld_e_fund_start_hr).
 
"SELECT single MEASURE_ACTIVE FROM FMISPS INTO @DATA(ld_e_measure_active).
 


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!