cancel
Showing results for 
Search instead for 
Did you mean: 

Editing LMS standard reports with Online Report Designer

Phivas
Explorer
0 Kudos
323

Hi all,

everytime I am adding new columns to any LMS standard report and make the necessary changes in the SQL query, I am uploading the new report onto my instance and then some columns like "Title" are cryptic and dont show the original course title anymore. What am I missing?

Kind regards

Accepted Solutions (0)

Answers (1)

Answers (1)

Brian_Boegs
Contributor
0 Kudos

Fields like item title are referenced to the language in your preferences.

Because of this, you need to add a little extra code to the output field in the report.

In the binding data for the cell, look in the expression field.

Example: The title will look like dataSetRow["CPNT_TITLE"]

But it should be like this:

reportContext.getMessage(dataSetRow["CPNT_TITLE"], reportContext.getLocale())