RFINDORG 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 RFINDORG 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: DOMA = Domain
Title: Find Organization Units in Reports
Text Symbol: 013 = Materials Management
Text Symbol: 012 = Warehouse Management
Text Symbol: 011 = Cost Accounting
Text Symbol: 010 = Publishing
Text Symbol: 009 = Plant Maintenance
Text Symbol: 008 = Human Resources Planning
Text Symbol: 007 = General Ledger
Text Symbol: 006 = Financial Accounting
Text Symbol: 005 = RIVA
Text Symbol: 004 = DASS (Control Station)
Text Symbol: 003 = PPC
Text Symbol: 002 = Fixed Assets Accounting
Text Symbol: 001 = Application:
Text Symbol: 014 = Hospital
Text Symbol: 027 = Cross-Application
Text Symbol: 024 = in REPORTs:
Text Symbol: 023 = Domain
Text Symbol: 022 = Customer
Text Symbol: 021 = Customer Head Office
Text Symbol: 020 = MMS (Material Merchandising System)
Text Symbol: 019 = Sales
Text Symbol: 018 = EDM (Enterprise Data Model)
Text Symbol: 017 = Basis
Text Symbol: 016 = QSS (Quality Assurance)
Text Symbol: 015 = Human Resources
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
DYNP_VALUES_READ CALL FUNCTION 'DYNP_VALUES_READ' EXPORTING DYNAME = D020S-PROG DYNUMB = D020S-DNUM TABLES DYNPFIELDS = FIELDTAB EXCEPTIONS OTHERS = 01.
F4_DD_DOMAIN CALL FUNCTION 'F4_DD_DOMAIN' EXPORTING OBJECT = DD01L-DOMNAME SUPPRESS_SELECTION = 'X' IMPORTING RESULT = DD01L-DOMNAME.
RS_EUIN_SEND_MAIL CALL FUNCTION 'RS_EUIN_SEND_MAIL' EXPORTING SPOOLNUMBER = SY-SPONO USER = SY-UNAME INFOTYP = 'C' EXCEPTIONS ERROR = 01.
RS_EU_CROSSREF CALL FUNCTION 'RS_EU_CROSSREF' EXPORTING I_FIND_OBJ_CLS = TYPE1 " von I_SCOPE_OBJ_CLS = TYPE2 TABLES I_FINDSTRINGS = MY_FINDSTRINGS O_FOUNDS = FOUND EXCEPTIONS NOT_FOUND = 01.
RS_IMPORT_DYNPRO * CALL FUNCTION 'RS_IMPORT_DYNPRO' * EXPORTING * DYLANG = SY-LANGU * DYNAME = D020S-PROG * DYNUMB = '1000' * REQUEST = 'A' * SUPPRESS_CHECKS = 'X' * IMPORTING * HEADER = DYNPRO * TABLES * FTAB = DYNPROFELDER * PLTAB = ABLOG * EXCEPTIONS * BUTTON_ERROR = 01 * DYLANGUAGE_INVALID = 02 * DYLANGUAGE_NOT_INST = 03 * DYNAME_INVALID = 04 * DYNPROLOAD_NOT_FOUND = 05 * DYNPRO_OLD = 06 * DYNUMB_INVALID = 07 * FTAB_INVALID = 08 * GEN_ERROR = 09 * GEN_OK = 10 * HEADER_INVALID = 11 * INTERNAL_ERROR = 12 * NO_DYNPRO = 13 * NO_FTAB_ROW = 14 * NO_MEMORY = 15 * NO_PROCESSLOGIC = 16 * PLTAB_INVALID = 17 * REQUEST_INVALID = 18.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.