SAP FKK_INV_REV_TASK_SEL Function Module for









FKK_INV_REV_TASK_SEL is a standard fkk inv rev task sel 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 fkk inv rev task sel FM, simply by entering the name FKK_INV_REV_TASK_SEL into the relevant SAP transaction such as SE37 or SE38.

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



Function FKK_INV_REV_TASK_SEL 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 'FKK_INV_REV_TASK_SEL'"
EXPORTING
* IRT_REVTASK = "
* I_MAXREC = "
* IRT_CRNAME = "
* IRT_CRDATE = "
* IRT_CRTIME = "
* IRT_CHNAME = "
* IRT_CHDATE = "
* IRT_CHTIME = "
* IRT_STATUS = "
* IT_FURTHER_SEL = "

IMPORTING
ET_REVT = "

EXCEPTIONS
NOT_FOUND = 1
.



IMPORTING Parameters details for FKK_INV_REV_TASK_SEL

IRT_REVTASK -

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

I_MAXREC -

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

IRT_CRNAME -

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

IRT_CRDATE -

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

IRT_CRTIME -

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

IRT_CHNAME -

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

IRT_CHDATE -

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

IRT_CHTIME -

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

IRT_STATUS -

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

IT_FURTHER_SEL -

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

EXPORTING Parameters details for FKK_INV_REV_TASK_SEL

ET_REVT -

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

EXCEPTIONS details

NOT_FOUND -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FKK_INV_REV_TASK_SEL 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_et_revt  TYPE FKKINV_REVT_DISP_TAB, "   
lv_not_found  TYPE FKKINV_REVT_DISP_TAB, "   
lv_irt_revtask  TYPE FKK_RT_REVTASK, "   
lv_i_maxrec  TYPE TBMAXSEL, "   
lv_irt_crname  TYPE FKK_RT_CRNAME, "   
lv_irt_crdate  TYPE FKK_RT_CRDATE, "   
lv_irt_crtime  TYPE FKK_RT_CRTIME, "   
lv_irt_chname  TYPE FKK_RT_CHNAME, "   
lv_irt_chdate  TYPE FKK_RT_CHDATE, "   
lv_irt_chtime  TYPE FKK_RT_CHTIME, "   
lv_irt_status  TYPE FKK_RT_REVSTATUS, "   
lv_it_further_sel  TYPE FKK_MAD_TWHEREL. "   

  CALL FUNCTION 'FKK_INV_REV_TASK_SEL'  "
    EXPORTING
         IRT_REVTASK = lv_irt_revtask
         I_MAXREC = lv_i_maxrec
         IRT_CRNAME = lv_irt_crname
         IRT_CRDATE = lv_irt_crdate
         IRT_CRTIME = lv_irt_crtime
         IRT_CHNAME = lv_irt_chname
         IRT_CHDATE = lv_irt_chdate
         IRT_CHTIME = lv_irt_chtime
         IRT_STATUS = lv_irt_status
         IT_FURTHER_SEL = lv_it_further_sel
    IMPORTING
         ET_REVT = lv_et_revt
    EXCEPTIONS
        NOT_FOUND = 1
. " FKK_INV_REV_TASK_SEL




ABAP code using 7.40 inline data declarations to call FM FKK_INV_REV_TASK_SEL

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.

 
 
 
 
 
 
 
 
 
 
 
 


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!