Additional Blogs by Members
cancel
Showing results for 
Search instead for 
Did you mean: 
Former Member

by Ryan Goodman 

Inside of BOE, you can deploy a mult-layer dashboard with SSO enabled. You can also use this methodology to Pass Vairables from a Parent-Child SWF. In this case, you would not only be loading a Child SWF, but you would also be sending parameters to dictate the information to show up in the child SWF

Download Source Files

There are 3 basic steps to creating your multi-layer dashboard inside of BOE:

1: Multi-Layer Dashboards: A multi-layer dashboard is defined as a parent Xcelsius SWF file that dynamically loads external SWFs inside a nested slideshow or image component. In our case we will pass a dynamic URL to a slideshow component inside of our parent SWF.

2: Flash Variables: A Flash Variable will load any variable from the framework for which an Xcelsius SWF is loaded (HTML, SWF, .NET, etc).
In our case will push the login token as a Flash Variable from the BOE instance (HTML) that the SWF resides in.

3: Concatenate a URL: In many instances you can dynamically concatenate variables and from within a model to dynamically generate a URL during runtime. This URL can be used to load or send parameterized queries, or launch reports.

Step by Step Instructions
Configuring the Child SWFs
1. Build and publish your child SWF files to the BOE repository.
2. Locate the "iDocID" for each child SWF. The easiest way I found to locate this ID, was to navigate to the BOE repository and load each SWF file inside of Infoview. I would then right click on the HTML off to the right hand side of the screen and click "View Source" to show the HTML code. I would then locate the iDocID.

Build the Excel File

3. Take all of the iDocIDs and load them into the Excel file. In my case I knew that a selector would be used toggle between my child SWFs. I reserved a space for my insert in row for my selector (yellow).
4. Create a space for your Login Token, which will be pushed to the model via Flash Variables (pink).
5. Concatenate the URL for the child SWF inside of BOE. This concatenated URL will be based on the following URL: documentDownload?iDocID=10348&sKind=Flash&CELogonToken=VANPCHENG.PRODUCT.BUSINESSOBJECTS.COM%408757Jxmhe3URUJ8L4D8b8755JihGX0vShOZU9CPc
6. Save the Excel file and import into Xcelsius.

Build the Xcelsius Model

7. Insert a Slideshow Component, which is located in the components window within the Connectivity folder.
8. In the Slideshow properties window, bind the URL to the concatenated URL (A5).
9. Create the rest of your Xcelsius model. In our case I added my selector to allow us to toggle between child SWFs.

Configure the login token Flash Variable
10. Add the Flash Variable: Click on File>Export Settings.. Click on Define Variables

11. Add a variable and name it "CELogonToken". Then bind the value to the spreadsheet (B2). The name is extremely important to identify the variable inside of Infoview.
12. Save and publish your model to the repository.

Other Considerations
In this case we use the iDocID. You can also use the DocName or CUID for better life cycle management.

 You can also bind aditional parameters to your URL and consume them as FlashVaraibles in the child SWF.

AttachmentSize
1excel.jpg44.85 KB
2properties.jpg27.21 KB
3exportsettings.jpg36.68 KB
multilayer.zip16.38 KB