SAP FM_CVP_AUTH_CHECK_COVER_POOL Function Module for









FM_CVP_AUTH_CHECK_COVER_POOL is a standard fm cvp auth check cover pool 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 fm cvp auth check cover pool FM, simply by entering the name FM_CVP_AUTH_CHECK_COVER_POOL into the relevant SAP transaction such as SE37 or SE38.

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



Function FM_CVP_AUTH_CHECK_COVER_POOL 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 'FM_CVP_AUTH_CHECK_COVER_POOL'"
EXPORTING
I_F_GLOBAL = "
* I_FLG_ISSUE_MESSAGE = 'X' "
* I_COVER_POOL = "
* I_FLG_POOL = "
* I_FLG_ALL_POOLS = "
* I_FLG_MEMBERS = "
* I_FLG_ALL_DATA = "
* I_FLG_ALL_MTHDS = "
* I_FLG_MTHD_COMPLETE = "
* I_FLG_MTHD_MARK_CVR = "

CHANGING
C_T_AUTH_RQUSTD = "

EXCEPTIONS
FAILED = 1
.



IMPORTING Parameters details for FM_CVP_AUTH_CHECK_COVER_POOL

I_F_GLOBAL -

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

I_FLG_ISSUE_MESSAGE -

Data type: FMDY-XFELD
Default: 'X'
Optional: Yes
Call by Reference: Yes

I_COVER_POOL -

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

I_FLG_POOL -

Data type: FMDY-XFELD
Optional: Yes
Call by Reference: Yes

I_FLG_ALL_POOLS -

Data type: FMDY-XFELD
Optional: Yes
Call by Reference: Yes

I_FLG_MEMBERS -

Data type: FMDY-XFELD
Optional: Yes
Call by Reference: Yes

I_FLG_ALL_DATA -

Data type: FMDY-XFELD
Optional: Yes
Call by Reference: Yes

I_FLG_ALL_MTHDS -

Data type: FMDY-XFELD
Optional: Yes
Call by Reference: Yes

I_FLG_MTHD_COMPLETE -

Data type: FMDY-XFELD
Optional: Yes
Call by Reference: Yes

I_FLG_MTHD_MARK_CVR -

Data type: FMDY-XFELD
Optional: Yes
Call by Reference: Yes

CHANGING Parameters details for FM_CVP_AUTH_CHECK_COVER_POOL

C_T_AUTH_RQUSTD -

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

EXCEPTIONS details

FAILED -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FM_CVP_AUTH_CHECK_COVER_POOL 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_failed  TYPE STRING, "   
lv_i_f_global  TYPE FMKT_GLOBAL_INT, "   
lv_c_t_auth_rqustd  TYPE FMKT_T_AUTH_INTERFACE, "   
lv_i_flg_issue_message  TYPE FMDY-XFELD, "   'X'
lv_i_cover_pool  TYPE FMDECKHK-DECKRNG, "   
lv_i_flg_pool  TYPE FMDY-XFELD, "   
lv_i_flg_all_pools  TYPE FMDY-XFELD, "   
lv_i_flg_members  TYPE FMDY-XFELD, "   
lv_i_flg_all_data  TYPE FMDY-XFELD, "   
lv_i_flg_all_mthds  TYPE FMDY-XFELD, "   
lv_i_flg_mthd_complete  TYPE FMDY-XFELD, "   
lv_i_flg_mthd_mark_cvr  TYPE FMDY-XFELD. "   

  CALL FUNCTION 'FM_CVP_AUTH_CHECK_COVER_POOL'  "
    EXPORTING
         I_F_GLOBAL = lv_i_f_global
         I_FLG_ISSUE_MESSAGE = lv_i_flg_issue_message
         I_COVER_POOL = lv_i_cover_pool
         I_FLG_POOL = lv_i_flg_pool
         I_FLG_ALL_POOLS = lv_i_flg_all_pools
         I_FLG_MEMBERS = lv_i_flg_members
         I_FLG_ALL_DATA = lv_i_flg_all_data
         I_FLG_ALL_MTHDS = lv_i_flg_all_mthds
         I_FLG_MTHD_COMPLETE = lv_i_flg_mthd_complete
         I_FLG_MTHD_MARK_CVR = lv_i_flg_mthd_mark_cvr
    CHANGING
         C_T_AUTH_RQUSTD = lv_c_t_auth_rqustd
    EXCEPTIONS
        FAILED = 1
. " FM_CVP_AUTH_CHECK_COVER_POOL




ABAP code using 7.40 inline data declarations to call FM FM_CVP_AUTH_CHECK_COVER_POOL

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 XFELD FROM FMDY INTO @DATA(ld_i_flg_issue_message).
DATA(ld_i_flg_issue_message) = 'X'.
 
"SELECT single DECKRNG FROM FMDECKHK INTO @DATA(ld_i_cover_pool).
 
"SELECT single XFELD FROM FMDY INTO @DATA(ld_i_flg_pool).
 
"SELECT single XFELD FROM FMDY INTO @DATA(ld_i_flg_all_pools).
 
"SELECT single XFELD FROM FMDY INTO @DATA(ld_i_flg_members).
 
"SELECT single XFELD FROM FMDY INTO @DATA(ld_i_flg_all_data).
 
"SELECT single XFELD FROM FMDY INTO @DATA(ld_i_flg_all_mthds).
 
"SELECT single XFELD FROM FMDY INTO @DATA(ld_i_flg_mthd_complete).
 
"SELECT single XFELD FROM FMDY INTO @DATA(ld_i_flg_mthd_mark_cvr).
 


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!