1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?xml version="1.0" encoding="utf-8" ?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: ps
- (C) Copyright IBM Corp. 2005, 2021
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <!--
- Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.
- Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
- -->
- <launchComponent name="MyInbox" launchType="form" URLStructure="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="cognoslaunch.xsd">
- <!-- Describe how to constuct the URL that is to be launched -->
- <!-- Address consists of the gateway and the URL (from the launchComponent node) -->
- <!-- Parameters consists of one or more parameters that are provided after the '?' in the URL -->
- <!-- The <parameters> node requiresValue attribute, when specified, checks a value exists (not space) and will add the parameters to the URL. -->
- <URLStructure>
- <uriParam refparam="ui.gateway"/>
- <uriParam>/myinbox</uriParam>
- </URLStructure>
- <param name="ui.gateway" mandatory="true">
- <defaultValue forceDefault="true">
- <valueParamName>SCRIPT_NAME</valueParamName>
- </defaultValue>
- </param>
- <param name="ui.action" mandatory="true">
- <defaultValue>view</defaultValue>
- </param>
- <param name="ui.backURL" mandatory="false">
- <alias conditionParam="ui.action" conditionValue="view">backURL</alias>
- </param>
- <param name="b_action">
- <alias>temp.b_action</alias>
- </param>
- <param name="m">
- <alias>temp.m</alias>
- </param>
- </launchComponent>
|