In this section: |
How to: |
Content management enables you to create pointers to the following:
PMF has several predefined categories for administrator-distributed content, including Administration, Analysis, Audit, CPM/BPM Practice, History, Measures Detail, Objective, Perspective, Projects & Processes, Saved, and Today. You can categorize content to control where it appears on the Today page for an administrator, or on the Document List of the Action gadget for a user.
You can also create up to 10 custom categories for the content that you manage.
Parameter sets saved from the Analysis Designer are also stored as content under the Saved category. Content contains references to stored procedure names and, for Saved views, stores blocks of parameters and controls how PMF distributes and manages these views.
When creating access to content, make sure to click the Preview button. If the content pointed to is valid, PMF launches that content in a new window. This is a good way to test the content before making it available to administrators on the Today page or users in the Document List.
For details about the fields and options available in the New Content and Edit Content panels, see Manage Tab - Content.
The New Content panel opens, as shown in the following image.
An administrator will see the category listed in the side bar under the Content panel button of the Today page.
A user accesses the content of a selected category through the Document List of the Action gadget.
For more information and an example of a selected custom category, see Creating a Custom Category.
For more information about the fields in the New Content panel, see Manage Tab - Content.
The New Content panel opens.
Note: The URL field is named Parameters before you select the Web Page check box.
On the Today page, an administrator will see the category under the Content panel button.
A user accesses the content of a selected category through the Document List of the Action gadget.
For more information and an example of a selected custom category, see Creating a Custom Category.
For more information about the fields in the New Content panel, see Manage Tab - Content.
You can add existing content to categories on the Analysis panel button on the Today page.
The Edit Content panel opens.
For more information and an example of a selected custom category, see Creating a Custom Category.
To verify, navigate to the Analysis panel button on the Today page, and click one of the categories that you selected previously on the Edit Content panel. Repeat for each selected category.
You can add an operational report as content and link it to any measure, objective, project, or process defined in PMF. Doing this makes the operational report available through the Operational Report option when you click the measure, objective, project, or process in any PMF view.
To verify, click the desired measure, objective, project, or process in any PMF view and select the Operational Report option. The operational report that you specified in this procedure is displayed in a new window.
You can link any content, including Reports and Dashboards, to specific Scorecards. This allows the content to only be displayed when that Scorecard is selected to be displayed.
When you create new content, such as creating a Dashboard or linking a WebFOCUS report, it is automatically linked to all Scorecards. When you create a Scorecard, how content is linked to it depends on how it was created. For example:
To link content to a Scorecard:
The Edit Content panel opens.
The Analysis Designer opens, as shown in the following image.
The Edit Content panel opens.
Edit the other fields and options as needed. For more information about the fields in the Edit Content panel, see Manage Tab - Content.
The content is now available as a Today page and can be assigned to specific users.
How to: |
You can create up to 10 custom categories for the content that you manage. Administrators can see the custom categories and their associated content in the Content panel button on the Today page. Users can see the custom categories and the content on their Dashboard in the Document List, which is accessed through the Action gadget.
In this procedure, you will create a custom category and associate content with it, using the New Content panel.
You can also create a custom category using the Edit Content panel. For instructions, see How to Add Existing Content to Analytics Tab Categories.
The New Content panel opens. The User Type fields enable you to create custom categories for the content that you manage.
For more information about the fields on the New Content panel, see Manage Tab - Content.
As an administrator, you can see the custom category in the Content panel button on the Today page.
How to: |
From the Today page, an Owner can only view the private Dashboards that they currently own. Administrators cannot view or run a private Dashboard on the Today page that belongs to someone else. They can, however, view the private Dashboard references of another Owner by going to the Content page.
To delete one or more private Dashboards from PMF Owners, use the following procedure.
The selected Dashboard opens.
The Private Dashboard is now deleted.
To make the private Dashboard of a PMF owner public, so that all Owners can see it, use the following procedure.
The selected Dashboard opens.
The private Dashboard is now under your management and is publically available.
You can drill to any WebFOCUS operational report from a PMF view by mapping PMF parameters.
PMF automatically passes the following information from drill-down contexts:
Property |
Parameter |
---|---|
Scorecard Name |
&SCORECARD_NAME |
Scorecard ID |
&SCORECARD |
Perspective Name |
&PERSPECTIVE_NAME |
Perspective ID |
&PERSPECTIVE |
Measure Name |
&MEASURE_NAME |
Measure ID |
&MEASURE_SERIES |
Dimensional values |
&[dimension name]_LEVEL[level #]_VALUE |
To use these parameters in your operational reports, you may need to map the parameters passed from PMF to the parameters used in your report.
For example, suppose you have an operational report that displays outage data for all regions and warehouses, and you would like to drill out to this report from a PMF view and pass the region and warehouse information to select the proper filters in the operational report. You already have WHERE clauses embedded in the operational report to filter by the REGION and WAREHOUSE fields in your operational data. The operational report is already set up to receive the ®N parameter for the region and the &WHOUSE parameter for the warehouse.
In PMF, you already store information about your warehouse locations in a location dimension, which has Region as Level 1 and Warehouse as Level 2. You select a PMF view and drill to a particular warehouse location. Next, you click a measure and select the Operational Report option. You want PMF to filter the designated operational report for just the warehouse displayed in the current PMF view.
You need to edit your operational report using WebFOCUS code, Developer Studio, or a GUI, such as Power Painter. Start by adding -DEFAULT commands at the top of the report as follows:
-DEFAULT &LOCATION_LEVEL01_VALUE = ' '; -DEFAULT &LOCATION_LEVEL02_VALUE = ' ';
Next, add a utility program and parameters to the top of the report to allow it to receive the parameter values from PMF, as follows:
-SET &DIM_NAME = 'LOCATION'; -SET &DIM_VALUE = &LOCATION; -INCLUDE gadg_dim_parms
The first -SET command provides the dimension name for the utility program to use for outbound parameters. The second -SET passes a fully qualified internal dimension filter value to the utility program.
Finish by mapping the fields to your variables, as follows:
-SET ®N = IF &LOCATION_LEVEL01_VALUE NE ' ' THEN TRUNCATE(&LOCATION_LEVEL01_VALUE); - SET &WHOUSE = IF &LOCATION_LEVEL02_VALUE NE ' ' THEN TRUNCATE(&LOCATION_LEVEL02_VALUE);
Note: The WebFOCUS TRUNCATE function is used in the preceding code to remove the trailing spaces that are automatically added to all parameters being passed out of PMF.
The following image shows an example of an operational report that was mapped to PMF parameters, saved as content, and made available. To open this report from the Today page, click the dashboard icon . Click Content, select Projects & Processes, and then click Order Process Outages.
Note: You can use the logic described in this topic to pass parameters from the PMF gadget layer to an operational report. As a result, you can place the operational report on a PMF dashboard as a gadget. For more information, see Turning a WebFOCUS Report Into a Gadget.
|
WebFOCUS |