SAP Reports / Programs | Financial Accounting | Travel Management | Travel Expenses(FI-TV-COS) SAP FI

RPRCCC_DELETE_OFFLINE_WORK SAP ABAP Report - Program RPRCCC_DELETE_OFFLINE_WORK







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


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RPRCCC_DELETE_OFFLINE_WORK. "Basic submit
SUBMIT RPRCCC_DELETE_OFFLINE_WORK AND RETURN. "Return to original report after report execution complete
SUBMIT RPRCCC_DELETE_OFFLINE_WORK VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


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)


INCLUDES used within this REPORT RPRCCC_DELETE_OFFLINE_WORK

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

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.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RPRCCC_DELETE_OFFLINE_WORK or its description.