Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums and content available only to registered users.
New procedures not added to zzzzsys_run_list
New procedures not added to zzzzsys_run_list
Hello all,
I have several applications with nubuilder, and a few weeks ago I started a new one.
This time my procedures do not appear in the run_list and when I look in the database it shows that new procedures are not added to the view zzzzsys_run_list.
This is new to me, I can't find any suggestions in this forum, any idea how to solve this?
Thanks for your help
I have several applications with nubuilder, and a few weeks ago I started a new one.
This time my procedures do not appear in the run_list and when I look in the database it shows that new procedures are not added to the view zzzzsys_run_list.
This is new to me, I can't find any suggestions in this forum, any idea how to solve this?
Thanks for your help
-
- nuBuilder Team
- Posts: 4416
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 74 times
- Been thanked: 472 times
- Contact:
Re: New procedures not added to zzzzsys_run_list
Do you get an error message when you add a new procedure? Also check the output in the developer console (F12)
Re: New procedures not added to zzzzsys_run_list
No errors, I can run the new procedure by the button "Run Procedure" in the main form without problems.
But I cannot run the procedure by an selfmade button since the name of the procedure does not appear in the listbox.
But I cannot run the procedure by an selfmade button since the name of the procedure does not appear in the listbox.
You do not have the required permissions to view the files attached to this post.
-
- nuBuilder Team
- Posts: 4416
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 74 times
- Been thanked: 472 times
- Contact:
Re: New procedures not added to zzzzsys_run_list
Could you run a select on the database and post the output?
It should look like this:
Code: Select all
SELECT * FROM `zzzzsys_php` WHERE `sph_code` = 'nuuser_BS' --- replace with your procedure code
You do not have the required permissions to view the files attached to this post.
Re: New procedures not added to zzzzsys_run_list
You do not have the required permissions to view the files attached to this post.
-
- nuBuilder Team
- Posts: 4416
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 74 times
- Been thanked: 472 times
- Contact:
Re: New procedures not added to zzzzsys_run_list
And please also an output of this query:
Code: Select all
SELECT * FROM zzzzsys_run_list WHERE code = 'trefwoord_rpt'
Re: New procedures not added to zzzzsys_run_list
Here it is
You do not have the required permissions to view the files attached to this post.
-
- nuBuilder Team
- Posts: 4416
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 74 times
- Been thanked: 472 times
- Contact:
Re: New procedures not added to zzzzsys_run_list
Can you paste the SQL of the view zzzzsys_run_list ?
Mine looks like this:
Mine looks like this:
Code: Select all
select `nubuilder4`.`zzzzsys_form`.`zzzzsys_form_id` AS `id`,'Form' AS `run`,`nubuilder4`.`zzzzsys_form`.`sfo_code` AS `code`,`nubuilder4`.`zzzzsys_form`.`sfo_description` AS `description` from `nubuilder4`.`zzzzsys_form` union select `nubuilder4`.`zzzzsys_report`.`zzzzsys_report_id` AS `id`,'Report' AS `run`,`nubuilder4`.`zzzzsys_report`.`sre_code` AS `code`,`nubuilder4`.`zzzzsys_report`.`sre_description` AS `description` from `nubuilder4`.`zzzzsys_report` union select `nubuilder4`.`zzzzsys_php`.`zzzzsys_php_id` AS `id`,'Procedure' AS `run`,`nubuilder4`.`zzzzsys_php`.`sph_code` AS `code`,`nubuilder4`.`zzzzsys_php`.`sph_description` AS `description` from `nubuilder4`.`zzzzsys_php` where `nubuilder4`.`zzzzsys_php`.`sph_system` <> 1 order by `code`
You do not have the required permissions to view the files attached to this post.
Re: New procedures not added to zzzzsys_run_list
Mine looks very much the same
=

You do not have the required permissions to view the files attached to this post.
-
- nuBuilder Team
- Posts: 4416
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 74 times
- Been thanked: 472 times
- Contact:
Re: New procedures not added to zzzzsys_run_list
Anyway, can you paste it as text? It's easier to compare.