Re: "Print report" button is not working on IE and Chrome
by Tim Beachy. I'm having the same issue as OP using the Clean theme. I have also tried switching to the Base theme, and get the same result. It seems to be unrelated to the theme at this point.Any...
View Article5000 hardcoded limitation for _MAX_RECORDS
by Luis de Vasconcelos. The \blocks\configurable_reports\reports\sql\report.class.php page starts off by defining BLOCK_CONFIGURABLE_REPORTS_MAX_RECORDS and setting the value to 5000...
View ArticleProblema creando reportes nuevos.
by Julio Cubillan. Cualquier reporte que trato de crear, hasta ahora he probado con tipo usuarios, clases y sql. al presionar el botón de agregar aparece una pantalla en blanco.El reporte si se...
View ArticleRe: Problema creando reportes nuevos.
by Mary Cooch. Hello. This forum is for English speaking people. If you would like to ask your question again in English, please feel free to do so. If you prefer, you are welcome to ask your question...
View ArticleRe: Syntax for pulling profile fields on current user
by Emma Richardson. I am pretty sure that you cannot program configurable reports to dynamically fill in parts of a query dependent on the person running the report. It is just running as sql query...
View ArticleRe: Syntax for pulling profile fields on current user
by Chris H. Hm. I'm confused then, because the %%USERID%% field will pull in the userid of whoever is currently running the query (as far as I understand it). I figured there would be a way to combine...
View ArticleRe: Syntax for pulling profile fields on current user
by Emma Richardson. My mistake - I did not know that was built into it. Perhaps you could do a join to join to the user table with the userid variable and then pull the institution. Or something...
View ArticleRe: Syntax for pulling profile fields on current user
by Chris H. I think I ended up finding an alternate solution, but I'd definitely still appreciate any feedback...I ended up using a nested query...WHERE gi.courseid = c.id AND u.institution = (SELECT...
View ArticleRe: Cron
by Randy Thornton. Alex,You set the hour you wish it to run in Site admin > Plugins > Blocks > Config reports > Settings > Execute at. And the reports will run at the next scheduled...
View ArticleRe: Syntax for pulling profile fields on current user
by Luis de Vasconcelos. Will this work for you?SELECT u.firstname AS 'Name', u.lastname AS 'Surname', c.fullname AS 'Course'FROM prefix_course AS cJOIN prefix_user AS uWHERE u.institution=(SELECT...
View ArticleRe: Syntax for pulling profile fields on current user
by Luis de Vasconcelos. When you hard-code the institution into your query does the query really work as you expect it to? You can't join the prefix_course table onto the prefix_user table like in...
View ArticleHow to find out who has not completed a quiz
by Chad Nixon. Hey guys I have the configurable reporting tool but I would like to know how to find students that have not completed a certain quiz. I tried the SQL below from moodle but it doesn't...
View ArticleRe: Cron
by Alex Martins. Thanks Randy Thornton, is this report information not consumed in real time? And if not, where is this information stored for future reference? Moodledata?Hugs,Alex Martins
View ArticleRe: Cron
by Randy Thornton. The report output is updated in real time when you click the View report tab.Where report output for cron reports lives is a good question.The report settings, including code, is in...
View ArticleRe: Cron
by Randy Thornton. Alex,It looks like to me it does not save them anywhere. It doesn't save the output that I can see: as far as I can tell the code for the cron function just runs the query, but...
View Articletable name prefix , instead use{}
by Zeid Fanous. Hi all, I am trying to use an sql query from the list of ad-hoc contributed reports, i tried to add the Total activity per course, per unique user on the last 24h but i get the...
View ArticleRe: table name prefix , instead use{}
by Randy Thornton. Zeid,That query hard codes the prefix "mdl_" in front of the table names, which is really not good form, as it will not work with Config reports or with the Ad-hoc db queries...
View ArticleRe: table name prefix , instead use{}
by Zeid Fanous. Hi Randy thank you for your answer, let me try it and get back to you ..thanks a bunch
View ArticleRe: table name prefix , instead use{}
by Zeid Fanous. okay, i tried the following code and got this errorError when executing the query: ERROR: Incorrect number of query parameters. Expected 1, got 0.I copied the code from...
View Article