RF150SMS is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report program is used to schedule a dunning run from the Schedule Manager, or to schedule the run by job with a variant and repetition rate so that the dunning run is carried out regularly...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 RF150SMS 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: COPYD = Template: Program run date
Selection Text: COPYI = Template: Identification
Selection Text: COPY_PAR = Copy parameters
Selection Text: DEL_DEST = Delete target parameters
Selection Text: IMMED = Print: Immediately
Selection Text: PRINT = With Dunning Printout
Selection Text: PRINTER = Printer
Selection Text: TARGETD = Dynam.Target Date Calculation
Title: Program RF150SMS
Text Symbol: 001 = Dunning Selection
Text Symbol: 002 = Dunning Printout
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
COPY_DUNNING_PARAMETERS CALL FUNCTION 'COPY_DUNNING_PARAMETERS' EXPORTING i_laufd = laufd i_laufi = laufi i_copyd = copyd i_copyi = copyi i_xdanp = xdanp i_overwrite_destin = del_dest EXCEPTIONS parameters_missed = 1 parameters_exists = 2 OTHERS = 3.
SCMA_SCHEDULE_DUNNING_RUN CALL FUNCTION 'SCMA_SCHEDULE_DUNNING_RUN' EXPORTING i_laufd = laufd i_laufi = laufi i_pdest = printer i_pimmed = immed i_xdran = print EXCEPTIONS parameters_missed = 1 startdate_wrong = 2 printer_wrong = 3 lock_failed = 4 no_authority = 5 OTHERS = 8.
DELETE_DUNNING_PARAMETERS CALL FUNCTION 'DELETE_DUNNING_PARAMETERS' EXPORTING i_laufd = laufd i_laufi = laufi i_inter = space EXCEPTIONS no_authority = 1 parameters_missed = 2 wrong_status = 3 OTHERS = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.