Environments page
This page will provide master -> detail -> detail -> detail functionality. The user will be able to add environments, the applications for the environments, the services for the environments and lastly the components for the services. The only environments that can be entered are within the scope of the roles the user has admin privileges for. The master (environments) is an interactive report. This is because I used the wizard to create the page, and it's a "Report with form on a table". I've manually added to the region a select list that shows the roles for a user. When creating a select list based on a sql query, the query has to return two values, the display value and the item value. The first column returned by the query is the display, the second is the item value. In my example below I concatenated the role_id so I could visually see the item value. select role_name||' - '||role_description||' - '||role_id, ro...