SAP Reports / Programs

RSALERTPROC SAP ABAP Report - Processing Alerts







RSALERTPROC 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 RSALERTPROC into the relevant SAP transactions such as SE38 or SE80


Transaction Code(s):

Below is a list of transaction codes which are relevant to this SAP report

ALRTPROC - Process Alerts


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 RSALERTPROC. "Basic submit
SUBMIT RSALERTPROC AND RETURN. "Return to original report after report execution complete
SUBMIT RSALERTPROC 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: S_CLASS = Classification
Selection Text: S_CAT = Alert Category
Selection Text: S_ALIAS = Alias of an Alert Category
Selection Text: R_TIME = Selection by Period
Selection Text: R_DAYS = Selection by Age
Selection Text: P_TIMLOW = Time From
Selection Text: P_TIMHI = Time To
Selection Text: P_STATUS = Delete Confirmed Alerts Only
Selection Text: P_PROT = Display Log
Selection Text: P_EXPIRY = Delete After Expiry Time
Selection Text: P_ESCAL = Escalate
Selection Text: P_DELIVR = Deliver
Selection Text: P_DELETL = Delete Old Logs
Selection Text: P_DELET = Delete Old Alerts
Selection Text: P_DAYSL = Age in Days
Selection Text: P_DAYS = Age in Days
Selection Text: P_DATLOW = From Date
Selection Text: P_DATHI = To Date
Title: Processing Alerts
Text Symbol: 015 = Time To
Text Symbol: 014 = To Date
Text Symbol: 013 = Time From
Text Symbol: 012 = From Date
Text Symbol: 011 = Age in Days
Text Symbol: 010 = Number of Logs Selected:
Text Symbol: 009 = Log Deleted
Text Symbol: 008 = Serach for Logs to Be Deleted (Old Logs)
Text Symbol: 007 = Search for Alerts to Be Deleted (Old Alerts)
Text Symbol: 006 = Log:
Text Symbol: 005 = Log Number (Application Log):
Text Symbol: 004 = Number of Alerts Selected:
Text Symbol: 003 = Search for Alerts to Be Delivered
Text Symbol: 002 = Search for Alerts to Be Escalated
Text Symbol: 001 = Search for Alerts to Be Deleted (Expiry Date Reached)


INCLUDES used within this REPORT RSALERTPROC

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:

BAL_FILTER_CREATE CALL FUNCTION 'BAL_FILTER_CREATE' EXPORTING i_object = 'ALERT' i_aldate_to = l_date_to i_altime_to = l_time_to IMPORTING e_s_log_filter = ls_log_filter.

BAL_DB_SEARCH CALL FUNCTION 'BAL_DB_SEARCH' EXPORTING i_s_log_filter = ls_log_filter IMPORTING e_t_log_header = lt_log_header EXCEPTIONS OTHERS = 1.

BAL_DB_DELETE CALL FUNCTION 'BAL_DB_DELETE' EXPORTING i_t_logs_to_delete = lt_log_header EXCEPTIONS OTHERS = 1.

BAL_DB_LOAD CALL FUNCTION 'BAL_DB_LOAD' EXPORTING i_t_lognumber = lt_logno IMPORTING e_t_msg_handle = lt_msg EXCEPTIONS OTHERS = 1.

BAL_LOG_MSG_READ CALL FUNCTION 'BAL_LOG_MSG_READ' EXPORTING i_s_msg_handle = ls_msg IMPORTING e_txt_msg = l_msg EXCEPTIONS OTHERS = 1.



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 RSALERTPROC or its description.