• If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Announcement

Collapse
No announcement yet.

Apps & Nav Trees

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Apps & Nav Trees

    We have multiple Nav trees based on user groups. It would be nice to have a "Show Trees/Folders" much like the Who is Authorized view so that an Administrator can find all the places an App may be accessible.

    In the mean time is there an SQL I could run to figure it out easier?

  • #2
    We're looking into adding some "app access auditing" features like this in the next release. In the meantime, to see which nav trees an app belongs to you could do an sql like this:

    Code:
    select h.vvntid, char(vvnavtreex) as NavTree_Name from vvntq100 h
    inner join vvntq200 d on h.vvntid=d.vvntid                       
    where d.vvchildapp=[your_app_id]

    Comment


    • #3
      Great.. Thanks!

      Comment

      Working...
      X