Show TOC Start of Content Area

Procedure documentation Getting/Setting System Aliases  Locate the document in its SAP Library structure

This section describes how to get and set system aliases.

The examples below use mySystem, which is an ISystem object.

     Get a system’s aliases.

String[] aliases = mySystem.getAliases();

     Add/remove an alias for a system.

mySystem.addAlias("alias2");

 

mySystem.removeAlias("alias1");

     Set a system’s default alias.

mySystem.changeDefaultAlias ("alias2");

 

End of Content Area