SAP Reports / Programs

RSALSLIC SAP ABAP Report - Alert monitor: Report for periodic license check/alert







RSALSLIC 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 RSALSLIC 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 RSALSLIC. "Basic submit
SUBMIT RSALSLIC AND RETURN. "Return to original report after report execution complete
SUBMIT RSALSLIC VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: Alert monitor: Report for periodic license check/alert
Text Symbol: 001 = Anot
Text Symbol: 002 = Days
Text Symbol: 003 = Day
Text Symbol: 004 = License expired
Text Symbol: 005 = > 999 days
Text Symbol: 006 = Unlimited license


INCLUDES used within this REPORT RSALSLIC

INCLUDE RSALEXTI.
INCLUDE RSALOLDI.


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:

SALI_MC_CREATE_ATTACH CALL FUNCTION 'SALI_MC_CREATE_ATTACH' EXPORTING MCNAME = SLIC_MC_NAME NUMRANGE = AL_NR_SAP_R3_SLIC OWNER = SLIC_MC_OWNER MT_CLASS = SLIC_MC_CLASS SYSTEMWIDE_CONTEXT = 'X' IMPORTING ROOT_TID = SLIC_MC_TID EXCEPTIONS * UNABLE_TO_EXPAND_NAME = 1 * SEGMENT_NOT_FOUND = 2 * COMMUNICATION_FAILURE = 3 * OTHER_PROBLEM = 4 * WRONG_SEGMENT = 5 OTHERS = 0.

SALI_MO_CREATE_ATTACH CALL FUNCTION 'SALI_MO_CREATE_ATTACH' EXPORTING PARENT_TID = SLIC_MC_TID MO_NAME = SLIC_MO_CHECK_NAME NUMRANGE = AL_NR_SAP_R3_SLIC UNIQUENUM = SLIC_MO_CHECK_UID MT_CLASS = SLIC_MO_CHECK_CLASS IMPORTING NEW_TID = SLIC_MO_CHECK_TID EXCEPTIONS * INVALID_TID = 1 * UNABLE_TO_EXPAND_NAME = 2 * INVALID_PARAMETERS = 3 * COMMUNICATION_FAILURE = 4 * OTHER_PROBLEM = 5 * WRONG_SEGMENT = 6 * INTERNAL_FAILURE_SALS = 7 OTHERS = 0.

SALI_SMES_CREATE_ATTACH CALL FUNCTION 'SALI_SMES_CREATE_ATTACH' EXPORTING PARENT_TID = SLIC_MO_CHECK_TID MTE_NAME = SLIC_MA_EXP_NAME MTE_CLASS = SLIC_MA_EXP_CLASS MTE_NUMRANGE = AL_NR_SAP_R3_SLIC MTE_UNIQUENUM = SLIC_MA_EXP_UID MTE_SEVERITY = 20 MTE_SECONDS_TIL_COLLECTINGTOOL = 86400 "1day MTE_SECONDS_UNTIL_SET_INACTIVE = 259200 "3days MTE_F1_HELP_TEXT_MSGID = 'RT' MTE_F1_HELP_TEXT_MSGNO = 013 * SMES_CUSTOMIZING_GROUP = CCMS_DEFAULT_CG_SMES * SMES_SUBTYPE = AL_STD_NO_SUBCLASS * SMES_ALERT_MODE = AL_SMSG_ALMODE_ALWAYS * SMES_ALERT_SHIFT = AL_SMSG_ALSHIFT_UNCHG TOOL_COLLECTING = 'SLIC_Check_Exp' "#EC NOTEXT * TOOL_ONALERT = TOOL_ANALYZE = 'SLIC_Analyse_Exp'"#EC NOTEXT * TOOL_TOOLDISPATCHER = 'SAP_CCMS_DEFAULT_TD' IMPORTING NEW_TID = SLIC_MA_EXP_TID EXCEPTIONS * INVALID_TID = 1 * UNABLE_TO_EXPAND_NAME = 2 * INVALID_PARAMETERS = 3 * COMMUNICATION_FAILURE = 4 * OTHER_PROBLEM = 5 * WRONG_SEGMENT = 6 * INTERNAL_FAILURE_SALS = 7 OTHERS = 0.

SALI_SMES_REPORT_T100_MESSAGE CALL FUNCTION 'SALI_SMES_REPORT_T100_MESSAGE' EXPORTING MSGVALUE = SLIC_ALERT_LEVEL MSGID = '00' MSGNO = 169 MSGARG1 = SLIC_EXP_DATE ARGTYPE1 = 'C' MSGARG2 = EXP_MSG ARGTYPE2 = 'C' DEFAULT_MSGTEXT = SLIC_DEFAULT_MSG CHANGING TID = SLIC_MA_EXP_TID EXCEPTIONS * INVALID_TID = 1 * WRONG_TYPECLASS = 2 * INVALID_PARAMETERS = 3 * COMMUNICATION_FAILURE = 4 OTHER_PROBLEM = 0.



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