├── README.md └── src ├── apex ├── application │ ├── comments.sql │ ├── create_application.sql │ ├── delete_application.sql │ ├── deployment │ │ ├── buildoptions.sql │ │ ├── checks.sql │ │ ├── definition.sql │ │ └── install │ │ │ ├── install_database_objects.sql │ │ │ ├── install_demo_data.sql │ │ │ ├── install_logger.sql │ │ │ ├── install_packages.sql │ │ │ └── install_views.sql │ ├── end_environment.sql │ ├── pages │ │ ├── page_00000.sql │ │ ├── page_00001.sql │ │ ├── page_00020.sql │ │ ├── page_00021.sql │ │ ├── page_00022.sql │ │ ├── page_00023.sql │ │ ├── page_00024.sql │ │ ├── page_00025.sql │ │ ├── page_00027.sql │ │ ├── page_00028.sql │ │ ├── page_00030.sql │ │ ├── page_00031.sql │ │ ├── page_00032.sql │ │ ├── page_00040.sql │ │ ├── page_00041.sql │ │ ├── page_00042.sql │ │ ├── page_00050.sql │ │ ├── page_00051.sql │ │ ├── page_00060.sql │ │ ├── page_00080.sql │ │ ├── page_00081.sql │ │ ├── page_00082.sql │ │ ├── page_00083.sql │ │ ├── page_00084.sql │ │ ├── page_00085.sql │ │ ├── page_00090.sql │ │ ├── page_01002.sql │ │ ├── page_01003.sql │ │ ├── page_01004.sql │ │ ├── page_01005.sql │ │ ├── page_01006.sql │ │ ├── page_01007.sql │ │ ├── page_01008.sql │ │ ├── page_01009.sql │ │ ├── page_01010.sql │ │ ├── page_01011.sql │ │ ├── page_01012.sql │ │ ├── page_01013.sql │ │ ├── page_01014.sql │ │ ├── page_01015.sql │ │ ├── page_05000.sql │ │ ├── page_09999.sql │ │ ├── page_10000.sql │ │ ├── page_10010.sql │ │ ├── page_10011.sql │ │ ├── page_10013.sql │ │ ├── page_10014.sql │ │ ├── page_10020.sql │ │ └── page_groups.sql │ ├── plugin_settings.sql │ ├── set_environment.sql │ ├── shared_components │ │ ├── automations │ │ │ ├── send_new_corrections.sql │ │ │ ├── send_new_reminder.sql │ │ │ └── send_new_templates.sql │ │ ├── email │ │ │ └── templates │ │ │ │ ├── correction.sql │ │ │ │ ├── newtemplate.sql │ │ │ │ └── reminder.sql │ │ ├── files │ │ │ ├── app_icon_css.sql │ │ │ ├── app_icon_svg.sql │ │ │ ├── excel_for_oracle_apex_manual_pdf.sql │ │ │ ├── logo_png.sql │ │ │ ├── main_css.sql │ │ │ ├── main_css_map.sql │ │ │ ├── main_js.sql │ │ │ ├── main_js_map.sql │ │ │ ├── main_min_css.sql │ │ │ ├── main_min_js.sql │ │ │ ├── prozess_jpg.sql │ │ │ └── prozess_png.sql │ │ ├── globalization │ │ │ ├── dyntranslations.sql │ │ │ ├── language.sql │ │ │ ├── messages.sql │ │ │ └── translations.sql │ │ ├── logic │ │ │ ├── application_items │ │ │ │ └── fil_id.sql │ │ │ ├── application_processes │ │ │ │ └── download_blob.sql │ │ │ ├── application_settings.sql │ │ │ └── build_options.sql │ │ ├── navigation │ │ │ ├── breadcrumbentry.sql │ │ │ ├── breadcrumbs │ │ │ │ └── breadcrumb.sql │ │ │ ├── lists │ │ │ │ ├── create_new_template.sql │ │ │ │ ├── desktop_navigation_bar.sql │ │ │ │ ├── desktop_navigation_menu.sql │ │ │ │ ├── edit_template.sql │ │ │ │ └── feedback.sql │ │ │ ├── navigation_bar.sql │ │ │ └── tabs │ │ │ │ ├── parent.sql │ │ │ │ └── standard.sql │ │ ├── plugins │ │ │ ├── item_type │ │ │ │ └── mesquitarod_multirow_item.sql │ │ │ └── region_type │ │ │ │ ├── de_danielh_dropzone2.sql │ │ │ │ └── dev_hartenfeller_slideover.sql │ │ ├── security │ │ │ ├── app_access_control │ │ │ │ └── administrator.sql │ │ │ ├── authentications │ │ │ │ └── application_express_authentication.sql │ │ │ └── authorizations │ │ │ │ └── administration_rights.sql │ │ └── user_interface │ │ │ ├── lovs │ │ │ ├── feedback_rating.sql │ │ │ ├── feedback_status.sql │ │ │ ├── login_remember_username.sql │ │ │ ├── mailtype.sql │ │ │ ├── r_files.sql │ │ │ ├── r_header.sql │ │ │ ├── r_person.sql │ │ │ ├── r_shippingstatus.sql │ │ │ ├── r_spreadsheet_protection.sql │ │ │ ├── r_status.sql │ │ │ ├── r_templates.sql │ │ │ ├── r_validation.sql │ │ │ ├── template_header.sql │ │ │ ├── template_header_groups.sql │ │ │ ├── template_header_validations.sql │ │ │ └── template_status.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 │ │ │ │ ├── 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 │ │ │ │ ├── inline_dialog.sql │ │ │ │ ├── inline_popup.sql │ │ │ │ ├── interactive_report.sql │ │ │ │ ├── login.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 │ │ │ │ ├── dragzone.sql │ │ │ │ ├── dropzone.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 ├── excel_gateway_for_oracle_apex.sql └── install.sql ├── datamodel ├── ChangeRequests.local ├── businessinfo │ ├── Business Information.xml │ └── Objects.local ├── datatypes │ ├── DDLSelection.local │ ├── DataTypes.xml │ ├── Diagrams.local │ ├── Objects.local │ ├── structuredtype │ │ └── seg_0 │ │ │ ├── 47E390DE-0671-C4B1-8428-0F45CBEE18F8.xml │ │ │ └── F72C39E0-D1CA-8821-2AD7-A1E95A37D3D1.xml │ └── subviews │ │ └── 44F6B3E2-D865-636F-AE3F-2CBADB1DCA05.xml ├── dl_settings.xml ├── dmd_open.local ├── logical │ ├── Diagrams.local │ ├── Logical.xml │ ├── Objects.local │ └── subviews │ │ └── 2C20954D-2C60-A5FE-9FD7-D943E12E11FD.xml ├── mapping │ ├── DeletedMap_RM07DB7D3E-A604-71AE-E24B-C6B6AC31832E.xml │ ├── DeletedMap_RM2BE2275B-103C-65C0-526F-07C50F0ECDB4.xml │ ├── DeletedMap_RMEFAB9F35-101C-E621-3611-16383DE14391.xml │ ├── ExtendedMap.xml │ ├── ExtendedMap_RM07DB7D3E-A604-71AE-E24B-C6B6AC31832E.xml │ ├── ExtendedMap_RM2BE2275B-103C-65C0-526F-07C50F0ECDB4.xml │ └── ExtendedMap_RMEFAB9F35-101C-E621-3611-16383DE14391.xml ├── pm │ ├── Objects.local │ └── Process Model.xml ├── rdbms │ ├── Excel_Gateway_RDBMSSites.xml │ └── datamodel_RDBMSSites.xml └── rel │ ├── 07DB7D3E-C6B6AC31832E.xml │ ├── 07DB7D3E-C6B6AC31832E │ ├── DDLSelection.local │ ├── Diagrams.local │ ├── Objects.local │ ├── foreignkey │ │ └── seg_0 │ │ │ ├── 1D420EDB-7AAD-966E-3315-A50150C37F40.xml │ │ │ ├── 27A6B83B-842C-FADA-B2ED-82905F23CF84.xml │ │ │ ├── 3A1A6B62-AA70-0C2E-5BE7-345A9F9DC157.xml │ │ │ ├── 40D58C1D-864D-2896-8127-6CA44C78E3A9.xml │ │ │ ├── 58739D8D-D44A-D865-74FD-69AA7CF5E426.xml │ │ │ ├── 5FBF01B9-3C56-CF53-C46C-5342C4EBF8F6.xml │ │ │ ├── 738D49EE-1A50-E0D6-8550-17B00A0CC65F.xml │ │ │ ├── 8B343861-C705-4C2C-DDBB-663019B9D330.xml │ │ │ ├── BC0076BB-F349-75CC-DBD1-5CF1AB6538DA.xml │ │ │ ├── C4737B47-B2F7-823B-3B85-860AB2D584ED.xml │ │ │ └── DB009B46-67DE-D621-0B8B-D97ABB66F017.xml │ ├── phys │ │ └── 79C73AAF-025EE81A2AFC │ │ │ ├── 79C73AAF-025EE81A2AFC.xml │ │ │ ├── DDLSelection.local │ │ │ ├── Objects.local │ │ │ ├── SType │ │ │ └── seg_0 │ │ │ │ ├── 47E390DE-0671-C4B1-8428-0F45CBEE18F8.xml │ │ │ │ └── F72C39E0-D1CA-8821-2AD7-A1E95A37D3D1.xml │ │ │ ├── Segment │ │ │ └── seg_0 │ │ │ │ ├── 168D4A77-ADE5-19F6-801C-7BF5ECCD79B2.xml │ │ │ │ ├── 2D2D230F-6C7C-9377-8CC4-A90BBBAF1EB4.xml │ │ │ │ └── 6D2202E2-B1BB-EAC5-8141-B1445817C8FC.xml │ │ │ ├── Sequence │ │ │ └── seg_0 │ │ │ │ ├── 118D9C9A-A4DF-D649-747B-6B3039BA3D68.xml │ │ │ │ ├── 23F84C3A-9040-807E-A8BA-B3A264515020.xml │ │ │ │ ├── 2DBE4688-B6FF-04C8-4011-7F9951EAFE31.xml │ │ │ │ ├── 4253FAC2-413D-B47E-4356-960849957879.xml │ │ │ │ ├── 44D4592B-77F1-E89C-A8BB-B108486E704B.xml │ │ │ │ ├── 45386B7E-75BC-1C81-AC4B-D9A49AF31550.xml │ │ │ │ ├── 719D9A4F-353C-0BF3-77E8-21991CAD4502.xml │ │ │ │ ├── 71A944A0-4AAA-3348-7A32-478EFEF31540.xml │ │ │ │ ├── 72654F9C-A6CA-06A6-33BB-4603494FA7EF.xml │ │ │ │ ├── 8385CA70-86C6-755E-29C7-7A684EC39E5E.xml │ │ │ │ ├── 973BEF72-D99F-4D20-C12C-95A73CBAFF8B.xml │ │ │ │ ├── B80165E8-4F6E-D197-36D9-BC81DE24BFB5.xml │ │ │ │ ├── B85C1422-9AC8-B1D1-8EAE-1A9BFF79B815.xml │ │ │ │ ├── B9599A0D-D2EE-E2E3-4B8B-1678FB01AB99.xml │ │ │ │ ├── BCF028A0-BB37-B5D3-0D80-7855E22B8AE6.xml │ │ │ │ ├── C9494DA0-E0B6-4659-E289-F844CDA47461.xml │ │ │ │ ├── DCF63ECD-02B5-BE46-2EE4-CEE96CBB68F5.xml │ │ │ │ ├── E10FFFBD-2BB2-D2D5-7185-5F779A1AB6C5.xml │ │ │ │ └── F8DB8760-E111-A284-6540-CEE468562487.xml │ │ │ ├── TSpace │ │ │ └── seg_0 │ │ │ │ └── 69CB9773-B617-5748-A0A3-0048DB93E350.xml │ │ │ ├── Table │ │ │ └── seg_0 │ │ │ │ ├── 11E8DE4E-3D94-CC5F-D33D-4CEA71186ED7.xml │ │ │ │ ├── 207D7456-7AE0-5D45-1EBF-1FDFC7D755D8.xml │ │ │ │ ├── 2A4DB935-DE4B-4AC9-7A40-A590D61DE154.xml │ │ │ │ ├── 3E383D27-E7DE-D441-C683-72DCFF3C468D.xml │ │ │ │ ├── 43B52625-7051-97CB-8CF4-CE958A931EEF.xml │ │ │ │ ├── 512AFA89-9447-466A-C0BA-17ED1880DBEB.xml │ │ │ │ ├── 6EEFCFD0-0DB1-AC80-C648-E1580AA6C86D.xml │ │ │ │ ├── 782288FD-B52D-7ED3-0A67-339F2B46FBDF.xml │ │ │ │ ├── 79FC3A7F-D1F6-341D-D08E-3EB16094DFE1.xml │ │ │ │ ├── 7EB46ADD-7D8C-AE93-9AA1-97A0E7D0A235.xml │ │ │ │ ├── A29E9389-5D07-8D85-FA7E-9DE4219FE0C4.xml │ │ │ │ ├── BA467412-ACAE-566A-556C-C7573EE9411F.xml │ │ │ │ ├── C6BB0753-2E41-E821-45D1-E49F3A03341F.xml │ │ │ │ ├── CF86BC89-6CA7-051D-0421-DAEA8F26ED08.xml │ │ │ │ ├── D8AB79A8-58AC-F52B-32A6-440E43F480A4.xml │ │ │ │ └── E020A69D-5DA8-5BAE-D3DE-C8156F3E7D12.xml │ │ │ ├── Trigger │ │ │ └── seg_0 │ │ │ │ ├── 0143C017-1416-9E28-677B-E5C4D301030D.xml │ │ │ │ ├── 04001458-E7CC-F713-FBD9-12C60FD9D81F.xml │ │ │ │ ├── 14D1F763-D73D-EAB2-8D2C-C5FF7539125A.xml │ │ │ │ ├── 2E1E2455-16DA-108C-EAC5-7C3F52D3C7B5.xml │ │ │ │ ├── 3C127637-10AB-F336-26D2-419745F89D43.xml │ │ │ │ ├── 4662EB94-64C4-4176-7C63-7F5723105FF8.xml │ │ │ │ ├── 6E100222-E96C-74EE-619F-0937FC7C4EC4.xml │ │ │ │ ├── 6F8C0C5A-81C4-6C6C-3689-EC37DC214774.xml │ │ │ │ ├── 8A200E4C-210C-DE82-29A8-9114A277C6AB.xml │ │ │ │ ├── 9252B06F-7082-4D24-0FBE-5D7B2D289D3F.xml │ │ │ │ ├── C1039CF3-1855-F337-51D1-28F162F17F4F.xml │ │ │ │ ├── CB59B53F-2D71-1FF1-2862-CDAF9E392D29.xml │ │ │ │ ├── CFE3A753-EDD0-3DD3-7E24-1E73DAC85EE7.xml │ │ │ │ ├── DDB20787-A400-8921-BA09-B39BBBA06503.xml │ │ │ │ └── E34C605F-419B-4138-F9D1-D9FAD80CC702.xml │ │ │ └── User │ │ │ └── seg_0 │ │ │ ├── 6D96194D-184B-30BE-74BF-59D97801C65F.xml │ │ │ ├── MDSYS.xml │ │ │ └── PUBLIC.xml │ ├── schema │ │ └── seg_0 │ │ │ ├── 1C1CD04D-5677-F3B8-464B-953E4FEE0EB9.xml │ │ │ └── E9380AD7-7416-3F20-40BA-F48221C52445.xml │ ├── subviews │ │ └── 56FAFE51-3AA0-ECF9-31A7-CC07610B7B08.xml │ └── table │ │ └── seg_0 │ │ ├── 11E8DE4E-3D94-CC5F-D33D-4CEA71186ED7.xml │ │ ├── 207D7456-7AE0-5D45-1EBF-1FDFC7D755D8.xml │ │ ├── 2A4DB935-DE4B-4AC9-7A40-A590D61DE154.xml │ │ ├── 3E383D27-E7DE-D441-C683-72DCFF3C468D.xml │ │ ├── 43B52625-7051-97CB-8CF4-CE958A931EEF.xml │ │ ├── 512AFA89-9447-466A-C0BA-17ED1880DBEB.xml │ │ ├── 6EEFCFD0-0DB1-AC80-C648-E1580AA6C86D.xml │ │ ├── 782288FD-B52D-7ED3-0A67-339F2B46FBDF.xml │ │ ├── 79FC3A7F-D1F6-341D-D08E-3EB16094DFE1.xml │ │ ├── 7EB46ADD-7D8C-AE93-9AA1-97A0E7D0A235.xml │ │ ├── A29E9389-5D07-8D85-FA7E-9DE4219FE0C4.xml │ │ ├── BA467412-ACAE-566A-556C-C7573EE9411F.xml │ │ ├── C6BB0753-2E41-E821-45D1-E49F3A03341F.xml │ │ ├── CF86BC89-6CA7-051D-0421-DAEA8F26ED08.xml │ │ ├── D8AB79A8-58AC-F52B-32A6-440E43F480A4.xml │ │ └── E020A69D-5DA8-5BAE-D3DE-C8156F3E7D12.xml │ ├── 2BE2275B-07C50F0ECDB4.xml │ ├── 2BE2275B-07C50F0ECDB4 │ ├── DDLSelection.local │ ├── Diagrams.local │ ├── Objects.local │ ├── foreignkey │ │ └── seg_0 │ │ │ ├── 093F6ECB-AF0D-F5FC-AC8B-4D0F785CF4E1.xml │ │ │ ├── 1739B59B-B166-FFC8-B435-87E5003F69BE.xml │ │ │ ├── 1F390A7D-2E21-CFC2-5AC4-9E3C66C4D6CA.xml │ │ │ ├── 27D0EE01-6832-9D08-291F-97E8C662FA36.xml │ │ │ ├── 386EC6D4-39C5-D3E0-AA09-FAEE9DF0C627.xml │ │ │ ├── 52601EEE-BA4A-F91E-9ABA-6B7755EC8A08.xml │ │ │ ├── 57B294BF-F7F0-C1AA-B693-40E7F7C2E553.xml │ │ │ ├── 591FA4A6-0895-66EF-635D-438B20E12915.xml │ │ │ ├── 738810D2-F19C-3065-0FA2-A86E386ED4A0.xml │ │ │ ├── 972D1D37-194A-8B93-FFDF-672B2B43A81D.xml │ │ │ ├── BBC0DADE-08E5-50B7-E528-51D4C758AEB8.xml │ │ │ ├── C23A00F2-F637-3041-BA7E-A55673EF5D79.xml │ │ │ ├── DF60701A-8D6D-D117-C9A8-3E01F87B5AD1.xml │ │ │ └── EEF2A611-F965-E4EA-7DCE-D6182AF92829.xml │ ├── phys │ │ └── 79C73AAF-025EE81A2AFC │ │ │ ├── 79C73AAF-025EE81A2AFC.xml │ │ │ ├── DDLSelection.local │ │ │ ├── Objects.local │ │ │ ├── SType │ │ │ └── seg_0 │ │ │ │ ├── 47E390DE-0671-C4B1-8428-0F45CBEE18F8.xml │ │ │ │ └── F72C39E0-D1CA-8821-2AD7-A1E95A37D3D1.xml │ │ │ ├── Segment │ │ │ └── seg_0 │ │ │ │ ├── 65BC1641-EC1B-1C1F-3E58-13008E190804.xml │ │ │ │ ├── D7183D3C-2B7D-647D-42BD-5F2489820439.xml │ │ │ │ ├── D7881BD5-48A5-B417-CF2A-BAB45F22ADEA.xml │ │ │ │ └── FCE9D115-FF1A-FACD-8618-8C75B67517B5.xml │ │ │ ├── TSpace │ │ │ └── seg_0 │ │ │ │ └── 9D9FFED1-C56C-F92D-4C11-D363E4608295.xml │ │ │ ├── Table │ │ │ └── seg_0 │ │ │ │ ├── 064E457B-0AA4-E747-E313-4BE8DF13A714.xml │ │ │ │ ├── 18DB2522-D549-F5CB-9986-EAB9AE268FB9.xml │ │ │ │ ├── 2A09C01C-B287-A527-AB1A-8DFC53F789B3.xml │ │ │ │ ├── 3BD0CA72-9CAA-06D5-C73E-D2418026AFE8.xml │ │ │ │ ├── 52FED8D8-67A5-3FD2-3E12-C7BE412BDE21.xml │ │ │ │ ├── 552711C2-5776-814E-39CD-F98F7F00546E.xml │ │ │ │ ├── 5C518D4B-ADD7-DF19-C5C7-A5F9A63F56D6.xml │ │ │ │ ├── 6875AC58-259C-EC64-A9A4-291C16C744BF.xml │ │ │ │ ├── 812E73CE-A58C-E4A4-F6CE-304E66B4191C.xml │ │ │ │ ├── 9780A851-D05A-76AD-B558-233AC80C9CBF.xml │ │ │ │ ├── AC029A62-D53B-F9C3-5BFB-46D6C183AB09.xml │ │ │ │ ├── B0ECB33C-FBCA-9894-5D8B-02CB9BC61DCC.xml │ │ │ │ ├── B18F6830-6A00-C8B6-9A55-7F4785B69424.xml │ │ │ │ ├── C58BCB83-3C88-8096-FA1F-C0933E4E3372.xml │ │ │ │ ├── C6A55C8B-AE20-30EC-14CB-E2F16F6885A5.xml │ │ │ │ └── CFF4F9B5-99C1-518F-3252-9EA7FDF88BB5.xml │ │ │ ├── Trigger │ │ │ └── seg_0 │ │ │ │ ├── 055C56CC-1F2B-C224-AB86-76C1C5B7419C.xml │ │ │ │ ├── 092EAECB-2CB0-C6C2-6471-321B5485DD39.xml │ │ │ │ ├── 1B4EC6C4-DC37-0D4D-8025-7EF8BA30420B.xml │ │ │ │ ├── 221C5975-DD59-A258-60BE-8B2DADFC218D.xml │ │ │ │ ├── 287B51AC-3DA5-1C44-6FBB-4193280D8AF9.xml │ │ │ │ ├── 4058CECE-2048-30E3-7AC4-727BE3A8D87B.xml │ │ │ │ ├── 429A3FC7-42EF-8DB7-8C29-9412C14EAB2A.xml │ │ │ │ ├── 5B596441-AB63-32E4-A754-4A99D9BA3F68.xml │ │ │ │ ├── 749ED57C-E90D-22BA-EAB1-12ACBBB2DBEE.xml │ │ │ │ ├── 79EDABA2-25FF-E628-CCFD-EB8242EB246A.xml │ │ │ │ ├── C7133054-FDC6-D047-F02F-25A25258E8A7.xml │ │ │ │ ├── EF66CB37-847B-0649-DDD3-66D80D7ABE2C.xml │ │ │ │ ├── F0F5D9F8-40DF-00B0-D94F-8E2666FCB83F.xml │ │ │ │ └── FAABB56F-6D46-46BE-10BD-7C7104F9A625.xml │ │ │ └── User │ │ │ └── seg_0 │ │ │ ├── 6474FE67-4AC6-8ED9-4E9B-F13E709333EB.xml │ │ │ ├── MDSYS.xml │ │ │ └── PUBLIC.xml │ ├── schema │ │ └── seg_0 │ │ │ └── C638272D-8D60-5239-3AE2-9FC75CF68502.xml │ ├── subviews │ │ └── 5FB6D49B-D657-D872-C085-FDFB0D55F3CA.xml │ └── table │ │ └── seg_0 │ │ ├── 064E457B-0AA4-E747-E313-4BE8DF13A714.xml │ │ ├── 18DB2522-D549-F5CB-9986-EAB9AE268FB9.xml │ │ ├── 2A09C01C-B287-A527-AB1A-8DFC53F789B3.xml │ │ ├── 3BD0CA72-9CAA-06D5-C73E-D2418026AFE8.xml │ │ ├── 52FED8D8-67A5-3FD2-3E12-C7BE412BDE21.xml │ │ ├── 552711C2-5776-814E-39CD-F98F7F00546E.xml │ │ ├── 5C518D4B-ADD7-DF19-C5C7-A5F9A63F56D6.xml │ │ ├── 6875AC58-259C-EC64-A9A4-291C16C744BF.xml │ │ ├── 812E73CE-A58C-E4A4-F6CE-304E66B4191C.xml │ │ ├── 9780A851-D05A-76AD-B558-233AC80C9CBF.xml │ │ ├── AC029A62-D53B-F9C3-5BFB-46D6C183AB09.xml │ │ ├── B0ECB33C-FBCA-9894-5D8B-02CB9BC61DCC.xml │ │ ├── B18F6830-6A00-C8B6-9A55-7F4785B69424.xml │ │ ├── C58BCB83-3C88-8096-FA1F-C0933E4E3372.xml │ │ ├── C6A55C8B-AE20-30EC-14CB-E2F16F6885A5.xml │ │ └── CFF4F9B5-99C1-518F-3252-9EA7FDF88BB5.xml │ ├── EFAB9F35-16383DE14391.xml │ └── EFAB9F35-16383DE14391 │ ├── DDLSelection.local │ ├── Diagrams.local │ ├── Objects.local │ └── subviews │ └── 600C466A-BDAA-55E0-960D-F299A9078CDC.xml ├── ddl ├── deinstall_all_objects.sql ├── deinstall_logger.sql ├── install_logger.sql ├── install_logger_no_op.sql ├── install_packages.sql ├── install_scratch.sql └── install_views.sql ├── deinstall_objects.sql ├── install_all_scratch.sql ├── install_all_scratch_dev.sql ├── install_db_scratch.sql ├── plsql ├── email_pkg.pkb ├── email_pkg.pks ├── excel_gen.pkb ├── excel_gen.pks ├── file_import.pkb ├── file_import.pks ├── master_api.pkb ├── master_api.pks ├── p00025_api.pkb ├── p00025_api.pks ├── p00027_api.pkb ├── p00027_api.pks ├── p00028_api.pkb ├── p00028_api.pks ├── p00030_api.pkb ├── p00030_api.pks ├── p00031_api.pkb ├── p00031_api.pks ├── p00032_api.pkb ├── p00032_api.pks ├── p00041_api.pkb ├── p00041_api.pks ├── p00051_api.pkb ├── p00051_api.pks ├── p00060_api.pkb ├── p00060_api.pks ├── p00085_api.pkb ├── p00085_api.pks ├── p00090_api.pkb ├── p00090_api.pks ├── validation_api.pkb ├── validation_api.pks ├── xlsx_builder_pkg.pkb ├── xlsx_builder_pkg.pks ├── zip_util_pkg.pkb └── zip_util_pkg.pks └── views ├── p00020_vw.sql ├── p00030_vw.sql ├── p00042_vw.sql ├── p00051_vw.sql ├── p00060_vw.sql ├── p01002_vw.sql ├── p01003_vw.sql ├── p01004_vw.sql ├── p01005_vw.sql ├── p01006_vw.sql ├── p01007_vw.sql ├── p01008_vw.sql ├── p01009_vw.sql ├── p01010_vw.sql ├── p01011_vw.sql ├── p01012_vw.sql ├── p01013_vw.sql ├── p01014_vw.sql └── p01015_vw.sql /src/apex/application/comments.sql: -------------------------------------------------------------------------------- 1 | prompt --application/comments 2 | begin 3 | -- Manifest 4 | -- APPLICATION COMMENTS: 445 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | null; 15 | wwv_flow_api.component_end; 16 | end; 17 | / 18 | -------------------------------------------------------------------------------- /src/apex/application/delete_application.sql: -------------------------------------------------------------------------------- 1 | prompt --application/delete_application 2 | begin 3 | wwv_flow_api.component_begin ( 4 | p_version_yyyy_mm_dd=>'2021.10.15' 5 | ,p_release=>'21.2.1' 6 | ,p_default_workspace_id=>9510583246779566 7 | ,p_default_application_id=>111 8 | ,p_default_id_offset=>364658460193179534 9 | ,p_default_owner=>'SURVEY_TOOL' 10 | ); 11 | wwv_flow_api.remove_flow(wwv_flow.g_flow_id); 12 | wwv_flow_api.component_end; 13 | end; 14 | / 15 | -------------------------------------------------------------------------------- /src/apex/application/deployment/buildoptions.sql: -------------------------------------------------------------------------------- 1 | prompt --application/deployment/buildoptions 2 | begin 3 | -- Manifest 4 | -- INSTALL BUILD OPTIONS: 445 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | null; 15 | wwv_flow_api.component_end; 16 | end; 17 | / 18 | -------------------------------------------------------------------------------- /src/apex/application/deployment/checks.sql: -------------------------------------------------------------------------------- 1 | prompt --application/deployment/checks 2 | begin 3 | -- Manifest 4 | -- INSTALL CHECKS: 445 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | null; 15 | wwv_flow_api.component_end; 16 | end; 17 | / 18 | -------------------------------------------------------------------------------- /src/apex/application/end_environment.sql: -------------------------------------------------------------------------------- 1 | prompt --application/end_environment 2 | begin 3 | wwv_flow_api.import_end(p_auto_install_sup_obj => nvl(wwv_flow_application_install.get_auto_install_sup_obj, false)); 4 | commit; 5 | end; 6 | / 7 | set verify on feedback on define on 8 | prompt ...done 9 | -------------------------------------------------------------------------------- /src/apex/application/pages/page_00001.sql: -------------------------------------------------------------------------------- 1 | prompt --application/pages/page_00001 2 | begin 3 | -- Manifest 4 | -- PAGE: 00001 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_page( 15 | p_id=>1 16 | ,p_user_interface_id=>wwv_flow_api.id(179050793507173566) 17 | ,p_name=>'Home' 18 | ,p_alias=>'HOME' 19 | ,p_step_title=>'Excel Gateway for Oracle APEX' 20 | ,p_autocomplete_on_off=>'OFF' 21 | ,p_page_template_options=>'#DEFAULT#' 22 | ,p_last_updated_by=>'THERWIX' 23 | ,p_last_upd_yyyymmddhh24miss=>'20210819142246' 24 | ); 25 | wwv_flow_api.create_page_plug( 26 | p_id=>wwv_flow_api.id(179064448502176905) 27 | ,p_plug_name=>'Home' 28 | ,p_region_template_options=>'#DEFAULT#' 29 | ,p_plug_template=>wwv_flow_api.id(178938756353173451) 30 | ,p_plug_display_sequence=>10 31 | ,p_include_in_reg_disp_sel_yn=>'Y' 32 | ,p_plug_source=>wwv_flow_string.join(wwv_flow_t_varchar2( 33 | 'Please select a template above or create a new template. The selected template serves as a filter for further work with the application.', 34 | '

', 35 | 'Prozess')) 36 | ,p_plug_query_options=>'DERIVED_REPORT_COLUMNS' 37 | ,p_attribute_01=>'N' 38 | ,p_attribute_02=>'HTML' 39 | ); 40 | wwv_flow_api.component_end; 41 | end; 42 | / 43 | -------------------------------------------------------------------------------- /src/apex/application/pages/page_groups.sql: -------------------------------------------------------------------------------- 1 | prompt --application/pages/page_groups 2 | begin 3 | -- Manifest 4 | -- PAGE GROUPS: 445 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_page_group( 15 | p_id=>wwv_flow_api.id(179053950192173592) 16 | ,p_group_name=>'Administration' 17 | ); 18 | wwv_flow_api.component_end; 19 | end; 20 | / 21 | -------------------------------------------------------------------------------- /src/apex/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 Application Express (APEX) export file 7 | -- 8 | -- You should run the script connected to SQL*Plus as the Oracle user 9 | -- APEX_210200 or as the owner (parsing schema) of the application. 10 | -- 11 | -- NOTE: Calls to apex_application_install override the defaults below. 12 | -- 13 | -------------------------------------------------------------------------------- 14 | begin 15 | wwv_flow_api.import_begin ( 16 | p_version_yyyy_mm_dd=>'2021.10.15' 17 | ,p_release=>'21.2.1' 18 | ,p_default_workspace_id=>9510583246779566 19 | ,p_default_application_id=>111 20 | ,p_default_id_offset=>364658460193179534 21 | ,p_default_owner=>'SURVEY_TOOL' 22 | ); 23 | end; 24 | / 25 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/email/templates/correction.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/email/templates/correction 2 | begin 3 | -- Manifest 4 | -- REPORT LAYOUT: CORRECTION 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_email_template( 15 | p_id=>wwv_flow_api.id(179262275492512588) 16 | ,p_name=>'CORRECTION' 17 | ,p_static_id=>'CORRECTION' 18 | ,p_subject=>'Correction Template' 19 | ,p_html_body=>wwv_flow_string.join(wwv_flow_t_varchar2( 20 | 'Dear #CONTACT_PERSON#,
', 21 | '
', 22 | 'This is a template to collect data.
', 23 | '
', 24 | 'We have found some incorrect data. Please have a look in the attached list and fill out again.
', 25 | '
', 26 | 'Thank you in advance for your cooperation.
', 27 | '
', 28 | 'Best regards
', 29 | '
', 30 | '', 31 | ' ', 32 | ' ', 33 | ' ', 34 | ' ', 35 | ' ', 36 | ' ', 37 | ' ', 38 | ' ', 39 | '
Deadline:#DEADLINE#
Notes:#NOTES#
')) 40 | ,p_html_header=>'Correction Template' 41 | ,p_text_template=>wwv_flow_string.join(wwv_flow_t_varchar2( 42 | 'Dear #CONTACT_PERSON#,', 43 | '', 44 | 'This is a template to collect data. ', 45 | 'We have found some incorrect data. Please have a look in the attached list and fill out again.', 46 | '', 47 | 'Thank you in advance for your cooperation.', 48 | '', 49 | 'Best regards', 50 | '', 51 | 'Deadline: #DEADLINE#', 52 | 'Notes: #NOTES#')) 53 | ); 54 | wwv_flow_api.component_end; 55 | end; 56 | / 57 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/email/templates/newtemplate.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/email/templates/newtemplate 2 | begin 3 | -- Manifest 4 | -- REPORT LAYOUT: NEWTEMPLATE 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_email_template( 15 | p_id=>wwv_flow_api.id(179262118686506559) 16 | ,p_name=>'NEWTEMPLATE' 17 | ,p_static_id=>'NEWTEMPLATE' 18 | ,p_subject=>'New Template' 19 | ,p_html_body=>wwv_flow_string.join(wwv_flow_t_varchar2( 20 | 'Dear #CONTACT_PERSON#,
', 21 | '
', 22 | 'This is a template to collect data.
', 23 | '
', 24 | 'Please fill out the attached list.
', 25 | '
', 26 | 'Thank you in advance for your cooperation.
', 27 | '
', 28 | 'Best regards
', 29 | '
', 30 | '', 31 | ' ', 32 | ' ', 33 | ' ', 34 | ' ', 35 | ' ', 36 | ' ', 37 | ' ', 38 | ' ', 39 | '
Deadline:#DEADLINE#
Notes:#NOTES#
')) 40 | ,p_html_header=>'New Template' 41 | ,p_text_template=>wwv_flow_string.join(wwv_flow_t_varchar2( 42 | 'Dear #CONTACT_PERSON#,', 43 | '', 44 | 'This is a template to collect data.', 45 | '', 46 | 'Thank you in advance for your cooperation.', 47 | '', 48 | 'Best regards', 49 | '', 50 | 'Deadline: #DEADLINE#', 51 | 'Notes: #NOTES#')) 52 | ); 53 | wwv_flow_api.component_end; 54 | end; 55 | / 56 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/email/templates/reminder.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/email/templates/reminder 2 | begin 3 | -- Manifest 4 | -- REPORT LAYOUT: REMINDER 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_email_template( 15 | p_id=>wwv_flow_api.id(179262438103517744) 16 | ,p_name=>'REMINDER' 17 | ,p_static_id=>'REMINDER' 18 | ,p_subject=>'Reminder Template' 19 | ,p_html_body=>wwv_flow_string.join(wwv_flow_t_varchar2( 20 | 'Dear #CONTACT_PERSON#,
', 21 | '
', 22 | 'This is a reminder to collect data.
', 23 | '
', 24 | 'Please fill out the attached list.
', 25 | '
', 26 | 'Thank you in advance for your cooperation.
', 27 | '
', 28 | 'Best regards
', 29 | '
', 30 | '', 31 | ' ', 32 | ' ', 33 | ' ', 34 | ' ', 35 | ' ', 36 | ' ', 37 | ' ', 38 | ' ', 39 | '
Deadline:#DEADLINE#
Notes:#NOTES#
')) 40 | ,p_html_header=>'Reminder Template' 41 | ,p_text_template=>wwv_flow_string.join(wwv_flow_t_varchar2( 42 | 'Dear #CONTACT_PERSON#,', 43 | '', 44 | 'This is a reminder to collect data.', 45 | '', 46 | 'Please fill out the attached list.', 47 | '', 48 | 'Thank you in advance for your cooperation.', 49 | '', 50 | 'Best regards', 51 | '', 52 | 'Deadline: #DEADLINE#', 53 | 'Notes: #NOTES#')) 54 | ); 55 | wwv_flow_api.component_end; 56 | end; 57 | / 58 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/files/app_icon_css.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/files/app_icon_css 2 | begin 3 | -- Manifest 4 | -- APP STATIC FILES: 445 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.g_varchar2_table := wwv_flow_api.empty_varchar2_table; 15 | wwv_flow_api.g_varchar2_table(1) := '2E6170702D69636F6E207B0A202020206261636B67726F756E642D696D6167653A2075726C286170702D69636F6E2E737667293B0A202020206261636B67726F756E642D7265706561743A206E6F2D7265706561743B0A202020206261636B67726F756E'; 16 | wwv_flow_api.g_varchar2_table(2) := '642D73697A653A20636F7665723B0A202020206261636B67726F756E642D706F736974696F6E3A203530253B0A202020206261636B67726F756E642D636F6C6F723A20233330394644423B0A7D'; 17 | wwv_flow_api.create_app_static_file( 18 | p_id=>wwv_flow_api.id(179052045434173588) 19 | ,p_file_name=>'app-icon.css' 20 | ,p_mime_type=>'text/css' 21 | ,p_file_charset=>'utf-8' 22 | ,p_file_content => wwv_flow_api.varchar2_to_blob(wwv_flow_api.g_varchar2_table) 23 | ); 24 | wwv_flow_api.component_end; 25 | end; 26 | / 27 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/globalization/dyntranslations.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/globalization/dyntranslations 2 | begin 3 | -- Manifest 4 | -- DYNAMIC TRANSLATIONS: 445 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | null; 15 | wwv_flow_api.component_end; 16 | end; 17 | / 18 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/globalization/language.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/globalization/language 2 | begin 3 | -- Manifest 4 | -- LANGUAGE MAP: 445 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | null; 15 | wwv_flow_api.component_end; 16 | end; 17 | / 18 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/globalization/messages.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/globalization/messages 2 | begin 3 | -- Manifest 4 | -- MESSAGES: 445 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | null; 15 | wwv_flow_api.component_end; 16 | end; 17 | / 18 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/globalization/translations.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/globalization/translations 2 | begin 3 | -- Manifest 4 | -- TRANSLATIONS: 445 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | null; 15 | wwv_flow_api.component_end; 16 | end; 17 | / 18 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/logic/application_items/fil_id.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/logic/application_items/fil_id 2 | begin 3 | -- Manifest 4 | -- APPLICATION ITEM: FIL_ID 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_flow_item( 15 | p_id=>wwv_flow_api.id(179256160471024982) 16 | ,p_name=>'FIL_ID' 17 | ,p_protection_level=>'N' 18 | ,p_escape_on_http_output=>'N' 19 | ); 20 | wwv_flow_api.component_end; 21 | end; 22 | / 23 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/logic/application_settings.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/logic/application_settings 2 | begin 3 | -- Manifest 4 | -- APPLICATION SETTINGS: 445 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_app_setting( 15 | p_id=>wwv_flow_api.id(187482440824111119) 16 | ,p_name=>'FEEDBACK_ATTACHMENTS_YN' 17 | ,p_value=>'Y' 18 | ,p_is_required=>'N' 19 | ,p_valid_values=>'Y, N' 20 | ,p_on_upgrade_keep_value=>true 21 | ,p_required_patch=>wwv_flow_api.id(187482125484111115) 22 | ); 23 | wwv_flow_api.component_end; 24 | end; 25 | / 26 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/logic/build_options.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/logic/build_options 2 | begin 3 | -- Manifest 4 | -- BUILD OPTIONS: 445 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_build_option( 15 | p_id=>wwv_flow_api.id(187529009182517868) 16 | ,p_build_option_name=>'Feature: About Page' 17 | ,p_build_option_status=>'INCLUDE' 18 | ,p_feature_identifier=>'APPLICATION_ABOUT_PAGE' 19 | ,p_build_option_comment=>'About this application page.' 20 | ); 21 | wwv_flow_api.create_build_option( 22 | p_id=>wwv_flow_api.id(187482125484111115) 23 | ,p_build_option_name=>'Feature: Feedback' 24 | ,p_build_option_status=>'INCLUDE' 25 | ,p_feature_identifier=>'APPLICATION_FEEDBACK' 26 | ,p_build_option_comment=>'Provide a mechanism for end users to post general comments back to the application administrators and developers.' 27 | ); 28 | wwv_flow_api.component_end; 29 | end; 30 | / 31 | -------------------------------------------------------------------------------- /src/apex/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_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | null; 15 | wwv_flow_api.component_end; 16 | end; 17 | / 18 | -------------------------------------------------------------------------------- /src/apex/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_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_menu( 15 | p_id=>wwv_flow_api.id(178912156553173412) 16 | ,p_name=>'Breadcrumb' 17 | ); 18 | wwv_flow_api.create_menu_option( 19 | p_id=>wwv_flow_api.id(187513901769111196) 20 | ,p_short_name=>'Feedback' 21 | ,p_link=>'f?p=&APP_ID.:10000:&APP_SESSION.::&DEBUG.:::' 22 | ,p_page_id=>10000 23 | ); 24 | wwv_flow_api.create_menu_option( 25 | p_id=>wwv_flow_api.id(178912353996173413) 26 | ,p_short_name=>'Home' 27 | ,p_link=>'f?p=&APP_ID.:1:&APP_SESSION.::&DEBUG.' 28 | ,p_page_id=>1 29 | ); 30 | wwv_flow_api.component_end; 31 | end; 32 | / 33 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/navigation/lists/feedback.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/navigation/lists/feedback 2 | begin 3 | -- Manifest 4 | -- LIST: Feedback 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_list( 15 | p_id=>wwv_flow_api.id(187514096039111197) 16 | ,p_name=>'Feedback' 17 | ,p_list_status=>'PUBLIC' 18 | ,p_required_patch=>wwv_flow_api.id(187482125484111115) 19 | ); 20 | wwv_flow_api.create_list_item( 21 | p_id=>wwv_flow_api.id(187514448460111198) 22 | ,p_list_item_display_sequence=>10 23 | ,p_list_item_link_text=>'User Feedback' 24 | ,p_list_item_link_target=>'f?p=&APP_ID.:10013:&SESSION.::&DEBUG.:10013:::' 25 | ,p_list_item_icon=>'fa-comment-o' 26 | ,p_list_text_01=>'Report of all feedback submitted by application users' 27 | ,p_list_item_current_type=>'TARGET_PAGE' 28 | ); 29 | wwv_flow_api.component_end; 30 | end; 31 | / 32 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/navigation/navigation_bar.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/navigation/navigation_bar 2 | begin 3 | -- Manifest 4 | -- ICON BAR ITEMS: 445 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | null; 15 | wwv_flow_api.component_end; 16 | end; 17 | / 18 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/navigation/tabs/parent.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/navigation/tabs/parent 2 | begin 3 | -- Manifest 4 | -- TOP LEVEL TABS: 445 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | null; 15 | wwv_flow_api.component_end; 16 | end; 17 | / 18 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/navigation/tabs/standard.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/navigation/tabs/standard 2 | begin 3 | -- Manifest 4 | -- TABS: 445 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | null; 15 | wwv_flow_api.component_end; 16 | end; 17 | / 18 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/security/app_access_control/administrator.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/security/app_access_control/administrator 2 | begin 3 | -- Manifest 4 | -- ACL ROLE: ADMINISTRATOR 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.04.15' 8 | ,p_release=>'21.1.0' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>205442218172938197 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_acl_role( 15 | p_id=>wwv_flow_api.id(68515471049849776) 16 | ,p_static_id=>'ADMINISTRATOR' 17 | ,p_name=>'ADMINISTRATOR' 18 | ); 19 | wwv_flow_api.component_end; 20 | end; 21 | / 22 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/security/authentications/application_express_authentication.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/security/authentications/application_express_authentication 2 | begin 3 | -- Manifest 4 | -- AUTHENTICATION: Application Express Authentication 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_authentication( 15 | p_id=>wwv_flow_api.id(178911879055173410) 16 | ,p_name=>'Application Express Authentication' 17 | ,p_scheme_type=>'NATIVE_APEX_ACCOUNTS' 18 | ,p_invalid_session_type=>'LOGIN' 19 | ,p_use_secure_cookie_yn=>'N' 20 | ,p_ras_mode=>0 21 | ); 22 | wwv_flow_api.component_end; 23 | end; 24 | / 25 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/security/authorizations/administration_rights.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/security/authorizations/administration_rights 2 | begin 3 | -- Manifest 4 | -- SECURITY SCHEME: Administration Rights 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_security_scheme( 15 | p_id=>wwv_flow_api.id(179053394900173589) 16 | ,p_name=>'Administration Rights' 17 | ,p_scheme_type=>'NATIVE_FUNCTION_BODY' 18 | ,p_attribute_01=>wwv_flow_string.join(wwv_flow_t_varchar2( 19 | 'declare', 20 | ' l_is_admin boolean := false;', 21 | 'begin', 22 | ' l_is_admin := APEX_ACL.HAS_USER_ROLE (', 23 | ' p_application_id => :APP_ID,', 24 | ' p_user_name => :APP_USER,', 25 | ' p_role_static_id => ''ADMINISTRATOR'');', 26 | '', 27 | ' return l_is_admin;', 28 | 'end;', 29 | '')) 30 | ,p_error_message=>'Insufficient privileges, user is not an Administrator' 31 | ,p_caching=>'BY_USER_BY_PAGE_VIEW' 32 | ); 33 | wwv_flow_api.component_end; 34 | end; 35 | / 36 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/user_interface/lovs/feedback_rating.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/user_interface/lovs/feedback_rating 2 | begin 3 | -- Manifest 4 | -- FEEDBACK_RATING 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_list_of_values( 15 | p_id=>wwv_flow_api.id(187487689745111132) 16 | ,p_lov_name=>'FEEDBACK_RATING' 17 | ,p_lov_query=>'.'||wwv_flow_api.id(187487689745111132)||'.' 18 | ,p_location=>'STATIC' 19 | ); 20 | wwv_flow_api.create_static_lov_data( 21 | p_id=>wwv_flow_api.id(187487994097111133) 22 | ,p_lov_disp_sequence=>1 23 | ,p_lov_disp_value=>'Positive' 24 | ,p_lov_return_value=>'3' 25 | ,p_lov_template=>'' 26 | ); 27 | wwv_flow_api.create_static_lov_data( 28 | p_id=>wwv_flow_api.id(187488378638111135) 29 | ,p_lov_disp_sequence=>2 30 | ,p_lov_disp_value=>'Neutral' 31 | ,p_lov_return_value=>'2' 32 | ,p_lov_template=>'' 33 | ); 34 | wwv_flow_api.create_static_lov_data( 35 | p_id=>wwv_flow_api.id(187488789468111135) 36 | ,p_lov_disp_sequence=>3 37 | ,p_lov_disp_value=>'Negative' 38 | ,p_lov_return_value=>'1' 39 | ,p_lov_template=>'' 40 | ); 41 | wwv_flow_api.component_end; 42 | end; 43 | / 44 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/user_interface/lovs/feedback_status.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/user_interface/lovs/feedback_status 2 | begin 3 | -- Manifest 4 | -- FEEDBACK_STATUS 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_list_of_values( 15 | p_id=>wwv_flow_api.id(187497793992111149) 16 | ,p_lov_name=>'FEEDBACK_STATUS' 17 | ,p_lov_query=>'.'||wwv_flow_api.id(187497793992111149)||'.' 18 | ,p_location=>'STATIC' 19 | ); 20 | wwv_flow_api.create_static_lov_data( 21 | p_id=>wwv_flow_api.id(187498082976111149) 22 | ,p_lov_disp_sequence=>1 23 | ,p_lov_disp_value=>'No Action' 24 | ,p_lov_return_value=>'0' 25 | ); 26 | wwv_flow_api.create_static_lov_data( 27 | p_id=>wwv_flow_api.id(187498470663111150) 28 | ,p_lov_disp_sequence=>2 29 | ,p_lov_disp_value=>'Acknowledged' 30 | ,p_lov_return_value=>'1' 31 | ); 32 | wwv_flow_api.create_static_lov_data( 33 | p_id=>wwv_flow_api.id(187498828780111150) 34 | ,p_lov_disp_sequence=>3 35 | ,p_lov_disp_value=>'Open' 36 | ,p_lov_return_value=>'3' 37 | ); 38 | wwv_flow_api.create_static_lov_data( 39 | p_id=>wwv_flow_api.id(187499246523111150) 40 | ,p_lov_disp_sequence=>4 41 | ,p_lov_disp_value=>'Closed' 42 | ,p_lov_return_value=>'4' 43 | ); 44 | wwv_flow_api.component_end; 45 | end; 46 | / 47 | -------------------------------------------------------------------------------- /src/apex/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_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_list_of_values( 15 | p_id=>wwv_flow_api.id(179055897245173609) 16 | ,p_lov_name=>'LOGIN_REMEMBER_USERNAME' 17 | ,p_lov_query=>'.'||wwv_flow_api.id(179055897245173609)||'.' 18 | ,p_location=>'STATIC' 19 | ); 20 | wwv_flow_api.create_static_lov_data( 21 | p_id=>wwv_flow_api.id(179056276341173612) 22 | ,p_lov_disp_sequence=>10 23 | ,p_lov_disp_value=>'Remember username' 24 | ,p_lov_return_value=>'Y' 25 | ); 26 | wwv_flow_api.component_end; 27 | end; 28 | / 29 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/user_interface/lovs/mailtype.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/user_interface/lovs/mailtype 2 | begin 3 | -- Manifest 4 | -- MAILTYPE 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_list_of_values( 15 | p_id=>wwv_flow_api.id(179208213233763794) 16 | ,p_lov_name=>'MAILTYPE' 17 | ,p_lov_query=>'.'||wwv_flow_api.id(179208213233763794)||'.' 18 | ,p_location=>'STATIC' 19 | ); 20 | wwv_flow_api.create_static_lov_data( 21 | p_id=>wwv_flow_api.id(179208447738763797) 22 | ,p_lov_disp_sequence=>1 23 | ,p_lov_disp_value=>'Initial Mail' 24 | ,p_lov_return_value=>'1' 25 | ); 26 | wwv_flow_api.create_static_lov_data( 27 | p_id=>wwv_flow_api.id(179208844899763798) 28 | ,p_lov_disp_sequence=>2 29 | ,p_lov_disp_value=>'Correction Mail' 30 | ,p_lov_return_value=>'2' 31 | ); 32 | wwv_flow_api.create_static_lov_data( 33 | p_id=>wwv_flow_api.id(179209303359763798) 34 | ,p_lov_disp_sequence=>3 35 | ,p_lov_disp_value=>'Reminder Mail' 36 | ,p_lov_return_value=>'3' 37 | ); 38 | wwv_flow_api.component_end; 39 | end; 40 | / 41 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/user_interface/lovs/r_files.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/user_interface/lovs/r_files 2 | begin 3 | -- Manifest 4 | -- R_FILES 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_list_of_values( 15 | p_id=>wwv_flow_api.id(187467159602025175) 16 | ,p_lov_name=>'R_FILES' 17 | ,p_source_type=>'TABLE' 18 | ,p_location=>'LOCAL' 19 | ,p_query_table=>'FILES' 20 | ,p_return_column_name=>'FIL_ID' 21 | ,p_display_column_name=>'FIL_FILENAME' 22 | ,p_default_sort_column_name=>'FIL_FILENAME' 23 | ,p_default_sort_direction=>'ASC' 24 | ); 25 | wwv_flow_api.component_end; 26 | end; 27 | / 28 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/user_interface/lovs/r_header.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/user_interface/lovs/r_header 2 | begin 3 | -- Manifest 4 | -- R_HEADER 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_list_of_values( 15 | p_id=>wwv_flow_api.id(187469481623044164) 16 | ,p_lov_name=>'R_HEADER' 17 | ,p_source_type=>'TABLE' 18 | ,p_location=>'LOCAL' 19 | ,p_use_local_sync_table=>false 20 | ,p_query_table=>'R_HEADER' 21 | ,p_return_column_name=>'HEA_ID' 22 | ,p_display_column_name=>'HEA_TEXT' 23 | ,p_group_sort_direction=>'ASC' 24 | ,p_default_sort_column_name=>'HEA_TEXT' 25 | ,p_default_sort_direction=>'ASC' 26 | ); 27 | wwv_flow_api.component_end; 28 | end; 29 | / 30 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/user_interface/lovs/r_person.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/user_interface/lovs/r_person 2 | begin 3 | -- Manifest 4 | -- R_PERSON 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_list_of_values( 15 | p_id=>wwv_flow_api.id(180127728095235982) 16 | ,p_lov_name=>'R_PERSON' 17 | ,p_lov_query=>wwv_flow_string.join(wwv_flow_t_varchar2( 18 | 'select per_id,', 19 | ' per_firstname || '' '' || per_lastname as per_name,', 20 | ' per_email', 21 | ' from r_person')) 22 | ,p_source_type=>'SQL' 23 | ,p_location=>'LOCAL' 24 | ,p_query_table=>'R_PERSON' 25 | ,p_return_column_name=>'PER_ID' 26 | ,p_display_column_name=>'PER_NAME' 27 | ,p_group_sort_direction=>'ASC' 28 | ,p_default_sort_column_name=>'PER_NAME' 29 | ,p_default_sort_direction=>'ASC' 30 | ); 31 | wwv_flow_api.create_list_of_values_cols( 32 | p_id=>wwv_flow_api.id(180128239507246988) 33 | ,p_query_column_name=>'PER_ID' 34 | ,p_display_sequence=>10 35 | ,p_data_type=>'NUMBER' 36 | ,p_is_visible=>'N' 37 | ,p_is_searchable=>'N' 38 | ); 39 | wwv_flow_api.create_list_of_values_cols( 40 | p_id=>wwv_flow_api.id(180128660715246988) 41 | ,p_query_column_name=>'PER_NAME' 42 | ,p_heading=>'Per Name' 43 | ,p_display_sequence=>20 44 | ,p_data_type=>'VARCHAR2' 45 | ); 46 | wwv_flow_api.create_list_of_values_cols( 47 | p_id=>wwv_flow_api.id(180129022442246989) 48 | ,p_query_column_name=>'PER_EMAIL' 49 | ,p_heading=>'Per Email' 50 | ,p_display_sequence=>30 51 | ,p_data_type=>'VARCHAR2' 52 | ); 53 | wwv_flow_api.component_end; 54 | end; 55 | / 56 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/user_interface/lovs/r_shippingstatus.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/user_interface/lovs/r_shippingstatus 2 | begin 3 | -- Manifest 4 | -- R_SHIPPINGSTATUS 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_list_of_values( 15 | p_id=>wwv_flow_api.id(179240585431932564) 16 | ,p_lov_name=>'R_SHIPPINGSTATUS' 17 | ,p_source_type=>'TABLE' 18 | ,p_location=>'LOCAL' 19 | ,p_query_table=>'R_SHIPPINGSTATUS' 20 | ,p_return_column_name=>'SPS_ID' 21 | ,p_display_column_name=>'SPS_NAME' 22 | ,p_default_sort_column_name=>'SPS_NAME' 23 | ,p_default_sort_direction=>'ASC' 24 | ); 25 | wwv_flow_api.component_end; 26 | end; 27 | / 28 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/user_interface/lovs/r_spreadsheet_protection.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/user_interface/lovs/r_spreadsheet_protection 2 | begin 3 | -- Manifest 4 | -- R_SPREADSHEET_PROTECTION 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_list_of_values( 15 | p_id=>wwv_flow_api.id(254487976307635680) 16 | ,p_lov_name=>'R_SPREADSHEET_PROTECTION' 17 | ,p_source_type=>'TABLE' 18 | ,p_location=>'LOCAL' 19 | ,p_query_table=>'P01015_VW' 20 | ,p_return_column_name=>'SSP_ID' 21 | ,p_display_column_name=>'SSP_NAME' 22 | ,p_default_sort_column_name=>'SSP_NAME' 23 | ,p_default_sort_direction=>'ASC' 24 | ); 25 | wwv_flow_api.component_end; 26 | end; 27 | / 28 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/user_interface/lovs/r_status.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/user_interface/lovs/r_status 2 | begin 3 | -- Manifest 4 | -- R_STATUS 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_list_of_values( 15 | p_id=>wwv_flow_api.id(179240740051934117) 16 | ,p_lov_name=>'R_STATUS' 17 | ,p_source_type=>'TABLE' 18 | ,p_location=>'LOCAL' 19 | ,p_query_table=>'R_STATUS' 20 | ,p_return_column_name=>'STS_ID' 21 | ,p_display_column_name=>'STS_NAME' 22 | ,p_default_sort_column_name=>'STS_NAME' 23 | ,p_default_sort_direction=>'ASC' 24 | ); 25 | wwv_flow_api.component_end; 26 | end; 27 | / 28 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/user_interface/lovs/r_templates.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/user_interface/lovs/r_templates 2 | begin 3 | -- Manifest 4 | -- R_TEMPLATES 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_list_of_values( 15 | p_id=>wwv_flow_api.id(179071328452203397) 16 | ,p_lov_name=>'R_TEMPLATES' 17 | ,p_source_type=>'TABLE' 18 | ,p_location=>'LOCAL' 19 | ,p_use_local_sync_table=>false 20 | ,p_query_table=>'P01008_VW' 21 | ,p_return_column_name=>'TPL_ID' 22 | ,p_display_column_name=>'TPL_NAME' 23 | ,p_group_sort_direction=>'ASC' 24 | ,p_default_sort_column_name=>'TPL_NAME' 25 | ,p_default_sort_direction=>'ASC' 26 | ); 27 | wwv_flow_api.component_end; 28 | end; 29 | / 30 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/user_interface/lovs/r_validation.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/user_interface/lovs/r_validation 2 | begin 3 | -- Manifest 4 | -- R_VALIDATION 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_list_of_values( 15 | p_id=>wwv_flow_api.id(187261520285476264) 16 | ,p_lov_name=>'R_VALIDATION' 17 | ,p_lov_query=>wwv_flow_string.join(wwv_flow_t_varchar2( 18 | 'select val_id as r, val_text as d ', 19 | ' from r_validation')) 20 | ,p_source_type=>'SQL' 21 | ,p_location=>'LOCAL' 22 | ,p_return_column_name=>'R' 23 | ,p_display_column_name=>'D' 24 | ,p_default_sort_column_name=>'D' 25 | ,p_default_sort_direction=>'ASC' 26 | ); 27 | wwv_flow_api.component_end; 28 | end; 29 | / 30 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/user_interface/lovs/template_header.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/user_interface/lovs/template_header 2 | begin 3 | -- Manifest 4 | -- TEMPLATE_HEADER 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_list_of_values( 15 | p_id=>wwv_flow_api.id(191532428383244666) 16 | ,p_lov_name=>'TEMPLATE_HEADER' 17 | ,p_lov_query=>wwv_flow_string.join(wwv_flow_t_varchar2( 18 | 'select tpl_name || '' - '' || hea_text as display,', 19 | ' tph_id as return', 20 | ' from r_header hea', 21 | ' join template_header tph on hea_id = tph_hea_id ', 22 | ' join r_templates on tph_tpl_id = tpl_id')) 23 | ,p_source_type=>'SQL' 24 | ,p_location=>'LOCAL' 25 | ,p_use_local_sync_table=>false 26 | ,p_return_column_name=>'RETURN' 27 | ,p_display_column_name=>'DISPLAY' 28 | ,p_group_sort_direction=>'ASC' 29 | ,p_default_sort_column_name=>'DISPLAY' 30 | ,p_default_sort_direction=>'ASC' 31 | ); 32 | wwv_flow_api.component_end; 33 | end; 34 | / 35 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/user_interface/lovs/template_header_groups.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/user_interface/lovs/template_header_groups 2 | begin 3 | -- Manifest 4 | -- TEMPLATE_HEADER_GROUPS 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_list_of_values( 15 | p_id=>wwv_flow_api.id(192975374221499456) 16 | ,p_lov_name=>'TEMPLATE_HEADER_GROUPS' 17 | ,p_source_type=>'TABLE' 18 | ,p_location=>'LOCAL' 19 | ,p_query_table=>'TEMPLATE_HEADER_GROUP' 20 | ,p_return_column_name=>'THG_ID' 21 | ,p_display_column_name=>'THG_TEXT' 22 | ,p_default_sort_column_name=>'THG_TEXT' 23 | ,p_default_sort_direction=>'ASC' 24 | ); 25 | wwv_flow_api.component_end; 26 | end; 27 | / 28 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/user_interface/lovs/template_header_validations.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/user_interface/lovs/template_header_validations 2 | begin 3 | -- Manifest 4 | -- TEMPLATE_HEADER_VALIDATIONS 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_list_of_values( 15 | p_id=>wwv_flow_api.id(193960243371176213) 16 | ,p_lov_name=>'TEMPLATE_HEADER_VALIDATIONS' 17 | ,p_lov_query=>wwv_flow_string.join(wwv_flow_t_varchar2( 18 | 'select tpl_name || '' - '' || hea_text as display,', 19 | ' tph_id as return', 20 | ' from r_header hea', 21 | ' join template_header tph on hea_id = tph_hea_id ', 22 | ' join r_templates on tph_tpl_id = tpl_id', 23 | ' where hea_val_id > 1 ')) 24 | ,p_source_type=>'SQL' 25 | ,p_location=>'LOCAL' 26 | ,p_use_local_sync_table=>false 27 | ,p_return_column_name=>'RETURN' 28 | ,p_display_column_name=>'DISPLAY' 29 | ,p_group_sort_direction=>'ASC' 30 | ,p_default_sort_column_name=>'DISPLAY' 31 | ,p_default_sort_direction=>'ASC' 32 | ); 33 | wwv_flow_api.component_end; 34 | end; 35 | / 36 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/user_interface/lovs/template_status.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/user_interface/lovs/template_status 2 | begin 3 | -- Manifest 4 | -- TEMPLATE_STATUS 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_list_of_values( 15 | p_id=>wwv_flow_api.id(191533559119267665) 16 | ,p_lov_name=>'TEMPLATE_STATUS' 17 | ,p_lov_query=>wwv_flow_string.join(wwv_flow_t_varchar2( 18 | 'select tpl_name as display,', 19 | ' tis_id as return', 20 | ' from r_templates tpl', 21 | ' join template_import_status tis on tpl_id = tis_tpl_id ', 22 | '')) 23 | ,p_source_type=>'SQL' 24 | ,p_location=>'LOCAL' 25 | ,p_return_column_name=>'RETURN' 26 | ,p_display_column_name=>'DISPLAY' 27 | ,p_default_sort_column_name=>'DISPLAY' 28 | ,p_default_sort_direction=>'ASC' 29 | ); 30 | wwv_flow_api.component_end; 31 | end; 32 | / 33 | -------------------------------------------------------------------------------- /src/apex/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_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_shortcut( 15 | p_id=>wwv_flow_api.id(179053768961173591) 16 | ,p_shortcut_name=>'DELETE_CONFIRM_MSG' 17 | ,p_shortcut_type=>'TEXT_ESCAPE_JS' 18 | ,p_shortcut=>'Would you like to perform this delete action?' 19 | ); 20 | wwv_flow_api.component_end; 21 | end; 22 | / 23 | -------------------------------------------------------------------------------- /src/apex/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_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_menu_template( 15 | p_id=>wwv_flow_api.id(179029628430173517) 16 | ,p_name=>'Breadcrumb' 17 | ,p_internal_name=>'BREADCRUMB' 18 | ,p_before_first=>'' 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_api.component_end; 30 | end; 31 | / 32 | -------------------------------------------------------------------------------- /src/apex/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_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_button_templates( 15 | p_id=>wwv_flow_api.id(179027576135173514) 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_api.component_end; 28 | end; 29 | / 30 | -------------------------------------------------------------------------------- /src/apex/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_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_button_templates( 15 | p_id=>wwv_flow_api.id(179028295291173516) 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_api.component_end; 26 | end; 27 | / 28 | -------------------------------------------------------------------------------- /src/apex/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_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_button_templates( 15 | p_id=>wwv_flow_api.id(179028410771173516) 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--iconRight' 26 | ,p_theme_id=>42 27 | ); 28 | wwv_flow_api.component_end; 29 | end; 30 | / 31 | -------------------------------------------------------------------------------- /src/apex/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_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_list_template( 15 | p_id=>wwv_flow_api.id(179019519656173507) 16 | ,p_list_template_current=>'
  • #TEXT#
  • ' 17 | ,p_list_template_noncurrent=>'
  • #TEXT#
  • ' 18 | ,p_list_template_name=>'Tabs' 19 | ,p_internal_name=>'TABS' 20 | ,p_javascript_file_urls=>'#IMAGE_PREFIX#libraries/apex/#MIN_DIRECTORY#widget.apexTabs#MIN#.js?v=#APEX_VERSION#' 21 | ,p_theme_id=>42 22 | ,p_theme_class_id=>7 23 | ,p_preset_template_options=>'t-Tabs--simple' 24 | ,p_list_template_before_rows=>'' 26 | ,p_a01_label=>'List Item ID' 27 | ,p_a03_label=>'List Item Class' 28 | ,p_a04_label=>'Link Class' 29 | ,p_reference_id=>3288206686691809997 30 | ); 31 | wwv_flow_api.component_end; 32 | end; 33 | / 34 | -------------------------------------------------------------------------------- /src/apex/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_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_list_template( 15 | p_id=>wwv_flow_api.id(179023836406173510) 16 | ,p_list_template_current=>'
  • #TEXT_ESC_SC##A02#
  • ' 18 | ,p_list_template_noncurrent=>'
  • #TEXT_ESC_SC##A02#
  • ' 20 | ,p_list_template_name=>'Top Navigation Tabs' 21 | ,p_internal_name=>'TOP_NAVIGATION_TABS' 22 | ,p_theme_id=>42 23 | ,p_theme_class_id=>7 24 | ,p_preset_template_options=>'t-NavTabs--inlineLabels-lg:t-NavTabs--displayLabels-sm' 25 | ,p_list_template_before_rows=>'' 27 | ,p_a01_label=>'List Item ID' 28 | ,p_a02_label=>'Badge Value' 29 | ,p_a03_label=>'List Item Class' 30 | ,p_a04_label=>'Link Class' 31 | ,p_a05_label=>'Badge Class' 32 | ,p_reference_id=>1453011561172885578 33 | ); 34 | wwv_flow_api.component_end; 35 | end; 36 | / 37 | -------------------------------------------------------------------------------- /src/apex/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_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_list_template( 15 | p_id=>wwv_flow_api.id(179025511335173510) 16 | ,p_list_template_current=>wwv_flow_string.join(wwv_flow_t_varchar2( 17 | '
  • #TEXT#
  • ', 19 | '')) 20 | ,p_list_template_noncurrent=>wwv_flow_string.join(wwv_flow_t_varchar2( 21 | '
  • #TEXT#
  • ', 22 | '')) 23 | ,p_list_template_name=>'Wizard Progress' 24 | ,p_internal_name=>'WIZARD_PROGRESS' 25 | ,p_javascript_code_onload=>'apex.theme.initWizardProgressBar();' 26 | ,p_theme_id=>42 27 | ,p_theme_class_id=>17 28 | ,p_preset_template_options=>'t-WizardSteps--displayLabels' 29 | ,p_list_template_before_rows=>wwv_flow_string.join(wwv_flow_t_varchar2( 30 | '

    #CURRENT_PROGRESS#

    ', 31 | '' 33 | ,p_reference_id=>2008702338707394488 34 | ); 35 | wwv_flow_api.component_end; 36 | end; 37 | / 38 | -------------------------------------------------------------------------------- /src/apex/application/shared_components/user_interface/templates/report/dragzone.sql: -------------------------------------------------------------------------------- 1 | prompt --application/shared_components/user_interface/templates/report/dragzone 2 | begin 3 | -- Manifest 4 | -- ROW TEMPLATE: DRAGZONE 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_row_template( 15 | p_id=>wwv_flow_api.id(180153158009650545) 16 | ,p_row_template_name=>'DragZone' 17 | ,p_internal_name=>'DRAGZONE' 18 | ,p_row_template1=>wwv_flow_string.join(wwv_flow_t_varchar2( 19 | '
    ', 20 | '
  • #HEA_TEXT#
  • ', 21 | '
    ', 22 | '', 23 | '')) 24 | ,p_row_template_before_rows=>' ' 26 | ,p_row_template_type=>'NAMED_COLUMNS' 27 | ,p_row_template_display_cond1=>'0' 28 | ,p_row_template_display_cond2=>'0' 29 | ,p_row_template_display_cond3=>'0' 30 | ,p_row_template_display_cond4=>'0' 31 | ,p_theme_id=>42 32 | ,p_theme_class_id=>7 33 | ,p_translate_this_template=>'N' 34 | ); 35 | wwv_flow_api.component_end; 36 | end; 37 | / 38 | -------------------------------------------------------------------------------- /src/apex/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: 445 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.04.15' 8 | ,p_release=>'21.1.6' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>349023258543091759 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | null; 15 | wwv_flow_api.component_end; 16 | end; 17 | / 18 | -------------------------------------------------------------------------------- /src/apex/application/user_interfaces.sql: -------------------------------------------------------------------------------- 1 | prompt --application/user_interfaces 2 | begin 3 | -- Manifest 4 | -- USER INTERFACES: 445 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | wwv_flow_api.create_user_interface( 15 | p_id=>wwv_flow_api.id(179050793507173566) 16 | ,p_ui_type_name=>'DESKTOP' 17 | ,p_display_name=>'Desktop' 18 | ,p_display_seq=>10 19 | ,p_use_auto_detect=>false 20 | ,p_is_default=>true 21 | ,p_theme_id=>42 22 | ,p_home_url=>'f?p=&APP_ID.:1:&SESSION.' 23 | ,p_login_url=>'f?p=&APP_ID.:LOGIN:&APP_SESSION.::&DEBUG.:::' 24 | ,p_theme_style_by_user_pref=>false 25 | ,p_global_page_id=>0 26 | ,p_navigation_list_id=>wwv_flow_api.id(178912631798173415) 27 | ,p_navigation_list_position=>'SIDE' 28 | ,p_navigation_list_template_id=>wwv_flow_api.id(179017904632173506) 29 | ,p_nav_list_template_options=>'js-navCollapsed--default:t-TreeNav--classic' 30 | ,p_css_file_urls=>'#APP_IMAGES#app-icon.css?version=#APP_VERSION#' 31 | ,p_javascript_file_urls=>'#APP_IMAGES#main.min.js' 32 | ,p_nav_bar_type=>'LIST' 33 | ,p_nav_bar_list_id=>wwv_flow_api.id(179050449786173564) 34 | ,p_nav_bar_list_template_id=>wwv_flow_api.id(179017432461173505) 35 | ,p_nav_bar_template_options=>'js-menu-callout' 36 | ); 37 | wwv_flow_api.component_end; 38 | end; 39 | / 40 | -------------------------------------------------------------------------------- /src/apex/application/user_interfaces/combined_files.sql: -------------------------------------------------------------------------------- 1 | prompt --application/user_interfaces/combined_files 2 | begin 3 | -- Manifest 4 | -- COMBINED FILES: 445 5 | -- Manifest End 6 | wwv_flow_api.component_begin ( 7 | p_version_yyyy_mm_dd=>'2021.10.15' 8 | ,p_release=>'21.2.1' 9 | ,p_default_workspace_id=>9510583246779566 10 | ,p_default_application_id=>111 11 | ,p_default_id_offset=>364658460193179534 12 | ,p_default_owner=>'SURVEY_TOOL' 13 | ); 14 | null; 15 | wwv_flow_api.component_end; 16 | end; 17 | / 18 | -------------------------------------------------------------------------------- /src/datamodel/ChangeRequests.local: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/datamodel/businessinfo/Business Information.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-08-09 10:13:16 UTC 5 | datamodel 6 | false 7 | -------------------------------------------------------------------------------- /src/datamodel/businessinfo/Objects.local: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/datamodel/datatypes/DDLSelection.local: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/datamodel/datatypes/DataTypes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-08-09 10:13:16 UTC 5 | datamodel 6 | false 7 | array_ref_ 8 | array_ 9 | 10 10 | ARRAY 11 | _Array 12 | inst_ 13 | ref_ 14 | true 15 | -------------------------------------------------------------------------------- /src/datamodel/datatypes/Diagrams.local: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/datamodel/datatypes/Objects.local: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/datamodel/datatypes/structuredtype/seg_0/47E390DE-0671-C4B1-8428-0F45CBEE18F8.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-08-09 10:13:16 UTC 5 | Excel_Gateway 6 | false 7 | true 8 | false 9 | true 10 | -------------------------------------------------------------------------------- /src/datamodel/datatypes/structuredtype/seg_0/F72C39E0-D1CA-8821-2AD7-A1E95A37D3D1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-08-09 10:13:16 UTC 5 | Excel_Gateway 6 | false 7 | true 8 | false 9 | true 10 | -------------------------------------------------------------------------------- /src/datamodel/datatypes/subviews/44F6B3E2-D865-636F-AE3F-2CBADB1DCA05.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | therwix 5 | 2021-08-09 10:13:16 UTC 6 | false 7 | true 8 | false 9 | true 10 | false 11 | false 12 | false 13 | -1 14 | false 15 | 1 16 | 17 | 18 | false 19 | 20 | 21 | 22 | false 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /src/datamodel/dmd_open.local: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/datamodel/logical/Diagrams.local: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/datamodel/logical/Logical.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-08-09 10:13:16 UTC 5 | datamodel 6 | false 7 | -------------------------------------------------------------------------------- /src/datamodel/logical/Objects.local: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/datamodel/logical/subviews/2C20954D-2C60-A5FE-9FD7-D943E12E11FD.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | therwix 5 | 2021-08-09 11:01:48 UTC 6 | false 7 | true 8 | false 9 | false 10 | false 11 | false 12 | false 13 | -1 14 | false 15 | 1 16 | -------------------------------------------------------------------------------- /src/datamodel/mapping/DeletedMap_RM07DB7D3E-A604-71AE-E24B-C6B6AC31832E.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/datamodel/mapping/DeletedMap_RM2BE2275B-103C-65C0-526F-07C50F0ECDB4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/datamodel/mapping/DeletedMap_RMEFAB9F35-101C-E621-3611-16383DE14391.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/datamodel/mapping/ExtendedMap.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/datamodel/mapping/ExtendedMap_RM07DB7D3E-A604-71AE-E24B-C6B6AC31832E.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/datamodel/mapping/ExtendedMap_RM2BE2275B-103C-65C0-526F-07C50F0ECDB4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/datamodel/mapping/ExtendedMap_RMEFAB9F35-101C-E621-3611-16383DE14391.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/datamodel/pm/Objects.local: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/datamodel/pm/Process Model.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-08-09 10:13:16 UTC 5 | datamodel 6 | false 7 | -------------------------------------------------------------------------------- /src/datamodel/rdbms/Excel_Gateway_RDBMSSites.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/datamodel/rdbms/datamodel_RDBMSSites.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-08-09 10:20:16 UTC 5 | datamodel 6 | true 7 | 79C73AAF-E1A7-E669-7DF0-025EE81A2AFC 8 | 9 | 10 | ATP - SURVEY TOOL 11 | survey_tool 12 | 1 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/Diagrams.local: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/foreignkey/seg_0/1D420EDB-7AAD-966E-3315-A50150C37F40.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | TPH_HEA_FK 6 | therwix 7 | 2021-08-09 10:20:42 UTC 8 | Excel_Gateway 9 | SURVEY_TOOL.R_HEADER 10 | NO ACTION 11 | 207D7456-7AE0-5D45-1EBF-1FDFC7D755D8 12 | 284F0CB9-9D6F-DCA3-C892-6904D6391CAE 13 | 284F0CB9-9D6F-DCA3-C892-6904D6391CAE 14 | true 15 | HEA_ID 16 | true 17 | false 18 | true 19 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/foreignkey/seg_0/27A6B83B-842C-FADA-B2ED-82905F23CF84.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | TPH_UFE_FK 6 | therwix 7 | 2021-08-09 10:20:42 UTC 8 | Excel_Gateway 9 | SURVEY_TOOL.R_TEMPLATES 10 | NO ACTION 11 | 782288FD-B52D-7ED3-0A67-339F2B46FBDF 12 | 21A65006-357A-0F10-CF13-BCFA739244F5 13 | 21A65006-357A-0F10-CF13-BCFA739244F5 14 | true 15 | TPL_ID 16 | true 17 | false 18 | true 19 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/foreignkey/seg_0/3A1A6B62-AA70-0C2E-5BE7-345A9F9DC157.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | HEA_VAL_FK 6 | therwix 7 | 2021-08-09 10:20:42 UTC 8 | Excel_Gateway 9 | SURVEY_TOOL.R_VALIDATION 10 | NO ACTION 11 | E020A69D-5DA8-5BAE-D3DE-C8156F3E7D12 12 | 76B617D3-01BC-AB66-4B92-E3719AB9B2FA 13 | 76B617D3-01BC-AB66-4B92-E3719AB9B2FA 14 | true 15 | VAL_ID 16 | true 17 | false 18 | true 19 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/foreignkey/seg_0/40D58C1D-864D-2896-8127-6CA44C78E3A9.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | TID_TIS_FK 6 | therwix 7 | 2021-08-09 10:20:42 UTC 8 | Excel_Gateway 9 | SURVEY_TOOL.TEMPLATE_IMPORT_STATUS 10 | NO ACTION 11 | 7EB46ADD-7D8C-AE93-9AA1-97A0E7D0A235 12 | B761F471-C93A-7585-FA7B-601E2071F575 13 | B761F471-C93A-7585-FA7B-601E2071F575 14 | true 15 | TIS_ID 16 | true 17 | false 18 | true 19 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/foreignkey/seg_0/58739D8D-D44A-D865-74FD-69AA7CF5E426.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-08-09 10:41:14 UTC 5 | Excel_Gateway 6 | SURVEY_TOOL.R_TEMPLATES 7 | NO ACTION 8 | 782288FD-B52D-7ED3-0A67-339F2B46FBDF 9 | 21A65006-357A-0F10-CF13-BCFA739244F5 10 | 21A65006-357A-0F10-CF13-BCFA739244F5 11 | true 12 | TPL_ID 13 | true 14 | false 15 | true 16 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/foreignkey/seg_0/5FBF01B9-3C56-CF53-C46C-5342C4EBF8F6.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | THV_TPH_FK 6 | therwix 7 | 2021-08-09 10:20:42 UTC 8 | Excel_Gateway 9 | SURVEY_TOOL.TEMPLATE_HEADER 10 | NO ACTION 11 | 3E383D27-E7DE-D441-C683-72DCFF3C468D 12 | 85078977-DEE8-90A4-D5E8-5664FE5D67AA 13 | 85078977-DEE8-90A4-D5E8-5664FE5D67AA 14 | true 15 | TPH_ID 16 | true 17 | false 18 | true 19 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/foreignkey/seg_0/738D49EE-1A50-E0D6-8550-17B00A0CC65F.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | DDS_HEA_FK 6 | therwix 7 | 2021-08-09 10:20:42 UTC 8 | Excel_Gateway 9 | SURVEY_TOOL.R_HEADER 10 | NO ACTION 11 | 207D7456-7AE0-5D45-1EBF-1FDFC7D755D8 12 | 284F0CB9-9D6F-DCA3-C892-6904D6391CAE 13 | 284F0CB9-9D6F-DCA3-C892-6904D6391CAE 14 | true 15 | HEA_ID 16 | true 17 | false 18 | true 19 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/foreignkey/seg_0/8B343861-C705-4C2C-DDBB-663019B9D330.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | TPA_TPL_FK 6 | therwix 7 | 2021-08-09 10:20:42 UTC 8 | Excel_Gateway 9 | SURVEY_TOOL.R_TEMPLATES 10 | NO ACTION 11 | 782288FD-B52D-7ED3-0A67-339F2B46FBDF 12 | 21A65006-357A-0F10-CF13-BCFA739244F5 13 | 21A65006-357A-0F10-CF13-BCFA739244F5 14 | true 15 | TPL_ID 16 | true 17 | false 18 | true 19 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/foreignkey/seg_0/BC0076BB-F349-75CC-DBD1-5CF1AB6538DA.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | TIS_FIL_FK 6 | therwix 7 | 2021-08-09 10:20:42 UTC 8 | Excel_Gateway 9 | SURVEY_TOOL.FILES 10 | NO ACTION 11 | 512AFA89-9447-466A-C0BA-17ED1880DBEB 12 | 3AF1F8EF-815E-6CD6-ECA5-0DBD9539A526 13 | 3AF1F8EF-815E-6CD6-ECA5-0DBD9539A526 14 | true 15 | FIL_ID 16 | true 17 | false 18 | true 19 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/foreignkey/seg_0/C4737B47-B2F7-823B-3B85-860AB2D584ED.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | TIS_STS_FK 6 | therwix 7 | 2021-08-09 10:20:42 UTC 8 | Excel_Gateway 9 | SURVEY_TOOL.R_STATUS 10 | NO ACTION 11 | 11E8DE4E-3D94-CC5F-D33D-4CEA71186ED7 12 | F282E3AC-5B41-4E54-9265-E48C22B0C5E6 13 | F282E3AC-5B41-4E54-9265-E48C22B0C5E6 14 | true 15 | STS_ID 16 | true 17 | false 18 | true 19 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/foreignkey/seg_0/DB009B46-67DE-D621-0B8B-D97ABB66F017.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | TIS_PER_FK 6 | therwix 7 | 2021-08-09 10:20:42 UTC 8 | Excel_Gateway 9 | SURVEY_TOOL.R_PERSON 10 | NO ACTION 11 | 2A4DB935-DE4B-4AC9-7A40-A590D61DE154 12 | 2626F8AD-33FC-AE87-D1FC-7436EED60A6A 13 | 2626F8AD-33FC-AE87-D1FC-7436EED60A6A 14 | true 15 | PER_ID 16 | true 17 | false 18 | true 19 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/79C73AAF-025EE81A2AFC.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-08-09 10:20:16 UTC 5 | datamodel 6 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/SType/seg_0/47E390DE-0671-C4B1-8428-0F45CBEE18F8.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-08-09 10:20:16 UTC 5 | Excel_Gateway 6 | MDSYS 7 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/SType/seg_0/F72C39E0-D1CA-8821-2AD7-A1E95A37D3D1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-08-09 10:20:16 UTC 5 | Excel_Gateway 6 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Segment/seg_0/168D4A77-ADE5-19F6-801C-7BF5ECCD79B2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-08-09 10:20:28 UTC 5 | Excel_Gateway 6 | 20 7 | 255 8 | 65536 9 | 2147483645 10 | 1048576 11 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Segment/seg_0/2D2D230F-6C7C-9377-8CC4-A90BBBAF1EB4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-08-09 10:20:29 UTC 5 | Excel_Gateway 6 | 20 7 | 68 8 | 65536 9 | 2147483645 10 | 1048576 11 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Segment/seg_0/6D2202E2-B1BB-EAC5-8141-B1445817C8FC.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-08-09 10:20:17 UTC 5 | Excel_Gateway 6 | 10 7 | 255 8 | 65536 9 | 2147483645 10 | 1048576 11 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Sequence/seg_0/118D9C9A-A4DF-D649-747B-6B3039BA3D68.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | STS_SEQ 6 | therwix 7 | 2021-08-09 15:08:52 UTC 8 | Excel_Gateway 9 | 1 10 | 9999999999999999999999999999 11 | 1 12 | YES 13 | 6D96194D-184B-30BE-74BF-59D97801C65F 14 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Sequence/seg_0/23F84C3A-9040-807E-A8BA-B3A264515020.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | IER_SEQ 6 | therwix 7 | 2021-08-09 15:08:52 UTC 8 | Excel_Gateway 9 | 1 10 | 9999999999999999999999999999 11 | 1 12 | YES 13 | 6D96194D-184B-30BE-74BF-59D97801C65F 14 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Sequence/seg_0/2DBE4688-B6FF-04C8-4011-7F9951EAFE31.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | TPA_SEQ 6 | therwix 7 | 2021-08-09 15:08:52 UTC 8 | Excel_Gateway 9 | 1 10 | 9999999999999999999999999999 11 | 1 12 | YES 13 | 6D96194D-184B-30BE-74BF-59D97801C65F 14 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Sequence/seg_0/4253FAC2-413D-B47E-4356-960849957879.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | LOGGER_APX_ITEMS_SEQ 6 | therwix 7 | 2021-08-09 15:08:52 UTC 8 | Excel_Gateway 9 | 20 10 | 1 11 | 999999999999999999999999999 12 | 1 13 | 6D96194D-184B-30BE-74BF-59D97801C65F 14 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Sequence/seg_0/44D4592B-77F1-E89C-A8BB-B108486E704B.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | DDS_SEQ 6 | therwix 7 | 2021-08-09 15:08:52 UTC 8 | Excel_Gateway 9 | 1 10 | 9999999999999999999999999999 11 | 1 12 | YES 13 | 6D96194D-184B-30BE-74BF-59D97801C65F 14 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Sequence/seg_0/45386B7E-75BC-1C81-AC4B-D9A49AF31550.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | TPH_SEQ 6 | therwix 7 | 2021-08-09 15:08:52 UTC 8 | Excel_Gateway 9 | 1 10 | 9999999999999999999999999999 11 | 1 12 | YES 13 | 6D96194D-184B-30BE-74BF-59D97801C65F 14 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Sequence/seg_0/719D9A4F-353C-0BF3-77E8-21991CAD4502.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | SPS_SEQ 6 | therwix 7 | 2021-08-09 15:08:52 UTC 8 | Excel_Gateway 9 | 1 10 | 9999999999999999999999999999 11 | 1 12 | YES 13 | 6D96194D-184B-30BE-74BF-59D97801C65F 14 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Sequence/seg_0/71A944A0-4AAA-3348-7A32-478EFEF31540.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | TIS_SEQ 6 | therwix 7 | 2021-08-09 15:08:52 UTC 8 | Excel_Gateway 9 | 1 10 | 9999999999999999999999999999 11 | 1 12 | YES 13 | 6D96194D-184B-30BE-74BF-59D97801C65F 14 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Sequence/seg_0/72654F9C-A6CA-06A6-33BB-4603494FA7EF.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | TPL_SEQ 6 | therwix 7 | 2021-08-09 15:08:52 UTC 8 | Excel_Gateway 9 | 1 10 | 9999999999999999999999999999 11 | 1 12 | YES 13 | 6D96194D-184B-30BE-74BF-59D97801C65F 14 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Sequence/seg_0/8385CA70-86C6-755E-29C7-7A684EC39E5E.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | THG_SEQ 6 | therwix 7 | 2021-08-09 15:08:52 UTC 8 | Excel_Gateway 9 | 1 10 | 9999999999999999999999999999 11 | 1 12 | YES 13 | 6D96194D-184B-30BE-74BF-59D97801C65F 14 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Sequence/seg_0/973BEF72-D99F-4D20-C12C-95A73CBAFF8B.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | PER_SEQ 6 | therwix 7 | 2021-08-09 15:08:52 UTC 8 | Excel_Gateway 9 | 1 10 | 9999999999999999999999999999 11 | 1 12 | YES 13 | 6D96194D-184B-30BE-74BF-59D97801C65F 14 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Sequence/seg_0/B80165E8-4F6E-D197-36D9-BC81DE24BFB5.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | VAL_SEQ 6 | therwix 7 | 2021-08-09 15:08:52 UTC 8 | Excel_Gateway 9 | 1 10 | 9999999999999999999999999999 11 | 1 12 | YES 13 | 6D96194D-184B-30BE-74BF-59D97801C65F 14 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Sequence/seg_0/B85C1422-9AC8-B1D1-8EAE-1A9BFF79B815.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | USR_SEQ 6 | therwix 7 | 2021-08-09 15:08:52 UTC 8 | Excel_Gateway 9 | 1 10 | 9999999999999999999999999999 11 | 1 12 | YES 13 | 6D96194D-184B-30BE-74BF-59D97801C65F 14 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Sequence/seg_0/B9599A0D-D2EE-E2E3-4B8B-1678FB01AB99.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | LOGGER_LOGS_SEQ 6 | therwix 7 | 2021-08-09 15:08:52 UTC 8 | Excel_Gateway 9 | 20 10 | 1 11 | 999999999999999999999999999 12 | 1 13 | 6D96194D-184B-30BE-74BF-59D97801C65F 14 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Sequence/seg_0/BCF028A0-BB37-B5D3-0D80-7855E22B8AE6.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | THV_SEQ 6 | therwix 7 | 2021-08-09 15:08:52 UTC 8 | Excel_Gateway 9 | 1 10 | 9999999999999999999999999999 11 | 1 12 | YES 13 | 6D96194D-184B-30BE-74BF-59D97801C65F 14 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Sequence/seg_0/C9494DA0-E0B6-4659-E289-F844CDA47461.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | HEA_SEQ 6 | therwix 7 | 2021-08-09 15:08:52 UTC 8 | Excel_Gateway 9 | 1 10 | 9999999999999999999999999999 11 | 1 12 | YES 13 | 6D96194D-184B-30BE-74BF-59D97801C65F 14 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Sequence/seg_0/DCF63ECD-02B5-BE46-2EE4-CEE96CBB68F5.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | TID_SEQ 6 | therwix 7 | 2021-08-09 15:08:52 UTC 8 | Excel_Gateway 9 | 1 10 | 9999999999999999999999999999 11 | 1 12 | YES 13 | 6D96194D-184B-30BE-74BF-59D97801C65F 14 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Sequence/seg_0/E10FFFBD-2BB2-D2D5-7185-5F779A1AB6C5.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | FIL_SEQ 6 | therwix 7 | 2021-08-09 15:08:52 UTC 8 | Excel_Gateway 9 | 1 10 | 9999999999999999999999999999 11 | 1 12 | YES 13 | 6D96194D-184B-30BE-74BF-59D97801C65F 14 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Sequence/seg_0/F8DB8760-E111-A284-6540-CEE468562487.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | TID_ROW_SEQ 6 | therwix 7 | 2021-08-09 15:08:52 UTC 8 | Excel_Gateway 9 | 1 10 | 9999999999999999999999999999 11 | 1 12 | YES 13 | 6D96194D-184B-30BE-74BF-59D97801C65F 14 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/TSpace/seg_0/69CB9773-B617-5748-A0A3-0048DB93E350.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | DATA 6 | therwix 7 | 2021-08-09 10:20:17 UTC 8 | Excel_Gateway 9 | 0 10 | LOCAL 11 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Trigger/seg_0/0143C017-1416-9E28-677B-E5C4D301030D.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | FIL_BIU_TRG 6 | therwix 7 | 2021-08-09 10:20:39 UTC 8 | Excel_Gateway 9 | INSERT, UPDATE 10 | 26 | BEFORE 27 | 6D96194D-184B-30BE-74BF-59D97801C65F 28 | 512AFA89-9447-466A-C0BA-17ED1880DBEB
    29 |
    -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Trigger/seg_0/04001458-E7CC-F713-FBD9-12C60FD9D81F.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | TPL_BIU_TRG 6 | therwix 7 | 2021-08-09 10:20:40 UTC 8 | Excel_Gateway 9 | INSERT, UPDATE 10 | 26 | BEFORE 27 | 6D96194D-184B-30BE-74BF-59D97801C65F 28 | 782288FD-B52D-7ED3-0A67-339F2B46FBDF
    29 |
    -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Trigger/seg_0/14D1F763-D73D-EAB2-8D2C-C5FF7539125A.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | TPH_BIU_TRG 6 | therwix 7 | 2021-08-09 10:20:40 UTC 8 | Excel_Gateway 9 | INSERT, UPDATE 10 | 26 | BEFORE 27 | 6D96194D-184B-30BE-74BF-59D97801C65F 28 | 3E383D27-E7DE-D441-C683-72DCFF3C468D
    29 |
    -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Trigger/seg_0/2E1E2455-16DA-108C-EAC5-7C3F52D3C7B5.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | TID_BIU_TRG 6 | therwix 7 | 2021-08-09 10:20:40 UTC 8 | Excel_Gateway 9 | INSERT, UPDATE 10 | 26 | BEFORE 27 | 6D96194D-184B-30BE-74BF-59D97801C65F 28 | CF86BC89-6CA7-051D-0421-DAEA8F26ED08
    29 |
    -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Trigger/seg_0/3C127637-10AB-F336-26D2-419745F89D43.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | SPS_BIU_TRG 6 | therwix 7 | 2021-08-09 10:20:40 UTC 8 | Excel_Gateway 9 | INSERT, UPDATE 10 | 26 | BEFORE 27 | 6D96194D-184B-30BE-74BF-59D97801C65F 28 | 79FC3A7F-D1F6-341D-D08E-3EB16094DFE1
    29 |
    -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Trigger/seg_0/4662EB94-64C4-4176-7C63-7F5723105FF8.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | THV_BIU_TRG 6 | therwix 7 | 2021-08-09 10:20:40 UTC 8 | Excel_Gateway 9 | INSERT, UPDATE 10 | 26 | BEFORE 27 | 6D96194D-184B-30BE-74BF-59D97801C65F 28 | 6EEFCFD0-0DB1-AC80-C648-E1580AA6C86D
    29 |
    -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Trigger/seg_0/6E100222-E96C-74EE-619F-0937FC7C4EC4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | TIS_BIU_TRG 6 | therwix 7 | 2021-08-09 10:20:40 UTC 8 | Excel_Gateway 9 | INSERT, UPDATE 10 | 26 | BEFORE 27 | 6D96194D-184B-30BE-74BF-59D97801C65F 28 | 7EB46ADD-7D8C-AE93-9AA1-97A0E7D0A235
    29 |
    -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Trigger/seg_0/6F8C0C5A-81C4-6C6C-3689-EC37DC214774.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | THG_BIU_TRG 6 | therwix 7 | 2021-08-09 10:20:40 UTC 8 | Excel_Gateway 9 | INSERT, UPDATE 10 | 26 | BEFORE 27 | 6D96194D-184B-30BE-74BF-59D97801C65F 28 | A29E9389-5D07-8D85-FA7E-9DE4219FE0C4
    29 |
    -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Trigger/seg_0/8A200E4C-210C-DE82-29A8-9114A277C6AB.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | DDS_BIU_TRG 6 | therwix 7 | 2021-08-09 10:20:40 UTC 8 | Excel_Gateway 9 | INSERT, UPDATE 10 | 26 | BEFORE 27 | 6D96194D-184B-30BE-74BF-59D97801C65F 28 | C6BB0753-2E41-E821-45D1-E49F3A03341F
    29 |
    -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Trigger/seg_0/9252B06F-7082-4D24-0FBE-5D7B2D289D3F.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | PER_BIU_TRG 6 | therwix 7 | 2021-08-09 10:20:40 UTC 8 | Excel_Gateway 9 | INSERT, UPDATE 10 | 26 | BEFORE 27 | 6D96194D-184B-30BE-74BF-59D97801C65F 28 | 2A4DB935-DE4B-4AC9-7A40-A590D61DE154
    29 |
    -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Trigger/seg_0/C1039CF3-1855-F337-51D1-28F162F17F4F.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | HEA_BIU_TRG 6 | therwix 7 | 2021-08-09 10:20:40 UTC 8 | Excel_Gateway 9 | INSERT, UPDATE 10 | 26 | BEFORE 27 | 6D96194D-184B-30BE-74BF-59D97801C65F 28 | 207D7456-7AE0-5D45-1EBF-1FDFC7D755D8
    29 |
    -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Trigger/seg_0/CB59B53F-2D71-1FF1-2862-CDAF9E392D29.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | TPA_BIU_TRG 6 | therwix 7 | 2021-08-09 10:20:40 UTC 8 | Excel_Gateway 9 | INSERT, UPDATE 10 | 26 | BEFORE 27 | 6D96194D-184B-30BE-74BF-59D97801C65F 28 | D8AB79A8-58AC-F52B-32A6-440E43F480A4
    29 |
    -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Trigger/seg_0/CFE3A753-EDD0-3DD3-7E24-1E73DAC85EE7.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | STS_BIU_TRG 6 | therwix 7 | 2021-08-09 10:20:40 UTC 8 | Excel_Gateway 9 | INSERT, UPDATE 10 | 26 | BEFORE 27 | 6D96194D-184B-30BE-74BF-59D97801C65F 28 | 11E8DE4E-3D94-CC5F-D33D-4CEA71186ED7
    29 |
    -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Trigger/seg_0/DDB20787-A400-8921-BA09-B39BBBA06503.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | USR_BIU_TRG 6 | therwix 7 | 2021-08-09 10:20:39 UTC 8 | Excel_Gateway 9 | INSERT, UPDATE 10 | 26 | BEFORE 27 | 6D96194D-184B-30BE-74BF-59D97801C65F 28 | 43B52625-7051-97CB-8CF4-CE958A931EEF
    29 |
    -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/Trigger/seg_0/E34C605F-419B-4138-F9D1-D9FAD80CC702.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | VAL_BIU_TRG 6 | therwix 7 | 2021-08-09 10:20:40 UTC 8 | Excel_Gateway 9 | INSERT, UPDATE 10 | 26 | BEFORE 27 | 6D96194D-184B-30BE-74BF-59D97801C65F 28 | E020A69D-5DA8-5BAE-D3DE-C8156F3E7D12
    29 |
    -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/User/seg_0/6D96194D-184B-30BE-74BF-59D97801C65F.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ATP - SURVEY TOOL 4 | SURVEY_TOOL 5 | therwix 6 | 2021-08-09 10:20:16 UTC 7 | Excel_Gateway 8 | E9380AD7-7416-3F20-40BA-F48221C52445 9 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/User/seg_0/MDSYS.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-08-09 10:20:16 UTC 5 | Excel_Gateway 6 | true 7 | true 8 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/phys/79C73AAF-025EE81A2AFC/User/seg_0/PUBLIC.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-08-09 10:20:16 UTC 5 | Excel_Gateway 6 | true 7 | true 8 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/schema/seg_0/1C1CD04D-5677-F3B8-464B-953E4FEE0EB9.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-08-09 15:10:22 UTC 5 | datamodel 6 | 92DCB3A2-5B83-AF40-94BA-615060CFECD6 7 | -------------------------------------------------------------------------------- /src/datamodel/rel/07DB7D3E-C6B6AC31832E/schema/seg_0/E9380AD7-7416-3F20-40BA-F48221C52445.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-08-09 10:20:17 UTC 5 | datamodel 6 | -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-12-13 14:06:06 UTC 5 | Excel_Gateway 6 | false 7 | 79C73AAF-E1A7-E669-7DF0-025EE81A2AFC 8 | 9 | 10 | mt_excel_gateway 11 | mt_excel_gateway 12 | 1 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/DDLSelection.local: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/Diagrams.local: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/foreignkey/seg_0/093F6ECB-AF0D-F5FC-AC8B-4D0F785CF4E1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-12-13 14:12:19 UTC 5 | Excel_Gateway 6 | MT_EXCEL_GATEWAY.R_SHIPPINGSTATUS 7 | NO ACTION 8 | 9780A851-D05A-76AD-B558-233AC80C9CBF 9 | D1572657-D22A-EDCB-2950-3FEE792050F7 10 | D1572657-D22A-EDCB-2950-3FEE792050F7 11 | false 12 | SPS_ID 13 | true 14 | false 15 | true 16 | -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/foreignkey/seg_0/1739B59B-B166-FFC8-B435-87E5003F69BE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | mt_excel_gateway 4 | MT_EXCEL_GATEWAY 5 | TPH_TPL_FK 6 | therwix 7 | 2021-12-13 14:06:51 UTC 8 | Excel_Gateway 9 | MT_EXCEL_GATEWAY.R_TEMPLATES 10 | NO ACTION 11 | B18F6830-6A00-C8B6-9A55-7F4785B69424 12 | 67FF2A3F-A9F0-A326-7B4D-52248B6BE028 13 | 67FF2A3F-A9F0-A326-7B4D-52248B6BE028 14 | true 15 | TPL_ID 16 | true 17 | false 18 | true 19 | -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/foreignkey/seg_0/1F390A7D-2E21-CFC2-5AC4-9E3C66C4D6CA.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | mt_excel_gateway 4 | MT_EXCEL_GATEWAY 5 | THV_TPH_FK 6 | therwix 7 | 2021-12-13 14:06:51 UTC 8 | Excel_Gateway 9 | MT_EXCEL_GATEWAY.TEMPLATE_HEADER 10 | NO ACTION 11 | 812E73CE-A58C-E4A4-F6CE-304E66B4191C 12 | 7F4F0B66-3F8A-96A5-2A75-5E91AE768B41 13 | 7F4F0B66-3F8A-96A5-2A75-5E91AE768B41 14 | true 15 | TPH_ID 16 | true 17 | false 18 | true 19 | -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/foreignkey/seg_0/27D0EE01-6832-9D08-291F-97E8C662FA36.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | mt_excel_gateway 4 | MT_EXCEL_GATEWAY 5 | TIS_STS_FK 6 | therwix 7 | 2021-12-13 14:06:51 UTC 8 | Excel_Gateway 9 | MT_EXCEL_GATEWAY.R_STATUS 10 | NO ACTION 11 | B0ECB33C-FBCA-9894-5D8B-02CB9BC61DCC 12 | E24BE875-7073-15FA-9B71-56351FD08395 13 | E24BE875-7073-15FA-9B71-56351FD08395 14 | true 15 | STS_ID 16 | true 17 | false 18 | true 19 | -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/foreignkey/seg_0/386EC6D4-39C5-D3E0-AA09-FAEE9DF0C627.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | mt_excel_gateway 4 | MT_EXCEL_GATEWAY 5 | TIS_FIL_FK 6 | therwix 7 | 2021-12-13 14:06:51 UTC 8 | Excel_Gateway 9 | MT_EXCEL_GATEWAY.FILES 10 | NO ACTION 11 | C58BCB83-3C88-8096-FA1F-C0933E4E3372 12 | 8B1AAB8B-E7D8-B691-6828-E8028FE5E274 13 | 8B1AAB8B-E7D8-B691-6828-E8028FE5E274 14 | false 15 | FIL_ID 16 | true 17 | false 18 | true 19 | -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/foreignkey/seg_0/52601EEE-BA4A-F91E-9ABA-6B7755EC8A08.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | mt_excel_gateway 4 | MT_EXCEL_GATEWAY 5 | TIS_PER_FK 6 | therwix 7 | 2021-12-13 14:06:51 UTC 8 | Excel_Gateway 9 | MT_EXCEL_GATEWAY.R_PERSON 10 | NO ACTION 11 | 5C518D4B-ADD7-DF19-C5C7-A5F9A63F56D6 12 | 8051669E-9965-3B74-E488-61A1CFD038D2 13 | 8051669E-9965-3B74-E488-61A1CFD038D2 14 | true 15 | PER_ID 16 | true 17 | false 18 | true 19 | -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/foreignkey/seg_0/57B294BF-F7F0-C1AA-B693-40E7F7C2E553.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | mt_excel_gateway 4 | MT_EXCEL_GATEWAY 5 | TPH_HEA_FK 6 | therwix 7 | 2021-12-13 14:06:51 UTC 8 | Excel_Gateway 9 | MT_EXCEL_GATEWAY.R_HEADER 10 | NO ACTION 11 | CFF4F9B5-99C1-518F-3252-9EA7FDF88BB5 12 | EC9AB5B6-28CC-01D2-F0E4-3AB03E2C768B 13 | EC9AB5B6-28CC-01D2-F0E4-3AB03E2C768B 14 | true 15 | HEA_ID 16 | true 17 | false 18 | true 19 | -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/foreignkey/seg_0/591FA4A6-0895-66EF-635D-438B20E12915.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | mt_excel_gateway 4 | MT_EXCEL_GATEWAY 5 | TPA_TPL_FK 6 | therwix 7 | 2021-12-13 14:06:51 UTC 8 | Excel_Gateway 9 | MT_EXCEL_GATEWAY.R_TEMPLATES 10 | NO ACTION 11 | B18F6830-6A00-C8B6-9A55-7F4785B69424 12 | 67FF2A3F-A9F0-A326-7B4D-52248B6BE028 13 | 67FF2A3F-A9F0-A326-7B4D-52248B6BE028 14 | true 15 | TPL_ID 16 | true 17 | false 18 | true 19 | -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/foreignkey/seg_0/738810D2-F19C-3065-0FA2-A86E386ED4A0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | mt_excel_gateway 4 | MT_EXCEL_GATEWAY 5 | TIS_TPL_FK 6 | therwix 7 | 2021-12-13 14:06:51 UTC 8 | Excel_Gateway 9 | MT_EXCEL_GATEWAY.R_TEMPLATES 10 | NO ACTION 11 | B18F6830-6A00-C8B6-9A55-7F4785B69424 12 | 67FF2A3F-A9F0-A326-7B4D-52248B6BE028 13 | 67FF2A3F-A9F0-A326-7B4D-52248B6BE028 14 | true 15 | TPL_ID 16 | true 17 | false 18 | true 19 | -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/foreignkey/seg_0/972D1D37-194A-8B93-FFDF-672B2B43A81D.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | mt_excel_gateway 4 | MT_EXCEL_GATEWAY 5 | DDS_HEA_FK 6 | therwix 7 | 2021-12-13 14:06:51 UTC 8 | Excel_Gateway 9 | MT_EXCEL_GATEWAY.R_HEADER 10 | NO ACTION 11 | CFF4F9B5-99C1-518F-3252-9EA7FDF88BB5 12 | EC9AB5B6-28CC-01D2-F0E4-3AB03E2C768B 13 | EC9AB5B6-28CC-01D2-F0E4-3AB03E2C768B 14 | true 15 | HEA_ID 16 | true 17 | false 18 | true 19 | -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/foreignkey/seg_0/BBC0DADE-08E5-50B7-E528-51D4C758AEB8.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-12-13 14:24:23 UTC 5 | Excel_Gateway 6 | MT_EXCEL_GATEWAY.R_SPREADSHEET_PROTECTION 7 | NO ACTION 8 | C6A55C8B-AE20-30EC-14CB-E2F16F6885A5 9 | 91FA5B06-DB4A-8BD8-87B4-457EF3793B0D 10 | 91FA5B06-DB4A-8BD8-87B4-457EF3793B0D 11 | false 12 | SSP_ID 13 | true 14 | false 15 | true 16 | -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/foreignkey/seg_0/C23A00F2-F637-3041-BA7E-A55673EF5D79.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | mt_excel_gateway 4 | MT_EXCEL_GATEWAY 5 | TID_TIS_FK 6 | therwix 7 | 2021-12-13 14:06:51 UTC 8 | Excel_Gateway 9 | MT_EXCEL_GATEWAY.TEMPLATE_IMPORT_STATUS 10 | NO ACTION 11 | 552711C2-5776-814E-39CD-F98F7F00546E 12 | E60A99CF-2E69-82D3-1536-E2A8DE6F93BD 13 | E60A99CF-2E69-82D3-1536-E2A8DE6F93BD 14 | true 15 | TIS_ID 16 | true 17 | false 18 | true 19 | -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/foreignkey/seg_0/DF60701A-8D6D-D117-C9A8-3E01F87B5AD1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-12-13 14:14:22 UTC 5 | Excel_Gateway 6 | MT_EXCEL_GATEWAY.TEMPLATE_HEADER_GROUP 7 | NO ACTION 8 | 6875AC58-259C-EC64-A9A4-291C16C744BF 9 | 64A52FF6-7B04-6E3C-6E5B-DE026591F2D2 10 | 64A52FF6-7B04-6E3C-6E5B-DE026591F2D2 11 | false 12 | THG_ID 13 | true 14 | false 15 | true 16 | -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/foreignkey/seg_0/EEF2A611-F965-E4EA-7DCE-D6182AF92829.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | mt_excel_gateway 4 | MT_EXCEL_GATEWAY 5 | HEA_VAL_FK 6 | therwix 7 | 2021-12-13 14:06:51 UTC 8 | Excel_Gateway 9 | MT_EXCEL_GATEWAY.R_VALIDATION 10 | NO ACTION 11 | 064E457B-0AA4-E747-E313-4BE8DF13A714 12 | C1C88582-03D2-C0BF-56B5-BCF3EEE4F580 13 | C1C88582-03D2-C0BF-56B5-BCF3EEE4F580 14 | false 15 | VAL_ID 16 | true 17 | false 18 | true 19 | -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/phys/79C73AAF-025EE81A2AFC/79C73AAF-025EE81A2AFC.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-12-13 14:06:06 UTC 5 | Excel_Gateway 6 | -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/phys/79C73AAF-025EE81A2AFC/DDLSelection.local: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/phys/79C73AAF-025EE81A2AFC/SType/seg_0/47E390DE-0671-C4B1-8428-0F45CBEE18F8.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-12-13 14:06:06 UTC 5 | Excel_Gateway 6 | MDSYS 7 | -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/phys/79C73AAF-025EE81A2AFC/SType/seg_0/F72C39E0-D1CA-8821-2AD7-A1E95A37D3D1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-12-13 14:06:06 UTC 5 | Excel_Gateway 6 | -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/phys/79C73AAF-025EE81A2AFC/Segment/seg_0/65BC1641-EC1B-1C1F-3E58-13008E190804.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-12-13 14:06:08 UTC 5 | Excel_Gateway 6 | 255 7 | 65536 8 | 2147483645 9 | 1048576 10 | -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/phys/79C73AAF-025EE81A2AFC/Segment/seg_0/D7183D3C-2B7D-647D-42BD-5F2489820439.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-12-13 14:06:36 UTC 5 | Excel_Gateway 6 | 2 7 | 166 8 | 65536 9 | 2147483645 10 | 1048576 11 | -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/phys/79C73AAF-025EE81A2AFC/Segment/seg_0/D7881BD5-48A5-B417-CF2A-BAB45F22ADEA.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-12-13 14:06:34 UTC 5 | Excel_Gateway 6 | 2 7 | 255 8 | 65536 9 | 2147483645 10 | 1048576 11 | -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/phys/79C73AAF-025EE81A2AFC/Segment/seg_0/FCE9D115-FF1A-FACD-8618-8C75B67517B5.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-12-13 14:06:36 UTC 5 | Excel_Gateway 6 | 2 7 | 167 8 | 65536 9 | 2147483645 10 | 1048576 11 | -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/phys/79C73AAF-025EE81A2AFC/TSpace/seg_0/9D9FFED1-C56C-F92D-4C11-D363E4608295.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | mt_excel_gateway 4 | MT_EXCEL_GATEWAY 5 | APEX_33850129216086928 6 | therwix 7 | 2021-12-13 14:06:08 UTC 8 | Excel_Gateway 9 | 0 10 | LOCAL 11 | -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/phys/79C73AAF-025EE81A2AFC/Trigger/seg_0/055C56CC-1F2B-C224-AB86-76C1C5B7419C.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | mt_excel_gateway 4 | MT_EXCEL_GATEWAY 5 | SPS_BIU_TRG 6 | therwix 7 | 2021-12-13 14:06:47 UTC 8 | Excel_Gateway 9 | INSERT, UPDATE 10 | 24 | BEFORE 25 | 6474FE67-4AC6-8ED9-4E9B-F13E709333EB 26 | 9780A851-D05A-76AD-B558-233AC80C9CBF
    27 |
    -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/phys/79C73AAF-025EE81A2AFC/Trigger/seg_0/092EAECB-2CB0-C6C2-6471-321B5485DD39.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | mt_excel_gateway 4 | MT_EXCEL_GATEWAY 5 | HEA_BIU_TRG 6 | therwix 7 | 2021-12-13 14:06:47 UTC 8 | Excel_Gateway 9 | INSERT, UPDATE 10 | 24 | BEFORE 25 | 6474FE67-4AC6-8ED9-4E9B-F13E709333EB 26 | CFF4F9B5-99C1-518F-3252-9EA7FDF88BB5
    27 |
    -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/phys/79C73AAF-025EE81A2AFC/Trigger/seg_0/1B4EC6C4-DC37-0D4D-8025-7EF8BA30420B.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | mt_excel_gateway 4 | MT_EXCEL_GATEWAY 5 | THG_BIU_TRG 6 | therwix 7 | 2021-12-13 14:06:48 UTC 8 | Excel_Gateway 9 | INSERT, UPDATE 10 | 24 | BEFORE 25 | 6474FE67-4AC6-8ED9-4E9B-F13E709333EB 26 | 6875AC58-259C-EC64-A9A4-291C16C744BF
    27 |
    -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/phys/79C73AAF-025EE81A2AFC/Trigger/seg_0/221C5975-DD59-A258-60BE-8B2DADFC218D.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | mt_excel_gateway 4 | MT_EXCEL_GATEWAY 5 | THV_BIU_TRG 6 | therwix 7 | 2021-12-13 14:06:48 UTC 8 | Excel_Gateway 9 | INSERT, UPDATE 10 | 24 | BEFORE 25 | 6474FE67-4AC6-8ED9-4E9B-F13E709333EB 26 | AC029A62-D53B-F9C3-5BFB-46D6C183AB09
    27 |
    -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/phys/79C73AAF-025EE81A2AFC/Trigger/seg_0/287B51AC-3DA5-1C44-6FBB-4193280D8AF9.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | mt_excel_gateway 4 | MT_EXCEL_GATEWAY 5 | TIS_BIU_TRG 6 | therwix 7 | 2021-12-13 14:06:49 UTC 8 | Excel_Gateway 9 | INSERT, UPDATE 10 | 24 | BEFORE 25 | 6474FE67-4AC6-8ED9-4E9B-F13E709333EB 26 | 552711C2-5776-814E-39CD-F98F7F00546E
    27 |
    -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/phys/79C73AAF-025EE81A2AFC/Trigger/seg_0/4058CECE-2048-30E3-7AC4-727BE3A8D87B.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | mt_excel_gateway 4 | MT_EXCEL_GATEWAY 5 | TPA_BIU_TRG 6 | therwix 7 | 2021-12-13 14:06:48 UTC 8 | Excel_Gateway 9 | INSERT, UPDATE 10 | 24 | BEFORE 25 | 6474FE67-4AC6-8ED9-4E9B-F13E709333EB 26 | 3BD0CA72-9CAA-06D5-C73E-D2418026AFE8
    27 |
    -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/phys/79C73AAF-025EE81A2AFC/Trigger/seg_0/429A3FC7-42EF-8DB7-8C29-9412C14EAB2A.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | mt_excel_gateway 4 | MT_EXCEL_GATEWAY 5 | TPH_BIU_TRG 6 | therwix 7 | 2021-12-13 14:06:48 UTC 8 | Excel_Gateway 9 | INSERT, UPDATE 10 | 24 | BEFORE 25 | 6474FE67-4AC6-8ED9-4E9B-F13E709333EB 26 | 812E73CE-A58C-E4A4-F6CE-304E66B4191C
    27 |
    -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/phys/79C73AAF-025EE81A2AFC/Trigger/seg_0/5B596441-AB63-32E4-A754-4A99D9BA3F68.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | mt_excel_gateway 4 | MT_EXCEL_GATEWAY 5 | TID_BIU_TRG 6 | therwix 7 | 2021-12-13 14:06:48 UTC 8 | Excel_Gateway 9 | INSERT, UPDATE 10 | 24 | BEFORE 25 | 6474FE67-4AC6-8ED9-4E9B-F13E709333EB 26 | 2A09C01C-B287-A527-AB1A-8DFC53F789B3
    27 |
    -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/phys/79C73AAF-025EE81A2AFC/Trigger/seg_0/749ED57C-E90D-22BA-EAB1-12ACBBB2DBEE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | mt_excel_gateway 4 | MT_EXCEL_GATEWAY 5 | VAL_BIU_TRG 6 | therwix 7 | 2021-12-13 14:06:48 UTC 8 | Excel_Gateway 9 | INSERT, UPDATE 10 | 24 | BEFORE 25 | 6474FE67-4AC6-8ED9-4E9B-F13E709333EB 26 | 064E457B-0AA4-E747-E313-4BE8DF13A714
    27 |
    -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/phys/79C73AAF-025EE81A2AFC/Trigger/seg_0/79EDABA2-25FF-E628-CCFD-EB8242EB246A.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | mt_excel_gateway 4 | MT_EXCEL_GATEWAY 5 | TPL_BIU_TRG 6 | therwix 7 | 2021-12-13 14:06:48 UTC 8 | Excel_Gateway 9 | INSERT, UPDATE 10 | 24 | BEFORE 25 | 6474FE67-4AC6-8ED9-4E9B-F13E709333EB 26 | B18F6830-6A00-C8B6-9A55-7F4785B69424
    27 |
    -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/phys/79C73AAF-025EE81A2AFC/Trigger/seg_0/C7133054-FDC6-D047-F02F-25A25258E8A7.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | mt_excel_gateway 4 | MT_EXCEL_GATEWAY 5 | FIL_BIU_TRG 6 | therwix 7 | 2021-12-13 14:06:46 UTC 8 | Excel_Gateway 9 | INSERT, UPDATE 10 | 24 | BEFORE 25 | 6474FE67-4AC6-8ED9-4E9B-F13E709333EB 26 | C58BCB83-3C88-8096-FA1F-C0933E4E3372
    27 |
    -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/phys/79C73AAF-025EE81A2AFC/Trigger/seg_0/EF66CB37-847B-0649-DDD3-66D80D7ABE2C.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | mt_excel_gateway 4 | MT_EXCEL_GATEWAY 5 | STS_BIU_TRG 6 | therwix 7 | 2021-12-13 14:06:47 UTC 8 | Excel_Gateway 9 | INSERT, UPDATE 10 | 24 | BEFORE 25 | 6474FE67-4AC6-8ED9-4E9B-F13E709333EB 26 | B0ECB33C-FBCA-9894-5D8B-02CB9BC61DCC
    27 |
    -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/phys/79C73AAF-025EE81A2AFC/Trigger/seg_0/F0F5D9F8-40DF-00B0-D94F-8E2666FCB83F.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | mt_excel_gateway 4 | MT_EXCEL_GATEWAY 5 | PER_BIU_TRG 6 | therwix 7 | 2021-12-13 14:06:47 UTC 8 | Excel_Gateway 9 | INSERT, UPDATE 10 | 24 | BEFORE 25 | 6474FE67-4AC6-8ED9-4E9B-F13E709333EB 26 | 5C518D4B-ADD7-DF19-C5C7-A5F9A63F56D6
    27 |
    -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/phys/79C73AAF-025EE81A2AFC/Trigger/seg_0/FAABB56F-6D46-46BE-10BD-7C7104F9A625.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | mt_excel_gateway 4 | MT_EXCEL_GATEWAY 5 | DDS_BIU_TRG 6 | therwix 7 | 2021-12-13 14:06:47 UTC 8 | Excel_Gateway 9 | INSERT, UPDATE 10 | 24 | BEFORE 25 | 6474FE67-4AC6-8ED9-4E9B-F13E709333EB 26 | 52FED8D8-67A5-3FD2-3E12-C7BE412BDE21
    27 |
    -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/phys/79C73AAF-025EE81A2AFC/User/seg_0/6474FE67-4AC6-8ED9-4E9B-F13E709333EB.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | mt_excel_gateway 4 | MT_EXCEL_GATEWAY 5 | therwix 6 | 2021-12-13 14:06:06 UTC 7 | Excel_Gateway 8 | C638272D-8D60-5239-3AE2-9FC75CF68502 9 | -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/phys/79C73AAF-025EE81A2AFC/User/seg_0/MDSYS.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-12-13 14:06:06 UTC 5 | Excel_Gateway 6 | true 7 | true 8 | -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/phys/79C73AAF-025EE81A2AFC/User/seg_0/PUBLIC.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-12-13 14:06:06 UTC 5 | Excel_Gateway 6 | true 7 | true 8 | -------------------------------------------------------------------------------- /src/datamodel/rel/2BE2275B-07C50F0ECDB4/schema/seg_0/C638272D-8D60-5239-3AE2-9FC75CF68502.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-12-13 14:06:08 UTC 5 | Excel_Gateway 6 | -------------------------------------------------------------------------------- /src/datamodel/rel/EFAB9F35-16383DE14391.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | 2021-08-09 10:13:18 UTC 5 | datamodel 6 | true 7 | 3FD120B5-9F4E-6278-D5E2-746D192C8319 8 | -------------------------------------------------------------------------------- /src/datamodel/rel/EFAB9F35-16383DE14391/DDLSelection.local: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/datamodel/rel/EFAB9F35-16383DE14391/Diagrams.local: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/datamodel/rel/EFAB9F35-16383DE14391/Objects.local: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/datamodel/rel/EFAB9F35-16383DE14391/subviews/600C466A-BDAA-55E0-960D-F299A9078CDC.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | therwix 4 | therwix 5 | 2021-08-09 11:01:48 UTC 6 | false 7 | true 8 | false 9 | false 10 | false 11 | false 12 | false 13 | -1 14 | false 15 | 1 16 | -------------------------------------------------------------------------------- /src/ddl/deinstall_logger.sql: -------------------------------------------------------------------------------- 1 | drop package logger 2 | / 3 | 4 | drop procedure logger_configure 5 | / 6 | 7 | drop table logger_logs_apex_items cascade constraints 8 | / 9 | 10 | drop table logger_prefs cascade constraints 11 | / 12 | 13 | drop table logger_logs cascade constraints 14 | / 15 | 16 | drop table logger_prefs_by_client_id cascade constraints 17 | / 18 | 19 | drop sequence logger_logs_seq 20 | / 21 | 22 | drop sequence logger_apx_items_seq 23 | / 24 | 25 | 26 | begin 27 | dbms_scheduler.drop_job('LOGGER_PURGE_JOB'); 28 | end; 29 | / 30 | 31 | begin 32 | dbms_scheduler.drop_job('LOGGER_UNSET_PREFS_BY_CLIENT'); 33 | end; 34 | / 35 | 36 | drop view logger_logs_5_min 37 | / 38 | 39 | drop view logger_logs_60_min 40 | / 41 | 42 | drop view logger_logs_terse 43 | / 44 | 45 | -------------------------------------------------------------------------------- /src/install_all_scratch.sql: -------------------------------------------------------------------------------- 1 | set define '^' 2 | set concat '.' 3 | 4 | PROMPT >> Excel Gateway for Oracle APEX 5 | PROMPT >> ======================= 6 | 7 | PROMPT >> Please enter needed Variables 8 | 9 | ACCEPT ws_name char default 'APEX-EXCEL-GATEWAY' PROMPT 'Enter Workspace Name: [APEX-EXCEL-GATEWAY]' 10 | ACCEPT parsing_schema char default 'APEX_EXCEL_GATEWAY' PROMPT 'Enter Parsing Schema: [APEX_EXCEL_GATEWAY]' 11 | ACCEPT app_alias char default 'APEX_EXCEL_GATEWAY' PROMPT 'Enter Application Alias: [APEX_EXCEL_GATEWAY]' 12 | ACCEPT app_name char default 'Excel Gateway for Oracle APEX' PROMPT 'Enter Application Name: [Excel Gateway for Oracle APEX]' 13 | 14 | 15 | @install_db_scratch.sql 16 | 17 | PROMPT >> Application Installation 18 | PROMPT >> ======================== 19 | 20 | PROMPT >> Set up environment 21 | begin 22 | apex_application_install.set_workspace( p_workspace => '^ws_name.' ); 23 | apex_application_install.generate_application_id; 24 | apex_application_install.generate_offset; 25 | apex_application_install.set_schema( p_schema => '^parsing_schema.' ); 26 | apex_application_install.set_application_alias( p_application_alias => '^app_alias.' ); 27 | apex_application_install.set_application_name( p_application_name => '^app_name.' ); 28 | end; 29 | / 30 | 31 | PROMPT >> Install Application 32 | @apex/install.sql 33 | 34 | PROMPT >> Finished Installation of Excel Gateway for Oracle APEX 35 | PROMPT >> ==================================== -------------------------------------------------------------------------------- /src/install_all_scratch_dev.sql: -------------------------------------------------------------------------------- 1 | set define '^' 2 | set concat '.' 3 | 4 | PROMPT >> Excel Gateway for Oracle APEX 5 | PROMPT >> ======================= 6 | 7 | PROMPT >> Please enter needed Variables 8 | 9 | ACCEPT ws_name char default 'EXCEL_GATEWAY' PROMPT 'Enter Workspace Name: [EXCEL_GATEWAY]' 10 | ACCEPT parsing_schema char default 'EXCEL_GATEWAY' PROMPT 'Enter Parsing Schema: [EXCEL_GATEWAY]' 11 | ACCEPT app_alias char default 'EXCEL_GATEWAY' PROMPT 'Enter Application Alias: [EXCEL_GATEWAY]' 12 | ACCEPT app_name char default 'Excel Gateway for Oracle APEX' PROMPT 'Enter Application Name: [Excel Gateway for Oracle APEX]' 13 | 14 | 15 | @install_db_scratch.sql 16 | 17 | PROMPT >> Application Installation 18 | PROMPT >> ======================== 19 | 20 | PROMPT >> Set up environment 21 | begin 22 | apex_application_install.set_workspace( p_workspace => '^ws_name.' ); 23 | apex_application_install.set_application_id( p_application_id => 445 ); 24 | apex_application_install.set_schema( p_schema => '^parsing_schema.' ); 25 | apex_application_install.set_application_alias( p_application_alias => '^app_alias.' ); 26 | apex_application_install.set_application_name( p_application_name => '^app_name.' ); 27 | end; 28 | / 29 | 30 | PROMPT >> Install Application 31 | @apex/install.sql 32 | 33 | PROMPT >> Finished Installation of Excel Gateway for Oracle APEX 34 | PROMPT >> ==================================== -------------------------------------------------------------------------------- /src/plsql/email_pkg.pks: -------------------------------------------------------------------------------- 1 | create or replace package email_pkg as 2 | 3 | procedure new_template( 4 | p_App_ID pls_integer, 5 | p_Page_ID pls_integer, 6 | p_static_id varchar2 7 | ); 8 | 9 | procedure new_template_automation( 10 | p_tis_id template_import_status.tis_id%type, 11 | p_tis_annotation template_import_status.tis_annotation%type, 12 | p_per_id r_person.per_id%type, 13 | p_per_name varchar2, 14 | p_per_email r_person.per_email%type, 15 | p_tpl_id r_templates.tpl_id%type 16 | ); 17 | 18 | procedure corrected_template( 19 | p_App_ID pls_integer, 20 | p_Page_ID pls_integer, 21 | p_static_id varchar2 22 | ); 23 | 24 | procedure corrected_template_automation( 25 | p_tis_id template_import_status.tis_id%type, 26 | p_tis_annotation template_import_status.tis_annotation%type, 27 | p_per_id r_person.per_id%type, 28 | p_per_name varchar2, 29 | p_per_email r_person.per_email%type, 30 | p_tpl_id r_templates.tpl_id%type 31 | ); 32 | 33 | procedure reminder( 34 | p_App_ID pls_integer, 35 | p_Page_ID pls_integer, 36 | p_static_id varchar2 37 | ); 38 | 39 | procedure reminder_automation( 40 | p_tis_id template_import_status.tis_id%type, 41 | p_tis_annotation template_import_status.tis_annotation%type, 42 | p_per_id r_person.per_id%type, 43 | p_per_name varchar2, 44 | p_per_email r_person.per_email%type, 45 | p_tpl_id r_templates.tpl_id%type 46 | ); 47 | 48 | end email_pkg; 49 | / -------------------------------------------------------------------------------- /src/plsql/excel_gen.pks: -------------------------------------------------------------------------------- 1 | create or replace package excel_gen 2 | as 3 | 4 | gc_headergroup_row constant pls_integer := 4; 5 | gc_header_row constant pls_integer := 5; 6 | gc_data_row constant pls_integer := 6; 7 | 8 | gc_ids_col1 constant pls_integer := 299; 9 | gc_ids_col2 constant pls_integer := 300; 10 | 11 | procedure regenerate_invalid_rows ( 12 | pi_tis_id in template_import_status.tis_id%type 13 | ); 14 | 15 | procedure generate_single_file ( 16 | pi_tis_id in template_import_status.tis_id%type 17 | , pi_tpl_id in r_templates.tpl_id%type 18 | , pi_tpl_name in r_templates.tpl_name%type 19 | , pi_per_id in r_person.per_id%type 20 | , pi_per_firstname in r_person.per_firstname%type 21 | , pi_per_lastname in r_person.per_lastname%type 22 | , pi_invalid in boolean default false 23 | ); 24 | 25 | function getExcelColumnName( 26 | p_column_count pls_integer 27 | ) return varchar2; 28 | 29 | end excel_gen; 30 | / -------------------------------------------------------------------------------- /src/plsql/file_import.pks: -------------------------------------------------------------------------------- 1 | create or replace package file_import 2 | as 3 | 4 | function remove_empty_spaces( 5 | pi_string in varchar2 6 | ) return varchar2 7 | ; 8 | 9 | procedure upload_file ( 10 | pi_collection_name in apex_collections.collection_name%type default 'DROPZONE_UPLOAD' 11 | , pi_tpl_id in r_templates.tpl_id%type 12 | , po_error_occurred out nocopy number 13 | ); 14 | 15 | end file_import; 16 | / -------------------------------------------------------------------------------- /src/plsql/master_api.pks: -------------------------------------------------------------------------------- 1 | create or replace package master_api as 2 | 3 | function get_faulty_id 4 | return r_header.hea_id%type deterministic result_cache 5 | ; 6 | 7 | function get_annotation_id 8 | return r_header.hea_id%type deterministic result_cache 9 | ; 10 | 11 | function get_feedback_id 12 | return r_header.hea_id%type deterministic result_cache 13 | ; 14 | 15 | function get_validation_id 16 | return r_header.hea_id%type deterministic result_cache 17 | ; 18 | 19 | end master_api; 20 | / -------------------------------------------------------------------------------- /src/plsql/p00025_api.pks: -------------------------------------------------------------------------------- 1 | create or replace package p00025_api as 2 | 3 | procedure create_new_template( 4 | pi_collection_name in apex_collections.collection_name%type default 'CREATE_TEMPLATE' 5 | ); 6 | 7 | procedure create_preview( 8 | pi_collection_name in apex_collections.collection_name%type default 'CREATE_TEMPLATE' 9 | ); 10 | 11 | end p00025_api; 12 | / -------------------------------------------------------------------------------- /src/plsql/p00027_api.pkb: -------------------------------------------------------------------------------- 1 | create or replace package body p00027_api 2 | as 3 | 4 | gc_scope_prefix constant varchar2(31) := lower($$plsql_unit) || '.'; 5 | 6 | procedure save_header ( 7 | pi_hea_text in r_header.hea_text%type 8 | , pi_hea_xlsx_width in r_header.hea_xlsx_width%type 9 | , pi_hea_val_id in r_header.hea_val_id%type 10 | , pi_dropdown_values in varchar2 11 | ) 12 | as 13 | l_scope logger_logs.scope%type := gc_scope_prefix || 'save_header'; 14 | l_params logger.tab_param; 15 | l_hea_id r_header.hea_id%type; 16 | begin 17 | logger.append_param(l_params, 'pi_hea_text', pi_hea_text); 18 | logger.append_param(l_params, 'pi_hea_xlsx_width', pi_hea_xlsx_width); 19 | logger.append_param(l_params, 'pi_hea_val_id', pi_hea_val_id); 20 | logger.append_param(l_params, 'pi_dropdown_values', pi_dropdown_values); 21 | logger.log('START', l_scope, null, l_params); 22 | 23 | insert into r_header (HEA_TEXT, HEA_XLSX_WIDTH, HEA_VAL_ID) 24 | values (pi_hea_text, pi_hea_xlsx_width, pi_hea_val_id) 25 | returning hea_id into l_hea_id; 26 | 27 | insert into r_dropdowns (DDS_HEA_ID, DDS_TEXT) 28 | select l_hea_id, column_value From TABLE(apex_string.split(pi_dropdown_values,':')); 29 | 30 | logger.log('END', l_scope); 31 | exception 32 | when others then 33 | logger.log_error('Unhandled Exception', l_scope, null, l_params); 34 | raise; 35 | end save_header; 36 | 37 | end p00027_api; 38 | / -------------------------------------------------------------------------------- /src/plsql/p00027_api.pks: -------------------------------------------------------------------------------- 1 | create or replace package p00027_api as 2 | 3 | procedure save_header( 4 | pi_hea_text in r_header.hea_text%type 5 | , pi_hea_xlsx_width in r_header.hea_xlsx_width%type 6 | , pi_hea_val_id in r_header.hea_val_id%type 7 | , pi_dropdown_values in varchar2 8 | ); 9 | 10 | end p00027_api; 11 | / -------------------------------------------------------------------------------- /src/plsql/p00028_api.pkb: -------------------------------------------------------------------------------- 1 | create or replace package body p00028_api 2 | as 3 | 4 | gc_scope_prefix constant varchar2(31) := lower($$plsql_unit) || '.'; 5 | 6 | procedure save_header_group ( 7 | pi_thg_text in template_header_group.thg_text%type 8 | , pi_thg_xlsx_background_color in template_header_group.thg_xlsx_background_color%type 9 | , pi_thg_xlsx_font_color in template_header_group.thg_xlsx_font_color%type 10 | ) 11 | as 12 | l_scope logger_logs.scope%type := gc_scope_prefix || 'save_header'; 13 | l_params logger.tab_param; 14 | begin 15 | logger.append_param(l_params, 'pi_thg_text', pi_thg_text); 16 | logger.append_param(l_params, 'pi_thg_xlsx_background_color', pi_thg_xlsx_background_color); 17 | logger.append_param(l_params, 'pi_thg_xlsx_font_color', pi_thg_xlsx_font_color); 18 | logger.log('START', l_scope, null, l_params); 19 | 20 | insert into template_header_group (thg_text, thg_xlsx_background_color, thg_xlsx_font_color) 21 | values (pi_thg_text, replace(pi_thg_xlsx_background_color,'#','ff'), replace(pi_thg_xlsx_font_color,'#','ff')); 22 | 23 | logger.log('END', l_scope); 24 | exception 25 | when others then 26 | logger.log_error('Unhandled Exception', l_scope, null, l_params); 27 | raise; 28 | end save_header_group; 29 | 30 | end p00028_api; 31 | / -------------------------------------------------------------------------------- /src/plsql/p00028_api.pks: -------------------------------------------------------------------------------- 1 | create or replace package p00028_api as 2 | 3 | procedure save_header_group( 4 | pi_thg_text in template_header_group.thg_text%type 5 | , pi_thg_xlsx_background_color in template_header_group.thg_xlsx_background_color%type 6 | , pi_thg_xlsx_font_color in template_header_group.thg_xlsx_font_color%type 7 | ); 8 | 9 | end p00028_api; 10 | / -------------------------------------------------------------------------------- /src/plsql/p00030_api.pks: -------------------------------------------------------------------------------- 1 | create or replace package p00030_api 2 | as 3 | 4 | procedure generate_excel_file ( 5 | pi_tpl_id in r_templates.tpl_id%type, 6 | pi_per_id in r_person.per_id%type 7 | ); 8 | 9 | procedure send_mail( 10 | pi_choice in pls_integer, 11 | pi_app_id in pls_integer, 12 | pi_app_page_id in pls_integer, 13 | pi_static_id in varchar2 14 | ); 15 | 16 | end p00030_api; 17 | / -------------------------------------------------------------------------------- /src/plsql/p00031_api.pkb: -------------------------------------------------------------------------------- 1 | create or replace package body p00031_api 2 | as 3 | 4 | gc_scope_prefix constant varchar2(31) := lower($$plsql_unit) || '.'; 5 | 6 | procedure add_person( 7 | pi_tpl_id in r_templates.tpl_id%type 8 | , pi_per_id in varchar2 9 | ) 10 | as 11 | l_scope logger_logs.scope%type := gc_scope_prefix || 'add_person'; 12 | l_params logger.tab_param; 13 | begin 14 | logger.append_param(l_params, 'pi_tpl_id', pi_tpl_id); 15 | logger.append_param(l_params, 'pi_per_id', pi_per_id); 16 | logger.log('START', l_scope, null, l_params); 17 | 18 | for rec in ( 19 | select COLUMN_VALUE as per_id 20 | from apex_string.split(pi_per_id,':') 21 | ) 22 | loop 23 | insert into template_import_status 24 | (tis_tpl_id, tis_per_id, tis_sts_id, tis_shipping_status) 25 | values 26 | (pi_tpl_id, rec.per_id, 1, 1); 27 | end loop; 28 | 29 | logger.log('END', l_scope); 30 | exception 31 | when others then 32 | logger.log_error('Unhandled Exception', l_scope, null, l_params); 33 | raise; 34 | end add_person; 35 | 36 | end p00031_api; 37 | / -------------------------------------------------------------------------------- /src/plsql/p00031_api.pks: -------------------------------------------------------------------------------- 1 | create or replace package p00031_api 2 | as 3 | 4 | procedure add_person( 5 | pi_tpl_id in r_templates.tpl_id%type 6 | , pi_per_id in varchar2 7 | ); 8 | 9 | end p00031_api; 10 | / -------------------------------------------------------------------------------- /src/plsql/p00032_api.pkb: -------------------------------------------------------------------------------- 1 | create or replace package body p00032_api 2 | as 3 | 4 | gc_scope_prefix constant varchar2(31) := lower($$plsql_unit) || '.'; 5 | 6 | procedure save_automation( 7 | pi_tpa_tpl_id in template_automations.tpa_tpl_id%type, 8 | pi_tpa_enabled in template_automations.tpa_enabled%type, 9 | pi_tpa_days in template_automations.tpa_days%type 10 | ) 11 | as 12 | l_scope logger_logs.scope%type := gc_scope_prefix || 'save_automation'; 13 | l_params logger.tab_param; 14 | begin 15 | logger.append_param(l_params, 'pi_tpa_tpl_id', pi_tpa_tpl_id); 16 | logger.append_param(l_params, 'pi_tpa_enabled', pi_tpa_enabled); 17 | logger.append_param(l_params, 'pi_tpa_days', pi_tpa_days); 18 | logger.log('START', l_scope, null, l_params); 19 | 20 | update template_automations 21 | set tpa_enabled = pi_tpa_enabled, 22 | tpa_days = pi_tpa_days 23 | where tpa_tpl_id = pi_tpa_tpl_id; 24 | 25 | logger.log('END', l_scope); 26 | exception 27 | when others then 28 | logger.log_error('Unhandled Exception', l_scope, null, l_params); 29 | raise; 30 | end save_automation; 31 | 32 | end p00032_api; 33 | / -------------------------------------------------------------------------------- /src/plsql/p00032_api.pks: -------------------------------------------------------------------------------- 1 | create or replace package p00032_api 2 | as 3 | 4 | procedure save_automation( 5 | pi_tpa_tpl_id in template_automations.tpa_tpl_id%type, 6 | pi_tpa_enabled in template_automations.tpa_enabled%type, 7 | pi_tpa_days in template_automations.tpa_days%type 8 | ); 9 | 10 | end p00032_api; 11 | / -------------------------------------------------------------------------------- /src/plsql/p00041_api.pkb: -------------------------------------------------------------------------------- 1 | create or replace package body p00041_api 2 | as 3 | 4 | gc_scope_prefix constant varchar2(31) := lower($$plsql_unit) || '.'; 5 | 6 | procedure upload_file ( 7 | pi_collection_name in apex_collections.collection_name%type default 'DROPZONE_UPLOAD' 8 | , pi_tpl_id in r_templates.tpl_id%type 9 | , po_error_occurred out nocopy number 10 | ) 11 | as 12 | l_scope logger_logs.scope%type := gc_scope_prefix || 'upload_file'; 13 | l_params logger.tab_param; 14 | 15 | begin 16 | logger.append_param(l_params, 'pi_collection_name', pi_collection_name); 17 | logger.append_param(l_params, 'pi_tpl_id', pi_tpl_id); 18 | logger.log('START', l_scope, null, l_params); 19 | 20 | file_import.upload_file ( 21 | pi_collection_name => pi_collection_name 22 | , pi_tpl_id => pi_tpl_id 23 | , po_error_occurred => po_error_occurred 24 | ); 25 | 26 | logger.log('END', l_scope); 27 | exception 28 | when others then 29 | logger.log_error('Unhandled Exception', l_scope, null, l_params); 30 | raise; 31 | end; 32 | 33 | end p00041_api; 34 | / -------------------------------------------------------------------------------- /src/plsql/p00041_api.pks: -------------------------------------------------------------------------------- 1 | create or replace package p00041_api 2 | as 3 | 4 | procedure upload_file ( 5 | pi_collection_name in apex_collections.collection_name%type default 'DROPZONE_UPLOAD' 6 | , pi_tpl_id in r_templates.tpl_id%type 7 | , po_error_occurred out nocopy number 8 | ); 9 | 10 | end p00041_api; 11 | / -------------------------------------------------------------------------------- /src/plsql/p00085_api.pks: -------------------------------------------------------------------------------- 1 | create or replace package p00085_api as 2 | 3 | procedure edit_template( 4 | pi_tpl_id in r_templates.tpl_id%type 5 | ); 6 | 7 | procedure create_preview( 8 | pi_collection_name in apex_collections.collection_name%type default 'EDIT_TEMPLATE' 9 | ); 10 | 11 | end p00085_api; 12 | / -------------------------------------------------------------------------------- /src/plsql/p00090_api.pkb: -------------------------------------------------------------------------------- 1 | create or replace package body p00090_api 2 | as 3 | 4 | gc_scope_prefix constant varchar2(31) := lower($$plsql_unit) || '.'; 5 | 6 | procedure delete_template ( 7 | pi_tpl_id in r_templates.tpl_id%type 8 | ) 9 | as 10 | l_scope logger_logs.scope%type := gc_scope_prefix || 'delete_template'; 11 | l_params logger.tab_param; 12 | 13 | begin 14 | logger.append_param(l_params, 'pi_tpl_id', pi_tpl_id); 15 | logger.log('START', l_scope, null, l_params); 16 | 17 | -- delete template data 18 | delete template_import_data where tid_tis_id in (select tis_id from template_import_status where tis_tpl_id = pi_tpl_id); 19 | delete template_import_status where tis_tpl_id = pi_tpl_id; 20 | delete template_automations where tpa_tpl_id = pi_tpl_id; 21 | delete template_header_validations where thv_tph_id in (select tph_id from template_header where tph_tpl_id = pi_tpl_id); 22 | delete template_header where tph_tpl_id = pi_tpl_id; 23 | delete r_templates where tpl_id = pi_tpl_id; 24 | 25 | logger.log('END', l_scope); 26 | exception 27 | when others then 28 | logger.log_error('Unhandled Exception', l_scope, null, l_params); 29 | raise; 30 | end; 31 | 32 | end p00090_api; 33 | / -------------------------------------------------------------------------------- /src/plsql/p00090_api.pks: -------------------------------------------------------------------------------- 1 | create or replace package p00090_api 2 | as 3 | 4 | procedure delete_template ( 5 | pi_tpl_id in r_templates.tpl_id%type 6 | ); 7 | 8 | end p00090_api; 9 | / -------------------------------------------------------------------------------- /src/plsql/validation_api.pks: -------------------------------------------------------------------------------- 1 | create or replace package validation_api as 2 | 3 | function validate_data( 4 | p_tid_text template_import_data.tid_text%type 5 | , p_val_text r_validation.val_text%type 6 | ) return boolean; 7 | 8 | procedure validation ( 9 | p_tis_id in template_import_status.tis_id%type 10 | ); 11 | 12 | end validation_api; 13 | / -------------------------------------------------------------------------------- /src/views/p00020_vw.sql: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE FORCE VIEW "P00020_VW" ("FIL_ID", "FIL_FILENAME", "FIL_CREATED_ON", "FIL_SESSION", "FILE_LENGTH") AS 2 | select fil_id 3 | , fil_filename 4 | , fil_created_on 5 | , fil_session 6 | , dbms_lob.getlength(fil_file) as file_length 7 | from files 8 | where fil_import_export = 0 9 | and fil_import_completed = 1; 10 | / -------------------------------------------------------------------------------- /src/views/p00030_vw.sql: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE FORCE VIEW "P00030_VW" ("TIS_ID", "TPL_ID", "PER_ID", "PER_NAME", "PER_EMAIL", "TIS_STS_ID", "FIL_ID", "FIL_FILENAME", "FIL_MIMETYPE", "FILE_LENGTH", "TIS_DEADLINE", "TIS_ANNOTATION", "TIS_FIL_ID", "TIS_SHIPPING_STATUS") AS 2 | select tis_id 3 | , tpl_id 4 | , per_id 5 | , per_firstname || ' ' || per_lastname as per_name 6 | , per_email 7 | , tis_sts_id 8 | , fil_id 9 | , fil_filename 10 | , fil_mimetype 11 | , dbms_lob.getlength(fil_file) as file_length 12 | , tis_deadline 13 | , tis_annotation 14 | , tis_fil_id 15 | , tis_shipping_status 16 | from template_import_status 17 | join r_person 18 | on tis_per_id = per_id 19 | join r_templates 20 | on tis_tpl_id = tpl_id 21 | left join files 22 | on tis_fil_id = fil_id; 23 | / -------------------------------------------------------------------------------- /src/views/p00042_vw.sql: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE FORCE VIEW "P00042_VW" ("IER_ID", "IER_SESSION", "IER_MESSAGE", "IER_FILENAME", "IER_ROW_ID", "IER_HEADER", "IER_TIMESTAMP") AS 2 | select ier_id 3 | , ier_session 4 | , ier_message 5 | , ier_filename 6 | , ier_row_id 7 | , ier_header 8 | , ier_timestamp 9 | from import_errors; 10 | / 11 | -------------------------------------------------------------------------------- /src/views/p00051_vw.sql: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE FORCE VIEW "P00051_VW" ("TEXT", "TIS_ID") AS 2 | SELECT 3 | SUBSTR(hea_text, 0, 245) AS text, tis_id 4 | FROM 5 | template_import_status, 6 | template_header, 7 | r_header 8 | WHERE 9 | tis_tpl_id = tph_tpl_id 10 | AND 11 | tph_hea_id = hea_id 12 | AND 13 | hea_id not in (9996,9998,9999) 14 | ORDER BY 15 | tph_sort_order; 16 | / 17 | -------------------------------------------------------------------------------- /src/views/p00060_vw.sql: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE FORCE VIEW "P00060_VW" ("TEXT", "TPL_ID") AS 2 | SELECT 3 | SUBSTR(hea_text, 0, 245) AS text, tpl_id 4 | FROM 5 | r_templates, 6 | template_header, 7 | r_header 8 | WHERE 9 | tpl_id = tph_tpl_id 10 | AND 11 | tph_hea_id = hea_id 12 | AND 13 | hea_id not in (9996,9998,9999) 14 | ORDER BY 15 | tph_sort_order; 16 | / 17 | -------------------------------------------------------------------------------- /src/views/p01002_vw.sql: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE FORCE VIEW "P01002_VW" ("FIL_ID", "FIL_FILENAME", "FIL_IMPORT_EXPORT", "FIL_IMPORT_COMPLETED", "FIL_CREATED_ON", "FIL_CREATED_BY", "FIL_MODIFIED_ON", "FIL_MODIFIED_BY") AS 2 | SELECT 3 | fil_id, 4 | fil_filename, 5 | fil_import_export, 6 | fil_import_completed, 7 | fil_created_on, 8 | fil_created_by, 9 | fil_modified_on, 10 | fil_modified_by 11 | FROM 12 | files; 13 | / 14 | -------------------------------------------------------------------------------- /src/views/p01003_vw.sql: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE FORCE VIEW "P01003_VW" ("HEA_ID", "HEA_TEXT", "HEA_XLSX_WIDTH", "HEA_VAL_ID", "HEA_CREATED_ON", "HEA_CREATED_BY", "HEA_MODIFIED_ON", "HEA_MODIFIED_BY") AS 2 | SELECT 3 | hea_id, 4 | hea_text, 5 | hea_xlsx_width, 6 | hea_val_id, 7 | hea_created_on, 8 | hea_created_by, 9 | hea_modified_on, 10 | hea_modified_by 11 | FROM 12 | r_header 13 | WHERE 14 | hea_id not between 9996 and 9999; 15 | / 16 | -------------------------------------------------------------------------------- /src/views/p01004_vw.sql: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE FORCE VIEW "P01004_VW" ("TIS_ID", "TIS_TPL_ID", "TIS_PER_ID", "TIS_STS_ID", "TIS_FIL_ID", "TIS_ANNOTATION", "TIS_DEADLINE", "TIS_SHIPPING_STATUS", "TIS_INTERNAL_NOTE", "TIS_CREATED_ON", "TIS_CREATED_BY", "TIS_MODIFIED_ON", "TIS_MODIFIED_BY") AS 2 | SELECT 3 | tis_id, 4 | tis_tpl_id, 5 | tis_per_id, 6 | tis_sts_id, 7 | tis_fil_id, 8 | tis_annotation, 9 | tis_deadline, 10 | tis_shipping_status, 11 | tis_internal_note, 12 | tis_created_on, 13 | tis_created_by, 14 | tis_modified_on, 15 | tis_modified_by 16 | FROM 17 | template_import_status; 18 | / 19 | -------------------------------------------------------------------------------- /src/views/p01005_vw.sql: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE FORCE VIEW "P01005_VW" ("PER_ID", "PER_EMAIL", "PER_FIRSTNAME", "PER_LASTNAME", "PER_CREATED_ON", "PER_CREATED_BY", "PER_MODIFIED_ON", "PER_MODIFIED_BY") AS 2 | SELECT 3 | per_id, 4 | per_email, 5 | per_firstname, 6 | per_lastname, 7 | per_created_on, 8 | per_created_by, 9 | per_modified_on, 10 | per_modified_by 11 | FROM 12 | r_person; 13 | / 14 | -------------------------------------------------------------------------------- /src/views/p01006_vw.sql: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE FORCE VIEW "P01006_VW" ("SPS_ID", "SPS_NAME", "SPS_CREATED_ON", "SPS_CREATED_BY", "SPS_MODIFIED_ON", "SPS_MODIFIED_BY") AS 2 | SELECT 3 | sps_id, 4 | sps_name, 5 | sps_created_on, 6 | sps_created_by, 7 | sps_modified_on, 8 | sps_modified_by 9 | FROM 10 | r_shippingstatus; 11 | / 12 | -------------------------------------------------------------------------------- /src/views/p01007_vw.sql: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE FORCE VIEW "P01007_VW" ("STS_ID", "STS_NAME", "STS_CREATED_ON", "STS_CREATED_BY", "STS_MODIFIED_ON", "STS_MODIFIED_BY") AS 2 | SELECT 3 | sts_id, 4 | sts_name, 5 | sts_created_on, 6 | sts_created_by, 7 | sts_modified_on, 8 | sts_modified_by 9 | FROM 10 | r_status; 11 | / 12 | -------------------------------------------------------------------------------- /src/views/p01008_vw.sql: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE FORCE VIEW "P01008_VW" ("TPL_ID", "TPL_NAME", "TPL_DEADLINE", "TPL_NUMBER_OF_ROWS", "TPL_SSP_ID", "TPL_CREATED_ON", "TPL_CREATED_BY", "TPL_MODIFIED_ON", "TPL_MODIFIED_BY") AS 2 | SELECT 3 | tpl_id, 4 | tpl_name, 5 | tpl_deadline, 6 | tpl_number_of_rows, 7 | tpl_ssp_id, 8 | tpl_created_on, 9 | tpl_created_by, 10 | tpl_modified_on, 11 | tpl_modified_by 12 | FROM 13 | r_templates; 14 | / -------------------------------------------------------------------------------- /src/views/p01009_vw.sql: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE FORCE VIEW "P01009_VW" ("TID_ID", "TID_TPH_ID", "TID_TEXT", "TID_TIS_ID", "TID_ROW_ID", "TID_CREATED_ON", "TID_CREATED_BY", "TID_MODIFIED_ON", "TID_MODIFIED_BY") AS 2 | SELECT 3 | tid_id, 4 | tid_tph_id, 5 | tid_text, 6 | tid_tis_id, 7 | tid_row_id, 8 | tid_created_on, 9 | tid_created_by, 10 | tid_modified_on, 11 | tid_modified_by 12 | FROM 13 | template_import_data; 14 | / 15 | -------------------------------------------------------------------------------- /src/views/p01010_vw.sql: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE FORCE VIEW "P01010_VW" ("TPH_ID", "TPH_TPL_ID", "TPH_HEA_ID", "TPH_XLSX_BACKGROUND_COLOR", "TPH_XLSX_FONT_COLOR", "TPH_SORT_ORDER", "TPH_THG_ID", "TPH_CREATED_ON", "TPH_CREATED_BY", "TPH_MODIFIED_ON", "TPH_MODIFIED_BY") AS 2 | SELECT 3 | tph_id, 4 | tph_tpl_id, 5 | tph_hea_id, 6 | tph_xlsx_background_color, 7 | tph_xlsx_font_color, 8 | tph_sort_order, 9 | tph_thg_id, 10 | tph_created_on, 11 | tph_created_by, 12 | tph_modified_on, 13 | tph_modified_by 14 | FROM 15 | template_header; 16 | / 17 | -------------------------------------------------------------------------------- /src/views/p01011_vw.sql: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE FORCE VIEW "P01011_VW" ("DDS_ID", "DDS_HEA_ID", "DDS_TEXT", "DDS_CREATED_ON", "DDS_CREATED_BY", "DDS_MODIFIED_ON", "DDS_MODIFIED_BY") AS 2 | SELECT 3 | dds_id, 4 | dds_hea_id, 5 | dds_text, 6 | dds_created_on, 7 | dds_created_by, 8 | dds_modified_on, 9 | dds_modified_by 10 | FROM 11 | r_dropdowns; 12 | / 13 | -------------------------------------------------------------------------------- /src/views/p01012_vw.sql: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE FORCE VIEW "P01012_VW" ("THG_ID", "THG_TEXT", "THG_XLSX_BACKGROUND_COLOR", "THG_XLSX_FONT_COLOR", "THG_CREATED_ON", "THG_CREATED_BY", "THG_MODIFIED_ON", "THG_MODIFIED_BY") AS 2 | SELECT 3 | thg_id, 4 | thg_text, 5 | thg_xlsx_background_color, 6 | thg_xlsx_font_color, 7 | thg_created_on, 8 | thg_created_by, 9 | thg_modified_on, 10 | thg_modified_by 11 | FROM 12 | template_header_group; 13 | / 14 | -------------------------------------------------------------------------------- /src/views/p01013_vw.sql: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE FORCE VIEW "P01013_VW" ("THV_ID", "THV_TPH_ID", "THV_FORMULA1", "THV_FORMULA2", "THV_CREATED_ON", "THV_CREATED_BY", "THV_MODIFIED_ON", "THV_MODIFIED_BY") AS 2 | SELECT 3 | thv_id, 4 | thv_tph_id, 5 | thv_formula1, 6 | thv_formula2, 7 | thv_created_on, 8 | thv_created_by, 9 | thv_modified_on, 10 | thv_modified_by 11 | FROM 12 | template_header_validations; 13 | / -------------------------------------------------------------------------------- /src/views/p01014_vw.sql: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE FORCE VIEW "P01014_VW" ("TPA_ID","TPA_TPL_ID","TPA_DAYS","TPA_ENABLED","TPA_CREATED_ON","TPA_CREATED_BY","TPA_MODIFIED_ON","TPA_MODIFIED_BY") AS 2 | SELECT 3 | tpa_id, 4 | tpa_tpl_id, 5 | tpa_days, 6 | tpa_enabled, 7 | tpa_created_on, 8 | tpa_created_by, 9 | tpa_modified_on, 10 | tpa_modified_by 11 | FROM 12 | template_automations; 13 | / 14 | 15 | -------------------------------------------------------------------------------- /src/views/p01015_vw.sql: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE FORCE VIEW "P01015_VW" ("SSP_ID","SSP_NAME","SSP_HASH_VALUE","SSP_SALT_VALUE","SSP_CREATED_ON","SSP_CREATED_BY","SSP_MODIFIED_ON","SSP_MODIFIED_BY") AS 2 | SELECT 3 | ssp_id, 4 | ssp_name, 5 | ssp_hash_value, 6 | ssp_salt_value, 7 | ssp_created_on, 8 | ssp_created_by, 9 | ssp_modified_on, 10 | ssp_modified_by 11 | FROM 12 | r_spreadsheet_protection; 13 | / --------------------------------------------------------------------------------