Show TOC Start of Content Area

Procedure documentation Getting Aliases for All Systems  Locate the document in its SAP Library structure

The ISystems interface provides methods for retrieving aliases for all systems in the PCD.

The examples below use systems, which is an ISystems object that can be obtained as follows:

ISystems systems = (ISystems)PortalRuntime.getRuntimeResources()
   .getService(ISystems.KEY);

     Get all aliases.

String[] aliases = systems.getAliases();

     Get all default aliases.

String[] defaultAliases = systems.getDefaultAliases();

 

 

End of Content Area