SAP UC_GET_CUTOFF_TASKS Function Module for









UC_GET_CUTOFF_TASKS is a standard uc get cutoff tasks 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 uc get cutoff tasks FM, simply by entering the name UC_GET_CUTOFF_TASKS into the relevant SAP transaction such as SE37 or SE38.

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



Function UC_GET_CUTOFF_TASKS 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 'UC_GET_CUTOFF_TASKS'"
EXPORTING
* I_USER_NAME = SY-UNAME "
* I_ROLE_NAME = "
I_AREA = "
I_SVERSION = "
* I_BUFFERFLG = ' ' "
* I_MESSFLG = 'X' "
* IT_TASK_SEQ = "

IMPORTING
E_USER_CUTOFFTASK = "
E_ROLE_CUTOFFTASK = "

EXCEPTIONS
NOT_UNIQUE = 1 NO_ROLE_ASSIGNED = 2
.



IMPORTING Parameters details for UC_GET_CUTOFF_TASKS

I_USER_NAME -

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

I_ROLE_NAME -

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

I_AREA -

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

I_SVERSION -

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

I_BUFFERFLG -

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

I_MESSFLG -

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

IT_TASK_SEQ -

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

EXPORTING Parameters details for UC_GET_CUTOFF_TASKS

E_USER_CUTOFFTASK -

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

E_ROLE_CUTOFFTASK -

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

EXCEPTIONS details

NOT_UNIQUE -

Data type:
Optional: No
Call by Reference: Yes

NO_ROLE_ASSIGNED -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for UC_GET_CUTOFF_TASKS 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_not_unique  TYPE STRING, "   
lv_i_user_name  TYPE SY-UNAME, "   SY-UNAME
lv_e_user_cutofftask  TYPE UC_CUTOFFTASK, "   
lv_i_role_name  TYPE AGR_NAME, "   
lv_no_role_assigned  TYPE AGR_NAME, "   
lv_e_role_cutofftask  TYPE UC_CUTOFFTASK, "   
lv_i_area  TYPE UC_AREA, "   
lv_i_sversion  TYPE UC_SVERSION, "   
lv_i_bufferflg  TYPE UC_FLG, "   SPACE
lv_i_messflg  TYPE UC_FLG, "   'X'
lv_it_task_seq  TYPE UCS_TS_TASK_SEQUENCE. "   

  CALL FUNCTION 'UC_GET_CUTOFF_TASKS'  "
    EXPORTING
         I_USER_NAME = lv_i_user_name
         I_ROLE_NAME = lv_i_role_name
         I_AREA = lv_i_area
         I_SVERSION = lv_i_sversion
         I_BUFFERFLG = lv_i_bufferflg
         I_MESSFLG = lv_i_messflg
         IT_TASK_SEQ = lv_it_task_seq
    IMPORTING
         E_USER_CUTOFFTASK = lv_e_user_cutofftask
         E_ROLE_CUTOFFTASK = lv_e_role_cutofftask
    EXCEPTIONS
        NOT_UNIQUE = 1
        NO_ROLE_ASSIGNED = 2
. " UC_GET_CUTOFF_TASKS




ABAP code using 7.40 inline data declarations to call FM UC_GET_CUTOFF_TASKS

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 UNAME FROM SY INTO @DATA(ld_i_user_name).
DATA(ld_i_user_name) = SY-UNAME.
 
 
 
 
 
 
 
DATA(ld_i_bufferflg) = ' '.
 
DATA(ld_i_messflg) = 'X'.
 
 


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!