RPRCCC_DELETE_OFFLINE_WORK is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Program for deactivating the locks for processing credit card receipts in the R3 online system This program is only intended for use in emergency cases and should only be run by administra tors...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 RPRCCC_DELETE_OFFLINE_WORK 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: ENDE = End
Selection Text: PERNR = Personnel number
Title: Program RPRCCC_DELETE_OFFLINE_WORK
Text Symbol: 001 = has used
Text Symbol: 002 = to delete credit card buffer
Text Symbol: 003 = offline
Text Symbol: 004 = The report should only be run
Text Symbol: 005 = if credit card receipts in the offline
Text Symbol: 006 = application have been lost.
Text Symbol: 007 = The user must then reinitialize
Text Symbol: 008 = the offline application.
Text Symbol: 009 = Do you want to continue?
Text Symbol: 010 = Continue
Text Symbol: 011 = Cancel
Text Symbol: S01 = Online processing for credit card receipts is reactivated.
Text Symbol: S02 = Offline data must be reset or initialized.
Text Symbol: S03 = End is not activated.
Text Symbol: S04 = Processing will not be executed
Text Symbol: S05 = Report can only be run after
Text Symbol: S06 = modification (see report documentation)
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_TO_DECIDE_WITH_MESSAGE CALL FUNCTION 'POPUP_TO_DECIDE_WITH_MESSAGE' EXPORTING titel = pernr diagnosetext1 = 'Der Report soll nur gestartet werden,'(004) diagnosetext2 = 'wenn Kreditkartenbelege der Offline'(005) diagnosetext3 = 'Anwendung verloren gegangen sind'(006) textline1 = 'Der Benutzer muss danach die'(007) textline2 = 'Offlineanwendung neu initialisieren'(008) textline3 = 'Wollen Sie die Aktion ausführen ?'(009) text_option1 = 'Fortfahren'(010) text_option2 = 'Abbrechen'(011) cancel_display = space IMPORTING answer = antwort.
RSLG_WRITE_SYSLOG_ENTRY CALL FUNCTION 'RSLG_WRITE_SYSLOG_ENTRY' EXPORTING DATA_WORD1 = Sy-uname DATA_WORD2 = 'hat mit'(001) DATA_WORD3 = Sy-repid DATA_WORD4 = 'Kreditkartenpuffer-Offline'(002) DATA_WORD5 = 'zurueckgesetzt'(003) SL_MESSAGE_AREA = 'CP' SL_MESSAGE_SUBID = '6' EXCEPTIONS DATA_MISSING = 1 DATA_WORDS_PROBLEM = 2 OTHER_PROBLEM = 3 PRE_PARAMS_PROBLEM = 4 OTHERS = 5 .
HRTRV_IF_GET_CREDIT_CARD_ITEMS CALL FUNCTION 'HRTRV_IF_GET_CREDIT_CARD_ITEMS' EXPORTING EMPLOYEENUMBER = pernr ENDE = ende TABLES CCBEL_IN_OUT = ccbel INBEL_IN_OUT = inbel RETURN = return.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RPRCCC_DELETE_OFFLINE_WORK - Program RPRCCC_DELETE_OFFLINE_WORK RPRCCC_DELETE_OFFLINE_WORK - Program RPRCCC_DELETE_OFFLINE_WORK RPRCCC_CREATE_TESTFILE - Create a test file for credit card clearing RPRCCC_CREATE_TESTFILE - Create a test file for credit card clearing RPRCCC_CREATE_CORRECTION_FILE - Create File with Corrected Credit Card Transactions RPRCCC_CREATE_CORRECTION_FILE - Create File with Corrected Credit Card Transactions