SAP FC_STATUS_SHOW_DETAIL Function Module for









FC_STATUS_SHOW_DETAIL is a standard fc status show detail 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 fc status show detail FM, simply by entering the name FC_STATUS_SHOW_DETAIL into the relevant SAP transaction such as SE37 or SE38.

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



Function FC_STATUS_SHOW_DETAIL 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 'FC_STATUS_SHOW_DETAIL'"
EXPORTING
E_DIMEN = "Dimension
* E_DOCTY = "
* E_TXT = "
E_MONITOR_FLAG = "
E_ITCLG = "Consolidation Chart of Accounts
E_RVERS = "Version
E_CONGR = "
E_BUNIT = "
E_RYEAR = "Fiscal Year
E_PERID = "Period
* E_CACTI = "Task
* E_CACTT = "Task Category

IMPORTING
I_STATUS = "Detail Status
I_ERROR = "Number of Errors
I_WARNG = "Number of warning messages
I_USR = "Last Changed By
I_DATUM = "Date of Last Change
I_TIME = "Last Changed At
.



IMPORTING Parameters details for FC_STATUS_SHOW_DETAIL

E_DIMEN - Dimension

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

E_DOCTY -

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

E_TXT -

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

E_MONITOR_FLAG -

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

E_ITCLG - Consolidation Chart of Accounts

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

E_RVERS - Version

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

E_CONGR -

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

E_BUNIT -

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

E_RYEAR - Fiscal Year

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

E_PERID - Period

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

E_CACTI - Task

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

E_CACTT - Task Category

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

EXPORTING Parameters details for FC_STATUS_SHOW_DETAIL

I_STATUS - Detail Status

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

I_ERROR - Number of Errors

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

I_WARNG - Number of warning messages

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

I_USR - Last Changed By

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

I_DATUM - Date of Last Change

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

I_TIME - Last Changed At

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

Copy and paste ABAP code example for FC_STATUS_SHOW_DETAIL 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_e_dimen  TYPE TF261-DIMEN, "   
lv_i_status  TYPE TF261-STATUS, "   
lv_e_docty  TYPE TF500-DOCTY, "   
lv_e_txt  TYPE TF500, "   
lv_e_monitor_flag  TYPE TF500, "   
lv_e_itclg  TYPE TF261-ITCLG, "   
lv_i_error  TYPE TF261-ERROR, "   
lv_e_rvers  TYPE TF261-RVERS, "   
lv_i_warng  TYPE TF261-WARNG, "   
lv_i_usr  TYPE TF261-USR, "   
lv_e_congr  TYPE TF180-CONGR, "   
lv_e_bunit  TYPE TF261-BUNIT, "   
lv_i_datum  TYPE TF261-DATUM, "   
lv_i_time  TYPE TF261-TIME, "   
lv_e_ryear  TYPE TF261-RYEAR, "   
lv_e_perid  TYPE TF261-PERID, "   
lv_e_cacti  TYPE TF261-CACTI, "   
lv_e_cactt  TYPE TF540-CACTT. "   

  CALL FUNCTION 'FC_STATUS_SHOW_DETAIL'  "
    EXPORTING
         E_DIMEN = lv_e_dimen
         E_DOCTY = lv_e_docty
         E_TXT = lv_e_txt
         E_MONITOR_FLAG = lv_e_monitor_flag
         E_ITCLG = lv_e_itclg
         E_RVERS = lv_e_rvers
         E_CONGR = lv_e_congr
         E_BUNIT = lv_e_bunit
         E_RYEAR = lv_e_ryear
         E_PERID = lv_e_perid
         E_CACTI = lv_e_cacti
         E_CACTT = lv_e_cactt
    IMPORTING
         I_STATUS = lv_i_status
         I_ERROR = lv_i_error
         I_WARNG = lv_i_warng
         I_USR = lv_i_usr
         I_DATUM = lv_i_datum
         I_TIME = lv_i_time
. " FC_STATUS_SHOW_DETAIL




ABAP code using 7.40 inline data declarations to call FM FC_STATUS_SHOW_DETAIL

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 DIMEN FROM TF261 INTO @DATA(ld_e_dimen).
 
"SELECT single STATUS FROM TF261 INTO @DATA(ld_i_status).
 
"SELECT single DOCTY FROM TF500 INTO @DATA(ld_e_docty).
 
 
 
"SELECT single ITCLG FROM TF261 INTO @DATA(ld_e_itclg).
 
"SELECT single ERROR FROM TF261 INTO @DATA(ld_i_error).
 
"SELECT single RVERS FROM TF261 INTO @DATA(ld_e_rvers).
 
"SELECT single WARNG FROM TF261 INTO @DATA(ld_i_warng).
 
"SELECT single USR FROM TF261 INTO @DATA(ld_i_usr).
 
"SELECT single CONGR FROM TF180 INTO @DATA(ld_e_congr).
 
"SELECT single BUNIT FROM TF261 INTO @DATA(ld_e_bunit).
 
"SELECT single DATUM FROM TF261 INTO @DATA(ld_i_datum).
 
"SELECT single TIME FROM TF261 INTO @DATA(ld_i_time).
 
"SELECT single RYEAR FROM TF261 INTO @DATA(ld_e_ryear).
 
"SELECT single PERID FROM TF261 INTO @DATA(ld_e_perid).
 
"SELECT single CACTI FROM TF261 INTO @DATA(ld_e_cacti).
 
"SELECT single CACTT FROM TF540 INTO @DATA(ld_e_cactt).
 


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!