Plateau Report Designer Tool Download
Short demo video Demo on Using Plateau Report Designer
PRD User guide - Download
Installing SF Learning Report Designer (a.k.a. Plateau Report Designer) Video Tutorial Playlist
- Download the SF Learning Report Designer from an environment that has PRD enabled and the Admin user has been given the REPORT_DEVELOPER role.
- When prompted by the installer, change the install path to My Documents (do not install Report Designer into the Program Files folder)
- Run Report Designer under Start Menu -> Plateau Report Designer -> Plateau Report Designer
- We recommend moving the Report Designer panels to match the following screen shot. Add a panel, such as Properties, under Window -> Show View
Note: You will always open and modify reports that are exported from SF Learning. We will not create new custom reports under File -> New.
Note: JRE 7 32 bit is required to run the latest version of SF Learning Report Designer. Do not use JRE 8. Refer to the end of this document if you cannot install JRE 7 on your computer.
Initial Report Designer Settings (Window → Preferences)
Data Set Editor -> Set Number of rows to display to 10
Data Set Editor -> JDBC Data Set
- Uncheck Prefetch all Schemas from database
- Uncheck Enable SQL Code Assist
- Set Maximum Number of Schemas to display to 1
- Set The time out limit to 15
Preview -> Data
- Set Number of rows to display to 10
Creating Workspace Shortcut and Originals Folder
- Navigate to My Documents/Plateau Report Designer
- Create a shortcut to the Workspace folder
- Right click the Workspace folder
- While holding down the right button, drag the folder to the Desktop
- Select Create shortcuts here (do not move the folder)
- Double click the Workspace folder shortcut
- Verify the folder path is under the My Documents/Plateau Report Designer/Workspace
- Create a new folder called originals in the Workspace directory. This folder will be used to back up the zipped report files that are exported from SF Learning
Creating an ApplicationResources.properties File
- Log into to SF Learning.
- Navigate to System Admin -> Tools -> Label Import/Export
- Select Export Labels
- Click Next
- Select Locale (Typically English)
- Click Next
- Click the add one or more from list link
- Click Add/Remove Criteria arrow
- Check Label Type ID
- Click Submit Query
- Enter LABEL into Label Type ID
- Click Search
- Check the Select all the labels of the search results check-box
- Click Add (this may take a couple minutes)
- Click Next
- Enter PRD_Labels in the Export File text-box
- Click Download
- Move the text file to Report Designer Workspace
- Rename the text document to ApplicationResources.properties
Updating a System Report in Report Designer
- Export Report from SF Learning. See list of Standard Reports in LMS or Most commonly used Standard report
- Move the zip file to the workspace
- Unzip the report
- Rename the .rptdesign file
- Move the zip file to the originals folder
- Open the .rptdesign file in Report Designer
- Connect the DataSource to your Database
- Driver Class: de.simplicit.vjdbc.VirtualDriverBirtWrapper (v1.6)
- URL: jdbc:vjdbc:servlet:https://[your URL]/vjdbc/vjdbc,db10g
- User: Admin ID in Staging with the REPORT_DEVELOPER Role
- Password: Password generated from the Plateau Report Designer download section
- Preview the Report, scroll to the bottom, and check for errors
- Make Changes
- Preview
- Repeat steps 9 and 10 as necessary
- Remove any filters in the Master Query
- Preview/Save the report
- Select the Report Name in the Outline Panel and click the Zip icon
- Save the zip to the Workspace
- Import the zipped report into SF Learning
- Test the report in SF Learning Publishing an Admin Report
- Add the Custom Report Workflow to desired Admin Role
- Assign the Admin Role to desired Admins
- Click the(pencil icon) next to the Report, check Publish, and then click Save
Add a New Data Object to a Report
- Add a row or column for the new field
- Copy and paste a label into the new row/column
- Select the new label
- Go to Properties Editor panel
- Select Localization
- Click the Browse… button to select a new label value
- Find the Table Data Set
- Select the Table tab in bottom left corner of the Table
- Go to Properties Editor and select the Binding Tab
- Make a note of the Table Data Set name
- Under the Data Explorer Panel double click the Table Data Set, found in step 3, to open the query
- Add the desired data object to the SQL
- Preview the SQL and check for Errors
- Click OK to save your changes
- Drag the new data object from the Data Explorer panel to the row/column that you created in Step 1
- Preview the Report
Joining Tables
- Find the table that has the desired column
- Look for this table in the original query FROM clause. If it is already in the query, skip to step 5
- Add the table to the FROM clause
- Join the table to the original query on the related column in the WHERE clause
- Select the desired column from the added table in the SELECT clause
Concatenating Fields
- Right click an empty cell
- Select Insert -> Data
- Enter a Column Binding Name and Display Name (e.g. UserName)
- Select a Data Type
- Click fx to open Expression Builder
- Select Available Data Sets under Categories
- Select the Data Set under Sub-Categories
- Double-click the fields and use + to concatenate (use double quotes for static text), e.g. dataSetRow["LNAME"] + ", " + dataSetRow["FNAME"]
- Click OK
- Click OK
- Preview the report
Translate Localized Fields
- Double click the localized field that you added to the report
- Click fx to open Expression Builder
- Paste the following code: reportContext.getMessage(dataSetRow["CPNT_DESC"], reportContext.getLocale())
- Change CPNT_DESC to the localized field column name
- Click OK twice to save your changes
- Preview the report
Note: Localized fields are blank in the Report Designer Preview. They will populate when run in SF Learning.
Adding a Search Filter
- Find the desired Report Parameter in the Plateau Library
- Drag it into the Report Parameters under the Data Explorer Panel
- Open the Data Set(s) that you want to apply the filter
- Update the Plateau comment to include the new Report Parameter Note: Make sure the security line is the last line of the Plateau Comment.
- Save, Zip, and import into SF Learning
- Test the Search Filter in SF Learning Note: You can only test Search Filters in SF Learning
Updating the Library Image and Styles
Image
- Open the PlateauThemes.rptlibrary
- Click Master Page tab.
- Double Click Image
- Select a New Image
- Save the Library
- Upload and overwrite the Plateau Themes library in SF Learning
Background Colors
- Click the row with the background color
- Select Property Editor -> General
- Write down the style (e.g. TableSectionTitleColor)
- Open the PlateauThemes.rptlibrary
- Click Outline Tab
- Select Themes
- Select PlateuSytleSheet
- Under PlateauStyleSheet find the Style you wrote down in step 3
- Double-Click the Style
- Click Background
- Select a new color
- Save the Library
- Upload and overwrite the Plateau Themes library in SF Learning
Binding Child Query to the Parent Query
- In the Child Data Set Query set the question mark equal to the column binding (e.g. SCHD_ID = ?)
- In the Child Data Set define a parameter that represents the question mark
- Select the Child Query Table, Navigate to Properties Editor, Select Bindings, and click Data Set Parameter Binding button
- Select the column from the Parent Table to bind the parameter
Proxy Server Settings (required for users that are behind a Proxy Server)
- In a text editor, open My Documents/Plateau Report Designer/PlateauReportDesigner.ini and add one of the following blocks of code.
SSL -Dhttp.proxySet=true -Dhttps.proxyHost=[value of proxy host] -Dhttps.proxyPort=[value of proxy port]
Non SSL -Dhttp.proxySet=true -Dhttp.proxyHost=[value of proxy host] -Dhttp.proxyPort=[value of proxy port]
Example -Dhttp.proxySet=true -Dhttps.proxyHost=10.0.1.15 -Dhttps.proxyPort=8080
- Set any other properties you need to set, e.g. -Dhttp(s).nonProxyHosts, -Dhttp.proxyUser, and -Dhttp.proxyPassword
- Save and close the PlateauReportDesigner.ini file
- Restart Plateau Report Designer
Download Report Designer and find Data Source Connection Information
- In your staging/test instance assign the REPORT_DEVELOPER Admin Role to custom report developer admin account. If the Admin Role doesn't exist, add a new Admin Role with the Role ID REPORT_DEVELOPER.
- Login with this Admin account (note that this admin must have an Admin Role with Report workflows).
- Navigate to Reports and click Learning Report Designer.
- Click the Download Report Designer button
- This is where you get the connection information along with the password that is required for using PRD
- Enter the Connection information in the Report Designer Data Source and click on Test Connection
Specify a separate JRE to use with SF Learning Report Designer
- Downloadjre-7u80-windows-i586.tar.gz (JRE 7 32 bit).
- Unzip the file into the SF Learning Report Designer home directory (e.g. C:\Users\username\Documents\Plateau Report Designer)
- Add the following two lines to the beginning of PlateauReportDesigner.ini and then save the file
- -vm
- jre7\bin\javaw.exe
Start SF Learning Report Designer (it will now use the JRE located in the Report Designer Home Directory)
Link: http://wiki.scn.sap.com/wiki/x/LI7SFw
Plateau Report Designer Tool Download
Source: https://wiki.scn.sap.com/wiki/display/SAPSF/Using+Plateau+Report+Designer
Posted by: petersonserch1970.blogspot.com
0 Response to "Plateau Report Designer Tool Download"
Post a Comment