SAP Reports / Programs

/ISDFPS/ALE_SHOW_SYSTEM_STATE SAP ABAP Report - Determine Status of Connection to Partner System







/ISDFPS/ALE_SHOW_SYSTEM_STATE is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Determines the state of own system in relation to a partner system in the DFPS system landscape...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 /ISDFPS/ALE_SHOW_SYSTEM_STATE 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

/ISDFPS/SYSTEM_STATE - Display Connection Status


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 /ISDFPS/ALE_SHOW_SYSTEM_STATE. "Basic submit
SUBMIT /ISDFPS/ALE_SHOW_SYSTEM_STATE AND RETURN. "Return to original report after report execution complete
SUBMIT /ISDFPS/ALE_SHOW_SYSTEM_STATE 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: P_LCHDAT = Date
Selection Text: P_LCHTIM = Time
Selection Text: P_LCHTZ = Time Zone
Selection Text: P_LSYDAT = Date
Selection Text: P_LSYTIM = Time
Selection Text: P_LSYTZ = Time Zone
Selection Text: P_REMSYS = System Name
Selection Text: P_SYSCOM = Communication Mode
Selection Text: P_SYSCON = Connection Mode
Selection Text: P_SYSTEM = D Logical system
Selection Text: P_TT_CNT = Attempts(Transient Transition)
Title: Determine Status of Connection to Partner System
Text Symbol: 100 = Partner System
Text Symbol: 101 = Selected Partner System
Text Symbol: 102 = Status of Own System in Relation to Selected Partner System
Text Symbol: 103 = Last Synchronization
Text Symbol: 104 = Last Status Change
Text Symbol: 105 = Current status


INCLUDES used within this REPORT /ISDFPS/ALE_SHOW_SYSTEM_STATE

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:

/ISDFPS/ALE_GET_LOCAL_SYSTEM CALL FUNCTION '/ISDFPS/ALE_GET_LOCAL_SYSTEM' IMPORTING local_system = g_system EXCEPTIONS entry_not_exist = 1 OTHERS = 2.

/ISDFPS/ALE_IS_CENTRAL_SYSTEM CALL FUNCTION '/ISDFPS/ALE_IS_CENTRAL_SYSTEM' EXPORTING system = g_system IMPORTING is_central = g_central_flag EXCEPTIONS entry_not_exist = 1 OTHERS = 2.

/ISDFPS/ALE_GET_CENTRAL_SYSTEM CALL FUNCTION '/ISDFPS/ALE_GET_CENTRAL_SYSTEM' EXPORTING system = g_system IMPORTING central_system = g_central_sys EXCEPTIONS entry_not_exist = 1 OTHERS = 2.

/ISDFPS/ALE_GET_SYSTEM_STATE CALL FUNCTION '/ISDFPS/ALE_GET_SYSTEM_STATE' EXPORTING system = p_sys IMPORTING system_state = ls_system_state EXCEPTIONS entry_not_exist = 1 OTHERS = 2.



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 /ISDFPS/ALE_SHOW_SYSTEM_STATE or its description.