Banner General Release Guide. Release June 2017

Size: px
Start display at page:

Download "Banner General Release Guide. Release June 2017"

Transcription

1 Banner General Release Guide Release June 2017

2 Notices Notices 2017 Ellucian. Contains confidential and proprietary information of Ellucian and its subsidiaries. Use of these materials is limited to Ellucian licensees, and is subject to the terms and conditions of one or more written license agreements between Ellucian and the licensee in question. In preparing and providing this publication, Ellucian is not rendering legal, accounting, or other similar professional services. Ellucian makes no claims that an institution's use of this publication or the software for which it is provided will guarantee compliance with applicable federal or state laws, rules, or regulations. Each organization should seek legal, accounting, and other similar professional services from competent providers of the organization's own choosing. Ellucian 2003 Edmund Halley Drive Reston, VA United States of America 2017 Ellucian. Confidential & Proprietary 2

3 Contents Contents Introduction... 5 Database changes to support Page Builder...6 New tables...6 CSS Table (CSS)...6 Page Table (PAGE)... 7 Page Role Table (PAGE_ROLE)...8 Requestmap Table (REQUESTMAP)... 9 Virtual Domain Table (VIRTUAL_DOMAIN) Virtual Domain Role Table (VIRTUAL_DOMAIN_ROLE) New scripts...13 Database scripts to support Text Manager New tables...15 Code templates for Generating Multi lingual views Table (GMBCODE)...15 GIT Branches Table (GMBGBRA)...16 GIT Projects Table (GMBGPRO)...16 NLS Mapping between Oracle and Java values Table (GMBJNLS) GIT download and upload details Table (GMBLDDB)...18 Product and Repository Path Table (GMBLPRD) Fuzzy Matching Table (GMBNGRM)...20 Project Modules Table (GMBPROJ)...20 Security Group Details Table (GMBSGRP)...21 Object Details Table (GMBSOBJ) Property Value Table (GMBSTRG)...22 DB Catalog View Synonyms Table (GMBSYLN)...23 Project User Preference Table (GMBUSRP)...24 Properties read from Database Table (GMRDCOL)...25 GIT Published Project Logs Table (GMRGLOG) Project Modules Table (GMRMDUL)...27 Project Configuration Table (GMRPCFG) Metadata Table for Module Objects (GMRPOBJ) Pre Translate Options Table (GMRPRTO) Project Translation History Table (GMRSHST) Fuzzy Matching Logic Table (GMRSNGR)...33 Property Translation Table (GMRSPRP)...33 Security Group Details Mapping Table (GMRSRGP)...35 User To Group Mapping Table (GMRSUSR) File Select Dialog Table (GMTFILE) Fuzzy Logic Table (GMTPGRM) Language Definitions Table (GTVLANG) GIT Repositories Table (GTVPROD)...38 Translation Status Table (GTVSTAT) New scripts Ellucian. Confidential & Proprietary 3

4 Contents Modified scripts Database scripts to support 9x Self-Service configuration...45 New tables...45 Banner Application Table (GUBAPPL) Banner Self-Service Application Page Table (GURCTLEP)...46 Banner Self-Service Page Roles Table (GURAPPR)...47 User Configuration Table (GURUCFG) Modified tables Main Configuration Table (GUROCFG)...49 Banner Configuration Tables examples New views Resolutions Ellucian. Confidential & Proprietary 4

5 Introduction Introduction Introduction This release guide provides an overview of the Banner General release. Banner General release includes database changes to support Page Builder, and 9x Self-Service configuration. Refer to the knowledge article number to know more about Banner 9 Self-Service application configurations. This knowledge article gives information about using the new database configurations instead of using application configuration files. The article also gives some examples and patterns to help users understand how to move the configurations to the database table Ellucian. Confidential & Proprietary 5

6 Database changes to support Page Builder Database changes to support Page Builder Database changes to support Page Builder The Banner General release contains the scripts to build the Page Builder tables. Before this release, these scripts were included with the Page Builder installation. This change was made to standardize the table scripts and move them to the Banner General product area, making them available to all Banner General clients. This change will not have any impact on existing Page Builder clients. The Page Builder database scripts are re-runnable and will skip creating/updating of database objects if they already exist. After installing Banner General 8.9.2, all clients including non-page Builder and 8x only clients will see the following new database objects created under the SSPBMGR schema. CSS PAGE PAGE_ROLE REQUESTMAP VIRTUAL_DOMAIN VIRTUAL_DOMAIN_ROLE These new database objects are used only by the Banner Extensibility Self-Service application (only Page Builder) and are not referenced by any other Banner 8 or Banner 9 Self-Service applications or Banner Administrative applications. For more information about Page Builder, refer to the Banner Extensibility Handbook currently available in Ellucian Support Center. This satisfies enhancement CR New tables The following tables are new for this release. CSS Table (CSS) This table stores the Page Builder CSS code available for import in pages. CONSTANT_NAME NOT NULL VARCHAR2(60) Name of CSS. CSS NOT NULL CLOB CSS code. DESCRIPTION NULL VARCHAR2 (255) Description of CSS Ellucian. Confidential & Proprietary 6

7 Database changes to support Page Builder ID NOT NULL NUMBER(19,0) ID generated from sequence. VERSION NOT NULL NUMBER(19,0) Version. CSS_DATE_CREATED NULL TIMESTAMP(6) Date created. CSS_LAST_UPDATED NULL TIMESTAMP(6) Date CSS_FILE_TIMESTAMP NULL TIMESTAMP(6) Timestamp of file - used with export and import. CSS_ACTIVITY_DATE NULL DATE Date that record CSS_USER_ID NULL VARCHAR (30) The user ID of CSS_SURROGATE_ID NULL NUMBER(19) The surrogate ID for this CSS_VERSION NULL NUMBER(19) Optimistic lock CSS_DATA_ORIGIN NULL VARCHAR (30) Source system that CSS_VPDI_CODE NULL VARCHAR (30) Multi-Entity Page Table (PAGE) This table stores the pages created using the Page Builder application. CONSTANT_NAME NOT NULL VARCHAR2(60) Name of page. MODEL_VIEW NOT NULL CLOB Page model. COMPILED_VIEW NULL CLOB Compiled page view. COMPILED_CONTROLLER NULL CLOB Compiled page controller Ellucian. Confidential & Proprietary 7

8 Database changes to support Page Builder ID NOT NULL NUMBER(19,0) ID generated by sequence. VERSION NOT NULL NUMBER(19,0) Version. EXTENDS_PAGE_ID NULL NUMBER(19,0) Page being extended aka the base page for this page. DATE_CREATED NULL TIMESTAMP(6) Date created. PAGE_ACTIVITY_DATE NULL DATE Date that record PAGE_USER_ID NULL VARCHAR (30) The user ID of PAGE_SURROGATE_ID NULL NUMBER(19) The surrogate ID for this PAGE_VERSION NULL NUMBER(19) Optimistic lock PAGE_DATA_ORIGIN NULL VARCHAR (30) Source system that PAGE_VPDI_CODE NULL VARCHAR (30) Multi-Entity Page Role Table (PAGE_ROLE) This table stores the roles associated with the pages created using the Page Builder application. ID NOT NULL NUMBER(19,0) ID generated by sequence. PAGE_ID NOT NULL NUMBER(19,0) Pagent page ID. VERSION NOT NULL NUMBER(19,0) Version. ALLOW NOT NULL NUMBER(1,0) Role is allowed to view the page 0 for False, 1 for True Ellucian. Confidential & Proprietary 8

9 Database changes to support Page Builder ROLE_NAME NOT NULL VARCHAR2(30) Role name - In Banner, this references a Web Tailor role. VERSION NOT NULL NUMBER(19,0) Version. EXTENDS_PAGE_ID NULL NUMBER(19,0) Page being extended aka the base page for this page. DATE_CREATED NULL TIMESTAMP(6) Date created. PAGE_ROLE_ACTIVITY_DATE NULL DATE Date that record PAGE_ROLE_USER_ID NULL VARCHAR (30) The user ID of PAGE_ROLE_SURROGATE_ID NULL NUMBER(19) The surrogate ID for this PAGE_ROLE_VERSION NULL NUMBER(19) Optimistic lock PAGE_ROLE_DATA_ORIGIN NULL VARCHAR (30) Source system that PAGE_ROLE_VPDI_CODE NULL VARCHAR (30) Multi-Entity Requestmap Table (REQUESTMAP) This table stores the requestmap data for Spring with SecurityConfigType.Requestmap. ID NOT NULL NUMBER(19,0) ID generated by sequence. VERSION NOT NULL NUMBER(19,0) Version. CONFIG_ATTRIBUTE NOT NULL VARCHAR2(4000) Spring security attributes for URL Ellucian. Confidential & Proprietary 9

10 Database changes to support Page Builder URL NOT NULL VARCHAR2(255) URL secured with configured attributes. REQUESTMAP_ACTIVITY_DATE NULL DATE Date that record REQUESTMAP_USER_ID NULL VARCHAR (30) The user ID of REQUESTMAP_SURROGATE_ID NULL NUMBER(19) The surrogate ID for this REQUESTMAP_VERSION NULL NUMBER(19) Optimistic lock REQUESTMAP_DATA_ORIGIN NULL VARCHAR (30) Source system that REQUESTMAP_VPDI_CODE NULL VARCHAR (30) Multi-Entity Virtual Domain Table (VIRTUAL_DOMAIN) This table stores the virtual domains created using the Page Builder application. CODE_GET NOT NULL CLOB Statement to retrieve a collection of records. To support update and delete, a record should have an ID field. CODE_DELETE NULL CLOB Statement to delete record identified by ID. CODE_POST NULL CLOB Statement to create a new 2017 Ellucian. Confidential & Proprietary 10

11 Database changes to support Page Builder CODE_PUT NULL CLOB Statement to modify record identified by ID. ID NOT NULL NUMBER(19,0) ID generated by sequence. TYPE_OF_CODE NULL VARCHAR2(1) Type of code. S for SQL. Other code type is currently not implemented. DATA_SOURCE NULL VARCHAR2(1) Data Source for this service. B for Banner is default. SERVICE_NAME NOT NULL VARCHAR2(60) Restful service name defined in this VIRTUAL_DOMAIN_ACTIVITY_DATE NULL DATE Date that record VIRTUAL_DOMAIN_USER_ID NULL VARCHAR (30) The user ID of VIRTUAL_DOMAIN_SURROGATE_ID NULL NUMBER(19) The surrogate ID for this VIRTUAL_DOMAIN_VERSION NULL NUMBER(19) Optimistic lock VIRTUAL_DOMAIN_DATA_ORIGIN NULL VARCHAR (30) Source system that VIRTUAL_DOMAIN_VPDI_CODE NULL VARCHAR (30) Multi-Entity Virtual Domain Role Table (VIRTUAL_DOMAIN_ROLE) This table stores the virtual domain roles created using the Page Builder application. ID NOT NULL NUMBER(19,0) ID generated by sequence Ellucian. Confidential & Proprietary 11

12 Database changes to support Page Builder VERSION NOT NULL NUMBER(19,0) Version. ALLOW_DELETE NOT NULL NUMBER(1,0) Role is allowed to delete from the virtual domain. 0 for false, 1 for true. ALLOW_GET NOT NULL NUMBER(1,0) Role is allowed to get from the virtual domain. 0 for false, 1 for true. CODE_DELETE NULL CLOB Statement to delete record identified by ID. CODE_POST NULL CLOB Statement to create a new CODE_PUT NULL CLOB Statement to modify record identified by ID. VD_ROLE_ACTIVITY_DATE NULL DATE Date that record VD_ROLE_USER_ID NULL VARCHAR (30) The user ID of VD_ROLE_SURROGATE_ID NULL NUMBER(19) The surrogate ID for this VD_ROLE_VERSION NULL NUMBER(19) Optimistic lock VD_ROLE_DATA_ORIGIN NULL VARCHAR (30) Source system that VD_ROLE_VPDI_CODE NULL VARCHAR (30) Multi-Entity 2017 Ellucian. Confidential & Proprietary 12

13 Database changes to support Page Builder New scripts The following scripts are new for this release. DDL create_pb_user.sql create_pb_role.sql pb_role_set_password.sql css_080902_01.sql css_080902_02.sql css_080902_03.sql css_080902_04.sql page_080902_01.sql page_080902_02.sql page_080902_04.sql page_080902_05.sql page_role_080902_01.sql page_role_080902_02.sql page_role_080902_03.sql page_role_080902_04.sql page_role_080902_05.sql page_role_080902_06.sql requestmap_080902_01.sql requestmap_080902_02.sql requestmap_080902_03.sql requestmap_080902_04.sql virtual_domain_080902_01.sql virtual_domain_080902_02.sql virtual_domain_080902_03.sql virtual_domain_080902_04.sql virtual_domain_role_080902_01.sql virtual_domain_role_080902_02.sql virtual_domain_role_080902_03.sql virtual_domain_role_080902_04.sql virtual_domain_role_080902_05.sql 2017 Ellucian. Confidential & Proprietary 13

14 Database changes to support Page Builder virtual_domain_role_080902_06.sql gos_hibernate_seq.sql 2017 Ellucian. Confidential & Proprietary 14

15 Database scripts to support Text Manager Database scripts to support Text Manager The Banner General release contains the scripts to build the database tables used by Text Manager. For more information on the Text Manager pages and their functionality, refer to the Banner General Release Guide and the Banner General Text Manager Handbook which will be available in the Ellucian Support Center from June 30, For information on the field descriptions of these pages, refer to the Banner General Online Help. This satisfies enhancement CR New tables The following tables are new for this release. Code templates for Generating Multi lingual views Table (GMBCODE) This table stores the code templates for generating multilingual views. GMBCODE_NAME NOT NULL VARCHAR2(30) The name for code template. GMBCODE_TEXT NOT NULL VARCHAR2(2048) The content of the code template. GMBCODE_USER_ID NOT NULL VARCHAR2(30) The user ID of GMBCODE_ACTIVITY_DATE NOT NULL DATE Date that record GMBCODE_DESC NULL VARCHAR2(256) The description of code template. GMBCODE_VERSION NULL NUMBER(19) Optimistic lock GMBCODE_SURROGATE_ID NULL NUMBER(19) The surrogate ID for this 2017 Ellucian. Confidential & Proprietary 15

16 GMBCODE_DATA_ORIGIN NOT NULL VARCHAR2(30) Source system that GMBCODE_VPDI_CODE NOT NULL VARCHAR2(6) Multi-Entity GIT Branches Table (GMBGBRA) This table holds GIT branches. GMBGBRA_BRANCH NOT NULL VARCHAR2(512) The GIT branch. GMBGBRA_USER_ID NOT NULL VARCHAR2(30) The user ID of GMBGBRA_ACTIVITY_DATE NOT NULL DATE Date that record GMBGBRA_VERSION NULL NUMBER(19) Optimistic lock GMBGBRA_SURROGATE_ID NULL NUMBER(19) The surrogate ID for this GMBGBRA_DATA_ORIGIN NOT NULL VARCHAR2(30) Source system that GMBGBRA_VPDI_CODE NOT NULL VARCHAR2(6) Multi-Entity GIT Projects Table (GMBGPRO) This table stores the details of the projects in GIT. GMBGPRO_PROD_CODE NOT NULL VARCHAR2(50) The code for GIT project. GMBGPRO_PROJECT NOT NULL VARCHAR2(15) The project name Ellucian. Confidential & Proprietary 16

17 GMBGPRO_LOC_PROD_CDE NOT NULL VARCHAR2(100) The code for GIT project location. GMBGPRO_REPO_PATH NOT NULL VARCHAR2(200) The relative path from the GIT repository for the project. GMBGPRO_USER_ID NOT NULL VARCHAR2(30) The user ID of GMBGPRO_ACTIVITY_DATE NOT NULL DATE Date that record GMBGPRO_DESC NULL VARCHAR2(200) The description for the project. GMBGPRO_VERSION NULL NUMBER(19) Optimistic lock GMBGPRO_SURROGATE_ID NULL NUMBER(19) The surrogate ID for this GMBGPRO_DATA_ORIGIN NOT NULL VARCHAR2(30) Source system that GMBGPRO_VPDI_CODE NOT NULL VARCHAR2(6) Multi-Entity NLS Mapping between Oracle and Java values Table (GMBJNLS) This table holds NLS mapping between Oracle and Java values. GMBJNLS_PARAM NOT NULL VARCHAR2(30) The param. GMBJNLS_ORA_VALUE NOT NULL VARCHAR2(30) The Oracle NLS code. GMBJNLS_USER_ID NOT NULL VARCHAR2(30) The user ID of 2017 Ellucian. Confidential & Proprietary 17

18 GMBJNLS_ACTIVITY_DATE NOT NULL DATE Date that record GMBJNLS_JAVA_VALUE NULL VARCHAR2(30) The JAVA equivalent of Oracle NLS code. GMBJNLS_VERSION NULL VARCHAR2(30) Optimistic lock GMBJNLS_SURROGATE_ID NULL NUMBER(19) The surrogate ID for this GMBJNLS_DATA_ORIGIN NOT NULL VARCHAR2(30) Source system that GMBJNLS_VPDI_CODE NOT NULL VARCHAR2(6) Multi-Entity GIT download and upload details Table (GMBLDDB) This table tracks GIT download and upload details. GMBLDDB_BRANCH NOT NULL VARCHAR2(512) The GIT Branch. GMBLDDB_PROD_CODE NOT NULL VARCHAR2(50) The GIT project code. GMBLDDB_GIT_URL NOT NULL VARCHAR2(200) The GIT download location. GMBLDDB_LOAD_COUNT NOT NULL NUMBER (3,0) The GIT download count. GMBLDDB_USER_ID NOT NULL VARCHAR2(30) The user ID of GMBLDDB_ACTIVITY_DATE NOT NULL DATE Date that record GMBLDDB_PUBLISHING_USER NOT NULL VARCHAR2(50) The user publishing to GIT Ellucian. Confidential & Proprietary 18

19 GMBLDDB_VERSION NULL NUMBER(19) Optimistic lock GMBLDDB_SURROGATE_ID NULL NUMBER(19) The surrogate ID for this GMBLDDB_DATA_ORIGIN NOT NULL VARCHAR2(30) Source system that GMBLDDB_VPDI_CODE NOT NULL VARCHAR2(6) Multi-Entity Product and Repository Path Table (GMBLPRD) This table stores the localized product and repository path details. GMBLPRD_PROD_CODE NOT NULL VARCHAR2(50) The code for GIT project. GMBLPRD_LOC_CODE NOT NULL VARCHAR2(100) The git location code. GMBLPRD_REPO_PATH NOT NULL VARCHAR2(200) The git repository path. GMBLPRD_USER_ID NOT NULL VARCHAR2(30) The user ID of GMBLPRD_ACTIVITY_DATE NOT NULL DATE Date that record GMBLPRD_LOC_DESC VARCHAR2(200) The location description. GMBLPRD_VERSION NULL NUMBER(19) Optimistic lock GMBLPRD_SURROGATE_ID NULL NUMBER(19) The surrogate ID for this GMBLPRD_DATA_ORIGIN NOT NULL VARCHAR2(30) Source system that 2017 Ellucian. Confidential & Proprietary 19

20 GMBLPRD_VPDI_CODE NOT NULL VARCHAR2(6) Multi-Entity Fuzzy Matching Table (GMBNGRM) Table for fuzzy matching. GMBNGRM_GRAM_STR NOT NULL VARCHAR2(24) The NGRAM string. GMBNGRM_NGRCOUNT NOT NULL NUMBER(10) The occurrence of the NGRAM string. Project Modules Table (GMBPROJ) This table stores the projects. GMBPROJ_PROJECT NOT NULL VARCHAR2(15) The name of the project. GMBPROJ_USER_ID NOT NULL VARCHAR2(30) The user ID of GMBPROJ_ACTIVITY_DATE NOT NULL DATE Date that record GMBPROJ_DESC NULL VARCHAR2(200) The description of the project. GMBPROJ_OWNER NOT NULL VARCHAR2(30) The owner of the project. GMBPROJ_VERSION NULL NUMBER(19) Optimistic lock GMBPROJ_SURROGATE_ID NULL NUMBER(19) The surrogate ID for this 2017 Ellucian. Confidential & Proprietary 20

21 GMBPROJ_DATA_ORIGIN NULL VARCHAR2(30) Source system that GMBPROJ_VPDI_CODE NOT NULL VARCHAR2(6) Multi-Entity Security Group Details Table (GMBSGRP) This table stores security group details. GMBSGRP_GRPNAME NOT NULL VARCHAR2(20) The name of the security group. GMBSGRP_USER_ID NOT NULL VARCHAR2(30) The user ID of GMBSGRP_ACTIVITY_DATE NOT NULL DATE Date that record GMBSGRP_GRPDESC NOT NULL VARCHAR2(90) The security group description. GMBSGRP_GRPROLE NOT NULL VARCHAR2(30) The role for the security group. GMBSGRP_VERSION NULL NUMBER(19) Optimistic lock GMBSGRP_SURROGATE_ID NULL NUMBER(19) The surrogate ID for this GMBSGRP_DATA_ORIGIN NOT NULL VARCHAR2(30) Source system that GMBSGRP_VPDI_CODE NOT NULL VARCHAR2(6) Multi-Entity 2017 Ellucian. Confidential & Proprietary 21

22 Object Details Table (GMBSOBJ) This table stores object details controlled by security group/roles. GMBSOBJ_OBJNAME NOT NULL VARCHAR2(30) The Form/object names. GMBSOBJ_USER_ID NOT NULL VARCHAR2(30) The user ID of GMBSOBJ_ACTIVITY_DATE NOT NULL DATE Date that record GMBSOBJ_DESC NOT NULL VARCHAR2(90) The description of the object. GMBSOBJ_VERSION NULL NUMBER(19) Optimistic lock GMBSOBJ_SURROGATE_ID NULL NUMBER(19) The surrogate ID for this GMBSOBJ_DATA_ORIGIN NOT NULL VARCHAR2(30) Source system that GMBSOBJ_VPDI_CODE NOT NULL VARCHAR2(6) Multi-Entity Property Value Table (GMBSTRG) This table stores the value of the properties. GMBSTRG_STRCODE NOT NULL NUMBER (12,0) The code for the property value. GMBSTRG_USER_ID NOT NULL VARCHAR2(30) The user ID of 2017 Ellucian. Confidential & Proprietary 22

23 GMBSTRG_ACTIVITY_DATE NOT NULL DATE Date that record GMBSTRG_STRING NOT NULL VARCHAR2(2048) The value of the property. GMBSTRG_USUBSTRING NOT NULL VARCHAR2(30) The USUB of the property. GMBSTRG_VERSION NULL NUMBER(19) Optimistic lock GMBSTRG_SURROGATE_ID NULL NUMBER(19) The surrogate ID for this GMBSTRG_DATA_ORIGIN NOT NULL VARCHAR2(30) Source system that GMBSTRG_VPDI_CODE NOT NULL VARCHAR2(6) Multi-Entity DB Catalog View Synonyms Table (GMBSYLN) This table contains a list of synonyms for DB catalog views on the local or a remote database. The synonyms are automatically created and dropped by the dblink package. GMBSYLN_SYNONYM_NAME NOT NULL VARCHAR2(30) The synonym name. GMBSYLN_TABLE_NAME NOT NULL VARCHAR2(30) The table name. GMBSYLN_LINKED NOT NULL VARCHAR2(1) Indicator whether or not the object is on a linked DB or local. GMBSYLN_USER_ID NOT NULL VARCHAR2(30) The user ID of GMBSYLN_ACTIVITY_DATE NOT NULL DATE Date that record 2017 Ellucian. Confidential & Proprietary 23

24 GMBSYLN_TABLE_OWNER NOT NULL VARCHAR2(30) The owner of the table. GMBSYLN_IS_TAB NOT NULL VARCHAR2(1) To indicate the object is a table. GMBSYLN_VERSION NULL NUMBER(19) Optimistic lock GMBSYLN_SURROGATE_ID NULL NUMBER(19) The surrogate ID for this GMBSYLN_DATA_ORIGIN NOT NULL VARCHAR2(30) Source system that GMBSYLN_VPDI_CODE NOT NULL VARCHAR2(6) Multi-Entity Project User Preference Table (GMBUSRP) This table stores user preferences for the project. GMBUSRP_USER NOT NULL VARCHAR2(30) ALL or Oracle User if user specific. GMBUSRP_PROJECT NOT NULL VARCHAR2(15) ALL or Project code if project specific. GMBUSRP_FNAME NOT NULL VARCHAR2(64) Name of file (if used to replace ini file data), form or topic. GMBUSRP_ITEM NOT NULL VARCHAR2(64) Item code. GMBUSRP_USER_ID NOT NULL VARCHAR2(30) The user ID of GMBUSRP_ACTIVITY_DATE NOT NULL DATE Date that record GMBUSRP_LINE NOT NULL NUMBER(38,0) Optional sort order or line number Ellucian. Confidential & Proprietary 24

25 GMBUSRP_TEXT NOT NULL VARCHAR2(2000) Textual data. GMBUSRP_VERSION NULL NUMBER(19) Optimistic lock GMBUSRP_SURROGATE_ID NULL NUMBER(19) The surrogate ID for this GMBUSRP_DATA_ORIGIN NOT NULL VARCHAR2(30) Source system that GMBUSRP_VPDI_CODE NOT NULL VARCHAR2(6) Multi-Entity Properties read from Database Table (GMRDCOL) This table contains properties read from database tables. GMRDCOL_PROJECT NOT NULL VARCHAR2(15) The project name. GMRDCOL_OWNER NOT NULL VARCHAR2(30) The schema owner of the source database. GMRDCOL_TABLE_NAME NOT NULL VARCHAR2(30) The table from which the properties will be loaded. GMRDCOL_COLUMN_NAME NOT NULL VARCHAR2(30) The column name from which the properties will be loaded. GMRDCOL_PRIMARY_KEY NOT NULL VARCHAR2(512) The primary key defined on the table. GMRDCOL_LANG_CODE NOT NULL VARCHAR2(20) The language code of the property. GMRDCOL_STR_CODE NOT NULL NUMBER(12,0) The identifier of the property value. GMRDCOL_STAT_CODE NOT NULL NUMBER(2,0) The translation status of the property Ellucian. Confidential & Proprietary 25

26 GMRDCOL_USER_ID NOT NULL VARCHAR2(30) The user ID of GMRDCOL_ACTIVITY_DATE NOT NULL DATE Date that record GMRDCOL_PRE_STR NULL VARCHAR2(20) The text prefix characters for the property. GMRDCOL_PST_STR NULL VARCHAR2(20) The text postfix characters for the property. GMRDCOL_MAX_LEN NULL NUMBER(10,0) The maximum width of the column definition in the table. GMRDCOL_NOTE NULL VARCHAR2(2048) The user notes for the translation. GMRDCOL_USERDEF_PK NULL VARCHAR2(512) The user defined primary key for the data extracted from the table. GMRDCOL_VERSION NULL NUMBER(19) Optimistic lock GMRDCOL_SURROGATE_ID NULL NUMBER(19) The surrogate ID for this GMRDCOL_DATA_ORIGIN NOT NULL VARCHAR2(30) Source system that GMRDCOL_VPDI_CODE NOT NULL VARCHAR2(6) Multi-Entity GIT Published Project Logs Table (GMRGLOG) This table stores the published (pushed to GIT) details. GMRGLOG_PROJECT NOT NULL VARCHAR2(15) The project name Ellucian. Confidential & Proprietary 26

27 GMRGLOG_LANG_CODE NOT NULL VARCHAR2(20) The language code. GMRGLOG_USER_ID NOT NULL VARCHAR2(30) The user ID of GMRGLOG_ACTIVITY_DATE NOT NULL DATE Date that record GMRGLOG_VERSION NULL NUMBER(19) Optimistic lock GMRGLOG_SURROGATE_ID NULL NUMBER(19) The surrogate ID for this GMRGLOG_DATA_ORIGIN NOT NULL VARCHAR2(30) Source system that GMRGLOG_VPDI_CODE NOT NULL VARCHAR2(6) Multi-Entity Project Modules Table (GMRMDUL) This table contains project modules. GMRMDUL_PROJECT NOT NULL VARCHAR2(15) The project name. GMRMDUL_MODULE_NAME NOT NULL VARCHAR2(256) The module name. GMRMDUL_MODULE_TYPE NOT NULL VARCHAR2(4) The module type. GMRMDUL_LANG_CODE NOT NULL VARCHAR2(20) The target language. GMRMDUL_SRC_LANG_CODE NOT NULL VARCHAR2(20) The source language. GMRMDUL_USER_ID NOT NULL VARCHAR2(30) The user ID of 2017 Ellucian. Confidential & Proprietary 27

28 GMRMDUL_ACTIVITY_DATE NOT NULL DATE Date that record GMRMDUL_MODE_DESC NULL VARCHAR2(200) The module description. GMRMDUL_DATASOURCE NULL VARCHAR2(255) The source for the module. GMRMDUL_VERSION NULL NUMBER(19) Optimistic lock GMRMDUL_SURROGATE_ID NULL NUMBER(19) The surrogate ID for this GMRMDUL_DATA_ORIGIN NOT NULL VARCHAR2(30) Source system that GMRMDUL_VPDI_CODE NOT NULL VARCHAR2(6) Multi-Entity Project Configuration Table (GMRPCFG) This table stores project related configuration. GMRPCFG_PROJECT NOT NULL VARCHAR2(15) The project name. GMRPCFG_KEY NOT NULL VARCHAR2(50) The project configuration key. GMRPCFG_VALUE NOT NULL VARCHAR2(256) The project configuration value. GMRPCFG_USER_ID NOT NULL VARCHAR2(30) The user ID of GMRPCFG_ACTIVITY_DATE NOT NULL DATE Date that record GMRPCFG_DESC NULL VARCHAR2(100) The project configuration description Ellucian. Confidential & Proprietary 28

29 GMRPCFG_VERSION NULL NUMBER(19) Optimistic lock GMRPCFG_SURROGATE_ID NULL NUMBER(19) The surrogate ID for this GMRPCFG_DATA_ORIGIN NOT NULL VARCHAR2(30) Source system that GMRPCFG_VPDI_CODE NOT NULL VARCHAR2(6) Multi-Entity Metadata Table for Module Objects (GMRPOBJ) This table stores metadata for module objects. GMRPOBJ_PROJECT NOT NULL VARCHAR2(15) The project name. GMRPOBJ_MODULE_NAME NOT NULL VARCHAR2(256) The module name. GMRPOBJ_MODULE_TYPE NOT NULL VARCHAR2(4) The module type. GMRPOBJ_PARENT_TYPE NOT NULL NUMBER(5,0) The parent type. GMRPOBJ_PARENT_NAME NOT NULL VARCHAR2(256) The parent name. GMRPOBJ_OBJECT_TYPE NOT NULL VARCHAR2(20) The object type. GMRPOBJ_OBJECT_NAME NOT NULL VARCHAR2(30) The object name. GMRPOBJ_LANG_CODE NOT NULL DATE The source language code for the module. GMRPOBJ_USER_ID NOT NULL VARCHAR2(30) The user ID of GMRPOBJ_ACTIVITY_DATE NULL DATE Date that record GMRPOBJ_CONTEXT_TYPE NOT NULL VARCHAR2(30) The context type for the object context. GMRPOBJ_CONTEXT NOT NULL VARCHAR2(1024) The context for the object Ellucian. Confidential & Proprietary 29

30 GMRPOBJ_ATTRIBUTES NOT NULL VARCHAR2(2048) The attributes of the module object. GMRPOBJ_VERSION NULL NUMBER(19) Optimistic lock GMRPOBJ_SURROGATE_ID NULL NUMBER(19) The surrogate ID for this GMRPOBJ_DATA_ORIGIN NOT NULL VARCHAR2(30) Source system that GMRPOBJ_VPDI_CODE NOT NULL VARCHAR2(6) Multi-Entity Pre Translate Options Table (GMRPRTO) This table stores pre translate options for the project. GMRPRTO_PRIORITY NOT NULL NUMBER(2) The Priority (more a sequence number, 1 is tried first, 2 second etc.). GMRPRTO_USER_ID NOT NULL VARCHAR2(30) The user ID of GMRPRTO_ACTIVITY_DATE NOT NULL DATE Date that record GMRPRTO_TYPE NOT NULL VARCHAR2(1) Pre translate option types ( U for User, B for TDB First, C for Copy Project, I for Internet, N for Any). GMRPRTO_PROJECT NOT NULL VARCHAR2(15) Match, Any or a specific project code (Any and Match potentially clashes with 2017 Ellucian. Confidential & Proprietary 30

31 project names - would be better to use characters not allowed in project name - for example, * and =). GMRPRTO_MODTYPE NOT NULL VARCHAR2(1) B for TDB, M for match on module type. GMRPRTO_MATCH_MODN NOT NULL VARCHAR2(1) Y to match module name, N to ignore. GMRPRTO_MATCH_GID NOT NULL VARCHAR2(1) Y to match parent name and type, N to ignore. GMRPRTO_MATCH_SID NOT NULL VARCHAR2(1) Y to match object name, Type and object property; N to ignore. GMRPRTO_COPY_IND NOT NULL VARCHAR2(1) Copy Status. GMRPRTO_HIST_IND NOT NULL VARCHAR2(1) Use translations from Translation history (GMRSPHST). GMRPRTO_PART_IND NOT NULL VARCHAR2(1) Translate by parts (try to find translations for parts of the sentence - this is expensive!). GMRPOBJ_VERSION NULL NUMBER(19) Optimistic lock GMRPOBJ_SURROGATE_ID NULL NUMBER(19) The surrogate ID for this GMRPOBJ_DATA_ORIGIN NOT NULL VARCHAR2(30) Source system that GMRPOBJ_VPDI_CODE NOT NULL VARCHAR2(6) Multi-Entity 2017 Ellucian. Confidential & Proprietary 31

32 Project Translation History Table (GMRSHST) This table stores property translation history. GMRSHST_PROJECT NOT NULL VARCHAR2(15) The project name. GMRSHST_MODULE_NAME NOT NULL VARCHAR2(256) The module name. GMRSHST_MODULE_TYPE NOT NULL VARCHAR2(4) The module type. GMRSHST_LANG_CODE NOT NULL VARCHAR2(20) The language code. GMRSHST_PARENT_TYPE NOT NULL NUMBER(5,0) The parent type. GMRSHST_PARENT_NAME NOT NULL VARCHAR2(256) The parent name. GMRSHST_OBJECT_TYPE NOT NULL NUMBER(5,0) The object type. GMRSHST_OBJECT_NAME NOT NULL VARCHAR2(256) The object name. GMRSHST_OBJECT_PROP NOT NULL NUMBER(4,0) The object property name. GMRSHST_STAT_CODE NOT NULL NUMBER(2,0) The translation status. GMRSHST_USER_ID NOT NULL VARCHAR2(30) The user ID of GMRSHST_ACTIVITY_DATE NULL DATE Date that record GMRSHST_SCR_LANG_CODE NULL VARCHAR2(20) The source language code. GMRSHST_MCODE NULL NUMBER(8,0) Meaning code for the property. GMRSHST_STRCODE NULL NUMBER(12,0) The string code for the object property value. GMRSHST_PRE_STR NOT NULL VARCHAR2(20) The text prefix characters for the property. GMRSHST_PST_STR NOT NULL VARCHAR2(20) The text postfix characters for the property Ellucian. Confidential & Proprietary 32

33 GMRSHST_VERSION NULL NUMBER(19) Optimistic lock GMRSHST_SURROGATE_ID NULL NUMBER(19) The surrogate ID for this GMRSHST_DATA_ORIGIN NOT NULL VARCHAR2(30) Source system that GMRSHST_VPDI_CODE NOT NULL VARCHAR2(6) Multi-Entity Fuzzy Matching Logic Table (GMRSNGR) Table for fuzzy matching logic. GMRSNGR_STRCODE NOT NULL NUMBER (12,0) The code for the property value. GMRSNGR_GRAM_STR NOT NULL VARCHAR2(24) The NGram of the property value. GMRSNGR_NGRCOUNT NOT NULL NUMBER(10,0) The occurrence of the NGram string. Property Translation Table (GMRSPRP) This table stores string property. GMRSPRP_PROJECT NOT NULL VARCHAR2(15) The project name. GMRSPRP_MODULE_NAME NOT NULL VARCHAR2(256) The module name. GMRSPRP_MODULE_TYPE NOT NULL VARCHAR2(4) The module type. GMRSPRP_LANG_CODE NOT NULL VARCHAR2(20) The language code. GMRSPRP_PARENT_TYPE NOT NULL NUMBER(5,0) The parent type. GMRSPRP_PARENT_NAME NOT NULL VARCHAR2(256) The parent name. GMRSPRP_OBJECT_TYPE NOT NULL NUMBER(5,0) The object type. GMRSPRP_OBJECT_NAME NOT NULL VARCHAR2(256) The object name Ellucian. Confidential & Proprietary 33

34 GMRSPRP_OBJECT_PROP NOT NULL NUMBER(4,0) The object property name. GMRSPRP_STRCODE NULL NUMBER(12,0) The string code for the object property value. GMRSPRP_STAT_CODE NOT NULL NUMBER(2,0) The translation status. GMRSPRP_USER_ID NOT NULL VARCHAR2(30) The user ID of GMRSPRP_ACTIVITY_DATE NOT NULL DATE Date that record GMRSPRP_MCODE NULL NUMBER(8,0) Meaning code for the property. GMRSPRP_PRE_STR NOT NULL VARCHAR2(20) The text prefix characters for the property. GMRSPRP_PST_STR NOT NULL VARCHAR2(20) The text postfix characters for the property. GMRSPRP_AUTO_Q_FACT NULL NUMBER(4,2) Match rating/ percentage for translations done using pre-translate option. GMRSPRP_MAX_LEN NULL NUMBER(5,0) The length of the string including the pre string and post string. GMRSPRP_NOTE VARCHAR2(2048) The note entered by the user for translation. GMRSPRP_VERSION NULL NUMBER(19) Optimistic lock GMRSPRP_SURROGATE_ID NULL NUMBER(19) The surrogate ID for this 2017 Ellucian. Confidential & Proprietary 34

35 GMRSPRP_DATA_ORIGIN NOT NULL VARCHAR2(30) Source system that GMRSPRP_VPDI_CODE NOT NULL VARCHAR2(6) Multi-Entity Security Group Details Mapping Table (GMRSRGP) This table stores mapping between security group details to module and object mapping. GMRSRGP_GRPNAME NOT NULL VARCHAR2(30) The name for the Security Group. GMRSRGP_OBJNAME NOT NULL VARCHAR2(30) The form/object name. GMRSRGP_GDML_TYPE NOT NULL VARCHAR2(1) The DML actions (Insert, Delete or Update). GMRSRGP_USER_ID NOT NULL VARCHAR2(30) The user ID of GMRSRGP_ACTIVITY_DATE NOT NULL DATE Date that record GMRSRGP_GPREDICATE VARCHAR2(2000) The predicate to the DML. GMRSRGP_VERSION NULL NUMBER(19) Optimistic lock GMRSRGP_SURROGATE_ID NULL NUMBER(19) The surrogate ID for this GMRSRGP_DATA_ORIGIN NOT NULL VARCHAR2(30) Source system that GMRSRGP_VPDI_CODE NOT NULL VARCHAR2(6) Multi-Entity 2017 Ellucian. Confidential & Proprietary 35

36 User To Group Mapping Table (GMRSUSR) This table stores user to group mapping. GMRSUSR_NAME NOT NULL VARCHAR2(30) The user name. GMRSUSR_DESC NOT NULL VARCHAR2(90) The user description. GMRSUSR_GRPNAME NOT NULL VARCHAR2(30) The securityggroup that the user belongs to. GMRSUSR_USER_ID NOT NULL VARCHAR2(30) The user ID of GMRSUSR_ACTIVITY_DATE NOT NULL DATE Date that record GMRSUSR_VERSION NULL NUMBER(19) Optimistic lock GMRSUSR_SURROGATE_ID NULL NUMBER(19) The surrogate ID for this GMRSUSR_DATA_ORIGIN NOT NULL VARCHAR2(30) Source system that GMRSUSR_VPDI_CODE NOT NULL VARCHAR2(6) Multi-Entity File Select Dialog Table (GMTFILE) Temporary table for file select dialog. GMTFILE_FNAME NOT NULL VARCHAR2(512) The file name. GMTFILE_FDATE NULL DATE The last modified date of the file. GMTFILE_FSIZE NULL NUMBER(10,0) The size of the file Ellucian. Confidential & Proprietary 36

37 GMTFILE_FEXT NOT NULL VARCHAR2(30) The extension of the file. egmtfile_fpath NOT NULL VARCHAR2(256) The path of the file. Fuzzy Logic Table (GMTPGRM) Temporary table for fuzzy logic. GMTPGRM_GRAM_STR NULL VARCHAR2(24) The NGRAM string. GMTPGRM_IDX NULL NUMBER(8,0) The index of occurrence. Language Definitions Table (GTVLANG) This table stores language definitions. GTVLANG_CODE NOT NULL VARCHAR2(20) The language code. GTVLANG_LOCALE NULL VARCHAR2(20) The locale code for the language. GTVLANG_USER_ID NOT NULL VARCHAR2(30) The user ID of GTVLANG_ACTIVITY_DATE NOT NULL DATE Date that record GTVLANG_DESC NOT NULL VARCHAR2(35) The description of the language. GTVLANG_ORA_NLS_LANG NOT NULL VARCHAR2(30) The Oracle NLS code. GTVLANG_ORA_NLS_TERR NOT NULL VARCHAR2(30) The Oracle NLS territory Ellucian. Confidential & Proprietary 37

38 GTVLANG_ORA_NLS_CHST NOT NULL VARCHAR2(30) The Oracle NLS character set. GTVLANG_BASE_URL NOT NULL VARCHAR2(256) The base URL for language translation. GTVLANG_LANGPAIR NOT NULL VARCHAR2(256) Language pair. Values depend on translation service being used - for example, en de for English - German. GTVLANG_LENGTH_SEMANTICS NOT NULL VARCHAR2(1) The Language Character length in terms of Byte or Characters.'; GTVLANG_ELLUCIAN_SUPPORTED NOT NULL VARCHAR2(1) Y for Ellucian supported language. GTVLANG_VERSION NULL NUMBER(19) Optimistic lock GTVLANG_SURROGATE_ID NULL NUMBER(19) The surrogate ID for this GTVLANG_DATA_ORIGIN NOT NULL VARCHAR2(30) Source system that GTVLANG_VPDI_CODE NOT NULL VARCHAR2(6) Multi-Entity GIT Repositories Table (GTVPROD) This table stores the GIT repositories. GTVPROD_CODE NOT NULL VARCHAR2(50) The code for GIT project. GTVPROD_GIT_URL NOT NULL VARCHAR2(200) The GIT URL. GTVPROD_USER_ID NOT NULL VARCHAR2(30) The user ID of 2017 Ellucian. Confidential & Proprietary 38

39 GTVPROD_ACTIVITY_DATE NOT NULL DATE Date that record GTVPROD_DESC NOT NULL VARCHAR2(200) The description for GIT project. GTVPROD_VERSION NULL NUMBER(19) Optimistic lock GTVPROD_SURROGATE_ID NULL NUMBER(19) The surrogate ID for this GTVPROD_DATA_ORIGIN NOT NULL VARCHAR2(30) Source system that GTVPROD_VPDI_CODE NOT NULL VARCHAR2(6) Multi-Entity Translation Status Table (GTVSTAT) This table stores translation status. GTVSTAT_CODE NOT NULL NUMBER(2,0) The code for the status. GTVSTAT_STATUS_TYPE NOT NULL VARCHAR2(1) The type of the status. GTVSTAT_DESC NOT NULL VARCHAR2(40) The description of the status. GTVSTAT_USER_ID NOT NULL VARCHAR2(30) The user ID of GTVSTAT_ACTIVITY_DATE NOT NULL DATE Date that record GTVSTAT_VERSION NULL NUMBER(19) Optimistic lock 2017 Ellucian. Confidential & Proprietary 39

40 GTVSTAT_SURROGATE_ID NULL NUMBER(19) The surrogate ID for this GTVSTAT_DATA_ORIGIN NOT NULL VARCHAR2(30) Source system that GTVSTAT_VPDI_CODE NOT NULL VARCHAR2(6) Multi-Entity New scripts The following scripts are new for this release. DDL gmbcode_080902_01.sql gmbcode_080902_02.sql gmbcode_080902_03.sql gmbgbra_080902_01.sql gmbgbra_080902_02.sql gmbgbra_080902_03.sql gmbgpro_080902_01.sql gmbgpro_080902_02.sql gmbgpro_080902_03.sql gmbgpro_080902_04.sql gmbjnls_080902_01.sql gmbjnls_080902_02.sql gmbjnls_080902_03.sql gmblddb_080902_01.sql gmblddb_080902_02.sql gmblddb_080902_03.sql gmblddb_080902_04.sql gmblddb_080902_05.sql gmblprd_080902_01.sql gmblprd_080902_02.sql gmblprd_080902_03.sql gmblprd_080902_04.sql 2017 Ellucian. Confidential & Proprietary 40

41 gmbngrm_080902_01.sql gmbngrm_080902_02.sql gmbproj_080902_01.sql gmbproj_080902_02.sql gmbproj_080902_03.sql gmbsgrp_080902_01.sql gmbsgrp_080902_02.sql gmbsgrp_080902_03.sql gmbsobj_080902_01.sql gmbsobj_080902_02.sql gmbsobj_080902_03.sql gmbstrg_080902_01.sql gmbstrg_080902_02.sql gmbstrg_080902_03.sql gmbstrg_080902_04.sql gmbstrg_080902_05.sql gmbsyln_080902_01.sql gmbsyln_080902_02.sql gmbsyln_080902_03.sql gmbusrp_080902_01.sql gmbusrp_080902_02.sql gmbusrp_080902_03.sql gmrdcol_080902_01.sql gmrdcol_080902_02.sql gmrdcol_080902_03.sql gmrdcol_080902_04.sql gmrdcol_080902_05.sql gmrdcol_080902_06.sql gmrdcol_080902_07.sql gmrdcol_080902_08.sql gmrglog_080902_01.sql gmrglog_080902_02.sql gmrglog_080902_03.sql gmrmdul_080902_01.sql gmrmdul_080902_02.sql gmrmdul_080902_03.sql 2017 Ellucian. Confidential & Proprietary 41

42 gmrmdul_080902_04.sql gmrmdul_080902_05.sql gmrmdul_080902_06.sql gmrmdul_080902_07.sql gmrmdul_080902_08.sql gmrpcfg_080902_01.sql gmrpcfg_080902_02.sql gmrpcfg_080902_03.sql gmrpcfg_080902_04.sql gmrpobj_080902_01.sql gmrpobj_080902_02.sql gmrpobj_080902_03.sql gmrprto_080902_01.sql gmrprto_080902_02.sql gmrshst_080902_01.sql gmrshst_080902_02.sql gmrshst_080902_03.sql gmrshst_080902_04.sql gmrshst_080902_05.sql gmrsngr_080902_01.sql gmrsngr_080902_02.sql gmrsngr_080902_03.sql gmrsprp_080902_01.sql gmrsprp_080902_02.sql gmrsprp_080902_03.sql gmrsprp_080902_04.sql gmrsprp_080902_05.sql gmrsprp_080902_06.sql gmrsprp_080902_07.sql gmrsprp_080902_08.sql gmrsprp_080902_09.sql gmrsrgp_080902_01.sql gmrsrgp_080902_02.sql gmrsrgp_080902_03.sql gmrsrgp_080902_04.sql gmrsrgp_080902_05.sql 2017 Ellucian. Confidential & Proprietary 42

43 gmrsusr_080902_01.sql gmrsusr_080902_02.sql gmrsusr_080902_03.sql gmrsusr_080902_04.sql gmtfile_080902_01.sql gmtfile_080902_02.sql gmtpgrm_080902_01.sql gmtpgrm_080902_02.sql gtvlang_080902_01.sql gtvlang_080902_02.sql gtvlang_080902_03.sql gtvprod_080902_01.sql gtvprod_080902_02.sql gtvprod_080902_03.sql gtvstat_080902_01.sql gtvstat_080902_02.sql gtvstat_080902_03.sql DML gmbproji_ sql ggubmepoi_ sql gtvlangi_ sql gtvstati_ sql gmrprtoi_ sql gmrpcfgi_ sql guroptmi_ sql DBPROCS gmkttxt0.sql gmkttxt1.sql gmkftga0.sql gmkftga1.sql gmkftga2.sql gmkobji0.sql gmkobji1.sql gmkximp0.sql gmkximp1.sql 2017 Ellucian. Confidential & Proprietary 43

44 gmkmesg0.sql gmkmesg1.sql gmkdbln0.sql gmkdbln1.sql gmkdbcl0.sql gmkdbcl1.sql gmkngrm0.sql gmkngrm1.sql gmksign0.sql gmksign1.sql gmfplin.sql gmtstrg0.sql gmtsprp0.sql Views gmvsobj.sql gmvfgdb.sql gmvfgpr.sql gmvfgal.sql gmvcols.sql gmvfgsc.sql gmvfzzy.sql gmvstat.sql Modified scripts The following scripts are modified for this release. DML gubmodui_ sql gubobjsi_ sql gubpagei_ sql 2017 Ellucian. Confidential & Proprietary 44

45 Database scripts to support 9x Self-Service configuration Database scripts to support 9x Self-Service configuration Database scripts to support 9x Self-Service configuration The Banner General release contains the scripts to build a database structure to allow users to configure settings for 9x Self-Service applications outside of the current configuration groovy file delivered with each application. Self Service applications can read configuration properties from the database so that the application responds to all configurations that were moved to the database without a restart. Externalizing 9x Self-Service configurations in a new database structure allows users to change the configurations when needed without redeploying the application or restarting server. Externalizing configurations from the banner_configuration.groovy and <application>_configuration.groovy files is a primary requirement for SaaS support of Self Service applications. Note: The User Interface page creation to support 9x Self-Service configurations will be delivered in a future Banner 9x delivery. Note: The Banner 9 Self-Service applications will enable the ability to use the configurations stored in the database in the future releases of the applications. To determine when the database configurations are available, refer to the Release Guide of each application. This satisfies enhancement CR New tables The following tables are new for this release. Banner Application Table (GUBAPPL) This table defines the Application ID and Application Name. The values in this table relate directly to the Keys in the application. GUBAPPL_APP_ID NOT NULL VARCHAR2(10) Short name for application, identifier for this entity. GUBAPPL_APP_NAME NOT NULL VARCHAR2(255) Name of the application. GUBAPPL_SURROGATE_ID NOT NULL NUMBER(19,0) Generated unique numeric identifier for this entity 2017 Ellucian. Confidential & Proprietary 45

46 Database scripts to support 9x Self-Service configuration GUBAPPL_VERSION NOT NULL NUMBER(19,0) Optimistic lock GUBAPPL_USER_ID NOT NULL VARCHAR2(30) The user ID of GUBAPPL_DATA_ORIGIN NULL VARCHAR2(30) Source system that GUBAPPL_ACTIVITY_DATE NOT NULL DATE Date that record GUBAPPL_VPDI_CODE NULL VARCHAR2(6) Multi-Entity Banner Self-Service Application Page Table (GURCTLEP) This table stores the page IDs and page names and descriptions of all the pages in an application. GURCTLEP_PAGE_ID NOT NULL VARCHAR2(60) Generated unique numeric identifier for this entity. GURCTLEP_GUBAPPL_APP_ID NOT NULL VARCHAR2(10) Short name of an application linked to the GUBAPPL table. GURCTLEP_STATUS_INDICATOR NOT NULL VARCHAR2(1) Name of the page. GURCTLEP_ACTIVITY_DATE NOT NULL DATE Description of the page. GURCTLEP_USER_ID NOT NULL VARCHAR2(30) Boolean value to determine if the page definition is enabled. GURCTLEP_PAGE_URL NULL VARCHAR2(256) Determines the display sequence of the page Ellucian. Confidential & Proprietary 46

47 Database scripts to support 9x Self-Service configuration GURCTLEP_DESCRIPTION NULL VARCHAR2(256) Generated unique numeric identifier for this entity GURCTLEP_DISPLAY_SEQUENCE NULL NUMBER(19,0) Optimistic lock GURCTLEP_DATA_ORIGIN NULL VARCHAR2(30) The user ID of GURCTLEP_SURROGATE_ID NOT NULL NUMBER(19,0) Source system that GURCTLEP_VERSION NOT NULL NUMBER(19,0) Date that record GURCTLEP_VPDI_CODE NULL VARCHAR2(6) Multi-Entity Banner Self-Service Page Roles Table (GURAPPR) This table assigns roles to application pages. GURAPPR_PAGE_ID NOT NULL VARCHAR2(60) Id for the page linked with GURCTLEP_PAGE_ID. GURAPPR_ROLE_CODE NOT NULL VARCHAR2(256) Role associated with the page. GURAPPR_GUBAPPL_APP_ID NOT NULL VARCHAR2(10) Short name of the application linked with GUBAPPL table. GURAPPR_ACTIVITY_DATE NOT NULL DATE Date that record GURAPPR_USER_ID NOT NULL VARCHAR2(30) The user ID of 2017 Ellucian. Confidential & Proprietary 47

48 Database scripts to support 9x Self-Service configuration GURAPPR_DATA_ORIGIN NULL VARCHAR2(30) Source system that GURAPPR_SURROGATE_ID NOT NULL NUMBER(19,0) Generated unique numeric identifier for this entity. GURAPPR_VERSION NOT NULL NUMBER(19,0) Optimistic lock GURAPPR_VPDI_CODE NULL VARCHAR2(6) Multi-Entity User Configuration Table (GURUCFG) This table stores the user level configurations. GURUCFG_GUBAPPL_APP_ID NOT NULL VARCHAR2(10) Short name of an application linked to the GUBAPPL table. GURUCFG_PIDM NULL NUMBER(19,0) PIDM of the user. GURUCFG_CONFIG_NAME NULL VARCHAR2(50) Name of the particular configuration property. Linked with GUROCFG_NAME. GURUCFG_CONFIG_TYPE NULL VARCHAR2(30) Data type of property value. GURUCFG_CONFIG_VALUE NULL CLOB Value for the configuration property. GURUCFG_SURROGATE_ID NOT NULL NUMBER(19,0) Generated unique numeric identifier for this entity GURUCFG_VERSION NOT NULL NUMBER(19,0) Optimistic lock 2017 Ellucian. Confidential & Proprietary 48

49 Database scripts to support 9x Self-Service configuration GURUCFG_USER_ID NOT NULL VARCHAR2(30) The user ID of GURUCFG_DATA_ORIGIN NULL VARCHAR2(30) Source system that GURUCFG_ACTIVITY_DATE NOT NULL DATE Date that record GURUCFG_VPDI_CODE NULL VARCHAR2(6) Multi-Entity Modified tables The following tables are modified for this release. Main Configuration Table (GUROCFG) The following table was modified to add a new column. This table now has additional functionality details related to Self-Service configuration. GUROCFG_GUBAPPL_APP_ID NOT NULL VARCHAR2(10) Short name of an application linked to the GUBAPPL table. Banner Configuration Tables examples GUBAPPL - Banner Application Table This table defines the application ID and application name. The values in this table relate directly to the keys in the application Ellucian. Confidential & Proprietary 49

50 Database scripts to support 9x Self-Service configuration Application ID PFA PB Application Name PlatformSandbox PageBuilder GURCTLEP Banner Self-Service Application Page Table This table stores the page IDs and page names and descriptions of all the pages in an application. Application ID Page ID Page URL Description Status Indicator Display * Sequence PB BannerExtensibility /BannerExtensibility/ Landing Page Y 1 PB virtualdomaincomposer/bannerextensibility/ virtualdomaincomposer/ PB schedule /BannerExtensibility/ schedule/ Virtual Domain Composer Schedule Y 2 Y GURAPPR - Banner Self-Service Page Roles Table This table assigns roles to application pages. Application ID Page ID Role Code PB BannerExtensibility IS_AUTHENTICATED_ANONYMOUSLY PB virtualdomaincomposer ROLE_SELFSERVICE- STUDENT_BAN_DEFAULT_M GUROCFG - Main Configuration Table This table stores the configurations for each application. An application ID = GLOBAL and Application name = GLOBAL will act as a default in cases where the configuration parameter can be applied across applications. If there is an application specific setting for an application, that will take precedence over the global rule. Application ID Configuration Name Configuration Type Configuration Value PFA footerfadeawaytime Numeric PB footerfadeawaytime Numeric PFA ssbpassword.reset.enabled String True PB ssbpassword.reset.enabled String True 2017 Ellucian. Confidential & Proprietary 50

51 Database scripts to support 9x Self-Service configuration GURUCFG - User Configuration Table This table stores the user level configurations. Application ID PIDM Configuration Name Configuration Type PFA footerfadeawaytime Numeric PFA footerfadeawaytime Numeric PFA ssbpassword.reset.enabled String true Configuration Value New views A new view, GVQ_PAGE_ROLE_MAPPING, is added for this release Ellucian. Confidential & Proprietary 51

52 Resolutions Resolutions Resolutions A Resolution Report contains comprehensive and detailed resolution information for a release. Each change request has a listed URL. Copy and paste the URL into a web browser to see more details about the change request on the Ellucian Support Center. For resolution information in this release, see Banner General Resolutions Report in the Documentation Libraries section under Banner General in the Ellucian Support Center. The Banner General release also includes the previously delivered Banner General patch. Information on the defects resolved in the Banner General patch can be found in the Banner General Resolutions Report in the documentation library Ellucian. Confidential & Proprietary 52

Banner Workflow Release Guide. Release 8.3 February 27, 2015

Banner Workflow Release Guide. Release 8.3 February 27, 2015 Banner Workflow Release Guide Release 8.3 February 27, 2015 Without limitation: Ellucian, Banner, Colleague, and Luminis are trademarks of the Ellucian group of companies that are registered in the U.S.

More information

Banner Accounts Receivable

Banner Accounts Receivable Banner Accounts Receivable Release Guide Release 8.5.3 June 2017 Notices Notices 2017 Ellucian. Contains confidential and proprietary information of Ellucian and its subsidiaries. Use of these materials

More information

Banner Student Self-Service

Banner Student Self-Service Banner Student Self-Service Release Guide Release 9.5 March 2017 Notices Notices 2017 Ellucian. Contains confidential and proprietary information of Ellucian and its subsidiaries. Use of these materials

More information

Banner General Release Guide. Release 9.3 September 2016

Banner General Release Guide. Release 9.3 September 2016 Banner General Release Guide Release 9.3 September 2016 Notices Notices Without limitation: Ellucian, Banner, Colleague, and Luminis are trademarks of the Ellucian group of companies that are registered

More information

Banner Communication Management User Guide. Release 9.3 May 2017

Banner Communication Management User Guide. Release 9.3 May 2017 Banner Communication Management User Guide Release 9.3 May 2017 Notices Notices 2015-2017 Ellucian. Contains confidential and proprietary information of Ellucian and its subsidiaries. Use of these materials

More information

Banner Transformed Getting Started With Your Administrative Applications. Release 9.0 October 2015

Banner Transformed Getting Started With Your Administrative Applications. Release 9.0 October 2015 Banner Transformed Getting Started With Your Administrative Applications Release 9.0 October 2015 Notices Notices Without limitation: Ellucian, Banner, Colleague, and Luminis are trademarks of the Ellucian

More information

Banner Transformed Getting Started With Your Administrative Applications. Release 9.x March 2018

Banner Transformed Getting Started With Your Administrative Applications. Release 9.x March 2018 Banner Transformed Getting Started With Your Administrative Applications Release 9.x March 2018 Notices Notices 2015-2018 Ellucian. Contains confidential and proprietary information of Ellucian and its

More information

Degree Works Release Guide. Release November 2015

Degree Works Release Guide. Release November 2015 Degree Works Release Guide Release 4.1.5 November 2015 Without limitation: Ellucian, Banner, Colleague, and Luminis are trademarks of the Ellucian group of companies that are registered in the U.S. and

More information

Ellucian Recruiter Integrating Recruiter with Banner. Recruiter Release 3.1 Banner Student Release September 27, 2013

Ellucian Recruiter Integrating Recruiter with Banner. Recruiter Release 3.1 Banner Student Release September 27, 2013 Ellucian Recruiter Integrating Recruiter with Banner Recruiter Release 3.1 Banner Student Release 8.5.7 September 27, 2013 Banner, Colleague, Luminis and Datatel are trademarks of Ellucian or its affiliates

More information

BANNER ENTERPRISE IDENTITY SERVICES RELEASE AND UPGRADE GUIDE. Release 8.1.4, Revision 1 July 2011

BANNER ENTERPRISE IDENTITY SERVICES RELEASE AND UPGRADE GUIDE. Release 8.1.4, Revision 1 July 2011 BANNER ENTERPRISE IDENTITY SERVICES RELEASE AND UPGRADE GUIDE Release 8.1.4, Revision 1 July 2011 Trademark, Publishing Statement and Copyright Notice SunGard or its subsidiaries in the U.S. and other

More information

Banner Student Release Guide. Release 9.3 September 2016

Banner Student Release Guide. Release 9.3 September 2016 Banner Student Release Guide Release 9.3 September 2016 Notices Notices Without limitation: Ellucian, Banner, Colleague, and Luminis are trademarks of the Ellucian group of companies that are registered

More information

Ellucian s Colleague Mapping Envision Files for SQL Server and Oracle

Ellucian s Colleague Mapping Envision Files for SQL Server and Oracle Ellucian s Colleague Mapping Envision Files for SQL Server and Oracle Release 18 June 16, 2006 For corrections and clarifications to this manual, see AnswerNet page 4891. Banner, Colleague, PowerCAMPUS,

More information

Banner Enterprise Data Warehouse Release Guide. Release February 2013

Banner Enterprise Data Warehouse Release Guide. Release February 2013 Banner Enterprise Data Warehouse Release Guide Release 8.4.3 February 2013 Banner, Colleague, Luminis and Datatel are trademarks of Ellucian or its affiliates and are registered in the U.S. and other countries.

More information

Siebel CRM Integration to Oracle FLEXCUBE Universal Banking Implementation Guide. Version 1.0 (Siebel CRM Version 8.2), Rev.

Siebel CRM Integration to Oracle FLEXCUBE Universal Banking Implementation Guide. Version 1.0 (Siebel CRM Version 8.2), Rev. CRM Integration to Universal Banking Implementation Guide Version 1.0 ( CRM Version 8.2), Rev. A December 2011 Copyright 2005, 2011 and/or its affiliates. All rights reserved. This software and related

More information

Oracle SQL Developer. Oracle TimesTen In-Memory Database Support User's Guide Release 4.0 E

Oracle SQL Developer. Oracle TimesTen In-Memory Database Support User's Guide Release 4.0 E Oracle SQL Developer Oracle TimesTen In-Memory Database Support User's Guide Release 4.0 E39882-02 December 2013 Oracle SQL Developer Oracle TimesTen In-Memory Database Support User's Guide, Release 4.0

More information

EnterpriseTrack Reporting Data Model Configuration Guide Version 17

EnterpriseTrack Reporting Data Model Configuration Guide Version 17 EnterpriseTrack EnterpriseTrack Reporting Data Model Configuration Guide Version 17 October 2018 Contents About This Guide... 5 Configuring EnterpriseTrack for Reporting... 7 Enabling the Reporting Data

More information

Colleague by Ellucian Guide to User Interface 4.4 and 4.4.1

Colleague by Ellucian Guide to User Interface 4.4 and 4.4.1 Colleague by Ellucian Guide to User Interface 4.4 and 4.4.1 Colleague Release 18, UI 4.4 and 4.4.1 May 2, 2013 For corrections and clarifications to this manual, see AnswerNet page 1926.37 Banner, Colleague,

More information

Ellucian CRM Recruit Installation and Integration. Release

Ellucian CRM Recruit Installation and Integration. Release Ellucian CRM Recruit Installation and Integration Release 4.1.5 2016-03-30 Notices Notices Without limitation: Ellucian, Banner, Colleague, and Luminis are trademarks of the Ellucian group of companies

More information

Real Application Security Administration

Real Application Security Administration Oracle Database Real Application Security Administration Console (RASADM) User s Guide 12c Release 2 (12.2) E85615-01 June 2017 Real Application Security Administration Oracle Database Real Application

More information

Banner Web Tailor Release Guide. Release April 2012

Banner Web Tailor Release Guide. Release April 2012 Banner Web Tailor Release 8.5.1 April 2012 Banner, Colleague, PowerCAMPUS, Luminis and Datatel are trademarks of Ellucian or its affiliates and are registered in the U.S. and other countries. Ellucian,

More information

Symantec Endpoint Virtualization 6.1 SP8 Release Notes

Symantec Endpoint Virtualization 6.1 SP8 Release Notes Chapter 1 Symantec Endpoint Virtualization 6.1 SP8 Release Notes This chapter includes the following topics: About Symantec Endpoint Virtualization About 6.1 SP8 What's new in 6.1 SP8 Supported platforms

More information

Introduction to Computer Science

Introduction to Computer Science www.oracle.com/academy Introduction to Computer Science Transferring Schema and Data in APEX These instructions detail the steps required to transfer a schema in one APEX instance to another. The order

More information

Embarcadero Rapid SQL

Embarcadero Rapid SQL Product Documentation Embarcadero Rapid SQL New Features Guide Version 8.6.1/XE5 Published May, 2014 2014 Embarcadero Technologies, Inc. Embarcadero, the Embarcadero Technologies logos, and all other Embarcadero

More information

SAS Enterprise Case Management 3.1. Data Dictionary

SAS Enterprise Case Management 3.1. Data Dictionary SAS Enterprise Case Management 3.1 Data Dictionary The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2012. SAS Enterprise Case Management 3.1: Data Dictionary. Cary,

More information

GEORGIA ENHANCEMENTS: TECHNICAL. Miguel Morales, GeorgiaBEST Information Technology Services April 29, 2015

GEORGIA ENHANCEMENTS: TECHNICAL. Miguel Morales, GeorgiaBEST Information Technology Services April 29, 2015 GEORGIA ENHANCEMENTS: TECHNICAL Miguel Morales, GeorgiaBEST Information Technology Services April 29, 2015 THE GEORGIABEST TEAM TOPICS OF DISCUSSION Banner Infrastructure Database Objects Code Tree Job

More information

Manipulating Database Objects

Manipulating Database Objects Manipulating Database Objects Purpose This tutorial shows you how to manipulate database objects using Oracle Application Express. Time to Complete Approximately 30 minutes. Topics This tutorial covers

More information

Contents Overview... 5 Upgrading Primavera Gateway... 7 Using Gateway Configuration Utilities... 9

Contents Overview... 5 Upgrading Primavera Gateway... 7 Using Gateway Configuration Utilities... 9 Gateway Upgrade Guide for On-Premises Version 17 August 2017 Contents Overview... 5 Downloading Primavera Gateway... 5 Upgrading Primavera Gateway... 7 Prerequisites... 7 Upgrading Existing Gateway Database...

More information

Ellucian Recruiter Configuration

Ellucian Recruiter Configuration Ellucian Recruiter Configuration Recruiter Release 2.6 October 19, 2012 For corrections and clarifications to this manual, see AnswerNet page 9227 Banner, Colleague, PowerCAMPUS, Luminis and Datatel are

More information

Oracle Standard Management Pack

Oracle Standard Management Pack Oracle Standard Management Pack Readme Release 2.1.0.0.0 February 2000 Part No. A76911-01 Table Of Contents 1 Introduction 2 Compatibility 3 Documentation and Help 4 Oracle Performance Manager 5 Oracle

More information

1 Important Configuration Changes

1 Important Configuration Changes Oracle Database Application Express Release Notes Release 2.2 B28553-02 July 2006 These Release Notes contain important information not included in the Oracle Application Express documentation. For the

More information

Oracle Database. Installation and Configuration of Real Application Security Administration (RASADM) Prerequisites

Oracle Database. Installation and Configuration of Real Application Security Administration (RASADM) Prerequisites Oracle Database Real Application Security Administration 12c Release 1 (12.1) E61899-04 May 2015 Oracle Database Real Application Security Administration (RASADM) lets you create Real Application Security

More information

NRS Logical Data Model to Physical Data Model Transformations

NRS Logical Data Model to Physical Data Model Transformations Corporate Services for the Natural Resource Sector Information Management Branch NRS Logical Data Model to Physical Data Model Transformations Last Updated: Dec 10 th, 2016 Version: 2.1 Document: NRS Logical

More information

This document contains information on fixed and known limitations for Test Data Management.

This document contains information on fixed and known limitations for Test Data Management. Informatica Corporation Test Data Management Version 9.6.0 Release Notes August 2014 Copyright (c) 2003-2014 Informatica Corporation. All rights reserved. Contents Informatica Version 9.6.0... 1 Installation

More information

Oracle Policy Automation Connector for Siebel V10.2 Release Notes

Oracle Policy Automation Connector for Siebel V10.2 Release Notes Oracle Policy Automation Connector for Siebel V10.2 Release Notes Copyright 2009, 2010, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or

More information

How to set up SQL Source Control The short guide for evaluators

How to set up SQL Source Control The short guide for evaluators GUIDE How to set up SQL Source Control The short guide for evaluators 1 Contents Introduction Team Foundation Server & Subversion setup Git setup Setup without a source control system Making your first

More information

Adaptive Risk Manager Challenge Question Cleanup 10g ( ) December 2007

Adaptive Risk Manager Challenge Question Cleanup 10g ( ) December 2007 Adaptive Risk Manager Challenge Question Cleanup 10g (10.1.4.3.0) December 2007 Adaptive Risk Manager Challenge Question Cleanup, 10g (10.1.4.3.0) Copyright 2007, Oracle. All rights reserved. The Programs

More information

Chapter 1 SQL and Data

Chapter 1 SQL and Data Chapter 1 SQL and Data What is SQL? Structured Query Language An industry-standard language used to access & manipulate data stored in a relational database E. F. Codd, 1970 s IBM 2 What is Oracle? A relational

More information

SAS. Social Network Analysis Server 6.2: Installation and Configuration Guide, Third Edition. SAS Documentation

SAS. Social Network Analysis Server 6.2: Installation and Configuration Guide, Third Edition. SAS Documentation SAS Social Network Analysis Server 6.2: Installation and Configuration Guide, Third Edition SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2016.

More information

Creating and Managing Tables Schedule: Timing Topic

Creating and Managing Tables Schedule: Timing Topic 9 Creating and Managing Tables Schedule: Timing Topic 30 minutes Lecture 20 minutes Practice 50 minutes Total Objectives After completing this lesson, you should be able to do the following: Describe the

More information

Oracle Insurance Claims Analytics for Health - Configuration Guide

Oracle Insurance Claims Analytics for Health - Configuration Guide Oracle Insurance Claims Analytics for Health - Configuration Guide October 17, 2012 Copyright 2012, Oracle and/or its affiliates All rights reserved Copyright 2012, Oracle and/or its affiliates. All rights

More information

AppsRules Suite. Patch Installation Guide. Software Version 6.5

AppsRules Suite. Patch Installation Guide. Software Version 6.5 AppsRules Suite Patch Installation Guide Software Version 6.5 2005 Logical Apps All rights reserved. Printed in USA. Restricted Rights Legend This software and associated documentation contain proprietary

More information

This document contains information on fixed and known limitations for Test Data Management.

This document contains information on fixed and known limitations for Test Data Management. Informatica LLC Test Data Management Version 10.1.0 Release Notes December 2016 Copyright Informatica LLC 2003, 2016 Contents Installation and Upgrade... 1 Emergency Bug Fixes in 10.1.0... 1 10.1.0 Fixed

More information

Creating databases using SQL Server Management Studio Express

Creating databases using SQL Server Management Studio Express Creating databases using SQL Server Management Studio Express With the release of SQL Server 2005 Express Edition, TI students and professionals began to have an efficient, professional and cheap solution

More information

ER/Studio Enterprise Portal User Guide

ER/Studio Enterprise Portal User Guide ER/Studio Enterprise Portal 1.1.1 User Guide Copyright 1994-2009 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. All rights

More information

Release Notes. PREEvision. Version 6.5 SP14 English

Release Notes. PREEvision. Version 6.5 SP14 English Release Notes PREEvision Version 6.5 SP14 English Imprint Vector Informatik GmbH Ingersheimer Straße 24 70499 Stuttgart, Germany Vector reserves the right to modify any information and/or data in this

More information

Get Oracle Schema Ddl Syntax With Dbms_metadata

Get Oracle Schema Ddl Syntax With Dbms_metadata Get Oracle Schema Ddl Syntax With Dbms_metadata It there an easy way to extract DDLs from an Oracle 10 schema (tables and route, then rather than trying to convert Oracle DDL syntax to H2 you'd be better

More information

Building Database-Centric Web Applications Using. Oracle HTML DB

Building Database-Centric Web Applications Using. Oracle HTML DB Building Database-Centric Web Applications Using Oracle HTML DB Wayne Abbott Practice Manager, Oracle University Session Objectives Overview of Oracle HTML DB Identify advantages of Oracle HTML DB for

More information

Imagination To Realization

Imagination To Realization Imagination To Realization Introduction to HTML DB (HOT) Presented by: Bih-Shya Gau SunGard Higher Education Monday, April 3, 2006 3:30 5:30 pm April 2-5 Orlando, Florida Session Rules of Etiquette Please

More information

Contents Using the Primavera Cloud Service Administrator's Guide... 9 Web Browser Setup Tasks... 10

Contents Using the Primavera Cloud Service Administrator's Guide... 9 Web Browser Setup Tasks... 10 Cloud Service Administrator's Guide 15 R2 March 2016 Contents Using the Primavera Cloud Service Administrator's Guide... 9 Web Browser Setup Tasks... 10 Configuring Settings for Microsoft Internet Explorer...

More information

USING ADMINISTRATOR FEATURES

USING ADMINISTRATOR FEATURES HYPERION FINANCIAL MANAGEMENT SYSTEM 9 RELEASE 9.3.1 USING ADMINISTRATOR FEATURES Oracle's Hyperion Financial Management System 9 Release 9.3 contains significant enhancements to administrator features

More information

Informatica PowerExchange for Microsoft Azure Blob Storage 10.2 HotFix 1. User Guide

Informatica PowerExchange for Microsoft Azure Blob Storage 10.2 HotFix 1. User Guide Informatica PowerExchange for Microsoft Azure Blob Storage 10.2 HotFix 1 User Guide Informatica PowerExchange for Microsoft Azure Blob Storage User Guide 10.2 HotFix 1 July 2018 Copyright Informatica LLC

More information

How Do I Inspect Error Logs in Warehouse Builder?

How Do I Inspect Error Logs in Warehouse Builder? 10 How Do I Inspect Error Logs in Warehouse Builder? Scenario While working with Warehouse Builder, the designers need to access log files and check on different types of errors. This case study outlines

More information

Enterprise Integration Module for SAP Solution Manager 7.2

Enterprise Integration Module for SAP Solution Manager 7.2 Enterprise Integration Module for SAP Solution Manager 7.2 Software Version: 12.53-12.55 User Guide Go to HELP CENTER ONLINE http://admhelp.microfocus.com/alm Document Release Date: May 2018 Software Release

More information

ER/Studio Enterprise Portal User Guide

ER/Studio Enterprise Portal User Guide ER/Studio Enterprise Portal 1.0.3 User Guide Copyright 1994-2009 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. All rights

More information

SAS Enterprise Case Management 6.3. Data Dictionary

SAS Enterprise Case Management 6.3. Data Dictionary SAS Enterprise Case Management 6.3 Data Dictionary The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2015. SAS Enterprise Case Management 6.3: Data Dictionary. Cary,

More information

Course Outline and Objectives: Database Programming with SQL

Course Outline and Objectives: Database Programming with SQL Introduction to Computer Science and Business Course Outline and Objectives: Database Programming with SQL This is the second portion of the Database Design and Programming with SQL course. In this portion,

More information

Database Binding Component User's Guide

Database Binding Component User's Guide Database Binding Component User's Guide Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. Part No: 821 1069 05 December 2009 Copyright 2009 Sun Microsystems, Inc. 4150 Network Circle,

More information

Find All Tables Containing Column With Specified Name Oracle

Find All Tables Containing Column With Specified Name Oracle Find All Tables Containing Column With Specified Name Oracle I'M TRYING to find a column called author_last_name in oracle-apex I want to find a possible duplicate of I want to show all tables that have

More information

Hyperion Interactive Reporting Reports & Dashboards Essentials

Hyperion Interactive Reporting Reports & Dashboards Essentials Oracle University Contact Us: +27 (0)11 319-4111 Hyperion Interactive Reporting 11.1.1 Reports & Dashboards Essentials Duration: 5 Days What you will learn The first part of this course focuses on two

More information

EDB Postgres Migration Portal Guide Version 1.0

EDB Postgres Migration Portal Guide Version 1.0 EDB Postgres Migration Portal Guide Version 1.0 October 23, 2018 EDB Postgres Migration Portal Guide by EnterpriseDB Corporation Copyright 2018 EnterpriseDB Corporation. All rights reserved. EnterpriseDB

More information

API Gateway Version September Key Property Store User Guide

API Gateway Version September Key Property Store User Guide API Gateway Version 7.5.2 15 September 2017 Key Property Store User Guide Copyright 2017 Axway All rights reserved. This documentation describes the following Axway software: Axway API Gateway 7.5.2 No

More information

Importing Metadata from Relational Sources in Test Data Management

Importing Metadata from Relational Sources in Test Data Management Importing Metadata from Relational Sources in Test Data Management Copyright Informatica LLC, 2017. Informatica and the Informatica logo are trademarks or registered trademarks of Informatica LLC in the

More information

DataFlux Web Studio 2.5. Installation and Configuration Guide

DataFlux Web Studio 2.5. Installation and Configuration Guide DataFlux Web Studio 2.5 Installation and Configuration Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2014. DataFlux Web Studio 2.5: Installation and Configuration

More information

Oracle Java CAPS Database Binding Component User's Guide

Oracle Java CAPS Database Binding Component User's Guide Oracle Java CAPS Database Binding Component User's Guide Part No: 821 2620 March 2011 Copyright 2009, 2011, Oracle and/or its affiliates. All rights reserved. License Restrictions Warranty/Consequential

More information

BW C SILWOOD TECHNOLOGY LTD. Safyr Metadata Discovery Software. Safyr User Guide

BW C SILWOOD TECHNOLOGY LTD. Safyr Metadata Discovery Software. Safyr User Guide BW C SILWOOD TECHNOLOGY LTD Safyr Metadata Discovery Software Safyr User Guide S I L W O O D T E C H N O L O G Y L I M I T E D Safyr User Guide Safyr 7.1 This product is subject to the license agreement

More information

Brainware Intelligent Capture Visibility

Brainware Intelligent Capture Visibility Brainware Intelligent Capture Visibility Installation and Setup Guide Version: 3.2.x Written by: Product Knowledge, R&D Date: September 2018 Copyright 2009-2018 Hyland Software, Inc. and its affiliates.

More information

Siebel Application Deployment Manager Guide. Version 8.0, Rev. A April 2007

Siebel Application Deployment Manager Guide. Version 8.0, Rev. A April 2007 Siebel Application Deployment Manager Guide Version 8.0, Rev. A April 2007 Copyright 2005, 2006, 2007 Oracle. All rights reserved. The Programs (which include both the software and documentation) contain

More information

UNIT 4 DATABASE SYSTEM CATALOGUE

UNIT 4 DATABASE SYSTEM CATALOGUE UNIT 4 DATABASE SYSTEM CATALOGUE Database System Structure Page Nos. 4.0 Introduction 65 4.1 Objectives 66 4.2 for Relational Database Management System 66 4.3 Data Dictionary and Data Repository System

More information

Oracle SQL Developer TimesTen In-Memory Database Support

Oracle SQL Developer TimesTen In-Memory Database Support Oracle SQL Developer TimesTen In-Memory Database Support Release Notes Release 2.1 E15859-03 March 2010 This document provides late-breaking information as well as information that is not yet part of the

More information

Managing Colleague Software Environments

Managing Colleague Software Environments Managing Colleague Software Environments Reissued Manual as of January 31, 2013 Enclosed is a new edition of the manual Managing Colleague Software Environments for Release 18. This edition replaces the

More information

Embarcadero All-Access Client User Guide. Last Updated: 7/11/09

Embarcadero All-Access Client User Guide. Last Updated: 7/11/09 Embarcadero All-Access Client 1.0.3.1 User Guide Last Updated: 7/11/09 Copyright 1994-2009 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco,

More information

Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Primavera Portfolio Management 9.0 What s New Copyright 1999-2011, Oracle and/or its affiliates. The Programs (which include both the software and documentation) contain proprietary information; they are

More information

IBM TRIRIGA Application Platform Version 3 Release 5.3. User Experience User Guide IBM

IBM TRIRIGA Application Platform Version 3 Release 5.3. User Experience User Guide IBM IBM TRIRIGA Application Platform Version 3 Release 5.3 User Experience User Guide IBM Note Before using this information and the product it supports, read the information in Notices on page 19. This edition

More information

Analytics: Server Architect (Siebel 7.7)

Analytics: Server Architect (Siebel 7.7) Analytics: Server Architect (Siebel 7.7) Student Guide June 2005 Part # 10PO2-ASAS-07710 D44608GC10 Edition 1.0 D44917 Copyright 2005, 2006, Oracle. All rights reserved. Disclaimer This document contains

More information

ER/Studio Data Architect

ER/Studio Data Architect Product Documentation ER/Studio Data Architect New Features Guide Version 8.5 October 7, 2009 Copyright 1994-2009 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th

More information

APM Import Tool. Product Guide

APM Import Tool. Product Guide APM Import Tool Product Guide This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user s informational purposes only and is

More information

New Features in Oracle Data Miner 4.2. The new features in Oracle Data Miner 4.2 include: The new Oracle Data Mining features include:

New Features in Oracle Data Miner 4.2. The new features in Oracle Data Miner 4.2 include: The new Oracle Data Mining features include: Oracle Data Miner Release Notes Release 4.2 E64607-03 March 2017 This document provides late-breaking information and information that is not yet part of the formal documentation. This document contains

More information

Installation... 1 Fixed Limitations... 1 Known Limitations... 2 Informatica Global Customer Support... 5

Installation... 1 Fixed Limitations... 1 Known Limitations... 2 Informatica Global Customer Support... 5 Informatica Corporation RulePoint Version 6.0.1 Release Notes October 2013 Copyright (c) 1998-2013 Informatica Corporation. All rights reserved. Contents Installation... 1 Fixed Limitations... 1 Known

More information

Integrating IBM Content Navigator with IBM Enterprise Records using plugin

Integrating IBM Content Navigator with IBM Enterprise Records using plugin IBM Integrating IBM Content Navigator with IBM Enterprise Records using plugin Suneetha Kaditi & Rohit M Pujar 10/24/2014 Abstract: This article provides the basic step by step process of installing and

More information

Table of Contents Chapter 1 - Introduction Chapter 2 - Designing XML Data and Applications Chapter 3 - Designing and Managing XML Storage Objects

Table of Contents Chapter 1 - Introduction Chapter 2 - Designing XML Data and Applications Chapter 3 - Designing and Managing XML Storage Objects Table of Contents Chapter 1 - Introduction 1.1 Anatomy of an XML Document 1.2 Differences Between XML and Relational Data 1.3 Overview of DB2 purexml 1.4 Benefits of DB2 purexml over Alternative Storage

More information

Perceptive Document Composition

Perceptive Document Composition Perceptive Document Composition Release Notes Version: 6.0.1 Written by: Product Knowledge, R&D Date: September 2016 2015 Lexmark. All rights reserved Lexmark is a trademark of Lexmark International, Inc.,

More information

CA ERwin Data Modeler

CA ERwin Data Modeler CA ERwin Data Modeler Implementation Guide Release 9.5.0 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Documentation Accessibility

Documentation Accessibility Oracle Migration Workbench Release Notes Release 10.1.0.4 for Microsoft Windows 98/2000/NT/XP and Linux x86 B19131-01 June 2005 This document contains the following topics: Documentation Accessibility

More information

Oracle Flashback Data Archive (FDA) O R A C L E W H I T E P A P E R M A R C H

Oracle Flashback Data Archive (FDA) O R A C L E W H I T E P A P E R M A R C H Oracle Flashback Data Archive (FDA) O R A C L E W H I T E P A P E R M A R C H 2 0 1 8 Table of Contents Disclaimer 1 Introduction 2 Tracking/Viewing Changes is Complicated 3 Enabling Flashback Data Archive

More information

Installation Guide 8.0 ThingWorx Utilities

Installation Guide 8.0 ThingWorx Utilities Installation Guide 8.0 ThingWorx Utilities Copyright 2017 PTC Inc. and/or Its Subsidiary Companies. All Rights Reserved. User and training guides and related documentation from PTC Inc. and its subsidiary

More information

SECTION 10 EXCHANGE PROTOCOL

SECTION 10 EXCHANGE PROTOCOL SECTION 10 EXCHANGE PROTOCOL The ADMS specification will facilitate the creation of a federation of disparate semantic asset repositories at the EU level. This federation will consist of Joinup setting

More information

Oracle Utilities Analytics for Oracle Utilities Extractors and Schema and Oracle Utilities Analytics Dashboards

Oracle Utilities Analytics for Oracle Utilities Extractors and Schema and Oracle Utilities Analytics Dashboards Oracle Utilities Analytics for Oracle Utilities Extractors and Schema and Oracle Utilities Analytics Dashboards Quick Installation Guide Release 2.5.0 E49000-01 December 2013 Oracle Utilities Analytics

More information

Documentation Accessibility

Documentation Accessibility Oracle Warehouse Builder Release Notes 11g Release 2 (11.2) E10585-04 March 2010 This document contains important information not included in the Oracle Warehouse Builder documentation. This document provides

More information

Short Summary of DB2 V4 Through V6 Changes

Short Summary of DB2 V4 Through V6 Changes IN THIS CHAPTER DB2 Version 6 Features DB2 Version 5 Features DB2 Version 4 Features Short Summary of DB2 V4 Through V6 Changes This appendix provides short checklists of features for the most recent versions

More information

EMC Documentum Composer

EMC Documentum Composer EMC Documentum Composer Version 6.5 SP2 User Guide P/N 300-009-462 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 2008 2009 EMC Corporation. All

More information

Using DDL Statements to Create and Manage Tables. Copyright 2004, Oracle. All rights reserved.

Using DDL Statements to Create and Manage Tables. Copyright 2004, Oracle. All rights reserved. Using DDL Statements to Create and Manage Tables Copyright 2004, Oracle. All rights reserved. Objectives After completing this lesson, you should be able to do the following: Categorize the main database

More information

Oracle Cloud Using Oracle IoT Connected Worker Cloud Service

Oracle Cloud Using Oracle IoT Connected Worker Cloud Service Oracle Cloud Using Oracle IoT Connected Worker Cloud Service 17.4.5 E84369-02 December 2017 Oracle Cloud Using Oracle IoT Connected Worker Cloud Service, 17.4.5 E84369-02 Copyright 2017, Oracle and/or

More information

Mysql Workbench Cannot Drop Schema

Mysql Workbench Cannot Drop Schema Mysql Workbench Cannot Drop Schema Changes in MySQL Workbench 6.2.2 (2014-09-05, Release Candidate) If Required is selected, the connection will fail if a SSL connection cannot be enabled. Expanding the

More information

RulePoint Proactive PowerCenter Monitoring

RulePoint Proactive PowerCenter Monitoring Contents Informatica Corporation RulePoint Release Notes June 27, 2011 Copyright 1998-2011 Informatica Corporation Abstract... 1 RulePoint Proactive PowerCenter Monitoring... 1 Installation... 1 Enhancements...

More information

Asset Management Migration Guide

Asset Management Migration Guide www.novell.com/documentation Asset Management Migration Guide ZENworks 11 Support Pack 2 March 20, 2012 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or

More information

Governance, Risk, and Compliance Controls Suite. Preventive Controls Governor Flow Rules User s Guide. Software Version

Governance, Risk, and Compliance Controls Suite. Preventive Controls Governor Flow Rules User s Guide. Software Version Governance, Risk, and Compliance Controls Suite Preventive Controls Governor Flow Rules User s Guide Software Version 7.2.2.1 Preventive Controls Governor: Flow Rules User s Guide Part No. AR007-7221A

More information

CA ERwin Data Modeler

CA ERwin Data Modeler CA ERwin Data Modeler Implementation Guide Service Pack 9.5.2 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to only and is subject

More information

TIBCO ActiveMatrix BPM Spotfire Visualizations

TIBCO ActiveMatrix BPM Spotfire Visualizations TIBCO ActiveMatrix BPM Spotfire Visualizations Software Release 3.0 May 2014 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED

More information

Purge Entity Definition. Oracle FLEXCUBE Universal Banking Release [May] [2018] Purge Entity Definition

Purge Entity Definition. Oracle FLEXCUBE Universal Banking Release [May] [2018] Purge Entity Definition Oracle FLEXCUBE Universal Banking Release 14.1.0.0.0 [May] [2018] 1 Contents 1. Preface... 3 1.1 Audience... 3 1.2 Related Documents... 3 2. Introduction... 3 2.1 How to use this Guide... 3 3. Overview

More information

Oracle Tuning Pack. Table Of Contents. 1 Introduction. 2 Installation and Configuration. 3 Documentation and Help. 4 Oracle SQL Analyze

Oracle Tuning Pack. Table Of Contents. 1 Introduction. 2 Installation and Configuration. 3 Documentation and Help. 4 Oracle SQL Analyze Oracle Tuning Pack Readme Release 2.1.0.0.0 for Windows February 2000 Part No. A76921-01 Table Of Contents 1 Introduction 2 Installation and Configuration 3 Documentation and Help 4 Oracle SQL Analyze

More information