├── .gitignore
├── License.md
├── README.md
├── app
├── apex_visualizer.sql
├── apex_visualizer.zip
├── export_apex_app_sqlcl.sql
├── export_apex_app_sqlcl_json.sql
├── export_apex_app_sqlcl_split.sql
├── export_apex_app_sqlcl_yaml.sql
├── f347
│ ├── application
│ │ ├── create_application.sql
│ │ ├── delete_application.sql
│ │ ├── deployment
│ │ │ ├── buildoptions.sql
│ │ │ ├── checks.sql
│ │ │ ├── definition.sql
│ │ │ └── install
│ │ │ │ ├── install_av_applications_v.sql
│ │ │ │ ├── install_av_components_v.sql
│ │ │ │ ├── install_av_css_v.sql
│ │ │ │ ├── install_av_general_pkg.sql
│ │ │ │ ├── install_av_javascript_v.sql
│ │ │ │ ├── install_av_p0100_js_code_by_page_v.sql
│ │ │ │ ├── install_av_p0200_css_code_by_page_v.sql
│ │ │ │ ├── install_av_p0300_plsql_code_by_page_v.sql
│ │ │ │ ├── install_av_p0600_not_used_auth_schemes_v.sql
│ │ │ │ ├── install_av_p0708_legacy_subst_strings_v.sql
│ │ │ │ ├── install_av_page_complexity_v.sql
│ │ │ │ ├── install_av_page_links_v.sql
│ │ │ │ ├── install_av_pages_v.sql
│ │ │ │ ├── install_av_plsql_v.sql
│ │ │ │ ├── install_av_plugins_v.sql
│ │ │ │ ├── install_av_visibility_overview_v.sql
│ │ │ │ └── install_av_visibility_v.sql
│ │ ├── end_environment.sql
│ │ ├── pages
│ │ │ ├── page_00000.sql
│ │ │ ├── page_00010.sql
│ │ │ ├── page_00020.sql
│ │ │ ├── page_00030.sql
│ │ │ ├── page_00040.sql
│ │ │ ├── page_00050.sql
│ │ │ ├── page_00060.sql
│ │ │ ├── page_00100.sql
│ │ │ ├── page_00200.sql
│ │ │ ├── page_00300.sql
│ │ │ ├── page_00400.sql
│ │ │ ├── page_00500.sql
│ │ │ ├── page_00510.sql
│ │ │ ├── page_00600.sql
│ │ │ ├── page_00700.sql
│ │ │ ├── page_00701.sql
│ │ │ ├── page_00702.sql
│ │ │ ├── page_00703.sql
│ │ │ ├── page_00704.sql
│ │ │ ├── page_00705.sql
│ │ │ ├── page_00706.sql
│ │ │ ├── page_00707.sql
│ │ │ ├── page_00708.sql
│ │ │ ├── page_00709.sql
│ │ │ ├── page_00710.sql
│ │ │ ├── page_00715.sql
│ │ │ ├── page_00720.sql
│ │ │ ├── page_00730.sql
│ │ │ ├── page_00740.sql
│ │ │ └── page_groups.sql
│ │ ├── plugin_settings.sql
│ │ ├── set_environment.sql
│ │ ├── shared_components
│ │ │ ├── files
│ │ │ │ ├── av_css.sql
│ │ │ │ ├── av_js.sql
│ │ │ │ ├── av_min_css.sql
│ │ │ │ ├── av_min_js.sql
│ │ │ │ ├── icons_app_icon_192_png.sql
│ │ │ │ ├── icons_app_icon_32_png.sql
│ │ │ │ └── icons_app_icon_512_png.sql
│ │ │ ├── globalization
│ │ │ │ ├── dyntranslations.sql
│ │ │ │ ├── language.sql
│ │ │ │ └── messages.sql
│ │ │ ├── logic
│ │ │ │ ├── application_processes
│ │ │ │ │ └── apex_nitro.sql
│ │ │ │ ├── application_settings.sql
│ │ │ │ └── build_options.sql
│ │ │ ├── navigation
│ │ │ │ ├── breadcrumbentry.sql
│ │ │ │ ├── breadcrumbs
│ │ │ │ │ └── breadcrumb.sql
│ │ │ │ ├── listentry.sql
│ │ │ │ ├── lists
│ │ │ │ │ ├── desktop_navigation_bar.sql
│ │ │ │ │ └── desktop_navigation_menu.sql
│ │ │ │ ├── navigation_bar.sql
│ │ │ │ └── tabs
│ │ │ │ │ ├── parent.sql
│ │ │ │ │ └── standard.sql
│ │ │ ├── plugins
│ │ │ │ ├── region_type
│ │ │ │ │ ├── com_oracle_apex_d3_bubble.sql
│ │ │ │ │ └── com_oracle_apex_gantt_chart.sql
│ │ │ │ └── template_component
│ │ │ │ │ ├── theme_42_avatar.sql
│ │ │ │ │ ├── theme_42_badge.sql
│ │ │ │ │ ├── theme_42_button.sql
│ │ │ │ │ ├── theme_42_comments.sql
│ │ │ │ │ ├── theme_42_content_row.sql
│ │ │ │ │ ├── theme_42_media_list.sql
│ │ │ │ │ └── theme_42_timeline.sql
│ │ │ ├── security
│ │ │ │ └── authentications
│ │ │ │ │ ├── apex.sql
│ │ │ │ │ └── no_authentication.sql
│ │ │ └── user_interface
│ │ │ │ ├── lovs
│ │ │ │ ├── applications.sql
│ │ │ │ ├── components_chart.sql
│ │ │ │ ├── login_remember_username.sql
│ │ │ │ └── pages.sql
│ │ │ │ ├── shortcuts
│ │ │ │ └── delete_confirm_msg.sql
│ │ │ │ ├── template_opt_groups.sql
│ │ │ │ ├── template_options.sql
│ │ │ │ ├── templates
│ │ │ │ ├── breadcrumb
│ │ │ │ │ └── breadcrumb.sql
│ │ │ │ ├── button
│ │ │ │ │ ├── icon.sql
│ │ │ │ │ ├── text.sql
│ │ │ │ │ └── text_with_icon.sql
│ │ │ │ ├── calendar
│ │ │ │ │ └── calendar.sql
│ │ │ │ ├── label
│ │ │ │ │ ├── hidden.sql
│ │ │ │ │ ├── optional.sql
│ │ │ │ │ ├── optional_above.sql
│ │ │ │ │ ├── optional_floating.sql
│ │ │ │ │ ├── required.sql
│ │ │ │ │ ├── required_above.sql
│ │ │ │ │ └── required_floating.sql
│ │ │ │ ├── list
│ │ │ │ │ ├── badge_list.sql
│ │ │ │ │ ├── cards.sql
│ │ │ │ │ ├── links_list.sql
│ │ │ │ │ ├── media_list.sql
│ │ │ │ │ ├── menu_bar.sql
│ │ │ │ │ ├── menu_popup.sql
│ │ │ │ │ ├── navigation_bar.sql
│ │ │ │ │ ├── side_navigation_menu.sql
│ │ │ │ │ ├── tabs.sql
│ │ │ │ │ ├── top_navigation_mega_menu.sql
│ │ │ │ │ ├── top_navigation_menu.sql
│ │ │ │ │ ├── top_navigation_tabs.sql
│ │ │ │ │ └── wizard_progress.sql
│ │ │ │ ├── page
│ │ │ │ │ ├── drawer.sql
│ │ │ │ │ ├── left_and_right_side_columns.sql
│ │ │ │ │ ├── left_side_column.sql
│ │ │ │ │ ├── login.sql
│ │ │ │ │ ├── master_detail.sql
│ │ │ │ │ ├── minimal_no_navigation.sql
│ │ │ │ │ ├── modal_dialog.sql
│ │ │ │ │ ├── right_side_column.sql
│ │ │ │ │ ├── standard.sql
│ │ │ │ │ └── wizard_modal_dialog.sql
│ │ │ │ ├── popuplov.sql
│ │ │ │ ├── region
│ │ │ │ │ ├── alert.sql
│ │ │ │ │ ├── blank_with_attributes.sql
│ │ │ │ │ ├── blank_with_attributes_no_grid.sql
│ │ │ │ │ ├── buttons_container.sql
│ │ │ │ │ ├── cards_container.sql
│ │ │ │ │ ├── carousel_container.sql
│ │ │ │ │ ├── collapsible.sql
│ │ │ │ │ ├── content_block.sql
│ │ │ │ │ ├── hero.sql
│ │ │ │ │ ├── image.sql
│ │ │ │ │ ├── inline_dialog.sql
│ │ │ │ │ ├── inline_drawer.sql
│ │ │ │ │ ├── inline_popup.sql
│ │ │ │ │ ├── interactive_report.sql
│ │ │ │ │ ├── item_container.sql
│ │ │ │ │ ├── login.sql
│ │ │ │ │ ├── search_results_container.sql
│ │ │ │ │ ├── standard.sql
│ │ │ │ │ ├── tabs_container.sql
│ │ │ │ │ ├── title_bar.sql
│ │ │ │ │ └── wizard_container.sql
│ │ │ │ └── report
│ │ │ │ │ ├── alerts.sql
│ │ │ │ │ ├── badge_list.sql
│ │ │ │ │ ├── cards.sql
│ │ │ │ │ ├── comments.sql
│ │ │ │ │ ├── content_row.sql
│ │ │ │ │ ├── contextual_info.sql
│ │ │ │ │ ├── media_list.sql
│ │ │ │ │ ├── search_results.sql
│ │ │ │ │ ├── standard.sql
│ │ │ │ │ ├── timeline.sql
│ │ │ │ │ ├── value_attribute_pairs_column.sql
│ │ │ │ │ └── value_attribute_pairs_row.sql
│ │ │ │ ├── theme_display_points.sql
│ │ │ │ ├── theme_files.sql
│ │ │ │ ├── theme_style.sql
│ │ │ │ └── themes.sql
│ │ ├── user_interfaces.sql
│ │ └── user_interfaces
│ │ │ └── combined_files.sql
│ ├── embedded_code
│ │ ├── pages
│ │ │ ├── p00000.js
│ │ │ ├── p00000.sql
│ │ │ ├── p00010.sql
│ │ │ ├── p00020.sql
│ │ │ ├── p00030.js
│ │ │ ├── p00030.sql
│ │ │ ├── p00040.sql
│ │ │ ├── p00050.sql
│ │ │ ├── p00060.sql
│ │ │ ├── p00100.sql
│ │ │ ├── p00200.sql
│ │ │ ├── p00300.sql
│ │ │ ├── p00400.sql
│ │ │ ├── p00500.sql
│ │ │ ├── p00510.sql
│ │ │ ├── p00600.js
│ │ │ ├── p00600.sql
│ │ │ ├── p00705.sql
│ │ │ ├── p00706.sql
│ │ │ ├── p00707.sql
│ │ │ ├── p00708.sql
│ │ │ ├── p00709.js
│ │ │ ├── p00709.sql
│ │ │ ├── p00710.js
│ │ │ ├── p00710.sql
│ │ │ ├── p00715.js
│ │ │ ├── p00715.sql
│ │ │ ├── p00720.js
│ │ │ ├── p00720.sql
│ │ │ ├── p00730.js
│ │ │ ├── p00730.sql
│ │ │ ├── p00740.js
│ │ │ └── p00740.sql
│ │ └── shared_components
│ │ │ ├── logic
│ │ │ └── application_processes.sql
│ │ │ └── user_interface
│ │ │ └── templates
│ │ │ ├── list.js
│ │ │ └── page.js
│ └── install.sql
└── yaml
│ ├── f347.yaml
│ ├── pages
│ ├── p00000.yaml
│ ├── p00010.yaml
│ ├── p00020.yaml
│ ├── p00030.yaml
│ ├── p00040.yaml
│ ├── p00050.yaml
│ ├── p00060.yaml
│ ├── p00100.yaml
│ ├── p00200.yaml
│ ├── p00300.yaml
│ ├── p00400.yaml
│ ├── p00500.yaml
│ ├── p00510.yaml
│ ├── p00600.yaml
│ ├── p00700.yaml
│ ├── p00701.yaml
│ ├── p00702.yaml
│ ├── p00703.yaml
│ ├── p00704.yaml
│ ├── p00705.yaml
│ ├── p00706.yaml
│ ├── p00707.yaml
│ ├── p00708.yaml
│ ├── p00709.yaml
│ ├── p00710.yaml
│ ├── p00715.yaml
│ ├── p00720.yaml
│ ├── p00730.yaml
│ └── p00740.yaml
│ ├── shared_components
│ ├── app_processes.yaml
│ ├── app_static_files.yaml
│ ├── app_static_files
│ │ ├── av.css
│ │ └── av.js
│ ├── authentications.yaml
│ ├── breadcrumbs.yaml
│ ├── build_options.yaml
│ ├── lists.yaml
│ ├── lovs.yaml
│ ├── shortcuts.yaml
│ └── theme_42
│ │ ├── global_template_options.yaml
│ │ ├── static_files
│ │ ├── 20659859344322223.css
│ │ ├── 37653172407708309.css
│ │ ├── 41068433484203671.css
│ │ └── 58061746547589757.css
│ │ ├── template_option_groups.yaml
│ │ └── universal_theme.yaml
│ └── supporting_objects
│ ├── deinstall_script.sql
│ ├── install_scripts.yaml
│ ├── install_scripts
│ ├── av_applications_v.sql
│ ├── av_components_v.sql
│ ├── av_css_v.sql
│ ├── av_general_pkg.sql
│ ├── av_javascript_v.sql
│ ├── av_p0100_js_code_by_page_v.sql
│ ├── av_p0200_css_code_by_page_v.sql
│ ├── av_p0300_plsql_code_by_page_v.sql
│ ├── av_p0600_not_used_auth_schemes_v.sql
│ ├── av_p0708_legacy_subst_strings_v.sql
│ ├── av_page_complexity_v.sql
│ ├── av_page_links_v.sql
│ ├── av_pages_v.sql
│ ├── av_plsql_v.sql
│ ├── av_plugins_v.sql
│ ├── av_visibility_overview_v.sql
│ └── av_visibility_v.sql
│ └── supporting_objects.yaml
├── manifest.json
├── pkg
├── av_general_pkg.sql
└── av_migration_19_2_pkg.sql
├── typ
├── av_migration_t.sql
└── av_migrations_t.sql
└── vw
├── av_applications_v.sql
├── av_components_v.sql
├── av_css_v.sql
├── av_javascript_v.sql
├── av_p0100_js_code_by_page_v.sql
├── av_p0200_css_code_by_page_v.sql
├── av_p0300_plsql_code_by_page_v.sql
├── av_p0600_not_used_auth_schemes_v.sql
├── av_p0708_legacy_subst_strings_v.sql
├── av_page_complexity_v.sql
├── av_page_links_v.sql
├── av_pages_v.sql
├── av_plsql_v.sql
├── av_plugins_v.sql
├── av_visibility_overview_v.sql
└── av_visibility_v.sql
/.gitignore:
--------------------------------------------------------------------------------
1 | /app/export_apex_app_sqlcl.bat
2 | /www/css/apexvisualizer.css
3 | /www/js/apexvisualizer.js
--------------------------------------------------------------------------------
/License.md:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2022 Oliver Lemm
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/app/apex_visualizer.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OliverLemm/apex-visualizer/8bb0463ceb59eaab18e8dee58142a8e0a5a134d2/app/apex_visualizer.zip
--------------------------------------------------------------------------------
/app/export_apex_app_sqlcl.sql:
--------------------------------------------------------------------------------
1 | PROMPT Example: apex export -applicationid 1000 -split -skipExportDate
2 | apex export -applicationid &1 -skipExportDate -overwrite-files
3 | exit
--------------------------------------------------------------------------------
/app/export_apex_app_sqlcl_json.sql:
--------------------------------------------------------------------------------
1 | PROMPT Example: apex export -applicationid 1000 -split -skipExportDate -expType READABLE_JSON -overwrite-files
2 | apex export -applicationid &1 -skipExportDate -expType READABLE_JSON -overwrite-files
3 | exit
--------------------------------------------------------------------------------
/app/export_apex_app_sqlcl_split.sql:
--------------------------------------------------------------------------------
1 | PROMPT Example: apex export -applicationid 1000 -split -skipExportDate -expSupportingObjects Y -expType APPLICATION_SOURCE,EMBEDDED_CODE -overwrite-files
2 | apex export -applicationid &1 -split -skipExportDate -expSupportingObjects Y -expType APPLICATION_SOURCE,EMBEDDED_CODE -overwrite-files
3 | exit
--------------------------------------------------------------------------------
/app/export_apex_app_sqlcl_yaml.sql:
--------------------------------------------------------------------------------
1 | PROMPT Example: apex export -applicationid 1000 -split -skipExportDate -expType READABLE_YAML
2 | apex export -applicationid &1 -skipExportDate -expType READABLE_YAML -overwrite-files
3 | exit
--------------------------------------------------------------------------------
/app/f347/application/create_application.sql:
--------------------------------------------------------------------------------
1 | prompt --application/create_application
2 | begin
3 | -- Manifest
4 | -- FLOW: 347
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_imp_workspace.create_flow(
15 | p_id=>wwv_flow.g_flow_id
16 | ,p_owner=>nvl(wwv_flow_application_install.get_schema,'APEX_VISUALIZER')
17 | ,p_name=>nvl(wwv_flow_application_install.get_application_name,'APEX Visualizer')
18 | ,p_alias=>nvl(wwv_flow_application_install.get_application_alias,'AV')
19 | ,p_page_view_logging=>'YES'
20 | ,p_page_protection_enabled_y_n=>'Y'
21 | ,p_checksum_salt=>'A6E3BB2D2DE19934A5B6DE8C58FA65422D49912864CE2CE84F77196DBC8E0268'
22 | ,p_checksum_salt_last_reset=>'20220513172708'
23 | ,p_bookmark_checksum_function=>'SH512'
24 | ,p_accept_old_checksums=>false
25 | ,p_compatibility_mode=>'24.2'
26 | ,p_accessible_read_only=>'N'
27 | ,p_session_state_commits=>'IMMEDIATE'
28 | ,p_flow_language=>'en'
29 | ,p_flow_language_derived_from=>'FLOW_PRIMARY_LANGUAGE'
30 | ,p_direction_right_to_left=>'N'
31 | ,p_flow_image_prefix => nvl(wwv_flow_application_install.get_image_prefix,'')
32 | ,p_authentication_id=>wwv_flow_imp.id(59278300412934962)
33 | ,p_populate_roles=>'A'
34 | ,p_application_tab_set=>1
35 | ,p_logo_type=>'T'
36 | ,p_logo_text=>'APEX Visualizer'
37 | ,p_public_user=>'APEX_PUBLIC_USER'
38 | ,p_proxy_server=>nvl(wwv_flow_application_install.get_proxy,'')
39 | ,p_no_proxy_domains=>nvl(wwv_flow_application_install.get_no_proxy_domains,'')
40 | ,p_flow_version=>'24.2.0'
41 | ,p_flow_status=>'AVAILABLE_W_EDIT_LINK'
42 | ,p_flow_unavailable_text=>'This application is currently unavailable at this time.'
43 | ,p_exact_substitutions_only=>'Y'
44 | ,p_browser_cache=>'N'
45 | ,p_browser_frame=>'D'
46 | ,p_referrer_policy=>'strict-origin-when-cross-origin'
47 | ,p_pass_ecid=>'N'
48 | ,p_authorize_batch_job=>'N'
49 | ,p_rejoin_existing_sessions=>'N'
50 | ,p_csv_encoding=>'Y'
51 | ,p_auto_time_zone=>'N'
52 | ,p_tokenize_row_search=>'N'
53 | ,p_friendly_url=>'N'
54 | ,p_file_prefix => nvl(wwv_flow_application_install.get_static_app_file_prefix,'')
55 | ,p_files_version=>14
56 | ,p_version_scn=>58809948
57 | ,p_print_server_type=>'INSTANCE'
58 | ,p_file_storage=>'DB'
59 | ,p_is_pwa=>'N'
60 | );
61 | wwv_flow_imp.component_end;
62 | end;
63 | /
64 |
--------------------------------------------------------------------------------
/app/f347/application/delete_application.sql:
--------------------------------------------------------------------------------
1 | prompt --application/delete_application
2 | begin
3 | wwv_flow_imp.component_begin (
4 | p_version_yyyy_mm_dd=>'2024.11.30'
5 | ,p_release=>'24.2.3'
6 | ,p_default_workspace_id=>100001
7 | ,p_default_application_id=>347
8 | ,p_default_id_offset=>20408574139881448
9 | ,p_default_owner=>'APEX_VISUALIZER'
10 | );
11 | wwv_flow_imp.remove_flow(wwv_flow.g_flow_id);
12 | wwv_flow_imp.component_end;
13 | end;
14 | /
15 |
--------------------------------------------------------------------------------
/app/f347/application/deployment/buildoptions.sql:
--------------------------------------------------------------------------------
1 | prompt --application/deployment/buildoptions
2 | begin
3 | -- Manifest
4 | -- INSTALL BUILD OPTIONS: 347
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | null;
15 | wwv_flow_imp.component_end;
16 | end;
17 | /
18 |
--------------------------------------------------------------------------------
/app/f347/application/deployment/checks.sql:
--------------------------------------------------------------------------------
1 | prompt --application/deployment/checks
2 | begin
3 | -- Manifest
4 | -- INSTALL CHECKS: 347
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | null;
15 | wwv_flow_imp.component_end;
16 | end;
17 | /
18 |
--------------------------------------------------------------------------------
/app/f347/application/deployment/definition.sql:
--------------------------------------------------------------------------------
1 | prompt --application/deployment/definition
2 | begin
3 | -- Manifest
4 | -- INSTALL: 347
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_install(
15 | p_id=>wwv_flow_imp.id(314927592265159640)
16 | ,p_deinstall_script_clob=>wwv_flow_string.join(wwv_flow_t_varchar2(
17 | 'drop view av_applications_v;',
18 | 'drop view av_components_v;',
19 | 'drop view av_css_v;',
20 | 'drop view av_javascript_v;',
21 | 'drop view av_pages_v;',
22 | 'drop view av_page_links_v;',
23 | 'drop view av_plsql_v;',
24 | 'drop view av_plugins_v;',
25 | 'drop view av_page_complexity_v;',
26 | 'drop view av_p0100_js_code_by_page_v;',
27 | 'drop view av_p0200_css_code_by_page_v;',
28 | 'drop view av_p0300_plsql_code_by_page_v;',
29 | 'drop view av_p0600_not_used_auth_schemes_v;',
30 | 'drop view av_p0708_legacy_subst_strings_v;',
31 | 'drop view av_visibility_overview_v;',
32 | 'drop view av_visibility_v;',
33 | 'drop package av_general_pkg;'))
34 | );
35 | wwv_flow_imp.component_end;
36 | end;
37 | /
38 |
--------------------------------------------------------------------------------
/app/f347/application/deployment/install/install_av_applications_v.sql:
--------------------------------------------------------------------------------
1 | prompt --application/deployment/install/install_av_applications_v
2 | begin
3 | -- Manifest
4 | -- INSTALL: INSTALL-av_applications_v
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_install_script(
15 | p_id=>wwv_flow_imp.id(164062689573034752)
16 | ,p_install_id=>wwv_flow_imp.id(314927592265159640)
17 | ,p_name=>'av_applications_v'
18 | ,p_sequence=>10
19 | ,p_script_type=>'INSTALL'
20 | ,p_script_clob=>wwv_flow_string.join(wwv_flow_t_varchar2(
21 | '',
22 | ' CREATE OR REPLACE FORCE EDITIONABLE VIEW "AV_APPLICATIONS_V" ("APPLICATION_NAME", "APPLICATION_ID", "PAGE_FUNCTION", "PAGE_ID") AS ',
23 | ' select p.application_name',
24 | ' ,p.application_id',
25 | ' ,case p.page_function',
26 | ' when ''Unknown'' then',
27 | ' max(r.source_type)',
28 | ' else',
29 | ' page_function',
30 | ' end page_function',
31 | ' ,p.page_id',
32 | 'from apex_application_pages p',
33 | 'join apex_application_page_regions r on r.application_id = p.application_id',
34 | ' and p.page_id = r.page_id',
35 | 'group by p.application_name',
36 | ' ,p.application_id',
37 | ' ,p.page_id',
38 | ' ,page_function',
39 | 'order by p.application_id',
40 | ' ,p.page_id',
41 | ';'))
42 | );
43 | wwv_flow_imp_shared.create_install_object(
44 | p_id=>wwv_flow_imp.id(164062816260034755)
45 | ,p_script_id=>wwv_flow_imp.id(164062689573034752)
46 | ,p_object_owner=>'#OWNER#'
47 | ,p_object_type=>'VIEW'
48 | ,p_object_name=>'AV_APPLICATIONS_V'
49 | );
50 | wwv_flow_imp.component_end;
51 | end;
52 | /
53 |
--------------------------------------------------------------------------------
/app/f347/application/deployment/install/install_av_components_v.sql:
--------------------------------------------------------------------------------
1 | prompt --application/deployment/install/install_av_components_v
2 | begin
3 | -- Manifest
4 | -- INSTALL: INSTALL-av_components_v
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_install_script(
15 | p_id=>wwv_flow_imp.id(164063701828043594)
16 | ,p_install_id=>wwv_flow_imp.id(314927592265159640)
17 | ,p_name=>'av_components_v'
18 | ,p_sequence=>20
19 | ,p_script_type=>'INSTALL'
20 | ,p_script_clob=>wwv_flow_string.join(wwv_flow_t_varchar2(
21 | '',
22 | ' CREATE OR REPLACE FORCE EDITIONABLE VIEW "AV_COMPONENTS_V" ("APPLICATION_NAME", "APPLICATION_ID", "PAGE_ID", "PAGE_NAME", "PAGE", "COMPONENT", "AMOUNT") AS ',
23 | ' select application_name, application_id, page_id, page_name, page_id || '' '' || page_name page, ''regions'' component, regions amount',
24 | 'from apex_application_pages',
25 | 'union all',
26 | 'select application_name, application_id, page_id, page_name, page_id || '' '' || page_name page, ''items'' component, items amount',
27 | 'from apex_application_pages',
28 | 'union all',
29 | 'select application_name, application_id, page_id, page_name, page_id || '' '' || page_name page, ''buttons'' component, buttons amount',
30 | 'from apex_application_pages',
31 | 'union all',
32 | 'select application_name, application_id, page_id, page_name, page_id || '' '' || page_name page, ''computations'' component, computations amount',
33 | 'from apex_application_pages',
34 | 'union all',
35 | 'select application_name, application_id, page_id, page_name, page_id || '' '' || page_name page, ''validations'' component, validations amount',
36 | 'from apex_application_pages',
37 | 'union all',
38 | 'select application_name, application_id, page_id, page_name, page_id || '' '' || page_name page, ''processes'' component, processes amount',
39 | 'from apex_application_pages',
40 | 'union all',
41 | 'select application_name, application_id, page_id, page_name, page_id || '' '' || page_name page, ''branches'' component, branches amount',
42 | 'from apex_application_pages',
43 | 'union all',
44 | 'select application_name, application_id, page_id, page_name, page_id || '' '' || page_name page, ''dynamic_actions'' component, count(1) amount',
45 | 'from apex_application_page_da',
46 | 'group by application_name, application_id, page_id,page_name',
47 | ';'))
48 | );
49 | wwv_flow_imp_shared.create_install_object(
50 | p_id=>wwv_flow_imp.id(164063849111043596)
51 | ,p_script_id=>wwv_flow_imp.id(164063701828043594)
52 | ,p_object_owner=>'#OWNER#'
53 | ,p_object_type=>'VIEW'
54 | ,p_object_name=>'AV_COMPONENTS_V'
55 | );
56 | wwv_flow_imp.component_end;
57 | end;
58 | /
59 |
--------------------------------------------------------------------------------
/app/f347/application/deployment/install/install_av_p0100_js_code_by_page_v.sql:
--------------------------------------------------------------------------------
1 | prompt --application/deployment/install/install_av_p0100_js_code_by_page_v
2 | begin
3 | -- Manifest
4 | -- INSTALL: INSTALL-av_p0100_js_code_by_page_v
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_install_script(
15 | p_id=>wwv_flow_imp.id(165421181410444224)
16 | ,p_install_id=>wwv_flow_imp.id(314927592265159640)
17 | ,p_name=>'av_p0100_js_code_by_page_v'
18 | ,p_sequence=>90
19 | ,p_script_type=>'INSTALL'
20 | ,p_script_clob=>wwv_flow_string.join(wwv_flow_t_varchar2(
21 | '',
22 | ' CREATE OR REPLACE FORCE EDITIONABLE VIEW "AV_P0100_JS_CODE_BY_PAGE_V" ("APPLICATION_ID", "PAGE_ID", "PAGE_NAME_AND_ID", "PAGE_GROUP", "PAGE_FUNCTION", "BEST_PRACTICE", "COMPONENTS_COUNT", "CODE_LENGTH_SUM", "CODE_LINES_SUM", "TOOLTIP") AS ',
23 | ' select application_id',
24 | ' ,page_id',
25 | ' ,page_name || '' ('' || page_id || '')'' page_name_and_id',
26 | ' ,page_group',
27 | ' ,page_function',
28 | ' ,best_practice',
29 | ' ,components_count',
30 | ' ,code_length_sum',
31 | ' ,code_lines_sum',
32 | ' ,''
'' || --',
33 | ' ''page name | '' || page_name || '' |
'' || --',
34 | ' ''page id | '' || page_id || '' |
'' || --',
35 | ' ''page group | '' || page_group || '' |
'' || --',
36 | ' ''page function | '' || page_function || '' |
'' || --',
37 | ' ''number of js components | '' || components_count || '' |
'' || --',
38 | ' ''overall lines of js code | '' || code_lines_sum || '' |
'' || --',
39 | ' ''overall character of js code | '' || code_length_sum || '' |
'' || --',
40 | ' ''
'' tooltip',
41 | 'from (select distinct application_id',
42 | ' ,page_id',
43 | ' ,page_name',
44 | ' ,page_group',
45 | ' ,page_function',
46 | ' ,best_practice',
47 | ' ,count(*) over(partition by application_id, page_id) components_count',
48 | ' ,sum(js_code_length) over(partition by application_id, page_id) code_length_sum',
49 | ' ,sum(js_code_lines) over(partition by application_id, page_id) code_lines_sum',
50 | ' from av_javascript_v)',
51 | ';'))
52 | );
53 | wwv_flow_imp_shared.create_install_object(
54 | p_id=>wwv_flow_imp.id(165421274465444226)
55 | ,p_script_id=>wwv_flow_imp.id(165421181410444224)
56 | ,p_object_owner=>'#OWNER#'
57 | ,p_object_type=>'VIEW'
58 | ,p_object_name=>'AV_P0100_JS_CODE_BY_PAGE_V'
59 | );
60 | wwv_flow_imp.component_end;
61 | end;
62 | /
63 |
--------------------------------------------------------------------------------
/app/f347/application/deployment/install/install_av_p0200_css_code_by_page_v.sql:
--------------------------------------------------------------------------------
1 | prompt --application/deployment/install/install_av_p0200_css_code_by_page_v
2 | begin
3 | -- Manifest
4 | -- INSTALL: INSTALL-av_p0200_css_code_by_page_v
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_install_script(
15 | p_id=>wwv_flow_imp.id(165421765478447218)
16 | ,p_install_id=>wwv_flow_imp.id(314927592265159640)
17 | ,p_name=>'av_p0200_css_code_by_page_v'
18 | ,p_sequence=>100
19 | ,p_script_type=>'INSTALL'
20 | ,p_script_clob=>wwv_flow_string.join(wwv_flow_t_varchar2(
21 | '',
22 | ' CREATE OR REPLACE FORCE EDITIONABLE VIEW "AV_P0200_CSS_CODE_BY_PAGE_V" ("APPLICATION_ID", "PAGE_ID", "PAGE_NAME_AND_ID", "PAGE_GROUP", "PAGE_FUNCTION", "BEST_PRACTICE", "COMPONENTS_COUNT", "CODE_LENGTH_SUM", "CODE_LINES_SUM", "TOOLTIP") AS ',
23 | ' select application_id',
24 | ' ,page_id',
25 | ' ,page_name || '' ('' || page_id || '')'' page_name_and_id',
26 | ' ,page_group',
27 | ' ,page_function',
28 | ' ,best_practice',
29 | ' ,components_count',
30 | ' ,code_length_sum',
31 | ' ,code_lines_sum',
32 | ' ,'''' || --',
33 | ' ''page name | '' || page_name || '' |
'' || --',
34 | ' ''page id | '' || page_id || '' |
'' || --',
35 | ' ''page group | '' || page_group || '' |
'' || --',
36 | ' ''page function | '' || page_function || '' |
'' || --',
37 | ' ''number of css components | '' || components_count || '' |
'' || --',
38 | ' ''overall lines of css code | '' || code_lines_sum || '' |
'' || --',
39 | ' ''overall character of css code | '' || code_length_sum || '' |
'' || --',
40 | ' ''
'' tooltip',
41 | 'from (select distinct application_id',
42 | ' ,page_id',
43 | ' ,page_name',
44 | ' ,page_group',
45 | ' ,page_function',
46 | ' ,best_practice',
47 | ' ,count(*) over(partition by application_id, page_id) components_count',
48 | ' ,sum(css_code_length) over(partition by application_id, page_id) code_length_sum',
49 | ' ,sum(css_code_lines) over(partition by application_id, page_id) code_lines_sum',
50 | ' from av_css_v)',
51 | ';'))
52 | );
53 | wwv_flow_imp_shared.create_install_object(
54 | p_id=>wwv_flow_imp.id(165421864201447218)
55 | ,p_script_id=>wwv_flow_imp.id(165421765478447218)
56 | ,p_object_owner=>'#OWNER#'
57 | ,p_object_type=>'VIEW'
58 | ,p_object_name=>'AV_P0200_CSS_CODE_BY_PAGE_V'
59 | );
60 | wwv_flow_imp.component_end;
61 | end;
62 | /
63 |
--------------------------------------------------------------------------------
/app/f347/application/deployment/install/install_av_p0300_plsql_code_by_page_v.sql:
--------------------------------------------------------------------------------
1 | prompt --application/deployment/install/install_av_p0300_plsql_code_by_page_v
2 | begin
3 | -- Manifest
4 | -- INSTALL: INSTALL-av_p0300_plsql_code_by_page_v
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_install_script(
15 | p_id=>wwv_flow_imp.id(165422255768448752)
16 | ,p_install_id=>wwv_flow_imp.id(314927592265159640)
17 | ,p_name=>'av_p0300_plsql_code_by_page_v'
18 | ,p_sequence=>110
19 | ,p_script_type=>'INSTALL'
20 | ,p_script_clob=>wwv_flow_string.join(wwv_flow_t_varchar2(
21 | '',
22 | ' CREATE OR REPLACE FORCE EDITIONABLE VIEW "AV_P0300_PLSQL_CODE_BY_PAGE_V" ("APPLICATION_ID", "PAGE_ID", "PAGE_NAME_AND_ID", "PAGE_GROUP", "PAGE_FUNCTION", "BEST_PRACTICE", "COMPONENTS_COUNT", "CODE_LENGTH_SUM", "CODE_LINES_SUM", "TOOLTIP") AS ',
23 | ' select application_id',
24 | ' ,page_id',
25 | ' ,page_name || '' ('' || page_id || '')'' page_name_and_id',
26 | ' ,page_group',
27 | ' ,page_function',
28 | ' ,best_practice',
29 | ' ,components_count',
30 | ' ,code_length_sum',
31 | ' ,code_lines_sum',
32 | ' ,'''' || --',
33 | ' ''page name | '' || page_name || '' |
'' || --',
34 | ' ''page id | '' || page_id || '' |
'' || --',
35 | ' ''page group | '' || page_group || '' |
'' || --',
36 | ' ''page function | '' || page_function || '' |
'' || --',
37 | ' ''number of plsql components | '' || components_count || '' |
'' || --',
38 | ' ''overall lines of plsql code | '' || code_lines_sum || '' |
'' || --',
39 | ' ''overall character of plsql code | '' || code_length_sum || '' |
'' || --',
40 | ' ''
'' tooltip',
41 | 'from (select distinct application_id',
42 | ' ,page_id',
43 | ' ,page_name',
44 | ' ,page_group',
45 | ' ,page_function',
46 | ' ,best_practice',
47 | ' ,count(*) over(partition by application_id, page_id) components_count',
48 | ' ,sum(code_length) over(partition by application_id, page_id) code_length_sum',
49 | ' ,sum(code_lines) over(partition by application_id, page_id) code_lines_sum',
50 | ' from av_plsql_v)',
51 | ';'))
52 | );
53 | wwv_flow_imp_shared.create_install_object(
54 | p_id=>wwv_flow_imp.id(165422318259448754)
55 | ,p_script_id=>wwv_flow_imp.id(165422255768448752)
56 | ,p_object_owner=>'#OWNER#'
57 | ,p_object_type=>'VIEW'
58 | ,p_object_name=>'AV_P0300_PLSQL_CODE_BY_PAGE_V'
59 | );
60 | wwv_flow_imp.component_end;
61 | end;
62 | /
63 |
--------------------------------------------------------------------------------
/app/f347/application/deployment/install/install_av_p0600_not_used_auth_schemes_v.sql:
--------------------------------------------------------------------------------
1 | prompt --application/deployment/install/install_av_p0600_not_used_auth_schemes_v
2 | begin
3 | -- Manifest
4 | -- INSTALL: INSTALL-av_p0600_not_used_auth_schemes_v
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_install_script(
15 | p_id=>wwv_flow_imp.id(59790543015718060)
16 | ,p_install_id=>wwv_flow_imp.id(314927592265159640)
17 | ,p_name=>'av_p0600_not_used_auth_schemes_v'
18 | ,p_sequence=>150
19 | ,p_script_type=>'INSTALL'
20 | ,p_script_clob=>wwv_flow_string.join(wwv_flow_t_varchar2(
21 | '',
22 | ' CREATE OR REPLACE FORCE EDITIONABLE VIEW "AV_P0600_NOT_USED_AUTH_SCHEMES_V" ("AUTHORIZATION_SCHEME_NAME", "APPLICATION_ID") AS ',
23 | ' with auth as',
24 | ' (select v1.visibility_id',
25 | ' ,v1.application_id',
26 | ' from av_visibility_v v1',
27 | ' where v1.visibility_category = ''AUTHORIZATION_SCHEME''',
28 | ' and v1.visibility_name is not null)',
29 | 'select a.authorization_scheme_name',
30 | ' ,a.application_id',
31 | 'from apex_application_authorization a',
32 | 'where to_char(a.authorization_scheme_id) not in (select a1.visibility_id',
33 | ' from auth a1',
34 | ' where a1.application_id = a.application_id)',
35 | 'and to_char(''!'' || a.authorization_scheme_id) not in (select a1.visibility_id',
36 | ' from auth a1',
37 | ' where a1.application_id = a.application_id)',
38 | ';'))
39 | );
40 | wwv_flow_imp_shared.create_install_object(
41 | p_id=>wwv_flow_imp.id(59790606434718060)
42 | ,p_script_id=>wwv_flow_imp.id(59790543015718060)
43 | ,p_object_owner=>'#OWNER#'
44 | ,p_object_type=>'VIEW'
45 | ,p_object_name=>'AV_P0600_NOT_USED_AUTH_SCHEMES_V'
46 | );
47 | wwv_flow_imp.component_end;
48 | end;
49 | /
50 |
--------------------------------------------------------------------------------
/app/f347/application/deployment/install/install_av_page_complexity_v.sql:
--------------------------------------------------------------------------------
1 | prompt --application/deployment/install/install_av_page_complexity_v
2 | begin
3 | -- Manifest
4 | -- INSTALL: INSTALL-av_page_complexity_v
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_install_script(
15 | p_id=>wwv_flow_imp.id(41113294940744258)
16 | ,p_install_id=>wwv_flow_imp.id(314927592265159640)
17 | ,p_name=>'av_page_complexity_v'
18 | ,p_sequence=>170
19 | ,p_script_type=>'INSTALL'
20 | ,p_script_clob=>wwv_flow_string.join(wwv_flow_t_varchar2(
21 | '',
22 | ' CREATE OR REPLACE FORCE EDITIONABLE VIEW "AV_PAGE_COMPLEXITY_V" ("APPLICATION_ID", "PAGE_ID", "COUNT_OBJECTS", "COMPLEXITY") AS ',
23 | ' select p.application_id,',
24 | ' p.page_id,',
25 | ' sum(nvl(c.counts,0)) count_objects,',
26 | ' case',
27 | ' when sum(nvl(c.counts,0)) < 15 then ''simple''',
28 | ' when sum(nvl(c.counts,0)) < 50 then ''normal''',
29 | ' when sum(nvl(c.counts,0)) < 100 then ''complex''',
30 | ' else ''very complex''',
31 | ' end complexity',
32 | 'from apex_application_pages p',
33 | 'left join (select i1.application_id, i1.page_id, count(1) counts from apex_application_page_items i1 group by i1.application_id, i1.page_id',
34 | ' union all',
35 | ' select r1.application_id, r1.page_id, count(1) counts from apex_application_page_regions r1 group by r1.application_id, r1.page_id',
36 | ' union all',
37 | ' select b1.application_id, b1.page_id, count(1) counts from apex_application_page_buttons b1 group by b1.application_id, b1.page_id',
38 | ' union all',
39 | ' select p1.application_id, p1.page_id, count(1) counts from apex_application_page_proc p1 group by p1.application_id, p1.page_id',
40 | ' union all',
41 | ' select d1.application_id, d1.page_id, count(1) counts from apex_application_page_da_acts d1 group by d1.application_id, d1.page_id',
42 | ' union all',
43 | ' select c1.application_id, c1.page_id, count(1) counts from apex_application_page_comp c1 group by c1.application_id, c1.page_id',
44 | ' union all',
45 | ' select br1.application_id, br1.page_id, count(1) counts from apex_application_page_branches br1 group by br1.application_id, br1.page_id',
46 | ' ) c on c.application_id = p.application_id and c.page_id = p.page_id',
47 | 'group by p.application_id, p.page_id',
48 | ';'))
49 | );
50 | wwv_flow_imp_shared.create_install_object(
51 | p_id=>wwv_flow_imp.id(41113460691744263)
52 | ,p_script_id=>wwv_flow_imp.id(41113294940744258)
53 | ,p_object_owner=>'#OWNER#'
54 | ,p_object_type=>'VIEW'
55 | ,p_object_name=>'AV_PAGE_COMPLEXITY_V'
56 | );
57 | wwv_flow_imp.component_end;
58 | end;
59 | /
60 |
--------------------------------------------------------------------------------
/app/f347/application/deployment/install/install_av_pages_v.sql:
--------------------------------------------------------------------------------
1 | prompt --application/deployment/install/install_av_pages_v
2 | begin
3 | -- Manifest
4 | -- INSTALL: INSTALL-av_pages_v
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_install_script(
15 | p_id=>wwv_flow_imp.id(164065383263053366)
16 | ,p_install_id=>wwv_flow_imp.id(314927592265159640)
17 | ,p_name=>'av_pages_v'
18 | ,p_sequence=>50
19 | ,p_script_type=>'INSTALL'
20 | ,p_script_clob=>wwv_flow_string.join(wwv_flow_t_varchar2(
21 | '',
22 | ' CREATE OR REPLACE FORCE EDITIONABLE VIEW "AV_PAGES_V" ("APPLICATION_ID", "APPLICATION_NAME", "PAGE_ID", "PAGE_NAME", "PAGE_MODE", "PAGE_ALIAS", "PAGE_FUNCTION", "PAGE_GROUP", "PAGE_TEMPLATE", "CREATED_BY", "CREATED_ON", "LAST_UPDATED_BY", "LAST_UPD'
23 | ||'ATED_ON", "RELOAD_ON_SUBMIT", "WARN_ON_UNSAVED_CHANGES") AS ',
24 | ' select aap.application_id',
25 | ' ,aap.application_name',
26 | ' ,aap.page_id',
27 | ' ,aap.page_name',
28 | ' ,aap.page_mode',
29 | ' ,aap.page_alias',
30 | ' ,aap.page_function',
31 | ' ,aap.page_group',
32 | ' ,aap.page_template',
33 | ' ,aap.created_by',
34 | ' ,aap.created_on',
35 | ' ,aap.last_updated_by',
36 | ' ,aap.last_updated_on',
37 | ' ,aap.reload_on_submit',
38 | ' ,aap.warn_on_unsaved_changes',
39 | 'from apex_application_pages aap',
40 | ';'))
41 | );
42 | wwv_flow_imp_shared.create_install_object(
43 | p_id=>wwv_flow_imp.id(164065535800053366)
44 | ,p_script_id=>wwv_flow_imp.id(164065383263053366)
45 | ,p_object_owner=>'#OWNER#'
46 | ,p_object_type=>'VIEW'
47 | ,p_object_name=>'AV_PAGES_V'
48 | );
49 | wwv_flow_imp.component_end;
50 | end;
51 | /
52 |
--------------------------------------------------------------------------------
/app/f347/application/deployment/install/install_av_visibility_overview_v.sql:
--------------------------------------------------------------------------------
1 | prompt --application/deployment/install/install_av_visibility_overview_v
2 | begin
3 | -- Manifest
4 | -- INSTALL: INSTALL-av_visibility_overview_v
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_install_script(
15 | p_id=>wwv_flow_imp.id(164066404159060573)
16 | ,p_install_id=>wwv_flow_imp.id(314927592265159640)
17 | ,p_name=>'av_visibility_overview_v'
18 | ,p_sequence=>80
19 | ,p_script_type=>'INSTALL'
20 | ,p_script_clob=>wwv_flow_string.join(wwv_flow_t_varchar2(
21 | '',
22 | ' CREATE OR REPLACE FORCE EDITIONABLE VIEW "AV_VISIBILITY_OVERVIEW_V" ("APP_ID", "APP_NAME", "VISIBILTY_NAME") AS ',
23 | ' select aaa.application_id app_id',
24 | ' ,aaa.application_name app_name',
25 | ' ,aaa.authorization_scheme_name visibilty_name',
26 | 'from apex_application_authorization aaa',
27 | 'union all',
28 | 'select aa.application_id app_id',
29 | ' ,aa.application_name app_name',
30 | ' ,''condition'' visibilty_name',
31 | 'from apex_applications aa',
32 | ';'))
33 | );
34 | wwv_flow_imp_shared.create_install_object(
35 | p_id=>wwv_flow_imp.id(164066547679060573)
36 | ,p_script_id=>wwv_flow_imp.id(164066404159060573)
37 | ,p_object_owner=>'#OWNER#'
38 | ,p_object_type=>'VIEW'
39 | ,p_object_name=>'AV_VISIBILITY_OVERVIEW_V'
40 | );
41 | wwv_flow_imp.component_end;
42 | end;
43 | /
44 |
--------------------------------------------------------------------------------
/app/f347/application/end_environment.sql:
--------------------------------------------------------------------------------
1 | prompt --application/end_environment
2 | begin
3 | wwv_flow_imp.import_end(p_auto_install_sup_obj => nvl(wwv_flow_application_install.get_auto_install_sup_obj, false)
4 | );
5 | commit;
6 | end;
7 | /
8 | set verify on feedback on define on
9 | prompt ...done
10 |
--------------------------------------------------------------------------------
/app/f347/application/pages/page_00700.sql:
--------------------------------------------------------------------------------
1 | prompt --application/pages/page_00700
2 | begin
3 | -- Manifest
4 | -- PAGE: 00700
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_page.create_page(
15 | p_id=>700
16 | ,p_name=>'Migration'
17 | ,p_alias=>'MIGRATION'
18 | ,p_step_title=>'Migration'
19 | ,p_autocomplete_on_off=>'OFF'
20 | ,p_page_template_options=>'#DEFAULT#'
21 | ,p_protection_level=>'C'
22 | ,p_page_component_map=>'11'
23 | );
24 | wwv_flow_imp_page.create_page_plug(
25 | p_id=>wwv_flow_imp.id(63778751383663970)
26 | ,p_plug_name=>'Migration'
27 | ,p_icon_css_classes=>'fa-wrench'
28 | ,p_region_template_options=>'#DEFAULT#'
29 | ,p_component_template_options=>'#DEFAULT#'
30 | ,p_plug_template=>2674017834225413037
31 | ,p_plug_display_sequence=>20
32 | ,p_include_in_reg_disp_sel_yn=>'Y'
33 | ,p_plug_display_point=>'REGION_POSITION_01'
34 | ,p_menu_id=>wwv_flow_imp.id(472901389022347808)
35 | ,p_plug_source_type=>'NATIVE_BREADCRUMB'
36 | ,p_menu_template_id=>4072363345357175094
37 | );
38 | wwv_flow_imp_page.create_page_plug(
39 | p_id=>wwv_flow_imp.id(66570596026285478)
40 | ,p_plug_name=>'What Migration contains'
41 | ,p_region_template_options=>'#DEFAULT#:t-Region--scrollBody'
42 | ,p_plug_template=>4072358936313175081
43 | ,p_plug_display_sequence=>10
44 | ,p_include_in_reg_disp_sel_yn=>'Y'
45 | ,p_plug_source=>'For every version of APEX you should change the deprecated features and remove the desupported ones. Below this Page there is one page by release, which checks the selected app regarding the deprecated and desupported features, if they can be identif'
46 | ||'ied by the APEX Metadata.'
47 | ,p_attributes=>wwv_flow_t_plugin_attributes(wwv_flow_t_varchar2(
48 | 'expand_shortcuts', 'N',
49 | 'output_as', 'HTML')).to_clob
50 | );
51 | wwv_flow_imp.component_end;
52 | end;
53 | /
54 |
--------------------------------------------------------------------------------
/app/f347/application/pages/page_00701.sql:
--------------------------------------------------------------------------------
1 | prompt --application/pages/page_00701
2 | begin
3 | -- Manifest
4 | -- PAGE: 00701
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_page.create_page(
15 | p_id=>701
16 | ,p_name=>'APEX 18.1'
17 | ,p_alias=>'APEX-18-1'
18 | ,p_step_title=>'APEX 18.1'
19 | ,p_autocomplete_on_off=>'OFF'
20 | ,p_page_template_options=>'#DEFAULT#'
21 | ,p_protection_level=>'C'
22 | ,p_page_component_map=>'11'
23 | );
24 | wwv_flow_imp.component_end;
25 | end;
26 | /
27 |
--------------------------------------------------------------------------------
/app/f347/application/pages/page_00702.sql:
--------------------------------------------------------------------------------
1 | prompt --application/pages/page_00702
2 | begin
3 | -- Manifest
4 | -- PAGE: 00702
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_page.create_page(
15 | p_id=>702
16 | ,p_name=>'APEX 18.2'
17 | ,p_alias=>'APEX-18-2'
18 | ,p_step_title=>'APEX 18.2'
19 | ,p_autocomplete_on_off=>'OFF'
20 | ,p_page_template_options=>'#DEFAULT#'
21 | ,p_protection_level=>'C'
22 | ,p_page_component_map=>'11'
23 | );
24 | wwv_flow_imp.component_end;
25 | end;
26 | /
27 |
--------------------------------------------------------------------------------
/app/f347/application/pages/page_00703.sql:
--------------------------------------------------------------------------------
1 | prompt --application/pages/page_00703
2 | begin
3 | -- Manifest
4 | -- PAGE: 00703
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_page.create_page(
15 | p_id=>703
16 | ,p_name=>'APEX 19.1'
17 | ,p_alias=>'APEX-19-1'
18 | ,p_step_title=>'APEX 19.1'
19 | ,p_autocomplete_on_off=>'OFF'
20 | ,p_page_template_options=>'#DEFAULT#'
21 | ,p_protection_level=>'C'
22 | ,p_page_component_map=>'11'
23 | );
24 | wwv_flow_imp.component_end;
25 | end;
26 | /
27 |
--------------------------------------------------------------------------------
/app/f347/application/pages/page_00704.sql:
--------------------------------------------------------------------------------
1 | prompt --application/pages/page_00704
2 | begin
3 | -- Manifest
4 | -- PAGE: 00704
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_page.create_page(
15 | p_id=>704
16 | ,p_name=>'APEX 19.2'
17 | ,p_alias=>'APEX-19-2'
18 | ,p_step_title=>'APEX 19.2'
19 | ,p_warn_on_unsaved_changes=>'N'
20 | ,p_autocomplete_on_off=>'OFF'
21 | ,p_page_template_options=>'#DEFAULT#'
22 | ,p_protection_level=>'C'
23 | ,p_page_component_map=>'11'
24 | );
25 | wwv_flow_imp.component_end;
26 | end;
27 | /
28 |
--------------------------------------------------------------------------------
/app/f347/application/pages/page_groups.sql:
--------------------------------------------------------------------------------
1 | prompt --application/pages/page_groups
2 | begin
3 | -- Manifest
4 | -- PAGE GROUPS: 347
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | null;
15 | wwv_flow_imp.component_end;
16 | end;
17 | /
18 |
--------------------------------------------------------------------------------
/app/f347/application/set_environment.sql:
--------------------------------------------------------------------------------
1 | prompt --application/set_environment
2 | set define off verify off feedback off
3 | whenever sqlerror exit sql.sqlcode rollback
4 | --------------------------------------------------------------------------------
5 | --
6 | -- Oracle APEX export file
7 | --
8 | -- You should run this script using a SQL client connected to the database as
9 | -- the owner (parsing schema) of the application or as a database user with the
10 | -- APEX_ADMINISTRATOR_ROLE role.
11 | --
12 | -- This export file has been automatically generated. Modifying this file is not
13 | -- supported by Oracle and can lead to unexpected application and/or instance
14 | -- behavior now or in the future.
15 | --
16 | -- NOTE: Calls to apex_application_install override the defaults below.
17 | --
18 | --------------------------------------------------------------------------------
19 | begin
20 | wwv_flow_imp.import_begin (
21 | p_version_yyyy_mm_dd=>'2024.11.30'
22 | ,p_release=>'24.2.3'
23 | ,p_default_workspace_id=>100001
24 | ,p_default_application_id=>347
25 | ,p_default_id_offset=>20408574139881448
26 | ,p_default_owner=>'APEX_VISUALIZER'
27 | );
28 | end;
29 | /
30 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/files/av_css.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/files/av_css
2 | begin
3 | -- Manifest
4 | -- APP STATIC FILES: 347
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp.g_varchar2_table := wwv_flow_imp.empty_varchar2_table;
15 | wwv_flow_imp.g_varchar2_table(1) := '2361762D726567696F6E2D72696768742D636F6C756D6E202E742D526567696F6E2D627574746F6E732D6C6566740D0A7B0D0A2020202077696474683A313030253B0D0A7D';
16 | wwv_flow_imp_shared.create_app_static_file(
17 | p_id=>wwv_flow_imp.id(65478068959051466)
18 | ,p_file_name=>'av.css'
19 | ,p_mime_type=>'text/css'
20 | ,p_file_charset=>'utf-8'
21 | ,p_file_content => wwv_flow_imp.varchar2_to_blob(wwv_flow_imp.g_varchar2_table)
22 | );
23 | wwv_flow_imp.component_end;
24 | end;
25 | /
26 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/files/av_js.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/files/av_js
2 | begin
3 | -- Manifest
4 | -- APP STATIC FILES: 347
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp.g_varchar2_table := wwv_flow_imp.empty_varchar2_table;
15 | wwv_flow_imp.g_varchar2_table(1) := '2F2A20746869732066756E6374696F6E20747269676765727320616C6C206869646520616E642073686F7720726567696F6E7320746F2072656672657368202A2F0D0A66756E6374696F6E2061765F726566726573685F686964655F73686F775F726567';
16 | wwv_flow_imp.g_varchar2_table(2) := '696F6E732829207B0D0A20202428272E742D526567696F6E2E742D526567696F6E2D2D6869646553686F7727292E656163682866756E6374696F6E2829207B0D0A2020202020206C657420726567696F6E5F6964203D20242874686973292E6174747228';
17 | wwv_flow_imp.g_varchar2_table(3) := '27696427293B0D0A202020202020617065782E726567696F6E28726567696F6E5F6964292E7265667265736828293B0D0A20207D293B20200D0A7D';
18 | wwv_flow_imp_shared.create_app_static_file(
19 | p_id=>wwv_flow_imp.id(77790222148389341)
20 | ,p_file_name=>'av.js'
21 | ,p_mime_type=>'text/javascript'
22 | ,p_file_charset=>'utf-8'
23 | ,p_file_content => wwv_flow_imp.varchar2_to_blob(wwv_flow_imp.g_varchar2_table)
24 | );
25 | wwv_flow_imp.component_end;
26 | end;
27 | /
28 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/files/av_min_css.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/files/av_min_css
2 | begin
3 | -- Manifest
4 | -- APP STATIC FILES: 347
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp.g_varchar2_table := wwv_flow_imp.empty_varchar2_table;
15 | wwv_flow_imp.g_varchar2_table(1) := '2361762D726567696F6E2D72696768742D636F6C756D6E202E742D526567696F6E2D627574746F6E732D6C6566747B77696474683A313030257D';
16 | wwv_flow_imp_shared.create_app_static_file(
17 | p_id=>wwv_flow_imp.id(65481793436058498)
18 | ,p_file_name=>'av.min.css'
19 | ,p_mime_type=>'text/css'
20 | ,p_file_charset=>'utf-8'
21 | ,p_file_content => wwv_flow_imp.varchar2_to_blob(wwv_flow_imp.g_varchar2_table)
22 | );
23 | wwv_flow_imp.component_end;
24 | end;
25 | /
26 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/files/av_min_js.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/files/av_min_js
2 | begin
3 | -- Manifest
4 | -- APP STATIC FILES: 347
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp.g_varchar2_table := wwv_flow_imp.empty_varchar2_table;
15 | wwv_flow_imp.g_varchar2_table(1) := '66756E6374696F6E2061765F726566726573685F686964655F73686F775F726567696F6E7328297B2428222E742D526567696F6E2E742D526567696F6E2D2D6869646553686F7722292E65616368282866756E6374696F6E28297B6C657420653D242874';
16 | wwv_flow_imp.g_varchar2_table(2) := '686973292E617474722822696422293B617065782E726567696F6E2865292E7265667265736828297D29297D';
17 | wwv_flow_imp_shared.create_app_static_file(
18 | p_id=>wwv_flow_imp.id(77791246847392418)
19 | ,p_file_name=>'av.min.js'
20 | ,p_mime_type=>'text/javascript'
21 | ,p_file_charset=>'utf-8'
22 | ,p_file_content => wwv_flow_imp.varchar2_to_blob(wwv_flow_imp.g_varchar2_table)
23 | );
24 | wwv_flow_imp.component_end;
25 | end;
26 | /
27 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/files/icons_app_icon_32_png.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/files/icons_app_icon_32_png
2 | begin
3 | -- Manifest
4 | -- APP STATIC FILES: 347
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp.g_varchar2_table := wwv_flow_imp.empty_varchar2_table;
15 | wwv_flow_imp.g_varchar2_table(1) := '89504E470D0A1A0A0000000D4948445200000020000000200806000000737A7AF400000207494441545847ED94414B1B4114C7FFBBC9CAEEBA6A1269348D18548848D14A0941C8C55B7B157AE8A93DFA15FC0A3DF61308F62478F02088871E7AB0B4A75A';
16 | wwv_flow_imp.g_varchar2_table(2) := 'A510D7434C60831A6392D564B771B39A594830B0EA8CA48AB073591866E7FDDEEFCD7BDCECF2C1159E70711E8067C033E019603170653720983AC21230DC27A16CFCC361B10A4B0E82EF696E3E60510F22BB6E604430B1F03A860149E808F53353C0967A';
17 | wwv_flow_imp.g_varchar2_table(3) := '0A21106646A002209947391D1F126310FD3ED720D9B32A56FE9CC027F733415001F86B257C4C441DEDADB5B193812289989F8CB4F7D677B2F86B48E078774837322A8041AB8CC5D484F33FD11D1990615B75644B660700B1F075AF085EECA5B64005F046';
18 | wwv_flow_imp.g_varchar2_table(4) := '31F1EE55D4B93473527202C782A2F3BD30CCB609D36AE0F33795E92D50018CFB2ACDFA8FBB02B44048292AC625BEFCC8C1AF04BA6B802FE7B1F476FA5E80F4B18E3555676A492A03A405DFC7FB119005A4F365D7ECE626C258FDAD41B3E9EB4F2EA20220';
19 | wwv_flow_imp.g_varchar2_table(5) := '077D17A7F8941CEDE8841609A9FDE66EB303AA3D4CD9330190C3965E44322261EA6508B1502F48603209BFAB47284086522BA04F5190AFFBA9E701B5819BDE1B351D76DD74FA9D17E576D643D6195253A3D08A156CE7CEA91EE383006E7BE2B659C54C90';
20 | wwv_flow_imp.g_varchar2_table(6) := '477CE4053544570108D84D885FFB39687CE8CE96EC3A400B222635902BD5C005861F1F807A0AB1B421CBA52C67FF4B093C00CFC0B332700D29AB15502968D83A0000000049454E44AE426082';
21 | wwv_flow_imp_shared.create_app_static_file(
22 | p_id=>wwv_flow_imp.id(23167156460793762)
23 | ,p_file_name=>'icons/app-icon-32.png'
24 | ,p_mime_type=>'image/png'
25 | ,p_file_charset=>'utf-8'
26 | ,p_file_content => wwv_flow_imp.varchar2_to_blob(wwv_flow_imp.g_varchar2_table)
27 | );
28 | wwv_flow_imp.component_end;
29 | end;
30 | /
31 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/globalization/dyntranslations.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/globalization/dyntranslations
2 | begin
3 | -- Manifest
4 | -- DYNAMIC TRANSLATIONS: 347
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | null;
15 | wwv_flow_imp.component_end;
16 | end;
17 | /
18 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/globalization/language.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/globalization/language
2 | begin
3 | -- Manifest
4 | -- LANGUAGE MAP: 347
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | null;
15 | wwv_flow_imp.component_end;
16 | end;
17 | /
18 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/globalization/messages.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/globalization/messages
2 | begin
3 | -- Manifest
4 | -- MESSAGES: 347
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | null;
15 | wwv_flow_imp.component_end;
16 | end;
17 | /
18 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/logic/application_processes/apex_nitro.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/logic/application_processes/apex_nitro
2 | begin
3 | -- Manifest
4 | -- APPLICATION PROCESS: APEX Nitro
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_flow_process(
15 | p_id=>wwv_flow_imp.id(48428428229706741)
16 | ,p_process_sequence=>-9999
17 | ,p_process_point=>'BEFORE_HEADER'
18 | ,p_process_type=>'NATIVE_PLSQL'
19 | ,p_process_name=>'APEX Nitro'
20 | ,p_process_sql_clob=>'apex_application.g_flow_images := ''http://localhost:4000/'';'
21 | ,p_process_clob_language=>'PLSQL'
22 | ,p_process_when=>'owa_util.get_cgi_env(''APEX-Nitro'') is not null'
23 | ,p_process_when_type=>'EXPRESSION'
24 | ,p_process_when2=>'PLSQL'
25 | ,p_version_scn=>1
26 | );
27 | wwv_flow_imp.component_end;
28 | end;
29 | /
30 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/logic/application_settings.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/logic/application_settings
2 | begin
3 | -- Manifest
4 | -- APPLICATION SETTINGS: 347
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | null;
15 | wwv_flow_imp.component_end;
16 | end;
17 | /
18 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/logic/build_options.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/logic/build_options
2 | begin
3 | -- Manifest
4 | -- BUILD OPTIONS: 347
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_build_option(
15 | p_id=>wwv_flow_imp.id(311726863352029995)
16 | ,p_build_option_name=>'deactivated'
17 | ,p_build_option_status=>'EXCLUDE'
18 | ,p_version_scn=>1
19 | );
20 | wwv_flow_imp.component_end;
21 | end;
22 | /
23 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/navigation/breadcrumbentry.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/navigation/breadcrumbentry
2 | begin
3 | -- Manifest
4 | -- BREADCRUMB ENTRY:
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | null;
15 | wwv_flow_imp.component_end;
16 | end;
17 | /
18 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/navigation/breadcrumbs/breadcrumb.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/navigation/breadcrumbs/breadcrumb
2 | begin
3 | -- Manifest
4 | -- MENU: Breadcrumb
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_menu(
15 | p_id=>wwv_flow_imp.id(472901389022347808)
16 | ,p_name=>' Breadcrumb'
17 | );
18 | wwv_flow_imp_shared.create_menu_option(
19 | p_id=>wwv_flow_imp.id(38242509158976862)
20 | ,p_short_name=>'APEX 22.2'
21 | ,p_link=>'f?p=&APP_ID.:710:&APP_SESSION.::&DEBUG.:::'
22 | ,p_page_id=>710
23 | );
24 | wwv_flow_imp_shared.create_menu_option(
25 | p_id=>wwv_flow_imp.id(65483841296121562)
26 | ,p_parent_id=>wwv_flow_imp.id(65483493577116779)
27 | ,p_short_name=>'APEX 20.1'
28 | ,p_link=>'f?p=&APP_ID.:705:&SESSION.::&DEBUG.:::'
29 | ,p_page_id=>705
30 | );
31 | wwv_flow_imp_shared.create_menu_option(
32 | p_id=>wwv_flow_imp.id(65487361046565033)
33 | ,p_parent_id=>wwv_flow_imp.id(65483493577116779)
34 | ,p_short_name=>'APEX 20.2'
35 | ,p_link=>'f?p=&APP_ID.:706:&SESSION.::&DEBUG.:::'
36 | ,p_page_id=>706
37 | );
38 | wwv_flow_imp_shared.create_menu_option(
39 | p_id=>wwv_flow_imp.id(65487551698569057)
40 | ,p_parent_id=>wwv_flow_imp.id(65483493577116779)
41 | ,p_short_name=>'APEX 21.1'
42 | ,p_link=>'f?p=&APP_ID.:707:&SESSION.::&DEBUG.:::'
43 | ,p_page_id=>707
44 | );
45 | wwv_flow_imp_shared.create_menu_option(
46 | p_id=>wwv_flow_imp.id(65487757199571705)
47 | ,p_parent_id=>wwv_flow_imp.id(65483493577116779)
48 | ,p_short_name=>'APEX 21.2'
49 | ,p_link=>'f?p=&APP_ID.:708:&SESSION.::&DEBUG.:::'
50 | ,p_page_id=>708
51 | );
52 | wwv_flow_imp_shared.create_menu_option(
53 | p_id=>wwv_flow_imp.id(65538737089244143)
54 | ,p_parent_id=>wwv_flow_imp.id(65483493577116779)
55 | ,p_short_name=>'APEX 22.1'
56 | ,p_link=>'f?p=&APP_ID.:709:&SESSION.::&DEBUG.:::'
57 | ,p_page_id=>709
58 | );
59 | wwv_flow_imp_shared.create_menu_option(
60 | p_id=>wwv_flow_imp.id(469895599054694459)
61 | ,p_short_name=>'Apps'
62 | ,p_long_name=>'Applications'
63 | ,p_link=>'f?p=&APP_ID.:10:&SESSION.::&DEBUG.:::'
64 | ,p_page_id=>10
65 | );
66 | wwv_flow_imp_shared.create_menu_option(
67 | p_id=>wwv_flow_imp.id(469896119189728830)
68 | ,p_short_name=>'Pages'
69 | ,p_link=>'f?p=&APP_ID.:20:&SESSION.::&DEBUG.:::'
70 | ,p_page_id=>20
71 | );
72 | wwv_flow_imp_shared.create_menu_option(
73 | p_id=>wwv_flow_imp.id(65483493577116779)
74 | ,p_option_sequence=>70
75 | ,p_short_name=>'Migation'
76 | ,p_link=>'f?p=&APP_ID.:700:&SESSION.::&DEBUG.:::'
77 | ,p_page_id=>700
78 | );
79 | wwv_flow_imp.component_end;
80 | end;
81 | /
82 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/navigation/listentry.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/navigation/listentry
2 | begin
3 | -- Manifest
4 | -- LIST ENTRY:
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | null;
15 | wwv_flow_imp.component_end;
16 | end;
17 | /
18 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/navigation/lists/desktop_navigation_bar.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/navigation/lists/desktop_navigation_bar
2 | begin
3 | -- Manifest
4 | -- LIST: Desktop Navigation Bar
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_list(
15 | p_id=>wwv_flow_imp.id(472901013601347796)
16 | ,p_name=>'Desktop Navigation Bar'
17 | ,p_list_status=>'PUBLIC'
18 | ,p_version_scn=>1
19 | );
20 | wwv_flow_imp_shared.create_list_item(
21 | p_id=>wwv_flow_imp.id(472901155879347802)
22 | ,p_list_item_display_sequence=>10
23 | ,p_list_item_link_text=>'Log Out'
24 | ,p_list_item_link_target=>'&LOGOUT_URL.'
25 | ,p_list_item_current_for_pages=>'&LOGOUT_URL.'
26 | );
27 | wwv_flow_imp.component_end;
28 | end;
29 | /
30 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/navigation/navigation_bar.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/navigation/navigation_bar
2 | begin
3 | -- Manifest
4 | -- ICON BAR ITEMS: 347
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | null;
15 | wwv_flow_imp.component_end;
16 | end;
17 | /
18 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/navigation/tabs/parent.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/navigation/tabs/parent
2 | begin
3 | -- Manifest
4 | -- TOP LEVEL TABS: 347
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | null;
15 | wwv_flow_imp.component_end;
16 | end;
17 | /
18 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/navigation/tabs/standard.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/navigation/tabs/standard
2 | begin
3 | -- Manifest
4 | -- TABS: 347
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | null;
15 | wwv_flow_imp.component_end;
16 | end;
17 | /
18 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/security/authentications/apex.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/security/authentications/apex
2 | begin
3 | -- Manifest
4 | -- AUTHENTICATION: APEX
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_authentication(
15 | p_id=>wwv_flow_imp.id(59278300412934962)
16 | ,p_name=>'APEX'
17 | ,p_scheme_type=>'NATIVE_APEX_ACCOUNTS'
18 | ,p_use_secure_cookie_yn=>'N'
19 | ,p_ras_mode=>0
20 | ,p_version_scn=>1
21 | );
22 | wwv_flow_imp.component_end;
23 | end;
24 | /
25 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/security/authentications/no_authentication.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/security/authentications/no_authentication
2 | begin
3 | -- Manifest
4 | -- AUTHENTICATION: No Authentication
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_authentication(
15 | p_id=>wwv_flow_imp.id(472901281969347805)
16 | ,p_name=>'No Authentication'
17 | ,p_scheme_type=>'NATIVE_DAD'
18 | ,p_use_secure_cookie_yn=>'N'
19 | ,p_ras_mode=>0
20 | ,p_version_scn=>1
21 | );
22 | wwv_flow_imp.component_end;
23 | end;
24 | /
25 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/lovs/applications.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/lovs/applications
2 | begin
3 | -- Manifest
4 | -- APPLICATIONS
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_list_of_values(
15 | p_id=>wwv_flow_imp.id(472902966345364927)
16 | ,p_lov_name=>'APPLICATIONS'
17 | ,p_lov_query=>wwv_flow_string.join(wwv_flow_t_varchar2(
18 | 'select aa.application_id || '' - '' || aa.application_name app',
19 | ' ,aa.application_id',
20 | 'from apex_applications aa',
21 | 'order by aa.application_id'))
22 | ,p_source_type=>'LEGACY_SQL'
23 | ,p_location=>'LOCAL'
24 | ,p_version_scn=>1
25 | );
26 | wwv_flow_imp.component_end;
27 | end;
28 | /
29 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/lovs/components_chart.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/lovs/components_chart
2 | begin
3 | -- Manifest
4 | -- COMPONENTS (CHART)
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_list_of_values(
15 | p_id=>wwv_flow_imp.id(311721064277927858)
16 | ,p_lov_name=>'COMPONENTS (CHART)'
17 | ,p_lov_query=>wwv_flow_string.join(wwv_flow_t_varchar2(
18 | 'select lower(s.items_value_column_name) d, lower(s.items_value_column_name) r',
19 | 'from apex_application_page_chart_s s',
20 | 'where s.page_id = :APP_PAGE_ID',
21 | 'and s.items_value_column_name <> ''AMOUNT''',
22 | 'order by 1'))
23 | ,p_source_type=>'LEGACY_SQL'
24 | ,p_location=>'LOCAL'
25 | ,p_version_scn=>1
26 | );
27 | wwv_flow_imp.component_end;
28 | end;
29 | /
30 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/lovs/login_remember_username.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/lovs/login_remember_username
2 | begin
3 | -- Manifest
4 | -- LOGIN_REMEMBER_USERNAME
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_list_of_values(
15 | p_id=>wwv_flow_imp.id(59280152572934971)
16 | ,p_lov_name=>'LOGIN_REMEMBER_USERNAME'
17 | ,p_lov_query=>'.'||wwv_flow_imp.id(59280152572934971)||'.'
18 | ,p_location=>'STATIC'
19 | ,p_version_scn=>1
20 | );
21 | wwv_flow_imp_shared.create_static_lov_data(
22 | p_id=>wwv_flow_imp.id(59280477766934971)
23 | ,p_lov_disp_sequence=>10
24 | ,p_lov_disp_value=>'Remember username'
25 | ,p_lov_return_value=>'Y'
26 | );
27 | wwv_flow_imp.component_end;
28 | end;
29 | /
30 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/lovs/pages.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/lovs/pages
2 | begin
3 | -- Manifest
4 | -- PAGES
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_list_of_values(
15 | p_id=>wwv_flow_imp.id(469958774571399192)
16 | ,p_lov_name=>'PAGES'
17 | ,p_lov_query=>wwv_flow_string.join(wwv_flow_t_varchar2(
18 | 'select page_name || '' ('' || page_id || '')'' page,',
19 | ' page_id ',
20 | ' from apex_application_pages',
21 | 'where application_id = :P0_APP_ID',
22 | ' order by 1'))
23 | ,p_source_type=>'LEGACY_SQL'
24 | ,p_location=>'LOCAL'
25 | ,p_version_scn=>1
26 | );
27 | wwv_flow_imp.component_end;
28 | end;
29 | /
30 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/shortcuts/delete_confirm_msg.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/shortcuts/delete_confirm_msg
2 | begin
3 | -- Manifest
4 | -- SHORTCUT: DELETE_CONFIRM_MSG
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_shortcut(
15 | p_id=>wwv_flow_imp.id(313706856286835939)
16 | ,p_shortcut_name=>'DELETE_CONFIRM_MSG'
17 | ,p_shortcut_type=>'TEXT_ESCAPE_JS'
18 | ,p_version_scn=>1
19 | ,p_shortcut=>'Would you like to perform this delete action?'
20 | );
21 | wwv_flow_imp.component_end;
22 | end;
23 | /
24 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/template_options.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/template_options
2 | begin
3 | -- Manifest
4 | -- THEME OPTIONS: 347
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | null;
15 | wwv_flow_imp.component_end;
16 | end;
17 | /
18 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/templates/breadcrumb/breadcrumb.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/templates/breadcrumb/breadcrumb
2 | begin
3 | -- Manifest
4 | -- MENU TEMPLATE: BREADCRUMB
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.05.31'
8 | ,p_release=>'24.1.6'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_menu_template(
15 | p_id=>wwv_flow_imp.id(472890780758347747)
16 | ,p_name=>'Breadcrumb'
17 | ,p_internal_name=>'BREADCRUMB'
18 | ,p_before_first=>''
19 | ,p_current_page_option=>'#NAME#
'
20 | ,p_non_current_page_option=>'- #NAME#
'
21 | ,p_after_last=>'
'
22 | ,p_max_levels=>6
23 | ,p_start_with_node=>'PARENT_TO_LEAF'
24 | ,p_theme_id=>42
25 | ,p_theme_class_id=>1
26 | ,p_reference_id=>4070916542570059325
27 | ,p_translate_this_template=>'N'
28 | );
29 | wwv_flow_imp.component_end;
30 | end;
31 | /
32 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/templates/button/icon.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/templates/button/icon
2 | begin
3 | -- Manifest
4 | -- BUTTON TEMPLATE: ICON
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.05.31'
8 | ,p_release=>'24.1.6'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_button_templates(
15 | p_id=>wwv_flow_imp.id(472890142363347744)
16 | ,p_template_name=>'Icon'
17 | ,p_internal_name=>'ICON'
18 | ,p_template=>''
20 | ,p_hot_template=>''
22 | ,p_reference_id=>2347660919680321258
23 | ,p_translate_this_template=>'N'
24 | ,p_theme_class_id=>5
25 | ,p_theme_id=>42
26 | );
27 | wwv_flow_imp.component_end;
28 | end;
29 | /
30 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/templates/button/text.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/templates/button/text
2 | begin
3 | -- Manifest
4 | -- BUTTON TEMPLATE: TEXT
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.05.31'
8 | ,p_release=>'24.1.6'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_button_templates(
15 | p_id=>wwv_flow_imp.id(472890295330347746)
16 | ,p_template_name=>'Text'
17 | ,p_internal_name=>'TEXT'
18 | ,p_template=>''
19 | ,p_hot_template=>''
20 | ,p_reference_id=>4070916158035059322
21 | ,p_translate_this_template=>'N'
22 | ,p_theme_class_id=>1
23 | ,p_theme_id=>42
24 | );
25 | wwv_flow_imp.component_end;
26 | end;
27 | /
28 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/templates/button/text_with_icon.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/templates/button/text_with_icon
2 | begin
3 | -- Manifest
4 | -- BUTTON TEMPLATE: TEXT_WITH_ICON
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.05.31'
8 | ,p_release=>'24.1.6'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_button_templates(
15 | p_id=>wwv_flow_imp.id(472890377125347746)
16 | ,p_template_name=>'Text with Icon'
17 | ,p_internal_name=>'TEXT_WITH_ICON'
18 | ,p_template=>''
20 | ,p_hot_template=>''
22 | ,p_reference_id=>2081382742158699622
23 | ,p_translate_this_template=>'N'
24 | ,p_theme_class_id=>4
25 | ,p_preset_template_options=>'t-Button--iconLeft'
26 | ,p_theme_id=>42
27 | );
28 | wwv_flow_imp.component_end;
29 | end;
30 | /
31 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/templates/label/hidden.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/templates/label/hidden
2 | begin
3 | -- Manifest
4 | -- LABEL TEMPLATE: HIDDEN
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.05.31'
8 | ,p_release=>'24.1.6'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_field_template(
15 | p_id=>wwv_flow_imp.id(472889683695347740)
16 | ,p_template_name=>'Hidden'
17 | ,p_internal_name=>'HIDDEN'
18 | ,p_template_body1=>wwv_flow_string.join(wwv_flow_t_varchar2(
19 | '',
20 | '',
23 | '
'))
24 | ,p_before_item=>''
25 | ,p_after_item=>'
'
26 | ,p_item_pre_text=>'#CURRENT_ITEM_PRE_TEXT#'
27 | ,p_item_post_text=>'#CURRENT_ITEM_POST_TEXT#'
28 | ,p_before_element=>''
30 | ,p_help_link=>''
31 | ,p_inline_help_text=>'#CURRENT_ITEM_INLINE_HELP_TEXT#'
32 | ,p_error_template=>'#ERROR_MESSAGE#'
33 | ,p_theme_id=>42
34 | ,p_theme_class_id=>13
35 | ,p_reference_id=>2039339104148359505
36 | ,p_translate_this_template=>'N'
37 | );
38 | wwv_flow_imp.component_end;
39 | end;
40 | /
41 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/templates/label/optional.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/templates/label/optional
2 | begin
3 | -- Manifest
4 | -- LABEL TEMPLATE: OPTIONAL
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.05.31'
8 | ,p_release=>'24.1.6'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_field_template(
15 | p_id=>wwv_flow_imp.id(472889740066347741)
16 | ,p_template_name=>'Optional'
17 | ,p_internal_name=>'OPTIONAL'
18 | ,p_template_body1=>wwv_flow_string.join(wwv_flow_t_varchar2(
19 | '',
20 | '',
23 | '
',
24 | ''))
25 | ,p_before_item=>''
26 | ,p_after_item=>'
'
27 | ,p_item_pre_text=>'#CURRENT_ITEM_PRE_TEXT#'
28 | ,p_item_post_text=>'#CURRENT_ITEM_POST_TEXT#'
29 | ,p_before_element=>''
31 | ,p_help_link=>''
32 | ,p_inline_help_text=>'#CURRENT_ITEM_INLINE_HELP_TEXT#'
33 | ,p_error_template=>'#ERROR_MESSAGE#'
34 | ,p_theme_id=>42
35 | ,p_theme_class_id=>3
36 | ,p_reference_id=>2317154212072806530
37 | ,p_translate_this_template=>'N'
38 | );
39 | wwv_flow_imp.component_end;
40 | end;
41 | /
42 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/templates/label/optional_above.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/templates/label/optional_above
2 | begin
3 | -- Manifest
4 | -- LABEL TEMPLATE: OPTIONAL_ABOVE
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.05.31'
8 | ,p_release=>'24.1.6'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_field_template(
15 | p_id=>wwv_flow_imp.id(472889932791347741)
16 | ,p_template_name=>'Optional - Above'
17 | ,p_internal_name=>'OPTIONAL_ABOVE'
18 | ,p_template_body1=>wwv_flow_string.join(wwv_flow_t_varchar2(
19 | '',
20 | ' #HELP_TEMPLATE#',
23 | '
'))
24 | ,p_before_item=>''
25 | ,p_after_item=>'
'
26 | ,p_item_pre_text=>'#CURRENT_ITEM_PRE_TEXT#'
27 | ,p_item_post_text=>'#CURRENT_ITEM_POST_TEXT#'
28 | ,p_before_element=>''
30 | ,p_help_link=>''
31 | ,p_inline_help_text=>'#CURRENT_ITEM_INLINE_HELP_TEXT#'
32 | ,p_error_template=>'#ERROR_MESSAGE#'
33 | ,p_theme_id=>42
34 | ,p_theme_class_id=>3
35 | ,p_reference_id=>3030114864004968404
36 | ,p_translate_this_template=>'N'
37 | );
38 | wwv_flow_imp.component_end;
39 | end;
40 | /
41 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/templates/label/optional_floating.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/templates/label/optional_floating
2 | begin
3 | -- Manifest
4 | -- LABEL TEMPLATE: OPTIONAL_FLOATING
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.05.31'
8 | ,p_release=>'24.1.6'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_field_template(
15 | p_id=>wwv_flow_imp.id(146555703044008835)
16 | ,p_template_name=>'Optional - Floating'
17 | ,p_internal_name=>'OPTIONAL_FLOATING'
18 | ,p_template_body1=>wwv_flow_string.join(wwv_flow_t_varchar2(
19 | '',
20 | '',
23 | '
'))
24 | ,p_before_item=>''
25 | ,p_after_item=>'
'
26 | ,p_item_pre_text=>'#CURRENT_ITEM_PRE_TEXT#'
27 | ,p_item_post_text=>'#CURRENT_ITEM_POST_TEXT#'
28 | ,p_before_element=>''
30 | ,p_help_link=>''
31 | ,p_inline_help_text=>'#CURRENT_ITEM_INLINE_HELP_TEXT#'
32 | ,p_error_template=>'#ERROR_MESSAGE#'
33 | ,p_theme_id=>42
34 | ,p_theme_class_id=>3
35 | ,p_reference_id=>1607675164727151865
36 | ,p_translate_this_template=>'N'
37 | );
38 | wwv_flow_imp.component_end;
39 | end;
40 | /
41 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/templates/label/required.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/templates/label/required
2 | begin
3 | -- Manifest
4 | -- LABEL TEMPLATE: REQUIRED
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.05.31'
8 | ,p_release=>'24.1.6'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_field_template(
15 | p_id=>wwv_flow_imp.id(472889958345347743)
16 | ,p_template_name=>'Required'
17 | ,p_internal_name=>'REQUIRED'
18 | ,p_template_body1=>wwv_flow_string.join(wwv_flow_t_varchar2(
19 | '',
20 | ' ',
23 | '
'))
24 | ,p_before_item=>''
25 | ,p_after_item=>'
'
26 | ,p_item_pre_text=>'#CURRENT_ITEM_PRE_TEXT#'
27 | ,p_item_post_text=>'#CURRENT_ITEM_POST_TEXT#'
28 | ,p_before_element=>wwv_flow_string.join(wwv_flow_t_varchar2(
29 | ''))
40 | ,p_help_link=>''
41 | ,p_inline_help_text=>'#CURRENT_ITEM_INLINE_HELP_TEXT#
'
42 | ,p_error_template=>'#ERROR_MESSAGE#
'
43 | ,p_theme_id=>42
44 | ,p_theme_class_id=>4
45 | ,p_reference_id=>2525313812251712801
46 | ,p_translate_this_template=>'N'
47 | );
48 | wwv_flow_imp.component_end;
49 | end;
50 | /
51 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/templates/label/required_above.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/templates/label/required_above
2 | begin
3 | -- Manifest
4 | -- LABEL TEMPLATE: REQUIRED_ABOVE
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.05.31'
8 | ,p_release=>'24.1.6'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_field_template(
15 | p_id=>wwv_flow_imp.id(472890073116347743)
16 | ,p_template_name=>'Required - Above'
17 | ,p_internal_name=>'REQUIRED_ABOVE'
18 | ,p_template_body1=>wwv_flow_string.join(wwv_flow_t_varchar2(
19 | '',
20 | ' #HELP_TEMPLATE#',
23 | '
'))
24 | ,p_before_item=>''
25 | ,p_after_item=>'
'
26 | ,p_item_pre_text=>'#CURRENT_ITEM_PRE_TEXT#'
27 | ,p_item_post_text=>'#CURRENT_ITEM_POST_TEXT#'
28 | ,p_before_element=>wwv_flow_string.join(wwv_flow_t_varchar2(
29 | '',
39 | ''))
40 | ,p_help_link=>''
41 | ,p_inline_help_text=>'#CURRENT_ITEM_INLINE_HELP_TEXT#
'
42 | ,p_error_template=>'#ERROR_MESSAGE#
'
43 | ,p_theme_id=>42
44 | ,p_theme_class_id=>4
45 | ,p_reference_id=>3030115129444970113
46 | ,p_translate_this_template=>'N'
47 | );
48 | wwv_flow_imp.component_end;
49 | end;
50 | /
51 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/templates/label/required_floating.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/templates/label/required_floating
2 | begin
3 | -- Manifest
4 | -- LABEL TEMPLATE: REQUIRED_FLOATING
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.05.31'
8 | ,p_release=>'24.1.6'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_field_template(
15 | p_id=>wwv_flow_imp.id(146555988602008835)
16 | ,p_template_name=>'Required - Floating'
17 | ,p_internal_name=>'REQUIRED_FLOATING'
18 | ,p_template_body1=>wwv_flow_string.join(wwv_flow_t_varchar2(
19 | '',
20 | ' ',
23 | '
'))
24 | ,p_before_item=>''
25 | ,p_after_item=>'
'
26 | ,p_item_pre_text=>'#CURRENT_ITEM_PRE_TEXT#'
27 | ,p_item_post_text=>'#CURRENT_ITEM_POST_TEXT#'
28 | ,p_before_element=>wwv_flow_string.join(wwv_flow_t_varchar2(
29 | ''))
41 | ,p_help_link=>''
42 | ,p_inline_help_text=>'#CURRENT_ITEM_INLINE_HELP_TEXT#
'
43 | ,p_error_template=>'#ERROR_MESSAGE#
'
44 | ,p_theme_id=>42
45 | ,p_theme_class_id=>4
46 | ,p_reference_id=>1607675344320152883
47 | ,p_translate_this_template=>'N'
48 | );
49 | wwv_flow_imp.component_end;
50 | end;
51 | /
52 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/templates/list/badge_list.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/templates/list/badge_list
2 | begin
3 | -- Manifest
4 | -- REGION TEMPLATE: BADGE_LIST
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.05.31'
8 | ,p_release=>'24.1.6'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_list_template(
15 | p_id=>wwv_flow_imp.id(472880890826347721)
16 | ,p_list_template_current=>wwv_flow_string.join(wwv_flow_t_varchar2(
17 | '',
18 | ' ',
19 | ' #TEXT#',
20 | ' #A01#',
21 | ' ',
22 | '',
23 | ''))
24 | ,p_list_template_noncurrent=>wwv_flow_string.join(wwv_flow_t_varchar2(
25 | '',
26 | ' ',
27 | ' #TEXT#',
28 | ' #A01#',
29 | ' ',
30 | '',
31 | ''))
32 | ,p_list_template_name=>'Badge List'
33 | ,p_internal_name=>'BADGE_LIST'
34 | ,p_theme_id=>42
35 | ,p_theme_class_id=>3
36 | ,p_preset_template_options=>'t-BadgeList--large:t-BadgeList--cols t-BadgeList--3cols:t-BadgeList--circular'
37 | ,p_list_template_before_rows=>''
38 | ,p_list_template_after_rows=>'
'
39 | ,p_a01_label=>'Value'
40 | ,p_a02_label=>'List item CSS Classes'
41 | ,p_a03_label=>'Link Attributes'
42 | ,p_a04_label=>'Link Classes'
43 | ,p_reference_id=>2062482847268086664
44 | ,p_list_template_comment=>wwv_flow_string.join(wwv_flow_t_varchar2(
45 | 'A01: Large Number',
46 | 'A02: List Item Classes',
47 | 'A03: Link Attributes'))
48 | );
49 | wwv_flow_imp.component_end;
50 | end;
51 | /
52 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/templates/list/cards.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/templates/list/cards
2 | begin
3 | -- Manifest
4 | -- REGION TEMPLATE: CARDS
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.05.31'
8 | ,p_release=>'24.1.6'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_list_template(
15 | p_id=>wwv_flow_imp.id(472882562895347726)
16 | ,p_list_template_current=>wwv_flow_string.join(wwv_flow_t_varchar2(
17 | '',
18 | ' ',
19 | '
',
20 | ' #A03#
',
21 | ' ',
22 | '
#TEXT#
',
23 | ' #A07#
',
24 | ' ',
25 | ' ',
26 | '
#A01#
',
27 | '
#A02#
',
28 | '
',
29 | ' ',
30 | ' ',
31 | '
',
32 | ''))
33 | ,p_list_template_noncurrent=>wwv_flow_string.join(wwv_flow_t_varchar2(
34 | '',
35 | ' ',
36 | '
',
37 | ' #A03#
',
38 | ' ',
39 | '
#TEXT#
',
40 | ' #A07#
',
41 | ' ',
42 | ' ',
43 | '
#A01#
',
44 | '
#A02#
',
45 | '
',
46 | ' ',
47 | ' ',
48 | '
',
49 | ''))
50 | ,p_list_template_name=>'Cards'
51 | ,p_internal_name=>'CARDS'
52 | ,p_theme_id=>42
53 | ,p_theme_class_id=>4
54 | ,p_preset_template_options=>'t-Cards--animColorFill:t-Cards--3cols:t-Cards--basic'
55 | ,p_list_template_before_rows=>''
56 | ,p_list_template_after_rows=>'
'
57 | ,p_a01_label=>'Description'
58 | ,p_a02_label=>'Secondary Information'
59 | ,p_a03_label=>'Initials'
60 | ,p_a04_label=>'List Item CSS Classes'
61 | ,p_a05_label=>'Link Attributes'
62 | ,p_a06_label=>'Card Color Class'
63 | ,p_a07_label=>'Subtitle'
64 | ,p_reference_id=>2885322685880632508
65 | );
66 | wwv_flow_imp.component_end;
67 | end;
68 | /
69 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/templates/list/media_list.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/templates/list/media_list
2 | begin
3 | -- Manifest
4 | -- REGION TEMPLATE: MEDIA_LIST
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.05.31'
8 | ,p_release=>'24.1.6'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_list_template(
15 | p_id=>wwv_flow_imp.id(472885013677347730)
16 | ,p_list_template_current=>wwv_flow_string.join(wwv_flow_t_varchar2(
17 | '',
18 | ' ',
19 | ' ',
20 | ' ',
21 | '
',
22 | ' ',
23 | '
',
24 | '
#A01#
',
25 | '
',
26 | ' ',
27 | ' #A02#',
28 | '
',
29 | ' ',
30 | ''))
31 | ,p_list_template_noncurrent=>wwv_flow_string.join(wwv_flow_t_varchar2(
32 | '',
33 | ' ',
34 | ' ',
35 | ' ',
36 | '
',
37 | ' ',
38 | '
',
39 | '
#A01#
',
40 | '
',
41 | ' ',
42 | ' #A02#',
43 | '
',
44 | ' ',
45 | ''))
46 | ,p_list_template_name=>'Media List'
47 | ,p_internal_name=>'MEDIA_LIST'
48 | ,p_theme_id=>42
49 | ,p_theme_class_id=>5
50 | ,p_default_template_options=>'t-MediaList--showIcons:t-MediaList--showDesc'
51 | ,p_list_template_before_rows=>''
53 | ,p_a01_label=>'Description'
54 | ,p_a02_label=>'Badge Value'
55 | ,p_a03_label=>'Link Attributes'
56 | ,p_a04_label=>'List Item CSS Classes'
57 | ,p_a05_label=>'Link Class'
58 | ,p_a06_label=>'Icon Color Class'
59 | ,p_reference_id=>2066548068783481421
60 | );
61 | wwv_flow_imp.component_end;
62 | end;
63 | /
64 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/templates/list/tabs.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/templates/list/tabs
2 | begin
3 | -- Manifest
4 | -- REGION TEMPLATE: TABS
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.05.31'
8 | ,p_release=>'24.1.6'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_list_template(
15 | p_id=>wwv_flow_imp.id(472886874402347735)
16 | ,p_list_template_current=>wwv_flow_string.join(wwv_flow_t_varchar2(
17 | '',
18 | ' ',
19 | ' ',
20 | ' #TEXT#',
21 | ' ',
22 | ''))
23 | ,p_list_template_noncurrent=>wwv_flow_string.join(wwv_flow_t_varchar2(
24 | '',
25 | ' ',
26 | ' ',
27 | ' #TEXT#',
28 | ' ',
29 | ''))
30 | ,p_list_template_name=>'Tabs'
31 | ,p_internal_name=>'TABS'
32 | ,p_javascript_file_urls=>'#APEX_FILES#libraries/apex/#MIN_DIRECTORY#widget.apexTabs#MIN#.js?v=#APEX_VERSION#'
33 | ,p_theme_id=>42
34 | ,p_theme_class_id=>7
35 | ,p_preset_template_options=>'t-Tabs--simple'
36 | ,p_list_template_before_rows=>''
37 | ,p_list_template_after_rows=>'
'
38 | ,p_a01_label=>'List Item ID'
39 | ,p_a03_label=>'List Item Class'
40 | ,p_a04_label=>'Link Class'
41 | ,p_reference_id=>3288206686691809997
42 | );
43 | wwv_flow_imp.component_end;
44 | end;
45 | /
46 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/templates/list/top_navigation_tabs.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/templates/list/top_navigation_tabs
2 | begin
3 | -- Manifest
4 | -- REGION TEMPLATE: TOP_NAVIGATION_TABS
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.05.31'
8 | ,p_release=>'24.1.6'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_list_template(
15 | p_id=>wwv_flow_imp.id(146494828059008798)
16 | ,p_list_template_current=>wwv_flow_string.join(wwv_flow_t_varchar2(
17 | '',
18 | ' ',
19 | ' ',
20 | ' #TEXT_ESC_SC#',
21 | ' #A02#',
22 | ' ',
23 | ''))
24 | ,p_list_template_noncurrent=>wwv_flow_string.join(wwv_flow_t_varchar2(
25 | '',
26 | ' ',
27 | ' ',
28 | ' #TEXT_ESC_SC#',
29 | ' #A02#',
30 | ' ',
31 | ''))
32 | ,p_list_template_name=>'Top Navigation Tabs'
33 | ,p_internal_name=>'TOP_NAVIGATION_TABS'
34 | ,p_theme_id=>42
35 | ,p_theme_class_id=>7
36 | ,p_preset_template_options=>'t-NavTabs--inlineLabels-lg:t-NavTabs--displayLabels-sm'
37 | ,p_list_template_before_rows=>''
38 | ,p_list_template_after_rows=>'
'
39 | ,p_a01_label=>'List Item ID'
40 | ,p_a02_label=>'Badge Value'
41 | ,p_a03_label=>'List Item Class'
42 | ,p_a04_label=>'Link Class'
43 | ,p_a05_label=>'Badge Class'
44 | ,p_reference_id=>1453011561172885578
45 | );
46 | wwv_flow_imp.component_end;
47 | end;
48 | /
49 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/templates/list/wizard_progress.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/templates/list/wizard_progress
2 | begin
3 | -- Manifest
4 | -- REGION TEMPLATE: WIZARD_PROGRESS
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.05.31'
8 | ,p_release=>'24.1.6'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_list_template(
15 | p_id=>wwv_flow_imp.id(472888224117347737)
16 | ,p_list_template_current=>wwv_flow_string.join(wwv_flow_t_varchar2(
17 | '',
18 | ' ',
19 | ' ',
20 | ' #TEXT# ',
21 | '
',
22 | ''))
23 | ,p_list_template_noncurrent=>wwv_flow_string.join(wwv_flow_t_varchar2(
24 | '',
25 | ' ',
26 | ' ',
27 | ' #TEXT# ',
28 | '
',
29 | ''))
30 | ,p_list_template_name=>'Wizard Progress'
31 | ,p_internal_name=>'WIZARD_PROGRESS'
32 | ,p_javascript_code_onload=>'apex.theme.initWizardProgressBar();'
33 | ,p_theme_id=>42
34 | ,p_theme_class_id=>17
35 | ,p_preset_template_options=>'t-WizardSteps--displayLabels'
36 | ,p_list_template_before_rows=>''
37 | ,p_list_template_after_rows=>'
'
38 | ,p_reference_id=>2008702338707394488
39 | );
40 | wwv_flow_imp.component_end;
41 | end;
42 | /
43 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/templates/popuplov.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/templates/popuplov
2 | begin
3 | -- Manifest
4 | -- LOV TEMPLATES: 347
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | null;
15 | wwv_flow_imp.component_end;
16 | end;
17 | /
18 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/templates/region/blank_with_attributes.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/templates/region/blank_with_attributes
2 | begin
3 | -- Manifest
4 | -- REGION TEMPLATE: BLANK_WITH_ATTRIBUTES
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.05.31'
8 | ,p_release=>'24.1.6'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_plug_template(
15 | p_id=>wwv_flow_imp.id(472857468114347677)
16 | ,p_layout=>'TABLE'
17 | ,p_template=>'#PREVIOUS##BODY##SUB_REGIONS##NEXT#
'
18 | ,p_page_plug_template_name=>'Blank with Attributes'
19 | ,p_internal_name=>'BLANK_WITH_ATTRIBUTES'
20 | ,p_theme_id=>42
21 | ,p_theme_class_id=>7
22 | ,p_default_label_alignment=>'RIGHT'
23 | ,p_default_field_alignment=>'LEFT'
24 | ,p_reference_id=>4499993862448380551
25 | ,p_translate_this_template=>'N'
26 | );
27 | wwv_flow_imp_shared.create_plug_tmpl_display_point(
28 | p_id=>wwv_flow_imp.id(2495764663287045)
29 | ,p_plug_template_id=>wwv_flow_imp.id(472857468114347677)
30 | ,p_name=>'Region Body'
31 | ,p_placeholder=>'BODY'
32 | ,p_has_grid_support=>true
33 | ,p_has_region_support=>true
34 | ,p_has_item_support=>true
35 | ,p_has_button_support=>true
36 | ,p_glv_new_row=>true
37 | );
38 | wwv_flow_imp_shared.create_plug_tmpl_display_point(
39 | p_id=>wwv_flow_imp.id(2496267743287045)
40 | ,p_plug_template_id=>wwv_flow_imp.id(472857468114347677)
41 | ,p_name=>'Next'
42 | ,p_placeholder=>'NEXT'
43 | ,p_has_grid_support=>false
44 | ,p_has_region_support=>false
45 | ,p_has_item_support=>false
46 | ,p_has_button_support=>true
47 | ,p_glv_new_row=>true
48 | );
49 | wwv_flow_imp_shared.create_plug_tmpl_display_point(
50 | p_id=>wwv_flow_imp.id(2496753653287045)
51 | ,p_plug_template_id=>wwv_flow_imp.id(472857468114347677)
52 | ,p_name=>'Previous'
53 | ,p_placeholder=>'PREVIOUS'
54 | ,p_has_grid_support=>false
55 | ,p_has_region_support=>false
56 | ,p_has_item_support=>false
57 | ,p_has_button_support=>true
58 | ,p_glv_new_row=>true
59 | );
60 | wwv_flow_imp_shared.create_plug_tmpl_display_point(
61 | p_id=>wwv_flow_imp.id(2497243265287045)
62 | ,p_plug_template_id=>wwv_flow_imp.id(472857468114347677)
63 | ,p_name=>'Sub Regions'
64 | ,p_placeholder=>'SUB_REGIONS'
65 | ,p_has_grid_support=>true
66 | ,p_has_region_support=>true
67 | ,p_has_item_support=>false
68 | ,p_has_button_support=>false
69 | ,p_glv_new_row=>true
70 | );
71 | wwv_flow_imp.component_end;
72 | end;
73 | /
74 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/templates/region/blank_with_attributes_no_grid.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/templates/region/blank_with_attributes_no_grid
2 | begin
3 | -- Manifest
4 | -- REGION TEMPLATE: BLANK_WITH_ATTRIBUTES_NO_GRID
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.05.31'
8 | ,p_release=>'24.1.6'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_plug_template(
15 | p_id=>wwv_flow_imp.id(472859419852347680)
16 | ,p_layout=>'TABLE'
17 | ,p_template=>'#PREVIOUS##BODY##SUB_REGIONS##NEXT#
'
18 | ,p_page_plug_template_name=>'Blank with Attributes (No Grid)'
19 | ,p_internal_name=>'BLANK_WITH_ATTRIBUTES_NO_GRID'
20 | ,p_theme_id=>42
21 | ,p_theme_class_id=>7
22 | ,p_default_label_alignment=>'RIGHT'
23 | ,p_default_field_alignment=>'LEFT'
24 | ,p_reference_id=>3369790999010910123
25 | ,p_translate_this_template=>'N'
26 | );
27 | wwv_flow_imp_shared.create_plug_tmpl_display_point(
28 | p_id=>wwv_flow_imp.id(2499605181287045)
29 | ,p_plug_template_id=>wwv_flow_imp.id(472859419852347680)
30 | ,p_name=>'Region Body'
31 | ,p_placeholder=>'BODY'
32 | ,p_has_grid_support=>false
33 | ,p_has_region_support=>true
34 | ,p_has_item_support=>true
35 | ,p_has_button_support=>true
36 | ,p_glv_new_row=>true
37 | );
38 | wwv_flow_imp_shared.create_plug_tmpl_display_point(
39 | p_id=>wwv_flow_imp.id(2500183806287045)
40 | ,p_plug_template_id=>wwv_flow_imp.id(472859419852347680)
41 | ,p_name=>'Next'
42 | ,p_placeholder=>'NEXT'
43 | ,p_has_grid_support=>false
44 | ,p_has_region_support=>false
45 | ,p_has_item_support=>false
46 | ,p_has_button_support=>true
47 | ,p_glv_new_row=>true
48 | );
49 | wwv_flow_imp_shared.create_plug_tmpl_display_point(
50 | p_id=>wwv_flow_imp.id(2500614719287045)
51 | ,p_plug_template_id=>wwv_flow_imp.id(472859419852347680)
52 | ,p_name=>'Previous'
53 | ,p_placeholder=>'PREVIOUS'
54 | ,p_has_grid_support=>false
55 | ,p_has_region_support=>false
56 | ,p_has_item_support=>false
57 | ,p_has_button_support=>true
58 | ,p_glv_new_row=>true
59 | );
60 | wwv_flow_imp_shared.create_plug_tmpl_display_point(
61 | p_id=>wwv_flow_imp.id(2501195792287045)
62 | ,p_plug_template_id=>wwv_flow_imp.id(472859419852347680)
63 | ,p_name=>'Sub Regions'
64 | ,p_placeholder=>'SUB_REGIONS'
65 | ,p_has_grid_support=>false
66 | ,p_has_region_support=>true
67 | ,p_has_item_support=>false
68 | ,p_has_button_support=>false
69 | ,p_glv_new_row=>true
70 | );
71 | wwv_flow_imp.component_end;
72 | end;
73 | /
74 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/templates/region/cards_container.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/templates/region/cards_container
2 | begin
3 | -- Manifest
4 | -- REGION TEMPLATE: CARDS_CONTAINER
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.05.31'
8 | ,p_release=>'24.1.6'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_plug_template(
15 | p_id=>wwv_flow_imp.id(146427579233008751)
16 | ,p_layout=>'TABLE'
17 | ,p_template=>wwv_flow_string.join(wwv_flow_t_varchar2(
18 | '',
19 | '
#ORDER_BY_ITEM#
',
20 | ' #BODY#',
21 | ' #SUB_REGIONS#',
22 | '
'))
23 | ,p_page_plug_template_name=>'Cards Container'
24 | ,p_internal_name=>'CARDS_CONTAINER'
25 | ,p_theme_id=>42
26 | ,p_theme_class_id=>21
27 | ,p_default_template_options=>'u-colors'
28 | ,p_default_label_alignment=>'RIGHT'
29 | ,p_default_field_alignment=>'LEFT'
30 | ,p_default_landmark_type=>'region'
31 | ,p_reference_id=>2071277712695139743
32 | ,p_translate_this_template=>'N'
33 | );
34 | wwv_flow_imp_shared.create_plug_tmpl_display_point(
35 | p_id=>wwv_flow_imp.id(2514226609287050)
36 | ,p_plug_template_id=>wwv_flow_imp.id(146427579233008751)
37 | ,p_name=>'Region Body'
38 | ,p_placeholder=>'BODY'
39 | ,p_has_grid_support=>true
40 | ,p_has_region_support=>true
41 | ,p_has_item_support=>true
42 | ,p_has_button_support=>true
43 | ,p_glv_new_row=>true
44 | );
45 | wwv_flow_imp_shared.create_plug_tmpl_display_point(
46 | p_id=>wwv_flow_imp.id(2514770144287050)
47 | ,p_plug_template_id=>wwv_flow_imp.id(146427579233008751)
48 | ,p_name=>'Sort Order'
49 | ,p_placeholder=>'ORDER_BY_ITEM'
50 | ,p_has_grid_support=>false
51 | ,p_has_region_support=>false
52 | ,p_has_item_support=>true
53 | ,p_has_button_support=>true
54 | ,p_glv_new_row=>false
55 | );
56 | wwv_flow_imp_shared.create_plug_tmpl_display_point(
57 | p_id=>wwv_flow_imp.id(2515216211287050)
58 | ,p_plug_template_id=>wwv_flow_imp.id(146427579233008751)
59 | ,p_name=>'Sub Regions'
60 | ,p_placeholder=>'SUB_REGIONS'
61 | ,p_has_grid_support=>true
62 | ,p_has_region_support=>true
63 | ,p_has_item_support=>false
64 | ,p_has_button_support=>false
65 | ,p_glv_new_row=>true
66 | );
67 | wwv_flow_imp.component_end;
68 | end;
69 | /
70 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/templates/region/image.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/templates/region/image
2 | begin
3 | -- Manifest
4 | -- REGION TEMPLATE: IMAGE
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.05.31'
8 | ,p_release=>'24.1.6'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_plug_template(
15 | p_id=>wwv_flow_imp.id(23019814239678824)
16 | ,p_layout=>'TABLE'
17 | ,p_template=>''
18 | ,p_page_plug_template_name=>'Image'
19 | ,p_internal_name=>'IMAGE'
20 | ,p_theme_id=>42
21 | ,p_theme_class_id=>21
22 | ,p_preset_template_options=>'t-ImageRegion--auto:t-ImageRegion--cover:t-ImageRegion--square:t-ImageRegion--noFilter'
23 | ,p_default_label_alignment=>'RIGHT'
24 | ,p_default_field_alignment=>'LEFT'
25 | ,p_reference_id=>1673953645642781634
26 | ,p_translate_this_template=>'N'
27 | );
28 | wwv_flow_imp_shared.create_plug_tmpl_display_point(
29 | p_id=>wwv_flow_imp.id(2589754225287067)
30 | ,p_plug_template_id=>wwv_flow_imp.id(23019814239678824)
31 | ,p_name=>'Region Body'
32 | ,p_placeholder=>'BODY'
33 | ,p_has_grid_support=>false
34 | ,p_has_region_support=>false
35 | ,p_has_item_support=>false
36 | ,p_has_button_support=>false
37 | ,p_glv_new_row=>false
38 | );
39 | wwv_flow_imp_shared.create_plug_tmpl_display_point(
40 | p_id=>wwv_flow_imp.id(2590263335287067)
41 | ,p_plug_template_id=>wwv_flow_imp.id(23019814239678824)
42 | ,p_name=>'Sub Regions'
43 | ,p_placeholder=>'SUB_REGIONS'
44 | ,p_has_grid_support=>false
45 | ,p_has_region_support=>true
46 | ,p_has_item_support=>false
47 | ,p_has_button_support=>false
48 | ,p_glv_new_row=>false
49 | );
50 | wwv_flow_imp.component_end;
51 | end;
52 | /
53 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/templates/region/item_container.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/templates/region/item_container
2 | begin
3 | -- Manifest
4 | -- REGION TEMPLATE: ITEM_CONTAINER
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.05.31'
8 | ,p_release=>'24.1.6'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_plug_template(
15 | p_id=>wwv_flow_imp.id(22494107937816746)
16 | ,p_layout=>'TABLE'
17 | ,p_template=>wwv_flow_string.join(wwv_flow_t_varchar2(
18 | '',
19 | '
#BUTTON_START#
',
20 | '
#BODY#
',
21 | '
#BUTTON_END#
',
22 | '
'))
23 | ,p_page_plug_template_name=>'Item Container'
24 | ,p_internal_name=>'ITEM_CONTAINER'
25 | ,p_theme_id=>42
26 | ,p_theme_class_id=>21
27 | ,p_default_label_alignment=>'RIGHT'
28 | ,p_default_field_alignment=>'LEFT'
29 | ,p_reference_id=>1568547778806319863
30 | ,p_translate_this_template=>'N'
31 | );
32 | wwv_flow_imp_shared.create_plug_tmpl_display_point(
33 | p_id=>wwv_flow_imp.id(2646589300287079)
34 | ,p_plug_template_id=>wwv_flow_imp.id(22494107937816746)
35 | ,p_name=>'Item'
36 | ,p_placeholder=>'BODY'
37 | ,p_has_grid_support=>false
38 | ,p_has_region_support=>false
39 | ,p_has_item_support=>true
40 | ,p_has_button_support=>false
41 | ,p_glv_new_row=>true
42 | );
43 | wwv_flow_imp_shared.create_plug_tmpl_display_point(
44 | p_id=>wwv_flow_imp.id(2647030082287079)
45 | ,p_plug_template_id=>wwv_flow_imp.id(22494107937816746)
46 | ,p_name=>'Button End'
47 | ,p_placeholder=>'BUTTON_END'
48 | ,p_has_grid_support=>false
49 | ,p_has_region_support=>false
50 | ,p_has_item_support=>false
51 | ,p_has_button_support=>true
52 | ,p_glv_new_row=>true
53 | );
54 | wwv_flow_imp_shared.create_plug_tmpl_display_point(
55 | p_id=>wwv_flow_imp.id(2647525753287079)
56 | ,p_plug_template_id=>wwv_flow_imp.id(22494107937816746)
57 | ,p_name=>'Button Start'
58 | ,p_placeholder=>'BUTTON_START'
59 | ,p_has_grid_support=>false
60 | ,p_has_region_support=>false
61 | ,p_has_item_support=>false
62 | ,p_has_button_support=>true
63 | ,p_glv_new_row=>true
64 | );
65 | wwv_flow_imp.component_end;
66 | end;
67 | /
68 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/templates/region/search_results_container.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/templates/region/search_results_container
2 | begin
3 | -- Manifest
4 | -- REGION TEMPLATE: SEARCH_RESULTS_CONTAINER
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.05.31'
8 | ,p_release=>'24.1.6'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_plug_template(
15 | p_id=>wwv_flow_imp.id(22489810060816741)
16 | ,p_layout=>'TABLE'
17 | ,p_template=>wwv_flow_string.join(wwv_flow_t_varchar2(
18 | '',
19 | '
#SEARCH_FIELD#
',
20 | ' #BODY#',
21 | ' #SUB_REGIONS#',
22 | '
',
23 | ''))
24 | ,p_page_plug_template_name=>'Search Results Container'
25 | ,p_internal_name=>'SEARCH_RESULTS_CONTAINER'
26 | ,p_theme_id=>42
27 | ,p_theme_class_id=>11
28 | ,p_default_template_options=>'u-colors'
29 | ,p_default_label_alignment=>'RIGHT'
30 | ,p_default_field_alignment=>'LEFT'
31 | ,p_default_landmark_type=>'region'
32 | ,p_reference_id=>1554292095258992441
33 | ,p_translate_this_template=>'N'
34 | );
35 | wwv_flow_imp_shared.create_plug_tmpl_display_point(
36 | p_id=>wwv_flow_imp.id(2659176159287082)
37 | ,p_plug_template_id=>wwv_flow_imp.id(22489810060816741)
38 | ,p_name=>'Search Results'
39 | ,p_placeholder=>'BODY'
40 | ,p_has_grid_support=>false
41 | ,p_has_region_support=>true
42 | ,p_has_item_support=>true
43 | ,p_has_button_support=>true
44 | ,p_glv_new_row=>true
45 | );
46 | wwv_flow_imp_shared.create_plug_tmpl_display_point(
47 | p_id=>wwv_flow_imp.id(2659655951287082)
48 | ,p_plug_template_id=>wwv_flow_imp.id(22489810060816741)
49 | ,p_name=>'Search Field'
50 | ,p_placeholder=>'SEARCH_FIELD'
51 | ,p_has_grid_support=>false
52 | ,p_has_region_support=>true
53 | ,p_has_item_support=>true
54 | ,p_has_button_support=>true
55 | ,p_glv_new_row=>true
56 | );
57 | wwv_flow_imp_shared.create_plug_tmpl_display_point(
58 | p_id=>wwv_flow_imp.id(2660112339287082)
59 | ,p_plug_template_id=>wwv_flow_imp.id(22489810060816741)
60 | ,p_name=>'Sub Regions'
61 | ,p_placeholder=>'SUB_REGIONS'
62 | ,p_has_grid_support=>false
63 | ,p_has_region_support=>true
64 | ,p_has_item_support=>false
65 | ,p_has_button_support=>false
66 | ,p_glv_new_row=>true
67 | );
68 | wwv_flow_imp.component_end;
69 | end;
70 | /
71 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/templates/region/tabs_container.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/templates/region/tabs_container
2 | begin
3 | -- Manifest
4 | -- REGION TEMPLATE: TABS_CONTAINER
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.05.31'
8 | ,p_release=>'24.1.6'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_plug_template(
15 | p_id=>wwv_flow_imp.id(472870696850347699)
16 | ,p_layout=>'TABLE'
17 | ,p_template=>wwv_flow_string.join(wwv_flow_t_varchar2(
18 | '',
19 | ' #BODY#',
20 | '
#SUB_REGIONS#
',
21 | '
'))
22 | ,p_sub_plug_template=>'#SUB_REGION#
'
23 | ,p_page_plug_template_name=>'Tabs Container'
24 | ,p_internal_name=>'TABS_CONTAINER'
25 | ,p_javascript_file_urls=>'#APEX_FILES#libraries/apex/#MIN_DIRECTORY#widget.apexTabs#MIN#.js?v=#APEX_VERSION#'
26 | ,p_theme_id=>42
27 | ,p_theme_class_id=>5
28 | ,p_preset_template_options=>'t-TabsRegion-mod--simple'
29 | ,p_default_label_alignment=>'RIGHT'
30 | ,p_default_field_alignment=>'LEFT'
31 | ,p_reference_id=>3221725015618492759
32 | ,p_translate_this_template=>'N'
33 | );
34 | wwv_flow_imp_shared.create_plug_tmpl_display_point(
35 | p_id=>wwv_flow_imp.id(2693262910287089)
36 | ,p_plug_template_id=>wwv_flow_imp.id(472870696850347699)
37 | ,p_name=>'Region Body'
38 | ,p_placeholder=>'BODY'
39 | ,p_has_grid_support=>true
40 | ,p_has_region_support=>true
41 | ,p_has_item_support=>true
42 | ,p_has_button_support=>true
43 | ,p_glv_new_row=>true
44 | );
45 | wwv_flow_imp_shared.create_plug_tmpl_display_point(
46 | p_id=>wwv_flow_imp.id(2693703777287089)
47 | ,p_plug_template_id=>wwv_flow_imp.id(472870696850347699)
48 | ,p_name=>'Tabs'
49 | ,p_placeholder=>'SUB_REGIONS'
50 | ,p_has_grid_support=>false
51 | ,p_has_region_support=>true
52 | ,p_has_item_support=>false
53 | ,p_has_button_support=>false
54 | ,p_glv_new_row=>true
55 | );
56 | wwv_flow_imp.component_end;
57 | end;
58 | /
59 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/templates/report/badge_list.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/templates/report/badge_list
2 | begin
3 | -- Manifest
4 | -- ROW TEMPLATE: BADGE_LIST
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.05.31'
8 | ,p_release=>'24.1.6'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_row_template(
15 | p_id=>wwv_flow_imp.id(472872940334347705)
16 | ,p_row_template_name=>'Badge List'
17 | ,p_internal_name=>'BADGE_LIST'
18 | ,p_row_template1=>wwv_flow_string.join(wwv_flow_t_varchar2(
19 | '',
20 | ' ',
21 | ' #COLUMN_HEADER#',
22 | ' #COLUMN_VALUE#',
23 | ' ',
24 | ''))
25 | ,p_row_template_before_rows=>''
26 | ,p_row_template_after_rows=>wwv_flow_string.join(wwv_flow_t_varchar2(
27 | '
',
28 | ''))
29 | ,p_row_template_type=>'GENERIC_COLUMNS'
30 | ,p_row_template_display_cond1=>'0'
31 | ,p_row_template_display_cond2=>'0'
32 | ,p_row_template_display_cond3=>'0'
33 | ,p_row_template_display_cond4=>'0'
34 | ,p_pagination_template=>''
35 | ,p_next_page_template=>wwv_flow_string.join(wwv_flow_t_varchar2(
36 | ''))
39 | ,p_previous_page_template=>wwv_flow_string.join(wwv_flow_t_varchar2(
40 | ''))
43 | ,p_next_set_template=>wwv_flow_string.join(wwv_flow_t_varchar2(
44 | ''))
47 | ,p_previous_set_template=>wwv_flow_string.join(wwv_flow_t_varchar2(
48 | ''))
51 | ,p_theme_id=>42
52 | ,p_theme_class_id=>6
53 | ,p_preset_template_options=>'t-BadgeList--large:t-BadgeList--fixed:t-BadgeList--circular'
54 | ,p_reference_id=>2103197159775914759
55 | ,p_translate_this_template=>'N'
56 | );
57 | wwv_flow_imp.component_end;
58 | end;
59 | /
60 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/templates/report/contextual_info.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/templates/report/contextual_info
2 | begin
3 | -- Manifest
4 | -- ROW TEMPLATE: CONTEXTUAL_INFO
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.05.31'
8 | ,p_release=>'24.1.6'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_row_template(
15 | p_id=>wwv_flow_imp.id(56814547576344046)
16 | ,p_row_template_name=>'Contextual Info'
17 | ,p_internal_name=>'CONTEXTUAL_INFO'
18 | ,p_row_template1=>wwv_flow_string.join(wwv_flow_t_varchar2(
19 | '',
20 | ' #COLUMN_HEADER#',
21 | ' #COLUMN_VALUE#',
22 | '
'))
23 | ,p_row_template_before_rows=>' '
24 | ,p_row_template_after_rows=>wwv_flow_string.join(wwv_flow_t_varchar2(
25 | '
',
26 | ''))
27 | ,p_row_template_type=>'GENERIC_COLUMNS'
28 | ,p_row_template_display_cond1=>'0'
29 | ,p_row_template_display_cond2=>'0'
30 | ,p_row_template_display_cond3=>'0'
31 | ,p_row_template_display_cond4=>'0'
32 | ,p_pagination_template=>''
33 | ,p_next_page_template=>wwv_flow_string.join(wwv_flow_t_varchar2(
34 | ''))
37 | ,p_previous_page_template=>wwv_flow_string.join(wwv_flow_t_varchar2(
38 | ''))
41 | ,p_next_set_template=>wwv_flow_string.join(wwv_flow_t_varchar2(
42 | ''))
45 | ,p_previous_set_template=>wwv_flow_string.join(wwv_flow_t_varchar2(
46 | ''))
49 | ,p_theme_id=>42
50 | ,p_theme_class_id=>6
51 | ,p_reference_id=>2114325881116323585
52 | ,p_translate_this_template=>'N'
53 | );
54 | wwv_flow_imp.component_end;
55 | end;
56 | /
57 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/templates/report/value_attribute_pairs_column.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/templates/report/value_attribute_pairs_column
2 | begin
3 | -- Manifest
4 | -- ROW TEMPLATE: VALUE_ATTRIBUTE_PAIRS_COLUMN
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.05.31'
8 | ,p_release=>'24.1.6'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_row_template(
15 | p_id=>wwv_flow_imp.id(472878951555347718)
16 | ,p_row_template_name=>'Value Attribute Pairs - Column'
17 | ,p_internal_name=>'VALUE_ATTRIBUTE_PAIRS_COLUMN'
18 | ,p_row_template1=>wwv_flow_string.join(wwv_flow_t_varchar2(
19 | '#COLUMN_HEADER#',
20 | '#COLUMN_VALUE#'))
21 | ,p_row_template_before_rows=>''
22 | ,p_row_template_after_rows=>wwv_flow_string.join(wwv_flow_t_varchar2(
23 | '
',
24 | ''))
25 | ,p_row_template_type=>'GENERIC_COLUMNS'
26 | ,p_row_template_display_cond1=>'0'
27 | ,p_row_template_display_cond2=>'0'
28 | ,p_row_template_display_cond3=>'0'
29 | ,p_row_template_display_cond4=>'0'
30 | ,p_pagination_template=>''
31 | ,p_next_page_template=>wwv_flow_string.join(wwv_flow_t_varchar2(
32 | ''))
35 | ,p_previous_page_template=>wwv_flow_string.join(wwv_flow_t_varchar2(
36 | ''))
39 | ,p_next_set_template=>wwv_flow_string.join(wwv_flow_t_varchar2(
40 | ''))
43 | ,p_previous_set_template=>wwv_flow_string.join(wwv_flow_t_varchar2(
44 | ''))
47 | ,p_theme_id=>42
48 | ,p_theme_class_id=>6
49 | ,p_preset_template_options=>'t-AVPList--leftAligned'
50 | ,p_reference_id=>2099068636272681754
51 | ,p_translate_this_template=>'N'
52 | );
53 | wwv_flow_imp.component_end;
54 | end;
55 | /
56 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/templates/report/value_attribute_pairs_row.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/templates/report/value_attribute_pairs_row
2 | begin
3 | -- Manifest
4 | -- ROW TEMPLATE: VALUE_ATTRIBUTE_PAIRS_ROW
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.05.31'
8 | ,p_release=>'24.1.6'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_row_template(
15 | p_id=>wwv_flow_imp.id(472880008537347719)
16 | ,p_row_template_name=>'Value Attribute Pairs - Row'
17 | ,p_internal_name=>'VALUE_ATTRIBUTE_PAIRS_ROW'
18 | ,p_row_template1=>wwv_flow_string.join(wwv_flow_t_varchar2(
19 | '',
20 | ' #1#',
21 | '',
22 | '',
23 | ' #2#',
24 | ''))
25 | ,p_row_template_before_rows=>''
26 | ,p_row_template_after_rows=>wwv_flow_string.join(wwv_flow_t_varchar2(
27 | '
',
28 | ''))
29 | ,p_row_template_type=>'NAMED_COLUMNS'
30 | ,p_row_template_display_cond1=>'0'
31 | ,p_row_template_display_cond2=>'0'
32 | ,p_row_template_display_cond3=>'0'
33 | ,p_row_template_display_cond4=>'0'
34 | ,p_pagination_template=>''
35 | ,p_next_page_template=>wwv_flow_string.join(wwv_flow_t_varchar2(
36 | ''))
39 | ,p_previous_page_template=>wwv_flow_string.join(wwv_flow_t_varchar2(
40 | ''))
43 | ,p_next_set_template=>wwv_flow_string.join(wwv_flow_t_varchar2(
44 | ''))
47 | ,p_previous_set_template=>wwv_flow_string.join(wwv_flow_t_varchar2(
48 | ''))
51 | ,p_theme_id=>42
52 | ,p_theme_class_id=>7
53 | ,p_preset_template_options=>'t-AVPList--leftAligned'
54 | ,p_reference_id=>2099068321678681753
55 | ,p_translate_this_template=>'N'
56 | );
57 | wwv_flow_imp.component_end;
58 | end;
59 | /
60 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/theme_display_points.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/theme_display_points
2 | begin
3 | -- Manifest
4 | -- THEME DISPLAY POINTS: 347
5 | -- Manifest End
6 | wwv_flow_api.component_begin (
7 | p_version_yyyy_mm_dd=>'2020.10.01'
8 | ,p_release=>'20.2.0.00.20'
9 | ,p_default_workspace_id=>125633378786110814
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>125634094441118325
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | null;
15 | wwv_flow_api.component_end;
16 | end;
17 | /
18 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/theme_style.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/theme_style
2 | begin
3 | -- Manifest
4 | -- THEME STYLE: 347
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_theme_style(
15 | p_id=>wwv_flow_imp.id(41068433484203671)
16 | ,p_theme_id=>42
17 | ,p_name=>'AV - Dark'
18 | ,p_is_public=>true
19 | ,p_is_accessible=>false
20 | ,p_theme_roller_input_file_urls=>'#THEME_FILES#less/theme/Vita-Dark.less'
21 | ,p_theme_roller_config=>'{"classes":[],"vars":{"@Nav-Exp":"160px"},"customCSS":"","useCustomLess":"N"}'
22 | ,p_theme_roller_output_file_url=>'#THEME_DB_FILES#41068433484203671.css'
23 | ,p_theme_roller_read_only=>false
24 | );
25 | wwv_flow_imp_shared.create_theme_style(
26 | p_id=>wwv_flow_imp.id(58061746547589757)
27 | ,p_theme_id=>42
28 | ,p_name=>'APEX Visualizer'
29 | ,p_is_public=>true
30 | ,p_is_accessible=>true
31 | ,p_theme_roller_input_file_urls=>'#THEME_FILES#less/theme/Vita.less'
32 | ,p_theme_roller_config=>'{"classes":[],"vars":{"@Actions-Exp":"210px","@Nav-Exp":"160px"},"customCSS":"","useCustomLess":"N"}'
33 | ,p_theme_roller_output_file_url=>'#THEME_DB_FILES#58061746547589757.css'
34 | ,p_theme_roller_read_only=>false
35 | );
36 | wwv_flow_imp.component_end;
37 | end;
38 | /
39 |
--------------------------------------------------------------------------------
/app/f347/application/shared_components/user_interface/themes.sql:
--------------------------------------------------------------------------------
1 | prompt --application/shared_components/user_interface/themes
2 | begin
3 | -- Manifest
4 | -- THEME: 347
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_theme(
15 | p_id=>wwv_flow_imp.id(472891583772347768)
16 | ,p_theme_id=>42
17 | ,p_theme_name=>'Universal Theme'
18 | ,p_theme_internal_name=>'UNIVERSAL_THEME'
19 | ,p_version_identifier=>'24.2'
20 | ,p_navigation_type=>'L'
21 | ,p_nav_bar_type=>'LIST'
22 | ,p_reference_id=>4072363937200175119
23 | ,p_is_locked=>false
24 | ,p_current_theme_style_id=>2721322117358710262
25 | ,p_default_page_template=>2526646919027767344
26 | ,p_default_dialog_template=>2100407606326202693
27 | ,p_error_template=>2101157952850466385
28 | ,p_printer_friendly_template=>4072355960268175073
29 | ,p_breadcrumb_display_point=>'REGION_POSITION_01'
30 | ,p_sidebar_display_point=>'REGION_POSITION_02'
31 | ,p_login_template=>2101157952850466385
32 | ,p_default_button_template=>4072362960822175091
33 | ,p_default_region_template=>4072358936313175081
34 | ,p_default_chart_template=>4072358936313175081
35 | ,p_default_form_template=>4072358936313175081
36 | ,p_default_reportr_template=>4072358936313175081
37 | ,p_default_tabform_template=>4072358936313175081
38 | ,p_default_wizard_template=>4072358936313175081
39 | ,p_default_menur_template=>2531463326621247859
40 | ,p_default_listr_template=>4072358936313175081
41 | ,p_default_irr_template=>2100526641005906379
42 | ,p_default_report_template=>2538654340625403440
43 | ,p_default_label_template=>2318601014859922299
44 | ,p_default_menu_template=>4072363345357175094
45 | ,p_default_calendar_template=>4072363550766175095
46 | ,p_default_list_template=>4072361143931175087
47 | ,p_default_nav_list_template=>2526754704087354841
48 | ,p_default_top_nav_list_temp=>2526754704087354841
49 | ,p_default_side_nav_list_temp=>2467739217141810545
50 | ,p_default_nav_list_position=>'SIDE'
51 | ,p_default_dialogbtnr_template=>2126429139436695430
52 | ,p_default_dialogr_template=>4501440665235496320
53 | ,p_default_option_label=>2318601014859922299
54 | ,p_default_required_label=>2526760615038828570
55 | ,p_default_navbar_list_template=>2847543055748234966
56 | ,p_file_prefix => nvl(wwv_flow_application_install.get_static_theme_file_prefix(42),'#APEX_FILES#themes/theme_42/24.2/')
57 | ,p_files_version=>64
58 | ,p_icon_library=>'FONTAPEX'
59 | ,p_javascript_file_urls=>wwv_flow_string.join(wwv_flow_t_varchar2(
60 | '#APEX_FILES#libraries/apex/#MIN_DIRECTORY#widget.stickyWidget#MIN#.js?v=#APEX_VERSION#',
61 | '#THEME_FILES#js/theme42#MIN#.js?v=#APEX_VERSION#'))
62 | ,p_css_file_urls=>'#THEME_FILES#css/Core#MIN#.css?v=#APEX_VERSION#'
63 | );
64 | wwv_flow_imp.component_end;
65 | end;
66 | /
67 |
--------------------------------------------------------------------------------
/app/f347/application/user_interfaces.sql:
--------------------------------------------------------------------------------
1 | prompt --application/user_interfaces
2 | begin
3 | -- Manifest
4 | -- USER INTERFACES: 347
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | wwv_flow_imp_shared.create_user_interface(
15 | p_id=>wwv_flow_imp.id(347)
16 | ,p_theme_id=>42
17 | ,p_home_url=>'f?p=&APP_ID.:10:&SESSION.'
18 | ,p_login_url=>'f?p=&APP_ID.:LOGIN:&APP_SESSION.::&DEBUG.:::'
19 | ,p_theme_style_by_user_pref=>false
20 | ,p_global_page_id=>0
21 | ,p_navigation_list_id=>wwv_flow_imp.id(472848853615347627)
22 | ,p_navigation_list_position=>'SIDE'
23 | ,p_navigation_list_template_id=>2467739217141810545
24 | ,p_nav_list_template_options=>'#DEFAULT#:js-defaultCollapsed:js-navCollapsed--hidden:t-TreeNav--classic'
25 | ,p_css_file_urls=>'#APP_FILES#av#MIN#.css'
26 | ,p_javascript_file_urls=>'#APP_FILES#av#MIN#.js'
27 | ,p_nav_bar_type=>'LIST'
28 | ,p_nav_bar_list_id=>wwv_flow_imp.id(472901013601347796)
29 | ,p_nav_bar_list_template_id=>2847543055748234966
30 | ,p_nav_bar_template_options=>'#DEFAULT#'
31 | );
32 | wwv_flow_imp.component_end;
33 | end;
34 | /
35 |
--------------------------------------------------------------------------------
/app/f347/application/user_interfaces/combined_files.sql:
--------------------------------------------------------------------------------
1 | prompt --application/user_interfaces/combined_files
2 | begin
3 | -- Manifest
4 | -- COMBINED FILES: 347
5 | -- Manifest End
6 | wwv_flow_imp.component_begin (
7 | p_version_yyyy_mm_dd=>'2024.11.30'
8 | ,p_release=>'24.2.3'
9 | ,p_default_workspace_id=>100001
10 | ,p_default_application_id=>347
11 | ,p_default_id_offset=>20408574139881448
12 | ,p_default_owner=>'APEX_VISUALIZER'
13 | );
14 | null;
15 | wwv_flow_imp.component_end;
16 | end;
17 | /
18 |
--------------------------------------------------------------------------------
/app/f347/embedded_code/pages/p00000.js:
--------------------------------------------------------------------------------
1 | // --------------------------------------------------------------------------------
2 | //
3 | // Oracle APEX source export file
4 | //
5 | // The contents of this file are intended for review and analysis purposes only.
6 | // Developers must use the Application Builder to make modifications to an
7 | // application. Changes to this file will not be reflected in the application.
8 | //
9 | // --------------------------------------------------------------------------------
10 |
11 | // ----------------------------------------
12 | // Page: 0 - Global Page - Desktop > Dynamic Action: Show Details > Client-side Condition > JavaScript Expression
13 |
14 | $('#details').is(':hidden')
15 |
16 | // ----------------------------------------
17 | // Page: 0 - Global Page - Desktop > Dynamic Action: change APP_ID,PAGE_ID - set P0_PAGE_DESIGNER_LINK > Action: Execute JavaScript Code > Settings > Code
18 |
19 | $('#P0_LINK_CONTAINER').html(apex.item("P0_PAGE_DESIGNER_LINK").getValue());
20 |
21 |
--------------------------------------------------------------------------------
/app/f347/embedded_code/pages/p00000.sql:
--------------------------------------------------------------------------------
1 | -- --------------------------------------------------------------------------------
2 | --
3 | -- Oracle APEX source export file
4 | --
5 | -- The contents of this file are intended for review and analysis purposes only.
6 | -- Developers must use the Application Builder to make modifications to an
7 | -- application. Changes to this file will not be reflected in the application.
8 | --
9 | -- --------------------------------------------------------------------------------
10 |
11 | -- ----------------------------------------
12 | -- Page: 0 - Global Page - Desktop > Button: Refresh > Server-side Condition (Rows returned) > SQL Query
13 |
14 | select le.entry_text
15 | from apex_application_list_entries le
16 | where le.application_id = :APP_ID
17 | and le.list_name = 'Desktop Navigation Menu'
18 | and le.parent_entry_text = 'Migration';
19 |
20 |
--------------------------------------------------------------------------------
/app/f347/embedded_code/pages/p00030.js:
--------------------------------------------------------------------------------
1 | // --------------------------------------------------------------------------------
2 | //
3 | // Oracle APEX source export file
4 | //
5 | // The contents of this file are intended for review and analysis purposes only.
6 | // Developers must use the Application Builder to make modifications to an
7 | // application. Changes to this file will not be reflected in the application.
8 | //
9 | // --------------------------------------------------------------------------------
10 |
11 | // ----------------------------------------
12 | // Page: 30 - Page > JavaScript > Function and Global Variable Declaration
13 |
14 | var htmldb_delete_message='"DELETE_CONFIRM_MSG"';
15 |
16 |
--------------------------------------------------------------------------------
/app/f347/embedded_code/pages/p00030.sql:
--------------------------------------------------------------------------------
1 | -- --------------------------------------------------------------------------------
2 | --
3 | -- Oracle APEX source export file
4 | --
5 | -- The contents of this file are intended for review and analysis purposes only.
6 | -- Developers must use the Application Builder to make modifications to an
7 | -- application. Changes to this file will not be reflected in the application.
8 | --
9 | -- --------------------------------------------------------------------------------
10 |
11 | -- ----------------------------------------
12 | -- Page: 30 - Page > Region: Page > Source > SQL Query
13 |
14 | select aap.application_id
15 | ,aap.application_name
16 | ,aap.page_id
17 | ,aap.page_name
18 | ,aap.page_mode
19 | ,aap.page_alias
20 | ,aap.page_function
21 | ,aap.page_group
22 | ,aap.page_template
23 | ,aap.created_by
24 | ,aap.created_on
25 | ,aap.last_updated_by
26 | ,aap.last_updated_on
27 | ,aap.reload_on_submit
28 | ,aap.warn_on_unsaved_changes
29 | from apex_application_pages aap
30 | where (aap.application_id = :P0_APP_ID or :P0_APP_ID is null)
31 | and (aap.page_id = :P0_PAGE_ID or :P0_PAGE_ID is null);
32 |
33 |
--------------------------------------------------------------------------------
/app/f347/embedded_code/pages/p00040.sql:
--------------------------------------------------------------------------------
1 | -- --------------------------------------------------------------------------------
2 | --
3 | -- Oracle APEX source export file
4 | --
5 | -- The contents of this file are intended for review and analysis purposes only.
6 | -- Developers must use the Application Builder to make modifications to an
7 | -- application. Changes to this file will not be reflected in the application.
8 | --
9 | -- --------------------------------------------------------------------------------
10 |
11 | -- ----------------------------------------
12 | -- Page: 40 - Visibility > Region: Objects conditioned > Source > SQL Query
13 |
14 | select count(1) amount_overall
15 | ,v.application_id
16 | ,v.component_type
17 | ,(select count (1) from av_visibility_v v1 where v1.application_id = v.application_id and v1.component_type = v.component_type and v1.visibility_name is not null group by v1.component_type,v1.application_id) amount
18 | from av_visibility_v v
19 | where v.application_id = :P0_APP_ID or :P0_APP_ID is null
20 | group by application_id, component_type;
21 |
22 | -- ----------------------------------------
23 | -- Page: 40 - Visibility > Region: Conditioned by > Source > SQL Query
24 |
25 | select v.application_id
26 | ,v.visibility_category
27 | ,count(1) amount
28 | from av_visibility_v v
29 | where v.visibility_name is not null and (v.application_id = :P0_APP_ID or :P0_APP_ID is null)
30 | group by application_id, visibility_category;
31 |
32 | -- ----------------------------------------
33 | -- Page: 40 - Visibility > Region: Condition Details > Source > SQL Query
34 |
35 | select v.application_id || ' - ' || v.application_name app
36 | ,v.visibility_name
37 | ,v.visibility_category
38 | ,v.visibility_type
39 | ,v.visibility_exp1
40 | ,count(1) amount
41 | ,visibility_type || '
amount=' || count(1) || '
' || visibility_exp1 tooltip
42 | from av_visibility_v v
43 | where v.visibility_name is not null
44 | and v.application_id = :P0_APP_ID or :P0_APP_ID is null
45 | group by v.application_id || ' - ' || v.application_name
46 | ,v.visibility_category
47 | ,v.visibility_name
48 | ,visibility_type
49 | ,visibility_exp1;
50 |
51 |
--------------------------------------------------------------------------------
/app/f347/embedded_code/pages/p00050.sql:
--------------------------------------------------------------------------------
1 | -- --------------------------------------------------------------------------------
2 | --
3 | -- Oracle APEX source export file
4 | --
5 | -- The contents of this file are intended for review and analysis purposes only.
6 | -- Developers must use the Application Builder to make modifications to an
7 | -- application. Changes to this file will not be reflected in the application.
8 | --
9 | -- --------------------------------------------------------------------------------
10 |
11 | -- ----------------------------------------
12 | -- Page: 50 - Last Updated > Region: Application changes > Source > SQL Query
13 |
14 | select l.application_id
15 | ,l.application_name
16 | ,l.audit_action
17 | ,trunc(audit_date)
18 | ,count(1) amount
19 | from apex_developer_activity_log l
20 | where (l.application_id = :P0_APP_ID or :P0_APP_ID is null)
21 | and l.page_id is not null
22 | and (l.page_id = :P0_PAGE_ID or :P0_PAGE_ID is null)
23 | group by trunc(audit_date), audit_action, application_name, application_id;
24 |
25 | -- ----------------------------------------
26 | -- Page: 50 - Last Updated > Page Item: P50_DATE > List of Values > SQL Query
27 |
28 | select to_char(trunc(audit_date), 'dd.mm.yyyy') d, to_char(trunc(audit_date), 'dd.mm.yyyy') r
29 | from apex_developer_activity_log l
30 | where (l.application_id = :P0_APP_ID or :P0_APP_ID is null)
31 | and l.page_id is not null
32 | and (l.page_id = :P0_PAGE_ID or :P0_PAGE_ID is null)
33 | group by trunc(audit_date);
34 |
35 | -- ----------------------------------------
36 | -- Page: 50 - Last Updated > Region: Changes on Components > Source > SQL Query
37 |
38 | select l.application_id
39 | ,l.application_name
40 | ,l.page_name
41 | ,l.page_id
42 | ,l.audit_action
43 | ,l.component_name
44 | ,l.component
45 | ,trunc(audit_date)
46 | ,count(1) amount
47 | ,'page: ' || page_name || '
component name: ' || component_name || '
component type: ' || component tooltip
48 | from apex_developer_activity_log l
49 | where (l.application_id = :p0_app_id or :p0_app_id is null)
50 | and l.page_id is not null and component_name is not null
51 | and (l.page_id = :p0_page_id or :p0_page_id is null)
52 | and (trunc(audit_date) = to_date(:p50_date
53 | ,'dd.mm.yyyy') or :p50_date is null)
54 | group by trunc(audit_date)
55 | ,audit_action
56 | ,application_name
57 | ,application_id
58 | ,l.component_name
59 | ,component
60 | ,page_name
61 | ,page_id
62 | order by count(1) desc;
63 |
64 |
--------------------------------------------------------------------------------
/app/f347/embedded_code/pages/p00200.sql:
--------------------------------------------------------------------------------
1 | -- --------------------------------------------------------------------------------
2 | --
3 | -- Oracle APEX source export file
4 | --
5 | -- The contents of this file are intended for review and analysis purposes only.
6 | -- Developers must use the Application Builder to make modifications to an
7 | -- application. Changes to this file will not be reflected in the application.
8 | --
9 | -- --------------------------------------------------------------------------------
10 |
11 | -- ----------------------------------------
12 | -- Page: 200 - CSS > Region: Place of CSS > Source > SQL Query
13 |
14 | select application_name
15 | ,application_id
16 | ,component_type || ' - ' || css_code_type js_component
17 | ,sum(css_code_length) amount
18 | from av_css_v
19 | where (:P0_APP_ID is null or application_id = :P0_APP_ID)
20 | and (:P0_PAGE_ID is null or page_id = :P0_PAGE_ID)
21 | and (:P0_BEST_PRACTICE = -1 or :P0_BEST_PRACTICE = best_practice)
22 | group by application_name,application_id,component_type || ' - ' || css_code_type
23 | order by sum(css_code_length) desc;
24 |
25 | -- ----------------------------------------
26 | -- Page: 200 - CSS > Page Item: P200_COMPONENT_TYPE > List of Values > SQL Query
27 |
28 | select distinct component_type d, component_type r
29 | from av_javascript_v
30 | where (:P0_APP_ID is null or application_id = :P0_APP_ID)
31 | and (:P0_PAGE_ID is null or page_id = :P0_PAGE_ID);
32 |
33 | -- ----------------------------------------
34 | -- Page: 200 - CSS > Region: CSS in Page > Source > SQL Query
35 |
36 | select page_name || ' (' || v.page_id || ') - ' || v.component_name series_name, v.component_type, v.css_code, v.css_code_length, v.css_code_type, v.tooltip, v.page_designer_url
37 | from av_css_v v
38 | where v.application_id = :P0_APP_ID
39 | and (v.page_id = :P0_PAGE_ID or :P0_PAGE_ID is null)
40 | and (:P0_BEST_PRACTICE = -1 or :P0_BEST_PRACTICE = best_practice)
41 | and (v.component_type = :P200_COMPONENT_TYPE or :P200_COMPONENT_TYPE is null)
42 | order by css_code_length desc;
43 |
44 | -- ----------------------------------------
45 | -- Page: 200 - CSS > Region: Characters of CSS Code per Page > Source > SQL Query
46 |
47 | select page_id,
48 | page_name_and_id,
49 | page_group,
50 | page_function,
51 | components_count,
52 | code_length_sum,
53 | code_lines_sum,
54 | tooltip
55 | from av_p0200_css_code_by_page_v t
56 | where (t.application_id = :P0_APP_ID or :P0_APP_ID is null)
57 | and t.page_id is not null
58 | and (:P0_BEST_PRACTICE = -1 or :P0_BEST_PRACTICE = t.best_practice);
59 |
60 |
--------------------------------------------------------------------------------
/app/f347/embedded_code/pages/p00300.sql:
--------------------------------------------------------------------------------
1 | -- --------------------------------------------------------------------------------
2 | --
3 | -- Oracle APEX source export file
4 | --
5 | -- The contents of this file are intended for review and analysis purposes only.
6 | -- Developers must use the Application Builder to make modifications to an
7 | -- application. Changes to this file will not be reflected in the application.
8 | --
9 | -- --------------------------------------------------------------------------------
10 |
11 | -- ----------------------------------------
12 | -- Page: 300 - PLSQL > Region: Place of PLSQL > Source > SQL Query
13 |
14 | select application_name
15 | ,application_id
16 | ,component_type || ' - ' || code_type component
17 | ,sum(code_length) amount
18 | from av_plsql_v
19 | where (:P0_APP_ID is null or application_id = :P0_APP_ID)
20 | and (:P0_PAGE_ID is null or page_id = :P0_PAGE_ID)
21 | and (:P0_BEST_PRACTICE = -1 or :P0_BEST_PRACTICE = best_practice)
22 | group by application_name,application_id,component_type || ' - ' || code_type
23 | order by sum(code_length) desc;
24 |
25 | -- ----------------------------------------
26 | -- Page: 300 - PLSQL > Page Item: P300_COMPONENT_TYPE > List of Values > SQL Query
27 |
28 | select distinct component_type d, component_type r
29 | from av_plsql_v
30 | where (:P0_APP_ID is null or application_id = :P0_APP_ID)
31 | and (:P0_PAGE_ID is null or page_id = :P0_PAGE_ID);
32 |
33 | -- ----------------------------------------
34 | -- Page: 300 - PLSQL > Region: PLSQL in Page > Source > SQL Query
35 |
36 | select component_type || ' - ' || v.component_name series_name, v.component_type, v.plsql_code, v.code_length, v.code_type, v.tooltip, v.page_designer_url
37 | from av_plsql_v v
38 | where v.application_id = :P0_APP_ID
39 | and (v.page_id = :P0_PAGE_ID)
40 | and (:P0_BEST_PRACTICE = -1 or :P0_BEST_PRACTICE = v.best_practice)
41 | and (v.component_type = :P300_COMPONENT_TYPE or :P300_COMPONENT_TYPE is null)
42 | order by code_length desc;
43 |
44 | -- ----------------------------------------
45 | -- Page: 300 - PLSQL > Region: Characters of PLSQL Code per Page > Source > SQL Query
46 |
47 | select page_id,
48 | page_name_and_id,
49 | page_group,
50 | page_function,
51 | components_count,
52 | code_length_sum,
53 | code_lines_sum,
54 | tooltip
55 | from av_p0300_plsql_code_by_page_v t
56 | where (t.application_id = :P0_APP_ID or :P0_APP_ID is null)
57 | and t.page_id is not null
58 | and (:P0_BEST_PRACTICE = -1 or :P0_BEST_PRACTICE = t.best_practice);
59 |
60 |
--------------------------------------------------------------------------------
/app/f347/embedded_code/pages/p00400.sql:
--------------------------------------------------------------------------------
1 | -- --------------------------------------------------------------------------------
2 | --
3 | -- Oracle APEX source export file
4 | --
5 | -- The contents of this file are intended for review and analysis purposes only.
6 | -- Developers must use the Application Builder to make modifications to an
7 | -- application. Changes to this file will not be reflected in the application.
8 | --
9 | -- --------------------------------------------------------------------------------
10 |
11 | -- ----------------------------------------
12 | -- Page: 400 - Plugins > Region: Plugins > Source > SQL Query
13 |
14 | select distinct
15 | DISPLAY_NAME,
16 | PLUGIN_TYPE,
17 | NAME,
18 | API_VERSION,
19 | RENDER_FUNCTION,
20 | HELP_TEXT,
21 | VERSION_IDENTIFIER,
22 | ABOUT_URL
23 | from AV_PLUGINS_V
24 | where application_id = :P0_APP_ID;
25 |
26 | -- ----------------------------------------
27 | -- Page: 400 - Plugins > Page Item: P400_PLUGIN_ID > List of Values > SQL Query
28 |
29 | select display_name, plugin_id
30 | from av_plugins_v
31 | where application_id = :P0_APP_ID
32 | group by display_name, plugin_id
33 | order by display_name;
34 |
35 |
--------------------------------------------------------------------------------
/app/f347/embedded_code/pages/p00500.sql:
--------------------------------------------------------------------------------
1 | -- --------------------------------------------------------------------------------
2 | --
3 | -- Oracle APEX source export file
4 | --
5 | -- The contents of this file are intended for review and analysis purposes only.
6 | -- Developers must use the Application Builder to make modifications to an
7 | -- application. Changes to this file will not be reflected in the application.
8 | --
9 | -- --------------------------------------------------------------------------------
10 |
11 | -- ----------------------------------------
12 | -- Page: 500 - Links > Region: Links to Page > Source > SQL Query
13 |
14 | select PAGE_ID,
15 | PAGE_NAME,
16 | PAGE_GROUP,
17 | LINK_TYPE,
18 | LINK_NAME,
19 | LINK_LABEL,
20 | LINK_PAGE_ID,
21 | PAGE_DESIGNER_URL
22 | from AV_PAGE_LINKS_V
23 | where application_id = :P0_APP_ID and
24 | (:P0_PAGE_ID is null or :P0_PAGE_ID = link_page_id);
25 |
26 | -- ----------------------------------------
27 | -- Page: 500 - Links > Region: Links from Page > Source > SQL Query
28 |
29 | select PAGE_ID,
30 | PAGE_NAME,
31 | PAGE_GROUP,
32 | LINK_TYPE,
33 | LINK_NAME,
34 | LINK_LABEL,
35 | LINK_PAGE_ID,
36 | PAGE_DESIGNER_URL
37 | from AV_PAGE_LINKS_V
38 | where application_id = :P0_APP_ID and
39 | (:P0_PAGE_ID is null or :P0_PAGE_ID = page_id);
40 |
41 |
--------------------------------------------------------------------------------
/app/f347/embedded_code/pages/p00510.sql:
--------------------------------------------------------------------------------
1 | -- --------------------------------------------------------------------------------
2 | --
3 | -- Oracle APEX source export file
4 | --
5 | -- The contents of this file are intended for review and analysis purposes only.
6 | -- Developers must use the Application Builder to make modifications to an
7 | -- application. Changes to this file will not be reflected in the application.
8 | --
9 | -- --------------------------------------------------------------------------------
10 |
11 | -- ----------------------------------------
12 | -- Page: 510 - Login Page > Process: Login > Source > PL/SQL Code
13 |
14 | apex_authentication.login(
15 | p_username => :P510_USERNAME,
16 | p_password => :P510_PASSWORD );
17 |
18 | -- ----------------------------------------
19 | -- Page: 510 - Login Page > Process: Get Username Cookie > Source > PL/SQL Code
20 |
21 | :P510_USERNAME := apex_authentication.get_login_username_cookie;
22 | :P510_REMEMBER := case when :P510_USERNAME is not null then 'Y' end;
23 |
24 | -- ----------------------------------------
25 | -- Page: 510 - Login Page > Process: Set Username Cookie > Source > PL/SQL Code
26 |
27 | apex_authentication.send_login_username_cookie (
28 | p_username => lower(:P510_USERNAME),
29 | p_consent => :P510_REMEMBER = 'Y' );
30 |
31 |
--------------------------------------------------------------------------------
/app/f347/embedded_code/pages/p00600.sql:
--------------------------------------------------------------------------------
1 | -- --------------------------------------------------------------------------------
2 | --
3 | -- Oracle APEX source export file
4 | --
5 | -- The contents of this file are intended for review and analysis purposes only.
6 | -- Developers must use the Application Builder to make modifications to an
7 | -- application. Changes to this file will not be reflected in the application.
8 | --
9 | -- --------------------------------------------------------------------------------
10 |
11 | -- ----------------------------------------
12 | -- Page: 600 - QA > Region: unused plugins > Source > SQL Query
13 |
14 | select NAME,
15 | DISPLAY_NAME
16 | from AV_PLUGINS_V
17 | where application_id = :P0_APP_ID and
18 | page_name is null;
19 |
20 | -- ----------------------------------------
21 | -- Page: 600 - QA > Dynamic Action: change P0_APP_ID - refresh regions > Action: Execute Server-side Code > Settings > PL/SQL Code
22 |
23 | select
24 | a.compatibility_mode
25 | ,a.Session_State_Protection
26 | ,nvl2(a.runtime_api_usage, replace(replace(replace(a.runtime_api_usage,'T','This'),'O','Other'),'W','Workspace'),'None')
27 | into
28 | :P600_COMPATIBILITY_MODE
29 | ,:P600_SESSION_STATE_PROTECTION
30 | ,:P600_RUNTIME_API_USAGE
31 | from apex_applications a
32 | where a.application_id = :P0_APP_ID;
33 |
34 | select
35 | ui.include_legacy_javascript
36 | ,ui.include_jquery_migrate
37 | into
38 | :P600_INCLUDE_LEGACY_JAVASCRIPT
39 | ,:P600_INCLUDE_JQUERY_MIGRATE
40 | from apex_appl_user_interfaces ui
41 | where ui.application_id = :P0_APP_ID
42 | and ui.ui_type_name = 'DESKTOP';
43 |
44 | select
45 | t.theme_name
46 | ,replace(substr(t.file_prefix,instr(t.file_prefix,'theme_42') + 9),'/')
47 | into
48 | :P600_THEME_NAME
49 | ,:P600_UT_VERSION
50 | from apex_application_themes t
51 | where t.application_id = :P0_APP_ID
52 | and t.ui_type_name = 'DESKTOP'
53 | and t.is_current = 'Yes';
54 |
55 | -- ----------------------------------------
56 | -- Page: 600 - QA > Region: unused authorization schemes > Source > SQL Query
57 |
58 | select a.authorization_scheme_name
59 | from av_p0600_not_used_auth_schemes_v a
60 | where a.application_id = :P0_APP_ID;
61 |
62 | -- ----------------------------------------
63 | -- Page: 600 - QA > Region: never condition used > Source > SQL Query
64 |
65 | select v.page_name
66 | ,v.page_id
67 | ,v.component_type
68 | ,v.component_name
69 | from av_visibility_v v
70 | where v.visibility_category = 'CONDITION'
71 | and upper(v.visibility_type) = 'NEVER'
72 | and v.application_id = :P0_APP_ID;
73 |
74 |
--------------------------------------------------------------------------------
/app/f347/embedded_code/pages/p00707.sql:
--------------------------------------------------------------------------------
1 | -- --------------------------------------------------------------------------------
2 | --
3 | -- Oracle APEX source export file
4 | --
5 | -- The contents of this file are intended for review and analysis purposes only.
6 | -- Developers must use the Application Builder to make modifications to an
7 | -- application. Changes to this file will not be reflected in the application.
8 | --
9 | -- --------------------------------------------------------------------------------
10 |
11 | -- ----------------------------------------
12 | -- Page: 707 - APEX 21.1 > Region: 5.1.3 Date Picker (jQuery) Deprecated > Source > SQL Query
13 |
14 | select
15 | pi.page_id,
16 | pi.page_name,
17 | pi.item_name,
18 | pi.label
19 | from apex_application_page_items pi
20 | where pi.display_as_code = 'NATIVE_DATE_PICKER'
21 | and pi.application_id = :P0_APP_ID;
22 |
23 | -- ----------------------------------------
24 | -- Page: 707 - APEX 21.1 > Region: 7.1.11 apex.navigation.dialog.fireCloseHandler function is Desupported > Source > SQL Query
25 |
26 | select j.page_id
27 | ,j.page_name
28 | ,j.component_name
29 | ,j.component_type
30 | ,j.js_code_vc2
31 | from av_javascript_v j
32 | where instr(j.js_code_clob
33 | ,'apex.navigation.dialog.fireCloseHandler') > 0
34 | and j.application_id = :P0_APP_ID;
35 |
36 | -- ----------------------------------------
37 | -- Page: 707 - APEX 21.1 > Region: 7.1.9 afterModify is Desupported > Source > SQL Query
38 |
39 | select j.page_id
40 | ,j.page_name
41 | ,j.component_name
42 | ,j.component_type
43 | ,j.js_code_vc2
44 | from av_javascript_v j
45 | where instr(j.js_code_clob
46 | ,'.afterModify') > 0
47 | and j.application_id = :P0_APP_ID;
48 |
49 |
--------------------------------------------------------------------------------
/app/f347/embedded_code/pages/p00708.sql:
--------------------------------------------------------------------------------
1 | -- --------------------------------------------------------------------------------
2 | --
3 | -- Oracle APEX source export file
4 | --
5 | -- The contents of this file are intended for review and analysis purposes only.
6 | -- Developers must use the Application Builder to make modifications to an
7 | -- application. Changes to this file will not be reflected in the application.
8 | --
9 | -- --------------------------------------------------------------------------------
10 |
11 | -- ----------------------------------------
12 | -- Page: 708 - APEX 21.2 > Region: 5.1.2 Deprecated Region Positions > Source > SQL Query
13 |
14 | select b.page_id
15 | ,b.page_name
16 | ,b.region
17 | ,b.button_name
18 | ,b.label
19 | ,b.display_position
20 | from apex_application_page_buttons b
21 | where b.display_position_code in ('TOP'
22 | ,'BOTTOM'
23 | ,'BELOW_BOX'
24 | ,'ABOVE_BOX')
25 | and b.application_id = :P0_APP_ID;
26 |
27 | -- ----------------------------------------
28 | -- Page: 708 - APEX 21.2 > Region: 5.1.1 Deprecated Page Positions > Source > SQL Query
29 |
30 | select page_id, page_name, region_name, display_position_code
31 | from apex_application_page_regions r
32 | where display_position_code in ( 'BODY_1', 'BODY_2', 'BODY_3', 'AFTER_HEADER', 'BEFORE_FOOTER' )
33 | and application_id = :P0_APP_ID;
34 |
35 | -- ----------------------------------------
36 | -- Page: 708 - APEX 21.2 > Region: 5.1.4 Legacy Substitution Strings Deprecated > Source > SQL Query
37 |
38 | select page_id
39 | ,page_name
40 | ,component_name
41 | ,component_type
42 | ,code_vc2
43 | from av_p0708_legacy_subst_strings_v
44 | where application_id = :P0_APP_ID;
45 |
46 |
--------------------------------------------------------------------------------
/app/f347/embedded_code/pages/p00709.js:
--------------------------------------------------------------------------------
1 | // --------------------------------------------------------------------------------
2 | //
3 | // Oracle APEX source export file
4 | //
5 | // The contents of this file are intended for review and analysis purposes only.
6 | // Developers must use the Application Builder to make modifications to an
7 | // application. Changes to this file will not be reflected in the application.
8 | //
9 | // --------------------------------------------------------------------------------
10 |
11 | // ----------------------------------------
12 | // Page: 709 - APEX 22.1 > Dynamic Action: change P0_APP_ID - refresh regions > Action: Execute JavaScript Code > Settings > Code
13 |
14 | av_refresh_hide_show_regions()
15 |
16 | // ----------------------------------------
17 | // Page: 709 - APEX 22.1 > Dynamic Action: click refresh - refresh regions > Action: Execute JavaScript Code > Settings > Code
18 |
19 | av_refresh_hide_show_regions()
20 |
21 |
--------------------------------------------------------------------------------
/app/f347/embedded_code/pages/p00710.js:
--------------------------------------------------------------------------------
1 | // --------------------------------------------------------------------------------
2 | //
3 | // Oracle APEX source export file
4 | //
5 | // The contents of this file are intended for review and analysis purposes only.
6 | // Developers must use the Application Builder to make modifications to an
7 | // application. Changes to this file will not be reflected in the application.
8 | //
9 | // --------------------------------------------------------------------------------
10 |
11 | // ----------------------------------------
12 | // Page: 710 - APEX 22.2 > Dynamic Action: change P0_APP_ID - refresh regions > Action: Execute JavaScript Code > Settings > Code
13 |
14 | av_refresh_hide_show_regions()
15 |
16 | // ----------------------------------------
17 | // Page: 710 - APEX 22.2 > Dynamic Action: click refresh - refresh regions > Action: Execute JavaScript Code > Settings > Code
18 |
19 | av_refresh_hide_show_regions()
20 |
21 |
--------------------------------------------------------------------------------
/app/f347/embedded_code/pages/p00715.js:
--------------------------------------------------------------------------------
1 | // --------------------------------------------------------------------------------
2 | //
3 | // Oracle APEX source export file
4 | //
5 | // The contents of this file are intended for review and analysis purposes only.
6 | // Developers must use the Application Builder to make modifications to an
7 | // application. Changes to this file will not be reflected in the application.
8 | //
9 | // --------------------------------------------------------------------------------
10 |
11 | // ----------------------------------------
12 | // Page: 715 - APEX 23.1 > Dynamic Action: click refresh - refresh regions > Action: Execute JavaScript Code > Settings > Code
13 |
14 | av_refresh_hide_show_regions()
15 |
16 | // ----------------------------------------
17 | // Page: 715 - APEX 23.1 > Dynamic Action: page load - add icons by class > Action: Execute JavaScript Code > Settings > Code
18 |
19 | console.log('running DA')
20 | console.log(this.affectedElements);
21 |
22 | // ----------------------------------------
23 | // Page: 715 - APEX 23.1 > Dynamic Action: change P0_APP_ID - refresh regions > Action: Execute JavaScript Code > Settings > Code
24 |
25 | av_refresh_hide_show_regions()
26 |
27 |
--------------------------------------------------------------------------------
/app/f347/embedded_code/pages/p00720.js:
--------------------------------------------------------------------------------
1 | // --------------------------------------------------------------------------------
2 | //
3 | // Oracle APEX source export file
4 | //
5 | // The contents of this file are intended for review and analysis purposes only.
6 | // Developers must use the Application Builder to make modifications to an
7 | // application. Changes to this file will not be reflected in the application.
8 | //
9 | // --------------------------------------------------------------------------------
10 |
11 | // ----------------------------------------
12 | // Page: 720 - APEX 23.2 > Dynamic Action: click refresh - refresh regions > Action: Execute JavaScript Code > Settings > Code
13 |
14 | av_refresh_hide_show_regions()
15 |
16 | // ----------------------------------------
17 | // Page: 720 - APEX 23.2 > Dynamic Action: page load - add icons by class > Action: Execute JavaScript Code > Settings > Code
18 |
19 | console.log('running DA')
20 | console.log(this.affectedElements);
21 |
22 | // ----------------------------------------
23 | // Page: 720 - APEX 23.2 > Dynamic Action: change P0_APP_ID - refresh regions > Action: Execute JavaScript Code > Settings > Code
24 |
25 | av_refresh_hide_show_regions()
26 |
27 |
--------------------------------------------------------------------------------
/app/f347/embedded_code/pages/p00720.sql:
--------------------------------------------------------------------------------
1 | -- --------------------------------------------------------------------------------
2 | --
3 | -- Oracle APEX source export file
4 | --
5 | -- The contents of this file are intended for review and analysis purposes only.
6 | -- Developers must use the Application Builder to make modifications to an
7 | -- application. Changes to this file will not be reflected in the application.
8 | --
9 | -- --------------------------------------------------------------------------------
10 |
11 | -- ----------------------------------------
12 | -- Page: 720 - APEX 23.2 > Region: 7.2 Querying Template Component Metadata > Source > SQL Query
13 |
14 | select r.page_id
15 | ,r.page_name
16 | ,r.region_name
17 | from apex_application_page_regions r
18 | where r.application_id = :P0_APP_ID
19 | and r.template_component_type_code is not null
20 | and (r.attribute_01 is not null or --
21 | r.attribute_02 is not null or --
22 | r.attribute_03 is not null or --
23 | r.attribute_04 is not null or --
24 | r.attribute_05 is not null or --
25 | r.attribute_06 is not null or --
26 | r.attribute_07 is not null or --
27 | r.attribute_08 is not null or --
28 | r.attribute_09 is not null or --
29 | r.attribute_10 is not null or --
30 | r.attribute_11 is not null or --
31 | r.attribute_12 is not null or --
32 | r.attribute_13 is not null or --
33 | r.attribute_14 is not null or --
34 | r.attribute_15 is not null or --
35 | r.attribute_16 is not null or --
36 | r.attribute_17 is not null or --
37 | r.attribute_18 is not null or --
38 | r.attribute_19 is not null or --
39 | r.attribute_20 is not null or --
40 | r.attribute_21 is not null or --
41 | r.attribute_22 is not null or --
42 | r.attribute_23 is not null or --
43 | r.attribute_24 is not null or --
44 | r.attribute_25 is not null);
45 |
46 |
--------------------------------------------------------------------------------
/app/f347/embedded_code/pages/p00730.js:
--------------------------------------------------------------------------------
1 | // --------------------------------------------------------------------------------
2 | //
3 | // Oracle APEX source export file
4 | //
5 | // The contents of this file are intended for review and analysis purposes only.
6 | // Developers must use the Application Builder to make modifications to an
7 | // application. Changes to this file will not be reflected in the application.
8 | //
9 | // --------------------------------------------------------------------------------
10 |
11 | // ----------------------------------------
12 | // Page: 730 - APEX 24.1 > Dynamic Action: change P0_APP_ID - refresh regions > Action: Execute JavaScript Code > Settings > Code
13 |
14 | av_refresh_hide_show_regions()
15 |
16 | // ----------------------------------------
17 | // Page: 730 - APEX 24.1 > Dynamic Action: click refresh - refresh regions > Action: Execute JavaScript Code > Settings > Code
18 |
19 | av_refresh_hide_show_regions()
20 |
21 | // ----------------------------------------
22 | // Page: 730 - APEX 24.1 > Dynamic Action: page load - add icons by class > Action: Execute JavaScript Code > Settings > Code
23 |
24 | console.log('running DA')
25 | console.log(this.affectedElements);
26 |
27 |
--------------------------------------------------------------------------------
/app/f347/embedded_code/pages/p00730.sql:
--------------------------------------------------------------------------------
1 | -- --------------------------------------------------------------------------------
2 | --
3 | -- Oracle APEX source export file
4 | --
5 | -- The contents of this file are intended for review and analysis purposes only.
6 | -- Developers must use the Application Builder to make modifications to an
7 | -- application. Changes to this file will not be reflected in the application.
8 | --
9 | -- --------------------------------------------------------------------------------
10 |
11 | -- ----------------------------------------
12 | -- Page: 730 - APEX 24.1 > Region: 5.3 Deprecated Plugin Attribute > Source > SQL Query
13 |
14 | select p.plugin_type, p.display_name, p.substitute_attributes
15 | from apex_appl_plugins p
16 | where p.plugin_type = 'Region Type'
17 | and p.application_id = :P0_APP_ID
18 | and p.substitute_attributes = 'Y';
19 |
20 | -- ----------------------------------------
21 | -- Page: 730 - APEX 24.1 > Region: 5.4 Number Field Substitutions > Source > SQL Query
22 |
23 | select p.page_id, p.page_name, p.display_as, p.item_name, p.label, p.attribute_01 item_min, p.attribute_02 item_max
24 | from apex_application_page_items p
25 | where display_as_code = 'NATIVE_NUMBER_FIELD'
26 | and p.application_id = :P0_APP_ID
27 | and (instr(p.attribute_01,'&') > 0 or instr(p.attribute_02,'&') > 0);
28 |
29 | -- ----------------------------------------
30 | -- Page: 730 - APEX 24.1 > Region: 5.2 Deprecated Dynamic Action Event > Source > SQL Query
31 |
32 | select d.page_id
33 | ,d.page_name
34 | ,'dynamic action' component_type
35 | ,d.dynamic_action_name
36 | ,d.when_event_name
37 | from apex_application_page_da d
38 | where d.application_id = :P0_APP_ID
39 | and d.when_event_name = 'Page Unload';
40 |
41 | -- ----------------------------------------
42 | -- Page: 730 - APEX 24.1 > Region: 5.1 Deprecated APIs > Source > SQL Query
43 |
44 | select p.page_id
45 | ,p.page_name
46 | ,p.component_name
47 | ,p.component_type
48 | ,p.process_point
49 | ,p.plsql_code_clob
50 | from av_plsql_v p
51 | where application_id = :P0_APP_ID
52 | and (instr(lower(p.plsql_code_clob)
53 | ,'approval') > 0 or
54 | instr(lower(p.plsql_code_clob)
55 | ,'apex_javascript.add_3rd_party_library_file') > 0 or
56 | instr(lower(p.plsql_code_clob)
57 | ,'apex_css.add_3rd_party_library_file') > 0 or
58 | instr(lower(p.plsql_code_clob)
59 | ,'apex_util.url_encode') > 0 or
60 | instr(lower(p.plsql_code_clob)
61 | ,'apex_plugin_util.print_display_only') > 0 or
62 | instr(lower(p.plsql_code_clob)
63 | ,'apex_automation.abort') > 0
64 | );
65 |
66 |
--------------------------------------------------------------------------------
/app/f347/embedded_code/pages/p00740.js:
--------------------------------------------------------------------------------
1 | // --------------------------------------------------------------------------------
2 | //
3 | // Oracle APEX source export file
4 | //
5 | // The contents of this file are intended for review and analysis purposes only.
6 | // Developers must use the Application Builder to make modifications to an
7 | // application. Changes to this file will not be reflected in the application.
8 | //
9 | // --------------------------------------------------------------------------------
10 |
11 | // ----------------------------------------
12 | // Page: 740 - APEX 24.2 > Dynamic Action: click refresh - refresh regions > Action: Execute JavaScript Code > Settings > Code
13 |
14 | av_refresh_hide_show_regions()
15 |
16 | // ----------------------------------------
17 | // Page: 740 - APEX 24.2 > Dynamic Action: change P0_APP_ID - refresh regions > Action: Execute JavaScript Code > Settings > Code
18 |
19 | av_refresh_hide_show_regions()
20 |
21 | // ----------------------------------------
22 | // Page: 740 - APEX 24.2 > Dynamic Action: page load - add icons by class > Action: Execute JavaScript Code > Settings > Code
23 |
24 | console.log('running DA')
25 | console.log(this.affectedElements);
26 |
27 |
--------------------------------------------------------------------------------
/app/f347/embedded_code/shared_components/logic/application_processes.sql:
--------------------------------------------------------------------------------
1 | -- --------------------------------------------------------------------------------
2 | --
3 | -- Oracle APEX source export file
4 | --
5 | -- The contents of this file are intended for review and analysis purposes only.
6 | -- Developers must use the Application Builder to make modifications to an
7 | -- application. Changes to this file will not be reflected in the application.
8 | --
9 | -- --------------------------------------------------------------------------------
10 |
11 | -- ----------------------------------------
12 | -- Application Process: APEX Nitro > Source > PL/SQL Code
13 |
14 | apex_application.g_flow_images := 'http://localhost:4000/';
15 |
16 |
--------------------------------------------------------------------------------
/app/f347/embedded_code/shared_components/user_interface/templates/list.js:
--------------------------------------------------------------------------------
1 | // --------------------------------------------------------------------------------
2 | //
3 | // Oracle APEX source export file
4 | //
5 | // The contents of this file are intended for review and analysis purposes only.
6 | // Developers must use the Application Builder to make modifications to an
7 | // application. Changes to this file will not be reflected in the application.
8 | //
9 | // --------------------------------------------------------------------------------
10 |
11 | // ----------------------------------------
12 | // Theme: Universal Theme > List Template: Menu Bar > JavaScript > Execute when Page Loads
13 |
14 | var e = apex.jQuery("##PARENT_STATIC_ID#_menubar", apex.gPageContext$);
15 | if (e.hasClass("js-addActions")) {
16 | apex.actions.addFromMarkup( e );
17 | }
18 | e.menu({
19 | behaveLikeTabs: e.hasClass("js-tabLike"),
20 | menubarShowSubMenuIcon: e.hasClass("js-showSubMenuIcons") || null,
21 | iconType: 'fa',
22 | menubar: true,
23 | menubarOverflow: true,
24 | callout: e.hasClass("js-menu-callout")
25 | });
26 |
27 | // ----------------------------------------
28 | // Theme: Universal Theme > List Template: Menu Popup > JavaScript > Execute when Page Loads
29 |
30 | var e = apex.jQuery("##PARENT_STATIC_ID#_menu", apex.gPageContext$);
31 | if (e.hasClass("js-addActions")) {
32 | apex.actions.addFromMarkup( e );
33 | }
34 | e.menu({ iconType: 'fa', callout: e.hasClass("js-menu-callout")});
35 |
36 | // ----------------------------------------
37 | // Theme: Universal Theme > List Template: Side Navigation Menu > JavaScript > Execute when Page Loads
38 |
39 | apex.jQuery('body').addClass('t-PageBody--leftNav');
40 |
41 | // ----------------------------------------
42 | // Theme: Universal Theme > List Template: Top Navigation Menu > JavaScript > Execute when Page Loads
43 |
44 | var e = apex.jQuery("#t_MenuNav", apex.gPageContext$);
45 | if (e.hasClass("js-addActions")) {
46 | apex.actions.addFromMarkup( e );
47 | }
48 | e.menu({
49 | behaveLikeTabs: e.hasClass("js-tabLike"),
50 | menubarShowSubMenuIcon: e.hasClass("js-showSubMenuIcons") || null,
51 | menubar: true,
52 | menubarOverflow: true,
53 | callout: e.hasClass("js-menu-callout")
54 | });
55 |
56 |
57 | // ----------------------------------------
58 | // Theme: Universal Theme > List Template: Wizard Progress > JavaScript > Execute when Page Loads
59 |
60 | apex.theme.initWizardProgressBar();
61 |
62 |
--------------------------------------------------------------------------------
/app/f347/embedded_code/shared_components/user_interface/templates/page.js:
--------------------------------------------------------------------------------
1 | // --------------------------------------------------------------------------------
2 | //
3 | // Oracle APEX source export file
4 | //
5 | // The contents of this file are intended for review and analysis purposes only.
6 | // Developers must use the Application Builder to make modifications to an
7 | // application. Changes to this file will not be reflected in the application.
8 | //
9 | // --------------------------------------------------------------------------------
10 |
11 | // ----------------------------------------
12 | // Theme: Universal Theme > Page Template: Drawer > JavaScript > Execute when Page Loads
13 |
14 | apex.theme42.initializePage.modalDialog();
15 |
16 | // ----------------------------------------
17 | // Theme: Universal Theme > Page Template: Left and Right Side Columns > JavaScript > Execute when Page Loads
18 |
19 | apex.theme42.initializePage.bothSideCols();
20 |
21 | // ----------------------------------------
22 | // Theme: Universal Theme > Page Template: Left Side Column > JavaScript > Execute when Page Loads
23 |
24 | apex.theme42.initializePage.leftSideCol();
25 |
26 | // ----------------------------------------
27 | // Theme: Universal Theme > Page Template: Login > JavaScript > Execute when Page Loads
28 |
29 | apex.theme42.initializePage.appLogin();
30 |
31 | // ----------------------------------------
32 | // Theme: Universal Theme > Page Template: Marquee > JavaScript > Execute when Page Loads
33 |
34 | apex.theme42.initializePage.masterDetail();
35 |
36 | // ----------------------------------------
37 | // Theme: Universal Theme > Page Template: Minimal (No Navigation) > JavaScript > Execute when Page Loads
38 |
39 | apex.theme42.initializePage.noSideCol();
40 |
41 | // ----------------------------------------
42 | // Theme: Universal Theme > Page Template: Modal Dialog > JavaScript > Execute when Page Loads
43 |
44 | apex.theme42.initializePage.modalDialog();
45 |
46 | // ----------------------------------------
47 | // Theme: Universal Theme > Page Template: Right Side Column > JavaScript > Execute when Page Loads
48 |
49 | apex.theme42.initializePage.rightSideCol();
50 |
51 | // ----------------------------------------
52 | // Theme: Universal Theme > Page Template: Standard > JavaScript > Execute when Page Loads
53 |
54 | apex.theme42.initializePage.noSideCol();
55 |
56 | // ----------------------------------------
57 | // Theme: Universal Theme > Page Template: Wizard Modal Dialog > JavaScript > Execute when Page Loads
58 |
59 | apex.theme42.initializePage.wizardModal();
60 |
61 |
--------------------------------------------------------------------------------
/app/yaml/pages/p00701.yaml:
--------------------------------------------------------------------------------
1 | ---
2 | # ====== Page: APEX 18.1 =====================================
3 | id: 701
4 | identification:
5 | name: APEX 18.1
6 | alias: APEX-18-1
7 | title: APEX 18.1
8 |
9 | appearance:
10 | page-mode: Normal
11 | page-template: Theme Default
12 | template-options:
13 | - '#DEFAULT#'
14 |
15 | navigation-menu:
16 | override-user-interface-level: false
17 |
18 | navigation:
19 | cursor-focus: Do not focus cursor
20 | warn-on-unsaved-changes: true
21 |
22 | security:
23 | authentication: Page Requires Authentication
24 | deep-linking: Application Default
25 | page-access-protection: Arguments Must Have Checksum
26 | form-auto-complete: Off
27 | browser-cache: Application Default
28 |
29 | session-management:
30 | rejoin-sessions: Application Default
31 |
32 | advanced:
33 | enable-duplicate-page-submissions: Yes - Enable page to be re-posted
34 | reload-on-submit: Only for Success
35 |
36 | server-cache:
37 | caching: Disabled
38 |
39 |
--------------------------------------------------------------------------------
/app/yaml/pages/p00702.yaml:
--------------------------------------------------------------------------------
1 | ---
2 | # ====== Page: APEX 18.2 =====================================
3 | id: 702
4 | identification:
5 | name: APEX 18.2
6 | alias: APEX-18-2
7 | title: APEX 18.2
8 |
9 | appearance:
10 | page-mode: Normal
11 | page-template: Theme Default
12 | template-options:
13 | - '#DEFAULT#'
14 |
15 | navigation-menu:
16 | override-user-interface-level: false
17 |
18 | navigation:
19 | cursor-focus: Do not focus cursor
20 | warn-on-unsaved-changes: true
21 |
22 | security:
23 | authentication: Page Requires Authentication
24 | deep-linking: Application Default
25 | page-access-protection: Arguments Must Have Checksum
26 | form-auto-complete: Off
27 | browser-cache: Application Default
28 |
29 | session-management:
30 | rejoin-sessions: Application Default
31 |
32 | advanced:
33 | enable-duplicate-page-submissions: Yes - Enable page to be re-posted
34 | reload-on-submit: Only for Success
35 |
36 | server-cache:
37 | caching: Disabled
38 |
39 |
--------------------------------------------------------------------------------
/app/yaml/pages/p00703.yaml:
--------------------------------------------------------------------------------
1 | ---
2 | # ====== Page: APEX 19.1 =====================================
3 | id: 703
4 | identification:
5 | name: APEX 19.1
6 | alias: APEX-19-1
7 | title: APEX 19.1
8 |
9 | appearance:
10 | page-mode: Normal
11 | page-template: Theme Default
12 | template-options:
13 | - '#DEFAULT#'
14 |
15 | navigation-menu:
16 | override-user-interface-level: false
17 |
18 | navigation:
19 | cursor-focus: Do not focus cursor
20 | warn-on-unsaved-changes: true
21 |
22 | security:
23 | authentication: Page Requires Authentication
24 | deep-linking: Application Default
25 | page-access-protection: Arguments Must Have Checksum
26 | form-auto-complete: Off
27 | browser-cache: Application Default
28 |
29 | session-management:
30 | rejoin-sessions: Application Default
31 |
32 | advanced:
33 | enable-duplicate-page-submissions: Yes - Enable page to be re-posted
34 | reload-on-submit: Only for Success
35 |
36 | server-cache:
37 | caching: Disabled
38 |
39 |
--------------------------------------------------------------------------------
/app/yaml/pages/p00704.yaml:
--------------------------------------------------------------------------------
1 | ---
2 | # ====== Page: APEX 19.2 =====================================
3 | id: 704
4 | identification:
5 | name: APEX 19.2
6 | alias: APEX-19-2
7 | title: APEX 19.2
8 |
9 | appearance:
10 | page-mode: Normal
11 | page-template: Theme Default
12 | template-options:
13 | - '#DEFAULT#'
14 |
15 | navigation-menu:
16 | override-user-interface-level: false
17 |
18 | navigation:
19 | cursor-focus: Do not focus cursor
20 | warn-on-unsaved-changes: false
21 |
22 | security:
23 | authentication: Page Requires Authentication
24 | deep-linking: Application Default
25 | page-access-protection: Arguments Must Have Checksum
26 | form-auto-complete: Off
27 | browser-cache: Application Default
28 |
29 | session-management:
30 | rejoin-sessions: Application Default
31 |
32 | advanced:
33 | enable-duplicate-page-submissions: Yes - Enable page to be re-posted
34 | reload-on-submit: Only for Success
35 |
36 | server-cache:
37 | caching: Disabled
38 |
39 |
--------------------------------------------------------------------------------
/app/yaml/shared_components/app_processes.yaml:
--------------------------------------------------------------------------------
1 | ---
2 | - # ====== Application Process: APEX Nitro =====================
3 | id: 48428428229706741
4 | identification:
5 | name: APEX Nitro
6 | type: NATIVE_PLSQL
7 |
8 | source:
9 | location: Local Database
10 | language: PL/SQL
11 | pl/sql-code: "apex_application.g_flow_images := 'http://localhost:4000/';"
12 |
13 | execution:
14 | sequence: -9999
15 | point: Before Header
16 |
17 | server-side-condition:
18 | type: Expression
19 | language: PL/SQL
20 | pl/sql-expression: owa_util.get_cgi_env('APEX-Nitro') is not null
21 |
22 | subscription:
23 | version-number: 1
24 |
25 |
--------------------------------------------------------------------------------
/app/yaml/shared_components/app_static_files.yaml:
--------------------------------------------------------------------------------
1 | ---
2 | - # ====== Static Application File: icons/app-icon-32.png ======
3 | id: 23167156460793762
4 | identification:
5 | file-name: icons/app-icon-32.png
6 |
7 | attributes:
8 | mime-type: image/png
9 | file-character-set: Unicode UTF-8
10 |
11 | - # ====== Static Application File: icons/app-icon-192.png =====
12 | id: 23167296116793771
13 | identification:
14 | file-name: icons/app-icon-192.png
15 |
16 | attributes:
17 | mime-type: image/png
18 | file-character-set: Unicode UTF-8
19 |
20 | - # ====== Static Application File: icons/app-icon-512.png =====
21 | id: 23167588017793777
22 | identification:
23 | file-name: icons/app-icon-512.png
24 |
25 | attributes:
26 | mime-type: image/png
27 | file-character-set: Unicode UTF-8
28 |
29 | - # ====== Static Application File: av.css =====================
30 | id: 65478068959051466
31 | identification:
32 | file-name: av.css
33 |
34 | attributes:
35 | mime-type: text/css
36 | file-character-set: Unicode UTF-8
37 |
38 | - # ====== Static Application File: av.min.css =================
39 | id: 65481793436058498
40 | identification:
41 | file-name: av.min.css
42 |
43 | attributes:
44 | mime-type: text/css
45 | file-character-set: Unicode UTF-8
46 |
47 | - # ====== Static Application File: av.js ======================
48 | id: 77790222148389341
49 | identification:
50 | file-name: av.js
51 |
52 | attributes:
53 | mime-type: text/javascript
54 | file-character-set: Unicode UTF-8
55 |
56 | - # ====== Static Application File: av.min.js ==================
57 | id: 77791246847392418
58 | identification:
59 | file-name: av.min.js
60 |
61 | attributes:
62 | mime-type: text/javascript
63 | file-character-set: Unicode UTF-8
64 |
65 |
--------------------------------------------------------------------------------
/app/yaml/shared_components/app_static_files/av.css:
--------------------------------------------------------------------------------
1 | #av-region-right-column .t-Region-buttons-left
2 | {
3 | width:100%;
4 | }
--------------------------------------------------------------------------------
/app/yaml/shared_components/app_static_files/av.js:
--------------------------------------------------------------------------------
1 | /* this function triggers all hide and show regions to refresh */
2 | function av_refresh_hide_show_regions() {
3 | $('.t-Region.t-Region--hideShow').each(function() {
4 | let region_id = $(this).attr('id');
5 | apex.region(region_id).refresh();
6 | });
7 | }
--------------------------------------------------------------------------------
/app/yaml/shared_components/authentications.yaml:
--------------------------------------------------------------------------------
1 | ---
2 | - # ====== Authentication: APEX ================================
3 | id: 59278300412934962
4 | identification:
5 | name: APEX
6 |
7 | subscription:
8 | version-number: 1
9 |
10 | settings:
11 | type: Oracle APEX Accounts
12 |
13 | session-not-valid:
14 | redirect-to: Login Page
15 |
16 | login-processing:
17 | switch-in-session: false
18 |
19 | real-application-security:
20 | ras-mode: Disabled
21 |
22 | - # ====== Authentication: No Authentication ===================
23 | id: 472901281969347805
24 | identification:
25 | name: No Authentication
26 |
27 | subscription:
28 | version-number: 1
29 |
30 | settings:
31 | type: No Authentication
32 |
33 | login-processing:
34 | switch-in-session: false
35 |
36 | real-application-security:
37 | ras-mode: Disabled
38 |
39 |
--------------------------------------------------------------------------------
/app/yaml/shared_components/build_options.yaml:
--------------------------------------------------------------------------------
1 | ---
2 | - # ====== Build Option: deactivated ===========================
3 | id: 311726863352029995
4 | identification:
5 | name: deactivated
6 |
7 | status:
8 | status: Exclude
9 | default-on-export: Same as Current Status
10 | on-upgrade-keep-status: false
11 |
12 | subscription:
13 | version-number: 1
14 |
15 |
--------------------------------------------------------------------------------
/app/yaml/shared_components/lovs.yaml:
--------------------------------------------------------------------------------
1 | ---
2 | - # ====== List of Values: LOGIN_REMEMBER_USERNAME =============
3 | id: 59280152572934971
4 | identification:
5 | name: LOGIN_REMEMBER_USERNAME
6 |
7 | subscription:
8 | version-number: 1
9 |
10 | source:
11 | location: Static Values
12 |
13 | entries:
14 | - # ====== Entry: Remember username ============================
15 | id: 59280477766934971
16 | entry:
17 | sequence: 10
18 | display: Remember username
19 | return: Y
20 |
21 | - # ====== List of Values: COMPONENTS (CHART) ==================
22 | id: 311721064277927858
23 | identification:
24 | name: COMPONENTS (CHART)
25 |
26 | subscription:
27 | version-number: 1
28 |
29 | source:
30 | location: Local Database
31 | type: Legacy SQL Query
32 | sql-query: |
33 | select lower(s.items_value_column_name) d, lower(s.items_value_column_name) r
34 | from apex_application_page_chart_s s
35 | where s.page_id = :APP_PAGE_ID
36 | and s.items_value_column_name <> 'AMOUNT'
37 | order by 1
38 |
39 | - # ====== List of Values: PAGES ===============================
40 | id: 469958774571399192
41 | identification:
42 | name: PAGES
43 |
44 | subscription:
45 | version-number: 1
46 |
47 | source:
48 | location: Local Database
49 | type: Legacy SQL Query
50 | sql-query: |
51 | select page_name || ' (' || page_id || ')' page,
52 | page_id
53 | from apex_application_pages
54 | where application_id = :P0_APP_ID
55 | order by 1
56 |
57 | - # ====== List of Values: APPLICATIONS ========================
58 | id: 472902966345364927
59 | identification:
60 | name: APPLICATIONS
61 |
62 | subscription:
63 | version-number: 1
64 |
65 | source:
66 | location: Local Database
67 | type: Legacy SQL Query
68 | sql-query: |
69 | select aa.application_id || ' - ' || aa.application_name app
70 | ,aa.application_id
71 | from apex_applications aa
72 | order by aa.application_id
73 |
74 |
--------------------------------------------------------------------------------
/app/yaml/shared_components/shortcuts.yaml:
--------------------------------------------------------------------------------
1 | ---
2 | - # ====== Shortcut: DELETE_CONFIRM_MSG ========================
3 | id: 313706856286835939
4 | identification:
5 | name: DELETE_CONFIRM_MSG
6 |
7 | subscription:
8 | version-number: 1
9 |
10 | source:
11 | type: Text with JavaScript Escaped Single Quotes
12 | text: Would you like to perform this delete action?
13 |
14 |
--------------------------------------------------------------------------------
/app/yaml/shared_components/theme_42/template_option_groups.yaml:
--------------------------------------------------------------------------------
1 | ---
2 | - # ====== Template Option Group: Preserve Label Spacing =======
3 | id: 2277852081286987
4 | identification:
5 | template-type: Item
6 | name: Preserve Label Spacing
7 | identifier: PRESERVE_LABEL_SPACING
8 | sequence: 1
9 |
10 | help:
11 | help-text: Preserves the label space and enables use of the Label Column Span property.
12 |
13 | settings:
14 | null-text: Yes
15 | advanced: false
16 |
17 | - # ====== Template Option Group: Color Accents ================
18 | id: 2281857180286987
19 | identification:
20 | template-type: List
21 | name: Color Accents
22 | identifier: COLOR_ACCENTS
23 | sequence: 50
24 |
25 | settings:
26 | null-text: Default
27 | advanced: false
28 |
29 | - # ====== Template Option Group: Icon Style ===================
30 | id: 2283804956286987
31 | identification:
32 | template-type: List
33 | name: Icon Style
34 | identifier: ICON_STYLE
35 | sequence: 35
36 |
37 | settings:
38 | advanced: false
39 |
40 | - # ====== Template Option Group: Display Mode =================
41 | id: 2287069727286989
42 | identification:
43 | template-type: Page
44 | name: Display Mode
45 | identifier: DISPLAY_MODE
46 | sequence: 30
47 |
48 | help:
49 | help-text: Determines the default display appearance and positioning of the dialog. The default opens a floating dialog position at the center of the screen.
50 |
51 | settings:
52 | null-text: Default
53 | advanced: false
54 |
55 | - # ====== Template Option Group: Display Mode =================
56 | id: 2295442036286989
57 | identification:
58 | template-type: Region
59 | name: Display Mode
60 | identifier: DISPLAY_MODE
61 | sequence: 1
62 |
63 | help:
64 | help-text: Determines the default display appearance and positioning of the dialog. The default opens a floating dialog position at the center of the screen.
65 |
66 | settings:
67 | null-text: Default
68 | advanced: false
69 |
70 | - # ====== Template Option Group: Result Separator =============
71 | id: 2305442893286990
72 | identification:
73 | template-type: Region
74 | name: Result Separator
75 | identifier: RESULT_SEPARATOR
76 | sequence: 2
77 |
78 | settings:
79 | null-text: Show
80 | advanced: false
81 |
82 | - # ====== Template Option Group: Color Accents ================
83 | id: 2309452653286992
84 | identification:
85 | template-type: Report
86 | name: Color Accents
87 | identifier: COLOR_ACCENTS
88 | sequence: 50
89 |
90 | settings:
91 | null-text: Default
92 | advanced: false
93 |
94 |
--------------------------------------------------------------------------------
/app/yaml/supporting_objects/deinstall_script.sql:
--------------------------------------------------------------------------------
1 | drop view av_applications_v;
2 | drop view av_components_v;
3 | drop view av_css_v;
4 | drop view av_javascript_v;
5 | drop view av_pages_v;
6 | drop view av_page_links_v;
7 | drop view av_plsql_v;
8 | drop view av_plugins_v;
9 | drop view av_page_complexity_v;
10 | drop view av_p0100_js_code_by_page_v;
11 | drop view av_p0200_css_code_by_page_v;
12 | drop view av_p0300_plsql_code_by_page_v;
13 | drop view av_p0600_not_used_auth_schemes_v;
14 | drop view av_p0708_legacy_subst_strings_v;
15 | drop view av_visibility_overview_v;
16 | drop view av_visibility_v;
17 | drop package av_general_pkg;
--------------------------------------------------------------------------------
/app/yaml/supporting_objects/install_scripts/av_applications_v.sql:
--------------------------------------------------------------------------------
1 |
2 | CREATE OR REPLACE FORCE EDITIONABLE VIEW "AV_APPLICATIONS_V" ("APPLICATION_NAME", "APPLICATION_ID", "PAGE_FUNCTION", "PAGE_ID") AS
3 | select p.application_name
4 | ,p.application_id
5 | ,case p.page_function
6 | when 'Unknown' then
7 | max(r.source_type)
8 | else
9 | page_function
10 | end page_function
11 | ,p.page_id
12 | from apex_application_pages p
13 | join apex_application_page_regions r on r.application_id = p.application_id
14 | and p.page_id = r.page_id
15 | group by p.application_name
16 | ,p.application_id
17 | ,p.page_id
18 | ,page_function
19 | order by p.application_id
20 | ,p.page_id
21 | ;
--------------------------------------------------------------------------------
/app/yaml/supporting_objects/install_scripts/av_components_v.sql:
--------------------------------------------------------------------------------
1 |
2 | CREATE OR REPLACE FORCE EDITIONABLE VIEW "AV_COMPONENTS_V" ("APPLICATION_NAME", "APPLICATION_ID", "PAGE_ID", "PAGE_NAME", "PAGE", "COMPONENT", "AMOUNT") AS
3 | select application_name, application_id, page_id, page_name, page_id || ' ' || page_name page, 'regions' component, regions amount
4 | from apex_application_pages
5 | union all
6 | select application_name, application_id, page_id, page_name, page_id || ' ' || page_name page, 'items' component, items amount
7 | from apex_application_pages
8 | union all
9 | select application_name, application_id, page_id, page_name, page_id || ' ' || page_name page, 'buttons' component, buttons amount
10 | from apex_application_pages
11 | union all
12 | select application_name, application_id, page_id, page_name, page_id || ' ' || page_name page, 'computations' component, computations amount
13 | from apex_application_pages
14 | union all
15 | select application_name, application_id, page_id, page_name, page_id || ' ' || page_name page, 'validations' component, validations amount
16 | from apex_application_pages
17 | union all
18 | select application_name, application_id, page_id, page_name, page_id || ' ' || page_name page, 'processes' component, processes amount
19 | from apex_application_pages
20 | union all
21 | select application_name, application_id, page_id, page_name, page_id || ' ' || page_name page, 'branches' component, branches amount
22 | from apex_application_pages
23 | union all
24 | select application_name, application_id, page_id, page_name, page_id || ' ' || page_name page, 'dynamic_actions' component, count(1) amount
25 | from apex_application_page_da
26 | group by application_name, application_id, page_id,page_name
27 | ;
--------------------------------------------------------------------------------
/app/yaml/supporting_objects/install_scripts/av_p0100_js_code_by_page_v.sql:
--------------------------------------------------------------------------------
1 |
2 | CREATE OR REPLACE FORCE EDITIONABLE VIEW "AV_P0100_JS_CODE_BY_PAGE_V" ("APPLICATION_ID", "PAGE_ID", "PAGE_NAME_AND_ID", "PAGE_GROUP", "PAGE_FUNCTION", "BEST_PRACTICE", "COMPONENTS_COUNT", "CODE_LENGTH_SUM", "CODE_LINES_SUM", "TOOLTIP") AS
3 | select application_id
4 | ,page_id
5 | ,page_name || ' (' || page_id || ')' page_name_and_id
6 | ,page_group
7 | ,page_function
8 | ,best_practice
9 | ,components_count
10 | ,code_length_sum
11 | ,code_lines_sum
12 | ,'' || --
13 | 'page name | ' || page_name || ' |
' || --
14 | 'page id | ' || page_id || ' |
' || --
15 | 'page group | ' || page_group || ' |
' || --
16 | 'page function | ' || page_function || ' |
' || --
17 | 'number of js components | ' || components_count || ' |
' || --
18 | 'overall lines of js code | ' || code_lines_sum || ' |
' || --
19 | 'overall character of js code | ' || code_length_sum || ' |
' || --
20 | '
' tooltip
21 | from (select distinct application_id
22 | ,page_id
23 | ,page_name
24 | ,page_group
25 | ,page_function
26 | ,best_practice
27 | ,count(*) over(partition by application_id, page_id) components_count
28 | ,sum(js_code_length) over(partition by application_id, page_id) code_length_sum
29 | ,sum(js_code_lines) over(partition by application_id, page_id) code_lines_sum
30 | from av_javascript_v)
31 | ;
--------------------------------------------------------------------------------
/app/yaml/supporting_objects/install_scripts/av_p0200_css_code_by_page_v.sql:
--------------------------------------------------------------------------------
1 |
2 | CREATE OR REPLACE FORCE EDITIONABLE VIEW "AV_P0200_CSS_CODE_BY_PAGE_V" ("APPLICATION_ID", "PAGE_ID", "PAGE_NAME_AND_ID", "PAGE_GROUP", "PAGE_FUNCTION", "BEST_PRACTICE", "COMPONENTS_COUNT", "CODE_LENGTH_SUM", "CODE_LINES_SUM", "TOOLTIP") AS
3 | select application_id
4 | ,page_id
5 | ,page_name || ' (' || page_id || ')' page_name_and_id
6 | ,page_group
7 | ,page_function
8 | ,best_practice
9 | ,components_count
10 | ,code_length_sum
11 | ,code_lines_sum
12 | ,'' || --
13 | 'page name | ' || page_name || ' |
' || --
14 | 'page id | ' || page_id || ' |
' || --
15 | 'page group | ' || page_group || ' |
' || --
16 | 'page function | ' || page_function || ' |
' || --
17 | 'number of css components | ' || components_count || ' |
' || --
18 | 'overall lines of css code | ' || code_lines_sum || ' |
' || --
19 | 'overall character of css code | ' || code_length_sum || ' |
' || --
20 | '
' tooltip
21 | from (select distinct application_id
22 | ,page_id
23 | ,page_name
24 | ,page_group
25 | ,page_function
26 | ,best_practice
27 | ,count(*) over(partition by application_id, page_id) components_count
28 | ,sum(css_code_length) over(partition by application_id, page_id) code_length_sum
29 | ,sum(css_code_lines) over(partition by application_id, page_id) code_lines_sum
30 | from av_css_v)
31 | ;
--------------------------------------------------------------------------------
/app/yaml/supporting_objects/install_scripts/av_p0300_plsql_code_by_page_v.sql:
--------------------------------------------------------------------------------
1 |
2 | CREATE OR REPLACE FORCE EDITIONABLE VIEW "AV_P0300_PLSQL_CODE_BY_PAGE_V" ("APPLICATION_ID", "PAGE_ID", "PAGE_NAME_AND_ID", "PAGE_GROUP", "PAGE_FUNCTION", "BEST_PRACTICE", "COMPONENTS_COUNT", "CODE_LENGTH_SUM", "CODE_LINES_SUM", "TOOLTIP") AS
3 | select application_id
4 | ,page_id
5 | ,page_name || ' (' || page_id || ')' page_name_and_id
6 | ,page_group
7 | ,page_function
8 | ,best_practice
9 | ,components_count
10 | ,code_length_sum
11 | ,code_lines_sum
12 | ,'' || --
13 | 'page name | ' || page_name || ' |
' || --
14 | 'page id | ' || page_id || ' |
' || --
15 | 'page group | ' || page_group || ' |
' || --
16 | 'page function | ' || page_function || ' |
' || --
17 | 'number of plsql components | ' || components_count || ' |
' || --
18 | 'overall lines of plsql code | ' || code_lines_sum || ' |
' || --
19 | 'overall character of plsql code | ' || code_length_sum || ' |
' || --
20 | '
' tooltip
21 | from (select distinct application_id
22 | ,page_id
23 | ,page_name
24 | ,page_group
25 | ,page_function
26 | ,best_practice
27 | ,count(*) over(partition by application_id, page_id) components_count
28 | ,sum(code_length) over(partition by application_id, page_id) code_length_sum
29 | ,sum(code_lines) over(partition by application_id, page_id) code_lines_sum
30 | from av_plsql_v)
31 | ;
--------------------------------------------------------------------------------
/app/yaml/supporting_objects/install_scripts/av_p0600_not_used_auth_schemes_v.sql:
--------------------------------------------------------------------------------
1 |
2 | CREATE OR REPLACE FORCE EDITIONABLE VIEW "AV_P0600_NOT_USED_AUTH_SCHEMES_V" ("AUTHORIZATION_SCHEME_NAME", "APPLICATION_ID") AS
3 | with auth as
4 | (select v1.visibility_id
5 | ,v1.application_id
6 | from av_visibility_v v1
7 | where v1.visibility_category = 'AUTHORIZATION_SCHEME'
8 | and v1.visibility_name is not null)
9 | select a.authorization_scheme_name
10 | ,a.application_id
11 | from apex_application_authorization a
12 | where to_char(a.authorization_scheme_id) not in (select a1.visibility_id
13 | from auth a1
14 | where a1.application_id = a.application_id)
15 | and to_char('!' || a.authorization_scheme_id) not in (select a1.visibility_id
16 | from auth a1
17 | where a1.application_id = a.application_id)
18 | ;
--------------------------------------------------------------------------------
/app/yaml/supporting_objects/install_scripts/av_page_complexity_v.sql:
--------------------------------------------------------------------------------
1 |
2 | CREATE OR REPLACE FORCE EDITIONABLE VIEW "AV_PAGE_COMPLEXITY_V" ("APPLICATION_ID", "PAGE_ID", "COUNT_OBJECTS", "COMPLEXITY") AS
3 | select p.application_id,
4 | p.page_id,
5 | sum(nvl(c.counts,0)) count_objects,
6 | case
7 | when sum(nvl(c.counts,0)) < 15 then 'simple'
8 | when sum(nvl(c.counts,0)) < 50 then 'normal'
9 | when sum(nvl(c.counts,0)) < 100 then 'complex'
10 | else 'very complex'
11 | end complexity
12 | from apex_application_pages p
13 | left join (select i1.application_id, i1.page_id, count(1) counts from apex_application_page_items i1 group by i1.application_id, i1.page_id
14 | union all
15 | select r1.application_id, r1.page_id, count(1) counts from apex_application_page_regions r1 group by r1.application_id, r1.page_id
16 | union all
17 | select b1.application_id, b1.page_id, count(1) counts from apex_application_page_buttons b1 group by b1.application_id, b1.page_id
18 | union all
19 | select p1.application_id, p1.page_id, count(1) counts from apex_application_page_proc p1 group by p1.application_id, p1.page_id
20 | union all
21 | select d1.application_id, d1.page_id, count(1) counts from apex_application_page_da_acts d1 group by d1.application_id, d1.page_id
22 | union all
23 | select c1.application_id, c1.page_id, count(1) counts from apex_application_page_comp c1 group by c1.application_id, c1.page_id
24 | union all
25 | select br1.application_id, br1.page_id, count(1) counts from apex_application_page_branches br1 group by br1.application_id, br1.page_id
26 | ) c on c.application_id = p.application_id and c.page_id = p.page_id
27 | group by p.application_id, p.page_id
28 | ;
--------------------------------------------------------------------------------
/app/yaml/supporting_objects/install_scripts/av_pages_v.sql:
--------------------------------------------------------------------------------
1 |
2 | CREATE OR REPLACE FORCE EDITIONABLE VIEW "AV_PAGES_V" ("APPLICATION_ID", "APPLICATION_NAME", "PAGE_ID", "PAGE_NAME", "PAGE_MODE", "PAGE_ALIAS", "PAGE_FUNCTION", "PAGE_GROUP", "PAGE_TEMPLATE", "CREATED_BY", "CREATED_ON", "LAST_UPDATED_BY", "LAST_UPDATED_ON", "RELOAD_ON_SUBMIT", "WARN_ON_UNSAVED_CHANGES") AS
3 | select aap.application_id
4 | ,aap.application_name
5 | ,aap.page_id
6 | ,aap.page_name
7 | ,aap.page_mode
8 | ,aap.page_alias
9 | ,aap.page_function
10 | ,aap.page_group
11 | ,aap.page_template
12 | ,aap.created_by
13 | ,aap.created_on
14 | ,aap.last_updated_by
15 | ,aap.last_updated_on
16 | ,aap.reload_on_submit
17 | ,aap.warn_on_unsaved_changes
18 | from apex_application_pages aap
19 | ;
--------------------------------------------------------------------------------
/app/yaml/supporting_objects/install_scripts/av_visibility_overview_v.sql:
--------------------------------------------------------------------------------
1 |
2 | CREATE OR REPLACE FORCE EDITIONABLE VIEW "AV_VISIBILITY_OVERVIEW_V" ("APP_ID", "APP_NAME", "VISIBILTY_NAME") AS
3 | select aaa.application_id app_id
4 | ,aaa.application_name app_name
5 | ,aaa.authorization_scheme_name visibilty_name
6 | from apex_application_authorization aaa
7 | union all
8 | select aa.application_id app_id
9 | ,aa.application_name app_name
10 | ,'condition' visibilty_name
11 | from apex_applications aa
12 | ;
--------------------------------------------------------------------------------
/app/yaml/supporting_objects/supporting_objects.yaml:
--------------------------------------------------------------------------------
1 | ---
2 | - # ====== Supporting Object: =================================
3 | id: 314927592265159640
4 |
5 |
--------------------------------------------------------------------------------
/typ/av_migrations_t.sql:
--------------------------------------------------------------------------------
1 | create or replace type av_migrations_t force as table of av_migration_t;
2 | /
3 |
--------------------------------------------------------------------------------
/vw/av_applications_v.sql:
--------------------------------------------------------------------------------
1 | create or replace view av_applications_v as
2 | select p.application_name
3 | ,p.application_id
4 | ,case p.page_function
5 | when 'Unknown' then
6 | max(r.source_type)
7 | else
8 | page_function
9 | end page_function
10 | ,p.page_id
11 | from apex_application_pages p
12 | join apex_application_page_regions r on r.application_id = p.application_id
13 | and p.page_id = r.page_id
14 | group by p.application_name
15 | ,p.application_id
16 | ,p.page_id
17 | ,page_function
18 | order by p.application_id
19 | ,p.page_id;
20 |
--------------------------------------------------------------------------------
/vw/av_components_v.sql:
--------------------------------------------------------------------------------
1 | create or replace force view av_components_v as
2 | select application_name, application_id, page_id, page_name, page_id || ' ' || page_name page, 'regions' component, regions amount
3 | from apex_application_pages
4 | union all
5 | select application_name, application_id, page_id, page_name, page_id || ' ' || page_name page, 'items' component, items amount
6 | from apex_application_pages
7 | union all
8 | select application_name, application_id, page_id, page_name, page_id || ' ' || page_name page, 'buttons' component, buttons amount
9 | from apex_application_pages
10 | union all
11 | select application_name, application_id, page_id, page_name, page_id || ' ' || page_name page, 'computations' component, computations amount
12 | from apex_application_pages
13 | union all
14 | select application_name, application_id, page_id, page_name, page_id || ' ' || page_name page, 'validations' component, validations amount
15 | from apex_application_pages
16 | union all
17 | select application_name, application_id, page_id, page_name, page_id || ' ' || page_name page, 'processes' component, processes amount
18 | from apex_application_pages
19 | union all
20 | select application_name, application_id, page_id, page_name, page_id || ' ' || page_name page, 'branches' component, branches amount
21 | from apex_application_pages
22 | union all
23 | select application_name, application_id, page_id, page_name, page_id || ' ' || page_name page, 'dynamic_actions' component, count(1) amount
24 | from apex_application_page_da
25 | group by application_name, application_id, page_id,page_name;
26 |
--------------------------------------------------------------------------------
/vw/av_p0100_js_code_by_page_v.sql:
--------------------------------------------------------------------------------
1 | create or replace force view av_p0100_js_code_by_page_v as
2 | select application_id
3 | ,page_id
4 | ,page_name || ' (' || page_id || ')' page_name_and_id
5 | ,page_group
6 | ,page_function
7 | ,best_practice
8 | ,components_count
9 | ,code_length_sum
10 | ,code_lines_sum
11 | ,'' || --
12 | 'page name | ' || page_name || ' |
' || --
13 | 'page id | ' || page_id || ' |
' || --
14 | 'page group | ' || page_group || ' |
' || --
15 | 'page function | ' || page_function || ' |
' || --
16 | 'number of js components | ' || components_count || ' |
' || --
17 | 'overall lines of js code | ' || code_lines_sum || ' |
' || --
18 | 'overall character of js code | ' || code_length_sum || ' |
' || --
19 | '
' tooltip
20 | from (select distinct application_id
21 | ,page_id
22 | ,page_name
23 | ,page_group
24 | ,page_function
25 | ,best_practice
26 | ,count(*) over(partition by application_id, page_id) components_count
27 | ,sum(js_code_length) over(partition by application_id, page_id) code_length_sum
28 | ,sum(js_code_lines) over(partition by application_id, page_id) code_lines_sum
29 | from av_javascript_v)
30 | ;
31 |
--------------------------------------------------------------------------------
/vw/av_p0200_css_code_by_page_v.sql:
--------------------------------------------------------------------------------
1 | create or replace force view av_p0200_css_code_by_page_v as
2 | select application_id
3 | ,page_id
4 | ,page_name || ' (' || page_id || ')' page_name_and_id
5 | ,page_group
6 | ,page_function
7 | ,best_practice
8 | ,components_count
9 | ,code_length_sum
10 | ,code_lines_sum
11 | ,'' || --
12 | 'page name | ' || page_name || ' |
' || --
13 | 'page id | ' || page_id || ' |
' || --
14 | 'page group | ' || page_group || ' |
' || --
15 | 'page function | ' || page_function || ' |
' || --
16 | 'number of css components | ' || components_count || ' |
' || --
17 | 'overall lines of css code | ' || code_lines_sum || ' |
' || --
18 | 'overall character of css code | ' || code_length_sum || ' |
' || --
19 | '
' tooltip
20 | from (select distinct application_id
21 | ,page_id
22 | ,page_name
23 | ,page_group
24 | ,page_function
25 | ,best_practice
26 | ,count(*) over(partition by application_id, page_id) components_count
27 | ,sum(css_code_length) over(partition by application_id, page_id) code_length_sum
28 | ,sum(css_code_lines) over(partition by application_id, page_id) code_lines_sum
29 | from av_css_v)
30 | ;
31 |
--------------------------------------------------------------------------------
/vw/av_p0300_plsql_code_by_page_v.sql:
--------------------------------------------------------------------------------
1 | create or replace force view av_p0300_plsql_code_by_page_v as
2 | select application_id
3 | ,page_id
4 | ,page_name || ' (' || page_id || ')' page_name_and_id
5 | ,page_group
6 | ,page_function
7 | ,best_practice
8 | ,components_count
9 | ,code_length_sum
10 | ,code_lines_sum
11 | ,'' || --
12 | 'page name | ' || page_name || ' |
' || --
13 | 'page id | ' || page_id || ' |
' || --
14 | 'page group | ' || page_group || ' |
' || --
15 | 'page function | ' || page_function || ' |
' || --
16 | 'number of plsql components | ' || components_count || ' |
' || --
17 | 'overall lines of plsql code | ' || code_lines_sum || ' |
' || --
18 | 'overall character of plsql code | ' || code_length_sum || ' |
' || --
19 | '
' tooltip
20 | from (select distinct application_id
21 | ,page_id
22 | ,page_name
23 | ,page_group
24 | ,page_function
25 | ,best_practice
26 | ,count(*) over(partition by application_id, page_id) components_count
27 | ,sum(code_length) over(partition by application_id, page_id) code_length_sum
28 | ,sum(code_lines) over(partition by application_id, page_id) code_lines_sum
29 | from av_plsql_v)
30 | ;
31 |
--------------------------------------------------------------------------------
/vw/av_p0600_not_used_auth_schemes_v.sql:
--------------------------------------------------------------------------------
1 | create or replace force view av_p0600_not_used_auth_schemes_v as
2 | with auth as
3 | (select v1.visibility_id
4 | ,v1.application_id
5 | from av_visibility_v v1
6 | where v1.visibility_category = 'AUTHORIZATION_SCHEME'
7 | and v1.visibility_name is not null)
8 | select a.authorization_scheme_name
9 | ,a.application_id
10 | from apex_application_authorization a
11 | where to_char(a.authorization_scheme_id) not in (select a1.visibility_id
12 | from auth a1
13 | where a1.application_id = a.application_id)
14 | and to_char('!' || a.authorization_scheme_id) not in (select a1.visibility_id
15 | from auth a1
16 | where a1.application_id = a.application_id);
17 |
--------------------------------------------------------------------------------
/vw/av_page_complexity_v.sql:
--------------------------------------------------------------------------------
1 | create or replace force view av_page_complexity_v as
2 | select p.application_id,
3 | p.page_id,
4 | sum(nvl(c.counts,0)) count_objects,
5 | case
6 | when sum(nvl(c.counts,0)) < 15 then 'simple'
7 | when sum(nvl(c.counts,0)) < 50 then 'normal'
8 | when sum(nvl(c.counts,0)) < 100 then 'complex'
9 | else 'very complex'
10 | end complexity
11 | from apex_application_pages p
12 | left join (select i1.application_id, i1.page_id, count(1) counts from apex_application_page_items i1 group by i1.application_id, i1.page_id
13 | union all
14 | select r1.application_id, r1.page_id, count(1) counts from apex_application_page_regions r1 group by r1.application_id, r1.page_id
15 | union all
16 | select b1.application_id, b1.page_id, count(1) counts from apex_application_page_buttons b1 group by b1.application_id, b1.page_id
17 | union all
18 | select p1.application_id, p1.page_id, count(1) counts from apex_application_page_proc p1 group by p1.application_id, p1.page_id
19 | union all
20 | select d1.application_id, d1.page_id, count(1) counts from apex_application_page_da_acts d1 group by d1.application_id, d1.page_id
21 | union all
22 | select c1.application_id, c1.page_id, count(1) counts from apex_application_page_comp c1 group by c1.application_id, c1.page_id
23 | union all
24 | select br1.application_id, br1.page_id, count(1) counts from apex_application_page_branches br1 group by br1.application_id, br1.page_id
25 | ) c on c.application_id = p.application_id and c.page_id = p.page_id
26 | group by p.application_id, p.page_id;
27 |
--------------------------------------------------------------------------------
/vw/av_pages_v.sql:
--------------------------------------------------------------------------------
1 | create or replace view av_pages_v as
2 | select aap.application_id
3 | ,aap.application_name
4 | ,aap.page_id
5 | ,aap.page_name
6 | ,aap.page_mode
7 | ,aap.page_alias
8 | ,aap.page_function
9 | ,aap.page_group
10 | ,aap.page_template
11 | ,aap.created_by
12 | ,aap.created_on
13 | ,aap.last_updated_by
14 | ,aap.last_updated_on
15 | ,aap.reload_on_submit
16 | ,aap.warn_on_unsaved_changes
17 | from apex_application_pages aap;
18 |
--------------------------------------------------------------------------------
/vw/av_plugins_v.sql:
--------------------------------------------------------------------------------
1 | create or replace force view av_plugins_v as
2 | select p.application_id
3 | ,p.application_name
4 | ,p.plugin_id
5 | ,p.plugin_type
6 | ,p.name
7 | ,p.display_name
8 | ,p.plsql_code
9 | ,p.api_version
10 | ,p.render_function
11 | ,p.help_text
12 | ,p.version_identifier
13 | ,p.about_url
14 | ,o.page_id
15 | ,o.page_name
16 | ,o.object_name
17 | ,o.object_label
18 | ,av_general_pkg.f_get_page_designer_url(pi_app_id => p.application_id, pi_app_page_id => o.page_id) page_designer_url
19 | from apex_appl_plugins p
20 | left join ( -- Item Plugins
21 | select pi.application_id
22 | ,pi.page_id
23 | ,pi.page_name
24 | ,pi.display_as plugin_display_name
25 | ,'Item Type' object_type
26 | ,pi.item_name object_name
27 | ,pi.label object_label
28 | from apex_application_page_items pi
29 | where pi.display_as_code like 'PLUGIN%'
30 | union all
31 | -- Region Plugins
32 | select pr.application_id
33 | ,pr.page_id
34 | ,pr.page_name
35 | ,pr.source_type plugin_display_name
36 | ,'Region Type' object_type
37 | ,pr.region_name object_name
38 | ,pr.region_name object_label
39 | from apex_application_page_regions pr
40 | where pr.source_type_code like 'PLUGIN%'
41 | union all
42 | -- Dynamic Action Plugins
43 | select pd.application_id
44 | ,pd.page_id
45 | ,pd.page_name
46 | ,pda.action_name plugin_display_name
47 | ,'Dynamic Action' object_type
48 | ,pda.action_name object_name
49 | ,pd.dynamic_action_name object_label
50 | from apex_application_page_da pd
51 | join apex_application_page_da_acts pda on pda.dynamic_action_id = pd.dynamic_action_id
52 | where pda.action_code like 'PLUGIN%'
53 | union all
54 | -- Process Plugins
55 | select pp.application_id
56 | ,pp.page_id
57 | ,pp.page_name
58 | ,pp.process_type plugin_display_name
59 | ,'Process Type' object_type
60 | ,pp.process_name object_name
61 | ,pp.process_name object_label
62 | from apex_application_page_proc pp
63 | where pp.process_type_code like 'PLUGIN%') o on o.application_id = p.application_id
64 | and o.object_type = p.plugin_type
65 | and o.plugin_display_name = p.display_name
66 | where p.plugin_type <> 'Template Component'
67 | ;
68 |
--------------------------------------------------------------------------------
/vw/av_visibility_overview_v.sql:
--------------------------------------------------------------------------------
1 | create or replace force view av_visibility_overview_v as
2 | select aaa.application_id app_id
3 | ,aaa.application_name app_name
4 | ,aaa.authorization_scheme_name visibilty_name
5 | from apex_application_authorization aaa
6 | union all
7 | select aa.application_id app_id
8 | ,aa.application_name app_name
9 | ,'condition' visibilty_name
10 | from apex_applications aa;
11 |
--------------------------------------------------------------------------------