FERCR260_OLD is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter FERCR260_OLD into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Selection Text: S_BELART = D Document type
Selection Text: S_AWTYP = D Reference procedure
Selection Text: P_VALUE = D Threshold amount
Selection Text: P_SORT = Sort indicator
Selection Text: P_PERCNT = Percentage
Selection Text: P_NUMBER = Document number
Selection Text: P_FER_2 = Display condensed
Selection Text: P_FER_1 = Display
Selection Text: P_FER_0 = Suppress
Selection Text: P_DATE = Posting date
Selection Text: P_BELART = Document type
Selection Text: P_AMOUNT = Amount
Title: Drill Down to Documents
Text Symbol: 119 = |Document |Itm|DT|Post. date|Origin.Doc|Organization |Type |&|
Text Symbol: 118 = |OTy|Partner object |Name |
Text Symbol: 117 = Planning cost elements
Text Symbol: 116 = |Cost elem.|Description |Percent| Total amount |&|
Text Symbol: 115 = Virtual primary cost elements
Text Symbol: 114 = |Document |Itm|DT|Post. date|Origin.Doc|Percnt|Document amount|&|
Text Symbol: 113 = Company code
Text Symbol: 112 = Controlling area
Text Symbol: 107 = Documents < threshold of
Text Symbol: 106 = Total for
Text Symbol: 105 = Total suppressed documents
Text Symbol: 104 = regulatory account
Text Symbol: 103 = natural account
Text Symbol: 102 = final obj.
Text Symbol: 101 = source obj.
Text Symbol: 100 = Documents
Text Symbol: 099 = for
Text Symbol: 042 = Suppress
Text Symbol: 041 = Display condensed
Text Symbol: 040 = Display
Text Symbol: 016 = Original document number
Text Symbol: 015 = Descending
Text Symbol: 014 = Posting date
Text Symbol: 013 = Percentage of original document
Text Symbol: 012 = Amount
INCLUDE FERCD200.
INCLUDE RFEPOSC5.
No SAP DATABASE tables are accessed within this REPORT code!
OBJECT_IDENTIFICATION_GET CALL FUNCTION 'OBJECT_IDENTIFICATION_GET' EXPORTING objnr = status-act_src_coobj no_kokrs = 'X' IMPORTING identification = sy-msgv2 ident_objid = sy-msgv1 ident_txt20 = tbo01-txt20.
OBJECT_IDENTIFICATION_GET CALL FUNCTION 'OBJECT_IDENTIFICATION_GET' EXPORTING objnr = status-act_fin_coobj no_kokrs = 'X' IMPORTING identification = sy-msgv2 ident_objid = sy-msgv1 ident_txt20 = tbo01-txt20.
FERC_DOCUMENTS_GET CALL FUNCTION 'FERC_DOCUMENTS_GET' EXPORTING status = status rep_name = rep_name TABLES s_bukrs = s_sbuk_o r_bukrs = s_rbuk_o r_gsber = s_rgsb_o doc_lst = document.
FERC_DOCUMENTS_FOR_PATH_GET CALL FUNCTION 'FERC_DOCUMENTS_FOR_PATH_GET' EXPORTING status = status rep_name = rep_name TABLES doc_lst = document.
AC_DOCUMENT_SENDER CALL FUNCTION 'AC_DOCUMENT_SENDER' EXPORTING i_awtyp = document-awtyp i_awref = document-awref i_aworg = document-aworg * I_AWSYS = ' ' * I_BUKRS = ' ' EXCEPTIONS awtyp_not_found = 1 no_document_display_function = 2 error_message = 3 OTHERS = 4.
OBJECT_IDENTIFICATION_GET CALL FUNCTION 'OBJECT_IDENTIFICATION_GET' EXPORTING objnr = pseudo_doc-parob no_kokrs = 'X' text_wanted = 'X' IMPORTING ident_obart = tbo01-obart_ld ident_objid = sy-msgv1 e_text = sy-msgli.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.