RF110SMS 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 RF110SMS 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
Title: Report Program RF110SMS
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
COPY_PAYMENT_PARAMETERS CALL FUNCTION 'COPY_PAYMENT_PARAMETERS' EXPORTING i_laufd = laufd i_laufi = laufi i_copyd = copyd i_copyi = copyi i_xfktv = xfktv.
SCHEDULE_PAYMENT_PROPOSAL CALL FUNCTION 'SCHEDULE_PAYMENT_PROPOSAL' EXPORTING I_LAUFD = laufd I_LAUFI = laufi I_XSTRF = 'X' i_callrep = l_callrep i_callvar = l_callvar * TABLES * JOBCONTEXTS = EXCEPTIONS STARTDATE_WRONG = 1 PARAMETERS_MISSED = 2 LOCK_FAILED = 3 JOB_OPEN_FAILED = 4 JOB_CLOSE_FAILED = 5 OTHERS = 6.
DELETE_PAYMENT_PARAMETERS CALL FUNCTION 'DELETE_PAYMENT_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.