RECTMA01 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 RECTMA01 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
BCTM - Business Partner Contacts
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: PA_TAGE = the last ... days
Selection Text: PA_MZEI = Max. Number of Lines
Selection Text: PA_MMEN = Minimum No. of Cust. Contacts
Selection Text: PA_MINU = the last ... minutes
Selection Text: CK_KLAS = D Contact Class
Selection Text: CK_DATU = D Date
Selection Text: CK_BEAR = D Clerk
Selection Text: CK_ACTI = D Contact Action
Selection Text: SO_ZEIT = D Time
Selection Text: SO_PRIO = D Contact Priority
Selection Text: SO_PART = D Business Partner
Selection Text: SO_ORIG = D Contact Origin
Selection Text: SO_KLAS = D Contact Class
Selection Text: SO_DATU = D Created On
Selection Text: SO_CTYPE = D Contact Type
Selection Text: SO_CINF = D Customer Information
Selection Text: SO_CDIR = D Incoming/Outgoing
Selection Text: SO_BEAR = D Created By
Selection Text: SO_ALTP = D Contact Person
Selection Text: SO_ADDI = D Addnl Docs Available
Selection Text: SO_ACTI = D Action
Title: Analysis of Existing Contacts
Text Symbol: 001 = Selections
Text Symbol: 002 = List sorted by ...
Text Symbol: 004 = Filter
Text Symbol: 005 = Time-Based Selections
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
DB_BCONT_SELECT_COUNT CALL FUNCTION 'DB_BCONT_SELECT_COUNT' EXPORTING * wichtig : SELECT-OPTIONS erzeugt immer eine Tabelle mit einem * header-line, die jedoch nicht exportiert werden kann.
LVC_FIELDCATALOG_MERGE CALL FUNCTION 'LVC_FIELDCATALOG_MERGE' EXPORTING i_structure_name = g_struc_name CHANGING ct_fieldcat = pt_fieldcat.
LVC_FIELDCATALOG_MERGE CALL FUNCTION 'LVC_FIELDCATALOG_MERGE' EXPORTING i_structure_name = g_struc2_name CHANGING ct_fieldcat = pt_fieldcat.
BCONTACT_DISPLAY CALL FUNCTION 'BCONTACT_DISPLAY' EXPORTING x_bpcontact = wa_bcont_count_tab-bpcontact x_upd_online = 'X' x_no_change = ' ' x_no_other = 'X' EXCEPTIONS not_found = 1 general_fault = 2 not_authorized = 3 OTHERS = 4.
BCONTACT_DISPLAY CALL FUNCTION 'BCONTACT_DISPLAY' EXPORTING x_bpcontact = wa_bcont_display-bpcontact x_upd_online = 'X' " GD May 2002 x_no_change = ' ' " GD May 2002 x_no_other = 'X' EXCEPTIONS not_found = 1 general_fault = 2 not_authorized = 3 OTHERS = 4.
FKK_PARTNER_HEADER_DISPLAY CALL FUNCTION 'FKK_PARTNER_HEADER_DISPLAY' EXPORTING x_partner = wa_bcont_display-partner IMPORTING y_text1 = wa_bcont_display-partner_text.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.