Problem

Since POA 5.5.4 APS2 applications are showed on Home tab in CCP, is it possible to use it as shortcuts to some operations as it was possible in APS1?

Resolution

You need to specify an entry-point in a service declaration.

This example shows how to navigate to a particular view in custom UI of an application:

<service id="environments">
            <schema path="schemas/environment.schema"/>
            <presentation>
                    <name>Environment</name>
                    <summary>Environment service</summary>
                    <entry-points>
                            <entry class="aps2-view" dst="http://www.parallels.com/samples/sample-aps2-ui-vps#ip-addresses">
                                    <label>Env Entry Point (#ip-addresses)</label>
                            </entry>
                    </entry-points>
            </presentation>
    </service>

There is an example in sample UI package.

Internal content