In this article:

Description

Structure of Shortcut Files

Opening Shortcut Files

Using Shortcut Files

Description

Shortcut files are files that have a certain structure and the *.pp extension. These files are created and stored in the workstation file system. They enable the user to open platform objects directly from the file system without preliminary platform startup.

Structure of Shortcut Files

Shortcut files are created in the XML language and have the following structure:

<?xml version="1.0" encoding="utf-8"?>
<AutoOpen>
   <Metabases>
       <TESTUSER>
           <LogonData/>
           <Credentials/>
           <Object></Object>
       </TESTUSER>
   </Metabases>
</AutoOpen>

Description of sections:

Example of shortcut file:

<?xml version="1.0" encoding="utf-8"?>

<AutoOpen SingleInstance = "1" Silent="1">

    <Metabases>

        <WAREHOUSE Name="Test" Driver="MSSQL2008" Package="STANDARDSECURITYPACKAGE" Authentication="1" DebugMode="0" CurrentLocale="1033">

            <LogonData SERVER="8:MSSERVER" DATABASE="8:WAREHOUSE" FILEGROUP="8:PRIMARY"/>

            <Credentials USER="user" PASSWORD="password"/>

            <Object>OBJ_TEST</Object>

        </WAREHOUSE>

    </Metabases>

</AutoOpen>

When this file is opened, an object with the OBJ_TEST identifier opens. This object is contained in the WAREHOUSE repository located on the MSSERVER server. The server uses Microsoft SQL Server 2008 DBMS. To connect to the repository, use the "user" login and the "password" password.

Opening Shortcut Files

Shortcut files can be opened in the following ways:

cfg.exe C:\Shortcuts\Report.pp

See also:

Developers Knowledge Base