RSEPALIST is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for You can use this report to: Output the mandates stored in your system in the form of a list, and select one or more mandates for changing...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RSEPALIST into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
FSEPA_M4 - SEPA: List Mandates
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: P_ANWND = SEPA Application
Selection Text: P_LASTD = No longer used since
Selection Text: P_MAXCNT = Maximum Number of Hits
Selection Text: SO_VFROM = Valid From Date
Selection Text: SO_VTO = Valid To Date
Selection Text: P_GLOCK = D .
Selection Text: P_STATUS = D .
Selection Text: P_VRNT = D .
Selection Text: SO_BIC = D .
Selection Text: SO_CRDID = D .
Selection Text: SO_ERDAT = D .
Selection Text: SO_ERNAM = D .
Selection Text: SO_IBAN = D .
Selection Text: SO_LASTD = D .
Selection Text: SO_MNDID = D .
Selection Text: SO_RECID = D .
Selection Text: SO_RECTY = D .
Selection Text: SO_REFID = D .
Selection Text: SO_REFTY = D .
Selection Text: SO_SNDID = D .
Selection Text: SO_SNDTY = D .
Title: List of Mandates
Text Symbol: 500 = Status
Text Symbol: 204 = Start in Background
Text Symbol: 203 = Test Run
Text Symbol: 202 = Close mandates no longer being used
Text Symbol: 201 = Activate Batch Mode
Text Symbol: 001 = General Selections
Text Symbol: 002 = Payer, Payment Recipient and Application-Specific Data
Text Symbol: 003 = Technical Selections
Text Symbol: 004 = Not Specified
Text Symbol: 005 = Only mandates that are locked globally
Text Symbol: 006 = Only mandates that are not locked globally
Text Symbol: 007 = Date Last Used
Text Symbol: 008 = 6 Months
Text Symbol: 009 = 12 Months
Text Symbol: 010 = 17 Months
Text Symbol: 011 = 18 Months
INCLUDE RSEPALISTTOP.
INCLUDE RSEPALISTF01.
No SAP DATABASE tables are accessed within this REPORT code!
RS_REFRESH_FROM_SELECTOPTIONS CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS' EXPORTING curr_report = sub-prog TABLES selection_table = p_params.
SIMPLE_BATCH_JOB_SUBMIT CALL FUNCTION 'SIMPLE_BATCH_JOB_SUBMIT' EXPORTING program = 'RSEPALIST' variant = p_vrnt EXCEPTIONS SUBMIT_FAILED = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.