Repository: Coldairarrow/Coldairarrow.Fx.Net.Easyui.GitHub
Branch: master
Commit: 920493285834
Files: 509
Total size: 9.4 MB
Directory structure:
gitextract_tryq7klz/
├── .gitattributes
├── .gitignore
├── .nuget
├── .tfignore
├── LICENSE
├── README.md
├── docs/
│ ├── 初始化文件/
│ │ ├── Coldairarrow.Fx.Net.Easyui.GitHub.bak
│ │ └── db.sql
│ └── 数据库设计/
│ ├── Base_Table.pdm
│ └── Base_Table.sws
├── src/
│ ├── Coldairarrow.Business/
│ │ ├── 00Cache/
│ │ │ ├── BaseCache/
│ │ │ │ ├── BaseCache.T.cs
│ │ │ │ └── IBaseCache.T.cs
│ │ │ └── Base_UserModelCache.cs
│ │ ├── 04.Coldairarrow.Business.csproj
│ │ ├── BaseBusiness/
│ │ │ └── BaseBusiness.T.cs
│ │ ├── Base_SysManage/
│ │ │ ├── Base_AppSecretBusiness.cs
│ │ │ ├── Base_DatabaseLinkBusiness.cs
│ │ │ ├── Base_SysLogBusiness.cs
│ │ │ ├── Base_SysRoleBusiness.cs
│ │ │ ├── Base_UserBusiness.cs
│ │ │ ├── CheckSignBusiness.cs
│ │ │ ├── HomeBusiness.cs
│ │ │ ├── PermissionManage.cs
│ │ │ ├── RapidDevelopmentBusiness.cs
│ │ │ └── UrlPermissionManage.cs
│ │ ├── Common/
│ │ │ ├── BusHelper.cs
│ │ │ └── Operator.cs
│ │ ├── Logger/
│ │ │ ├── ElasticSearchLogger.cs
│ │ │ ├── ILogger.cs
│ │ │ ├── LoggerFactory.cs
│ │ │ └── RDBMSLogger.cs
│ │ ├── Properties/
│ │ │ └── AssemblyInfo.cs
│ │ ├── app.config
│ │ └── packages.config
│ ├── Coldairarrow.Console/
│ │ ├── 06.Coldairarrow.Console.csproj
│ │ ├── App.config
│ │ ├── Program.cs
│ │ ├── Properties/
│ │ │ └── AssemblyInfo.cs
│ │ └── packages.config
│ ├── Coldairarrow.DataRepository/
│ │ ├── 02.Coldairarrow.DataRepository.csproj
│ │ ├── DbContext/
│ │ │ └── BaseDbContext.cs
│ │ ├── DbFactory.cs
│ │ ├── IRepository/
│ │ │ ├── IRepository.T.cs
│ │ │ └── IRepository.cs
│ │ ├── Properties/
│ │ │ └── AssemblyInfo.cs
│ │ ├── Repository/
│ │ │ ├── DbRepository.cs
│ │ │ ├── MySqlRepository.cs
│ │ │ ├── OracleRepository.cs
│ │ │ ├── PostgreSqlRepository.cs
│ │ │ └── SqlServerRepository.cs
│ │ ├── Transaction/
│ │ │ └── DistributedTransaction.cs
│ │ ├── app.config
│ │ ├── packages.config
│ │ └── publishNuget.bat
│ ├── Coldairarrow.Demo/
│ │ ├── 07.Coldairarrow.Demo.csproj
│ │ ├── App.config
│ │ ├── Program.cs
│ │ ├── Properties/
│ │ │ └── AssemblyInfo.cs
│ │ └── packages.config
│ ├── Coldairarrow.Entity/
│ │ ├── 03.Coldairarrow.Entity.csproj
│ │ ├── App.config
│ │ ├── Base_SysManage/
│ │ │ ├── Base_AppSecret.cs
│ │ │ ├── Base_DatabaseLink.cs
│ │ │ ├── Base_PermissionAppId.cs
│ │ │ ├── Base_PermissionRole.cs
│ │ │ ├── Base_PermissionUser.cs
│ │ │ ├── Base_SysLog.cs
│ │ │ ├── Base_SysRole.cs
│ │ │ ├── Base_UnitTest.cs
│ │ │ ├── Base_User.cs
│ │ │ ├── Base_UserRoleMap.cs
│ │ │ └── EnumType.cs
│ │ ├── Properties/
│ │ │ └── AssemblyInfo.cs
│ │ └── packages.config
│ ├── Coldairarrow.Fx.Net.Easyui.GitHub.sln
│ ├── Coldairarrow.UnitTests/
│ │ ├── 10.Coldairarrow.UnitTests.csproj
│ │ ├── App.config
│ │ ├── Base_SysManage/
│ │ │ └── Base_BusinessTests.cs
│ │ ├── Properties/
│ │ │ └── AssemblyInfo.cs
│ │ ├── UnitTest.cs
│ │ └── packages.config
│ ├── Coldairarrow.Util/
│ │ ├── 01.Coldairarrow.Util.csproj
│ │ ├── 01.Coldairarrow.Util.nuspec
│ │ ├── ApiSDK/
│ │ │ └── CTCC_IOT_ApiSDK.cs
│ │ ├── Cache/
│ │ │ ├── CacheHelper.cs
│ │ │ ├── ICache.cs
│ │ │ ├── RedisCache.cs
│ │ │ └── SystemCache.cs
│ │ ├── ClassLibrary/
│ │ │ ├── BloomFilter.cs
│ │ │ ├── LinqKit/
│ │ │ │ ├── ExpandableQuery.cs
│ │ │ │ ├── ExpressionExpander.cs
│ │ │ │ ├── ExpressionVisitor.cs
│ │ │ │ ├── Extensions.cs
│ │ │ │ └── Linq.cs
│ │ │ ├── ParentChildrenMapping.cs
│ │ │ ├── SerialConnecter/
│ │ │ │ └── SerialConnecter.cs
│ │ │ ├── ShareMemory.cs
│ │ │ ├── Sockets/
│ │ │ │ ├── SendCheckMsg.cs
│ │ │ │ ├── TcpSocketClient.cs
│ │ │ │ ├── TcpSocketConnection.cs
│ │ │ │ ├── TcpSocketServer.cs
│ │ │ │ ├── UdpSocketClient.cs
│ │ │ │ ├── UdpSocketServer.cs
│ │ │ │ ├── WebSocketConnection.cs
│ │ │ │ └── WebSocketServer.cs
│ │ │ ├── TaskQeury.cs
│ │ │ ├── Wcf/
│ │ │ │ ├── IWcfHost.cs
│ │ │ │ ├── WcfClient.cs
│ │ │ │ ├── WcfHelper.cs
│ │ │ │ └── WcfHost.cs
│ │ │ ├── WcfMS/
│ │ │ │ ├── BaseWcfMSService.cs
│ │ │ │ ├── IBaseWcfMSService.cs
│ │ │ │ ├── WcfMSBase.cs
│ │ │ │ ├── WcfMSClient.cs
│ │ │ │ ├── WcfMSConfig.cs
│ │ │ │ └── WcfMSServer.cs
│ │ │ └── WindowsService/
│ │ │ ├── WindowsService.cs
│ │ │ ├── WindowsService.designer.cs
│ │ │ └── WindowsServiceContainer.cs
│ │ ├── DataAccess/
│ │ │ ├── DbHelper.cs
│ │ │ ├── DbHelperFactory.cs
│ │ │ ├── DbProviderFactoryHelper.cs
│ │ │ ├── MySqlHelper.cs
│ │ │ ├── OracleHelper.cs
│ │ │ ├── PostgreSqlHelper.cs
│ │ │ ├── RedisHelper.cs
│ │ │ └── SqlServerHelper.cs
│ │ ├── Extention/
│ │ │ ├── Extention.ActionExecutingContext.cs
│ │ │ ├── Extention.Byte.cs
│ │ │ ├── Extention.DataTable.cs
│ │ │ ├── Extention.DateTime.cs
│ │ │ ├── Extention.Delegate.cs
│ │ │ ├── Extention.ExpandoObject.cs
│ │ │ ├── Extention.Expression.cs
│ │ │ ├── Extention.Guid.cs
│ │ │ ├── Extention.IEnumerable.cs
│ │ │ ├── Extention.IQueryable.cs
│ │ │ ├── Extention.Int.cs
│ │ │ ├── Extention.Object.cs
│ │ │ ├── Extention.Stream.cs
│ │ │ ├── Extention.String.cs
│ │ │ └── Extention.Type.cs
│ │ ├── GlobalSwitch.cs
│ │ ├── Helper/
│ │ │ ├── AsposeOfficeHelper.cs
│ │ │ ├── BaiduApiHelper.cs
│ │ │ ├── ConfigHelper.cs
│ │ │ ├── DbSearchHelper.cs
│ │ │ ├── DelegateHelper.cs
│ │ │ ├── EmitHelper.cs
│ │ │ ├── ExceptionHelper.cs
│ │ │ ├── FileHelper.cs
│ │ │ ├── FileZipHelper.cs
│ │ │ ├── GuidHelper.cs
│ │ │ ├── HttpHelper.cs
│ │ │ ├── ImgHelper.cs
│ │ │ ├── IocHelper.cs
│ │ │ ├── IpHelper.cs
│ │ │ ├── LinqHelper.cs
│ │ │ ├── LogHelper.cs
│ │ │ ├── LoopHelper.cs
│ │ │ ├── QRCodeHelper.cs
│ │ │ ├── RandomHelper.cs
│ │ │ ├── TimerHelper.cs
│ │ │ ├── TreeHelper.cs
│ │ │ ├── TypeBuilderHelper.cs
│ │ │ └── XmlHelper.cs
│ │ ├── Model/
│ │ │ ├── AjaxResult.cs
│ │ │ ├── DatabaseType.cs
│ │ │ ├── DbTableInfo.cs
│ │ │ ├── DynamicModel.cs
│ │ │ ├── EasyuiTreeDto.cs
│ │ │ ├── ErrorResult.cs
│ │ │ ├── FileEntry.cs
│ │ │ ├── LoggerType.cs
│ │ │ ├── Pagination.cs
│ │ │ ├── SuccessResult.cs
│ │ │ ├── TableInfo.cs
│ │ │ └── TreeModel.cs
│ │ ├── Properties/
│ │ │ └── AssemblyInfo.cs
│ │ ├── WebApp/
│ │ │ └── SessionHelper.cs
│ │ ├── app.config
│ │ ├── packages.config
│ │ └── publishNuget.bat
│ └── Coldairarrow.Web/
│ ├── 05.Coldairarrow.Web.csproj
│ ├── App_Start/
│ │ ├── 01Handler/
│ │ │ ├── 全局错误过滤/
│ │ │ │ └── HandlerGlobalError.cs
│ │ │ ├── 参数非空校验/
│ │ │ │ └── CheckParamNotEmptyAttribute.cs
│ │ │ ├── 后台用户接口权限校验/
│ │ │ │ ├── CheckUrlPermissionAttribute.cs
│ │ │ │ └── IgnoreUrlPermissionAttribute.cs
│ │ │ ├── 对外接口签名校验/
│ │ │ │ ├── CheckAppIdPermissionAttribute.cs
│ │ │ │ ├── CheckSignAttribute.cs
│ │ │ │ ├── IgnoreAppIdPermissionAttribute.cs
│ │ │ │ └── IgnoreSignAttribute.cs
│ │ │ └── 登录校验/
│ │ │ ├── CheckLoginAttribute.cs
│ │ │ └── IgnoreLoginAttribute.cs
│ │ ├── 02BaseController/
│ │ │ ├── BaseApiController.cs
│ │ │ ├── BaseController.cs
│ │ │ └── BaseMvcController.cs
│ │ ├── 03Extentions/
│ │ │ └── Extention.UrlHelper.cs
│ │ ├── FilterConfig.cs
│ │ └── RouteConfig.cs
│ ├── Areas/
│ │ └── Base_SysManage/
│ │ ├── Base_SysManageAreaRegistration.cs
│ │ ├── Controllers/
│ │ │ ├── Base_AppSecretController.cs
│ │ │ ├── Base_DatabaseLinkController.cs
│ │ │ ├── Base_SysLogController.cs
│ │ │ ├── Base_SysRoleController.cs
│ │ │ ├── Base_UserController.cs
│ │ │ ├── CityController.cs
│ │ │ ├── CommonController.cs
│ │ │ └── RapidDevelopmentController.cs
│ │ └── Views/
│ │ ├── Base_AppSecret/
│ │ │ ├── Form.cshtml
│ │ │ ├── Index.cshtml
│ │ │ └── PermissionForm.cshtml
│ │ ├── Base_DatabaseLink/
│ │ │ ├── Form.cshtml
│ │ │ └── Index.cshtml
│ │ ├── Base_SysLog/
│ │ │ └── Index.cshtml
│ │ ├── Base_SysRole/
│ │ │ ├── Form.cshtml
│ │ │ ├── Index.cshtml
│ │ │ └── PermissionForm.cshtml
│ │ ├── Base_User/
│ │ │ ├── ChangePwdForm.cshtml
│ │ │ ├── Form.cshtml
│ │ │ ├── Index.cshtml
│ │ │ └── PermissionForm.cshtml
│ │ ├── City/
│ │ │ └── Index.cshtml
│ │ ├── Common/
│ │ │ └── ShowBigImg.cshtml
│ │ ├── RapidDevelopment/
│ │ │ ├── Form.cshtml
│ │ │ └── Index.cshtml
│ │ └── web.config
│ ├── Common/
│ │ └── SystemMenuManage.cs
│ ├── Config/
│ │ ├── NingboGeojson.json
│ │ ├── Permission.config
│ │ ├── Province.json
│ │ ├── SystemMenu.config
│ │ ├── UrlPermission.config
│ │ ├── database.config
│ │ └── system.config
│ ├── Controllers/
│ │ ├── DemoController.cs
│ │ ├── HomeController.cs
│ │ └── TestController.cs
│ ├── Download/
│ │ └── _.txt
│ ├── Global.asax
│ ├── Global.asax.cs
│ ├── Properties/
│ │ ├── AssemblyInfo.cs
│ │ └── PublishProfiles/
│ │ └── FolderProfile.pubxml
│ ├── Scripts/
│ │ ├── business/
│ │ │ └── requestbusiness.js
│ │ ├── config.js
│ │ ├── easyui/
│ │ │ ├── datagrid-cellediting.js
│ │ │ ├── easyloader.js
│ │ │ ├── jquery.easyui.extend.js
│ │ │ ├── license_freeware.txt
│ │ │ ├── locale/
│ │ │ │ └── easyui-lang-zh_CN.js
│ │ │ ├── plugins/
│ │ │ │ ├── jquery.accordion.js
│ │ │ │ ├── jquery.calendar.js
│ │ │ │ ├── jquery.combo.js
│ │ │ │ ├── jquery.combobox.js
│ │ │ │ ├── jquery.combogrid.js
│ │ │ │ ├── jquery.combotree.js
│ │ │ │ ├── jquery.combotreegrid.js
│ │ │ │ ├── jquery.datagrid.js
│ │ │ │ ├── jquery.datalist.js
│ │ │ │ ├── jquery.datebox.js
│ │ │ │ ├── jquery.datetimebox.js
│ │ │ │ ├── jquery.datetimespinner.js
│ │ │ │ ├── jquery.dialog.js
│ │ │ │ ├── jquery.draggable.js
│ │ │ │ ├── jquery.droppable.js
│ │ │ │ ├── jquery.filebox.js
│ │ │ │ ├── jquery.form.js
│ │ │ │ ├── jquery.layout.js
│ │ │ │ ├── jquery.linkbutton.js
│ │ │ │ ├── jquery.menu.js
│ │ │ │ ├── jquery.menubutton.js
│ │ │ │ ├── jquery.messager.js
│ │ │ │ ├── jquery.mobile.js
│ │ │ │ ├── jquery.numberbox.js
│ │ │ │ ├── jquery.numberspinner.js
│ │ │ │ ├── jquery.pagination.js
│ │ │ │ ├── jquery.panel.js
│ │ │ │ ├── jquery.parser.js
│ │ │ │ ├── jquery.passwordbox.js
│ │ │ │ ├── jquery.progressbar.js
│ │ │ │ ├── jquery.propertygrid.js
│ │ │ │ ├── jquery.resizable.js
│ │ │ │ ├── jquery.searchbox.js
│ │ │ │ ├── jquery.slider.js
│ │ │ │ ├── jquery.spinner.js
│ │ │ │ ├── jquery.splitbutton.js
│ │ │ │ ├── jquery.switchbutton.js
│ │ │ │ ├── jquery.tabs.js
│ │ │ │ ├── jquery.tagbox.js
│ │ │ │ ├── jquery.textbox.js
│ │ │ │ ├── jquery.timespinner.js
│ │ │ │ ├── jquery.tooltip.js
│ │ │ │ ├── jquery.tree.js
│ │ │ │ ├── jquery.treegrid.js
│ │ │ │ ├── jquery.validatebox.js
│ │ │ │ └── jquery.window.js
│ │ │ ├── themes/
│ │ │ │ ├── bootstrap/
│ │ │ │ │ ├── accordion.css
│ │ │ │ │ ├── calendar.css
│ │ │ │ │ ├── combo.css
│ │ │ │ │ ├── combobox.css
│ │ │ │ │ ├── datagrid.css
│ │ │ │ │ ├── datalist.css
│ │ │ │ │ ├── datebox.css
│ │ │ │ │ ├── dialog.css
│ │ │ │ │ ├── easyui.css
│ │ │ │ │ ├── filebox.css
│ │ │ │ │ ├── layout.css
│ │ │ │ │ ├── linkbutton.css
│ │ │ │ │ ├── menu.css
│ │ │ │ │ ├── menubutton.css
│ │ │ │ │ ├── messager.css
│ │ │ │ │ ├── numberbox.css
│ │ │ │ │ ├── pagination.css
│ │ │ │ │ ├── panel.css
│ │ │ │ │ ├── passwordbox.css
│ │ │ │ │ ├── progressbar.css
│ │ │ │ │ ├── propertygrid.css
│ │ │ │ │ ├── searchbox.css
│ │ │ │ │ ├── slider.css
│ │ │ │ │ ├── spinner.css
│ │ │ │ │ ├── splitbutton.css
│ │ │ │ │ ├── switchbutton.css
│ │ │ │ │ ├── tabs.css
│ │ │ │ │ ├── tagbox.css
│ │ │ │ │ ├── textbox.css
│ │ │ │ │ ├── tooltip.css
│ │ │ │ │ ├── tree.css
│ │ │ │ │ ├── validatebox.css
│ │ │ │ │ └── window.css
│ │ │ │ ├── color.css
│ │ │ │ ├── default/
│ │ │ │ │ ├── accordion.css
│ │ │ │ │ ├── calendar.css
│ │ │ │ │ ├── combo.css
│ │ │ │ │ ├── combobox.css
│ │ │ │ │ ├── datagrid.css
│ │ │ │ │ ├── datalist.css
│ │ │ │ │ ├── datebox.css
│ │ │ │ │ ├── dialog.css
│ │ │ │ │ ├── easyui.css
│ │ │ │ │ ├── filebox.css
│ │ │ │ │ ├── layout.css
│ │ │ │ │ ├── linkbutton.css
│ │ │ │ │ ├── menu.css
│ │ │ │ │ ├── menubutton.css
│ │ │ │ │ ├── messager.css
│ │ │ │ │ ├── numberbox.css
│ │ │ │ │ ├── pagination.css
│ │ │ │ │ ├── panel.css
│ │ │ │ │ ├── passwordbox.css
│ │ │ │ │ ├── progressbar.css
│ │ │ │ │ ├── propertygrid.css
│ │ │ │ │ ├── searchbox.css
│ │ │ │ │ ├── slider.css
│ │ │ │ │ ├── spinner.css
│ │ │ │ │ ├── splitbutton.css
│ │ │ │ │ ├── switchbutton.css
│ │ │ │ │ ├── tabs.css
│ │ │ │ │ ├── textbox.css
│ │ │ │ │ ├── tooltip.css
│ │ │ │ │ ├── tree.css
│ │ │ │ │ ├── validatebox.css
│ │ │ │ │ └── window.css
│ │ │ │ └── icon.css
│ │ │ └── views/
│ │ │ ├── datagrid-bufferview.js
│ │ │ ├── datagrid-defaultview.js
│ │ │ ├── datagrid-detailview.js
│ │ │ ├── datagrid-groupview.js
│ │ │ └── datagrid-scrollview.js
│ │ ├── global.js
│ │ ├── typings/
│ │ │ └── jquery/
│ │ │ └── jquery.d.ts
│ │ ├── util/
│ │ │ ├── easyui-extend.js
│ │ │ ├── framework-util.js
│ │ │ ├── upload-time.js
│ │ │ └── util.js
│ │ └── vendor/
│ │ ├── easy-validate/
│ │ │ └── easy-validate.js
│ │ ├── echarts/
│ │ │ └── echarts.js
│ │ ├── highcharts/
│ │ │ ├── adapters/
│ │ │ │ ├── standalone-framework.js
│ │ │ │ └── standalone-framework.src.js
│ │ │ ├── highcharts-3d.js
│ │ │ ├── highcharts-3d.src.js
│ │ │ ├── highcharts-more.js
│ │ │ ├── highcharts-more.src.js
│ │ │ ├── highcharts.js
│ │ │ ├── highcharts.src.js
│ │ │ ├── modules/
│ │ │ │ ├── boost.js
│ │ │ │ ├── boost.src.js
│ │ │ │ ├── broken-axis.js
│ │ │ │ ├── broken-axis.src.js
│ │ │ │ ├── canvas-tools.js
│ │ │ │ ├── canvas-tools.src.js
│ │ │ │ ├── data.js
│ │ │ │ ├── data.src.js
│ │ │ │ ├── drilldown.js
│ │ │ │ ├── drilldown.src.js
│ │ │ │ ├── exporting.js
│ │ │ │ ├── exporting.src.js
│ │ │ │ ├── funnel.js
│ │ │ │ ├── funnel.src.js
│ │ │ │ ├── heatmap.js
│ │ │ │ ├── heatmap.src.js
│ │ │ │ ├── no-data-to-display.js
│ │ │ │ ├── no-data-to-display.src.js
│ │ │ │ ├── offline-exporting.js
│ │ │ │ ├── offline-exporting.src.js
│ │ │ │ ├── series-label.js
│ │ │ │ ├── series-label.src.js
│ │ │ │ ├── solid-gauge.js
│ │ │ │ ├── solid-gauge.src.js
│ │ │ │ ├── treemap.js
│ │ │ │ └── treemap.src.js
│ │ │ └── themes/
│ │ │ ├── dark-blue.js
│ │ │ ├── dark-green.js
│ │ │ ├── dark-unica.js
│ │ │ ├── gray.js
│ │ │ ├── grid-light.js
│ │ │ ├── grid.js
│ │ │ ├── sand-signika.js
│ │ │ └── skies.js
│ │ ├── html5Uploader/
│ │ │ └── html5Uploader.js
│ │ ├── layui/
│ │ │ ├── css/
│ │ │ │ ├── layui.css
│ │ │ │ ├── layui.mobile.css
│ │ │ │ └── modules/
│ │ │ │ ├── code.css
│ │ │ │ ├── laydate/
│ │ │ │ │ └── default/
│ │ │ │ │ └── laydate.css
│ │ │ │ └── layer/
│ │ │ │ └── default/
│ │ │ │ └── layer.css
│ │ │ ├── lay/
│ │ │ │ └── modules/
│ │ │ │ ├── carousel.js
│ │ │ │ ├── code.js
│ │ │ │ ├── element.js
│ │ │ │ ├── flow.js
│ │ │ │ ├── form.js
│ │ │ │ ├── jquery.js
│ │ │ │ ├── laydate.js
│ │ │ │ ├── layedit.js
│ │ │ │ ├── layer.js
│ │ │ │ ├── laypage.js
│ │ │ │ ├── laytpl.js
│ │ │ │ ├── mobile.js
│ │ │ │ ├── table.js
│ │ │ │ ├── tree.js
│ │ │ │ ├── upload.js
│ │ │ │ └── util.js
│ │ │ ├── layui.all.js
│ │ │ └── layui.js
│ │ ├── template/
│ │ │ └── template.js
│ │ ├── umeditor/
│ │ │ ├── dialogs/
│ │ │ │ ├── emotion/
│ │ │ │ │ ├── emotion.css
│ │ │ │ │ └── emotion.js
│ │ │ │ ├── formula/
│ │ │ │ │ ├── formula.css
│ │ │ │ │ ├── formula.html
│ │ │ │ │ └── formula.js
│ │ │ │ ├── image/
│ │ │ │ │ ├── image.css
│ │ │ │ │ └── image.js
│ │ │ │ ├── link/
│ │ │ │ │ └── link.js
│ │ │ │ ├── map/
│ │ │ │ │ ├── map.html
│ │ │ │ │ └── map.js
│ │ │ │ └── video/
│ │ │ │ ├── video.css
│ │ │ │ └── video.js
│ │ │ ├── index.html
│ │ │ ├── lang/
│ │ │ │ ├── en/
│ │ │ │ │ └── en.js
│ │ │ │ └── zh-cn/
│ │ │ │ └── zh-cn.js
│ │ │ ├── net/
│ │ │ │ ├── Uploader.cs
│ │ │ │ ├── getContent.ashx
│ │ │ │ ├── getContent.ashx.cs
│ │ │ │ ├── imageUp.ashx
│ │ │ │ └── imageUp.ashx.cs
│ │ │ ├── themes/
│ │ │ │ └── default/
│ │ │ │ └── css/
│ │ │ │ └── umeditor.css
│ │ │ ├── third-party/
│ │ │ │ └── mathquill/
│ │ │ │ ├── font/
│ │ │ │ │ ├── Symbola.otf
│ │ │ │ │ └── stixgeneral-bundle/
│ │ │ │ │ └── STIXFontLicense2010.txt
│ │ │ │ ├── mathquill.css
│ │ │ │ └── mathquill.js
│ │ │ ├── umeditor.config.js
│ │ │ └── umeditor.js
│ │ ├── util/
│ │ │ ├── easyui-extends.js
│ │ │ ├── upload-time.js
│ │ │ └── util.js
│ │ └── vue/
│ │ └── vue.js
│ ├── Skin/
│ │ ├── compass.watch.cmd
│ │ ├── config.rb
│ │ ├── global.css
│ │ ├── home/
│ │ │ └── desktop.css
│ │ ├── login.css
│ │ ├── reference/
│ │ │ ├── sprite-mixins.css
│ │ │ └── variables.css
│ │ ├── scss/
│ │ │ ├── global.scss
│ │ │ ├── login.scss
│ │ │ ├── reference/
│ │ │ │ ├── sprite-mixins.scss
│ │ │ │ └── variables.scss
│ │ │ └── ue_templates.scss
│ │ └── ue_templates.css
│ ├── Upload/
│ │ └── _.txt
│ ├── Views/
│ │ ├── Demo/
│ │ │ ├── UMEditor.cshtml
│ │ │ ├── UploadFileForm.cshtml
│ │ │ ├── UploadFileIndex.cshtml
│ │ │ └── UploadImgView.cshtml
│ │ ├── Home/
│ │ │ ├── Desktop.cshtml
│ │ │ ├── Index.cshtml
│ │ │ ├── Login.cshtml
│ │ │ ├── Statis.cshtml
│ │ │ └── Test.cshtml
│ │ ├── Shared/
│ │ │ ├── _Layout_List.cshtml
│ │ │ └── _Layout_List_js.cshtml
│ │ ├── Test/
│ │ │ ├── GetNingboGeojsonForm.cshtml
│ │ │ ├── Index.cshtml
│ │ │ ├── MapDatTest.cshtml
│ │ │ └── RequestDemo.cshtml
│ │ └── web.config
│ ├── Web.Debug.config
│ ├── Web.Release.config
│ ├── Web.config
│ └── packages.config
└── 框架使用说明书.docx
================================================
FILE CONTENTS
================================================
================================================
FILE: .gitattributes
================================================
###############################################################################
# Set default behavior to automatically normalize line endings.
###############################################################################
* text=auto
###############################################################################
# Set default behavior for command prompt diff.
#
# This is need for earlier builds of msysgit that does not have it on by
# default for csharp files.
# Note: This is only used by command line
###############################################################################
#*.cs diff=csharp
###############################################################################
# Set the merge driver for project and solution files
#
# Merging from the command prompt will add diff markers to the files if there
# are conflicts (Merging from VS is not affected by the settings below, in VS
# the diff markers are never inserted). Diff markers may cause the following
# file extensions to fail to load in VS. An alternative would be to treat
# these files as binary and thus will always conflict and require user
# intervention with every merge. To do so, just uncomment the entries below
###############################################################################
#*.sln merge=binary
#*.csproj merge=binary
#*.vbproj merge=binary
#*.vcxproj merge=binary
#*.vcproj merge=binary
#*.dbproj merge=binary
#*.fsproj merge=binary
#*.lsproj merge=binary
#*.wixproj merge=binary
#*.modelproj merge=binary
#*.sqlproj merge=binary
#*.wwaproj merge=binary
###############################################################################
# behavior for image files
#
# image files are treated as binary by default.
###############################################################################
#*.jpg binary
#*.png binary
#*.gif binary
###############################################################################
# diff behavior for common document formats
#
# Convert binary document formats to text before diffing them. This feature
# is only available from the command line. Turn it on by uncommenting the
# entries below.
###############################################################################
#*.doc diff=astextplain
#*.DOC diff=astextplain
#*.docx diff=astextplain
#*.DOCX diff=astextplain
#*.dot diff=astextplain
#*.DOT diff=astextplain
#*.pdf diff=astextplain
#*.PDF diff=astextplain
#*.rtf diff=astextplain
#*.RTF diff=astextplain
================================================
FILE: .gitignore
================================================
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
# User-specific files
*.suo
*.user
*.userosscache
*.sln.docstates
# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs
# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
bld/
[Bb]in/
[Oo]bj/
[Ll]og/
# Visual Studio 2015 cache/options directory
.vs/
# Uncomment if you have tasks that create the project's static files in wwwroot
#wwwroot/
# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*
# NUNIT
*.VisualState.xml
TestResult.xml
# Build Results of an ATL Project
[Dd]ebugPS/
[Rr]eleasePS/
dlldata.c
# DNX
project.lock.json
project.fragment.lock.json
artifacts/
*_i.c
*_p.c
*_i.h
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*.log
*.vspscc
*.vssscc
.builds
*.pidb
*.svclog
*.scc
# Chutzpah Test files
_Chutzpah*
# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opendb
*.opensdf
*.sdf
*.cachefile
*.VC.db
*.VC.VC.opendb
# Visual Studio profiler
*.psess
*.vsp
*.vspx
*.sap
# TFS 2012 Local Workspace
$tf/
# Guidance Automation Toolkit
*.gpState
# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper
*.DotSettings.user
# JustCode is a .NET coding add-in
.JustCode
# TeamCity is a build add-in
_TeamCity*
# DotCover is a Code Coverage Tool
*.dotCover
# NCrunch
_NCrunch_*
.*crunch*.local.xml
nCrunchTemp_*
# MightyMoose
*.mm.*
AutoTest.Net/
# Web workbench (sass)
.sass-cache/
# Installshield output folder
[Ee]xpress/
# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html
# Click-Once directory
publish/
# Publish Web Output
*.[Pp]ublish.xml
*.azurePubxml
# TODO: Comment the next line if you want to checkin your web deploy settings
# but database connection strings (with potential passwords) will be unencrypted
#*.pubxml
*.publishproj
# Microsoft Azure Web App publish settings. Comment the next line if you want to
# checkin your Azure Web App publish settings, but sensitive information contained
# in these scripts will be unencrypted
PublishScripts/
# NuGet Packages
*.nupkg
# The packages folder can be ignored because of Package Restore
**/packages/*
# except build/, which is used as an MSBuild target.
!**/packages/build/
# Uncomment if necessary however generally it will be regenerated when needed
#!**/packages/repositories.config
# NuGet v3's project.json files produces more ignoreable files
*.nuget.props
*.nuget.targets
# Microsoft Azure Build Output
csx/
*.build.csdef
# Microsoft Azure Emulator
ecf/
rcf/
# Windows Store app package directories and files
AppPackages/
BundleArtifacts/
Package.StoreAssociation.xml
_pkginfo.txt
# Visual Studio cache files
# files ending in .cache can be ignored
*.[Cc]ache
# but keep track of directories ending in .cache
!*.[Cc]ache/
# Others
ClientBin/
~$*
*~
*.dbmdl
*.dbproj.schemaview
*.jfm
*.pfx
*.publishsettings
node_modules/
orleans.codegen.cs
# Since there are multiple workflows, uncomment next line to ignore bower_components
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
#bower_components/
# RIA/Silverlight projects
Generated_Code/
# Backup & report files from converting an old project file
# to a newer Visual Studio version. Backup files are not needed,
# because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
UpgradeLog*.htm
# SQL Server files
*.mdf
*.ldf
# Business Intelligence projects
*.rdl.data
*.bim.layout
*.bim_*.settings
# Microsoft Fakes
FakesAssemblies/
# GhostDoc plugin setting file
*.GhostDoc.xml
# Node.js Tools for Visual Studio
.ntvs_analysis.dat
# Visual Studio 6 build log
*.plg
# Visual Studio 6 workspace options file
*.opt
# Visual Studio LightSwitch build output
**/*.HTMLClient/GeneratedArtifacts
**/*.DesktopClient/GeneratedArtifacts
**/*.DesktopClient/ModelManifest.xml
**/*.Server/GeneratedArtifacts
**/*.Server/ModelManifest.xml
_Pvt_Extensions
# Paket dependency manager
.paket/paket.exe
paket-files/
# FAKE - F# Make
.fake/
# JetBrains Rider
.idea/
*.sln.iml
# CodeRush
.cr/
# Python Tools for Visual Studio (PTVS)
__pycache__/
*.pyc
/src/Coldairarrow.Web/Upload/Img/2018-10-25
/src/Coldairarrow.Web/Upload/FIle
/src/Coldairarrow.Web/Upload/Img
================================================
FILE: .nuget
================================================
================================================
FILE: .tfignore
================================================
\packages
!\packages\repositories.config
================================================
FILE: LICENSE
================================================
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
================================================
FILE: README.md
================================================
# Coldairarrow.Fx.Net.Easyui.GitHub
Web后台快速开发框架,.NET452版本
使用方式:https://github.com/Coldairarrow/Coldairarrow.Fx.Net.Easyui.GitHub/wiki
================================================
FILE: docs/数据库设计/Base_Table.pdm
================================================
160EB092-2F96-4235-852F-052B990C5A86Base_TableBase_Table1506739078xgc151536569712xgc15[FolderOptions]
[FolderOptions\Physical Objects]
GenerationCheckModel=Yes
GenerationPath=
GenerationOptions=
GenerationTasks=
GenerationTargets=
GenerationSelections=
RevPkey=Yes
RevFkey=Yes
RevAkey=Yes
RevCheck=Yes
RevIndx=Yes
RevOpts=Yes
RevViewAsTabl=No
RevViewOpts=Yes
RevSystAsTabl=Yes
RevTablPerm=No
RevViewPerm=No
RevProcPerm=No
RevDbpkPerm=No
RevSqncPerm=No
RevAdtPerm=No
RevUserPriv=No
RevUserOpts=No
RevGrpePriv=No
RevRolePriv=No
RevDtbsOpts=Yes
RevDtbsPerm=No
RevViewIndx=Yes
RevJidxOpts=Yes
RevStats=No
RevTspcPerm=No
RevCaseSensitive=No
GenTrgrStdMsg=Yes
GenTrgrMsgTab=
GenTrgrMsgNo=
GenTrgrMsgTxt=
TrgrPreserve=No
TrgrIns=Yes
TrgrUpd=Yes
TrgrDel=Yes
TrgrC2Ins=Yes
TrgrC2Upd=Yes
TrgrC3=Yes
TrgrC4=Yes
TrgrC5=Yes
TrgrC6=Yes
TrgrC7=Yes
TrgrC8=Yes
TrgrC9=Yes
TrgrC10=Yes
TrgrC11=Yes
TrgrC1=Yes
TrgrC12Ins=Yes
TrgrC12Upd=Yes
TrgrC13=Yes
UpdateTableStatistics=Yes
UpdateColumnStatistics=Yes
[FolderOptions\Physical Objects\Database Generation]
GenScriptName=crebas
GenScriptName0=
GenScriptName1=
GenScriptName2=
GenScriptName3=
GenScriptName4=
GenScriptName5=
GenScriptName6=
GenScriptName7=
GenScriptName8=
GenScriptName9=
GenPathName=
GenSingleFile=Yes
GenODBC=No
GenCheckModel=Yes
GenScriptPrev=Yes
GenArchiveModel=No
GenUseSync=No
GenSyncChoice=0
GenSyncArch=
GenSyncRmg=0
[FolderOptions\Physical Objects\Database Generation\Format]
GenScriptTitle=Yes
GenScriptNamLabl=No
GenScriptQDtbs=No
GenScriptQOwnr=Yes
GenScriptCase=0
GenScriptEncoding=ANSI
GenScriptNAcct=No
IdentifierDelimiter="
[FolderOptions\Physical Objects\Database Generation\Database]
Create=Yes
Open=Yes
Close=Yes
Drop=Yes
Permission=No
[FolderOptions\Physical Objects\Database Generation\Database\Create]
Physical Options=Yes
Header=Yes
Footer=Yes
[FolderOptions\Physical Objects\Database Generation\Tablespace]
Create=Yes
Drop=Yes
Comment=Yes
Permission=No
[FolderOptions\Physical Objects\Database Generation\Tablespace\Create]
Header=Yes
Footer=Yes
[FolderOptions\Physical Objects\Database Generation\Storage]
Create=Yes
Drop=Yes
Comment=Yes
[FolderOptions\Physical Objects\Database Generation\User]
Create=Yes
Drop=Yes
Comment=Yes
Privilege=No
[FolderOptions\Physical Objects\Database Generation\User\Create]
Physical Options=No
[FolderOptions\Physical Objects\Database Generation\Group]
Create=Yes
Drop=Yes
Comment=Yes
Privilege=No
[FolderOptions\Physical Objects\Database Generation\Role]
Create=Yes
Drop=Yes
Privilege=No
[FolderOptions\Physical Objects\Database Generation\UserDefinedDataType]
Create=Yes
Comment=Yes
Drop=Yes
[FolderOptions\Physical Objects\Database Generation\UserDefinedDataType\Create]
Default value=Yes
Check=Yes
[FolderOptions\Physical Objects\Database Generation\AbstractDataType]
Create=Yes
Header=Yes
Footer=Yes
Drop=Yes
Comment=Yes
Install JAVA class=Yes
Remove JAVA class=Yes
Permission=No
[FolderOptions\Physical Objects\Database Generation\Rule]
Create=Yes
Drop=Yes
Comment=Yes
[FolderOptions\Physical Objects\Database Generation\Default]
Create=Yes
Comment=Yes
Drop=Yes
[FolderOptions\Physical Objects\Database Generation\Sequence]
Create=Yes
Drop=Yes
Comment=Yes
Permission=No
[FolderOptions\Physical Objects\Database Generation\Table&&Column]
[FolderOptions\Physical Objects\Database Generation\Table&&Column\Table]
Create=Yes
Drop=Yes
Comment=Yes
Permission=No
[FolderOptions\Physical Objects\Database Generation\Table&&Column\Table\Create]
Check=Yes
Physical Options=Yes
Header=Yes
Footer=Yes
[FolderOptions\Physical Objects\Database Generation\Table&&Column\Table\Create\Check]
Constraint declaration=No
[FolderOptions\Physical Objects\Database Generation\Table&&Column\Column]
User datatype=Yes
Default value=Yes
Check=Yes
Physical Options=Yes
Comment=Yes
[FolderOptions\Physical Objects\Database Generation\Table&&Column\Column\Check]
Constraint declaration=No
[FolderOptions\Physical Objects\Database Generation\Table&&Column\Key]
[FolderOptions\Physical Objects\Database Generation\Table&&Column\Key\Primary key]
Create=Yes
Drop=Yes
Comment=Yes
[FolderOptions\Physical Objects\Database Generation\Table&&Column\Key\Primary key\Create]
Constraint declaration=No
Physical Options=Yes
[FolderOptions\Physical Objects\Database Generation\Table&&Column\Key\Alternate key]
Create=Yes
Drop=Yes
Comment=Yes
[FolderOptions\Physical Objects\Database Generation\Table&&Column\Key\Alternate key\Create]
Constraint declaration=No
Physical Options=Yes
[FolderOptions\Physical Objects\Database Generation\Table&&Column\Foreign key]
Create=Yes
Drop=Yes
Comment=Yes
[FolderOptions\Physical Objects\Database Generation\Table&&Column\Foreign key\Create]
Constraint declaration=Yes
[FolderOptions\Physical Objects\Database Generation\Table&&Column\Index]
Create=Yes
Drop=Yes
Comment=Yes
[FolderOptions\Physical Objects\Database Generation\Table&&Column\Index\Create]
Constraint declaration=Yes
Physical Options=Yes
[FolderOptions\Physical Objects\Database Generation\Table&&Column\Index\Filter]
Primary key=No
Foreign key=Yes
Alternate key=No
Cluster=Yes
Other=Yes
[FolderOptions\Physical Objects\Database Generation\Table&&Column\Trigger]
Create=Yes
Drop=Yes
Comment=Yes
[FolderOptions\Physical Objects\Database Generation\Table&&Column\Trigger\Filter]
For insert=Yes
For update=Yes
For delete=Yes
For other=Yes
[FolderOptions\Physical Objects\Database Generation\View]
Create=Yes
Drop=Yes
Comment=Yes
Permission=No
[FolderOptions\Physical Objects\Database Generation\View\Create]
Force Column list=No
Physical Options=Yes
Header=Yes
Footer=Yes
[FolderOptions\Physical Objects\Database Generation\View\ViewColumn]
Comment=Yes
[FolderOptions\Physical Objects\Database Generation\View\ViewIndex]
Create=Yes
Drop=Yes
Comment=Yes
[FolderOptions\Physical Objects\Database Generation\View\ViewIndex\Create]
Physical Options=Yes
[FolderOptions\Physical Objects\Database Generation\View\ViewIndex\Filter]
Cluster=Yes
Other=Yes
[FolderOptions\Physical Objects\Database Generation\View\Trigger]
Create=Yes
Drop=Yes
Comment=Yes
[FolderOptions\Physical Objects\Database Generation\View\Trigger\Filter]
For insert=Yes
For update=Yes
For delete=Yes
For other=Yes
[FolderOptions\Physical Objects\Database Generation\DBMSTrigger]
Create=Yes
Drop=Yes
Comment=Yes
[FolderOptions\Physical Objects\Database Generation\Synonym]
Create=Yes
Drop=Yes
[FolderOptions\Physical Objects\Database Generation\Synonym\Filter]
Table=Yes
View=Yes
Proc=Yes
Synonym=Yes
Database Package=Yes
Sequence=Yes
[FolderOptions\Physical Objects\Database Generation\JoinIndex]
Create=Yes
Drop=Yes
Comment=Yes
[FolderOptions\Physical Objects\Database Generation\JoinIndex\Create]
Physical Options=Yes
Header=Yes
Footer=Yes
[FolderOptions\Physical Objects\Database Generation\Procedure]
Create=Yes
Drop=Yes
Comment=Yes
Permission=No
[FolderOptions\Physical Objects\Database Generation\Procedure\Create]
Header=Yes
Footer=Yes
[FolderOptions\Physical Objects\Database Generation\DatabasePackage]
Create=Yes
Drop=Yes
Permission=No
[FolderOptions\Physical Objects\Database Generation\WebService]
Create=Yes
Drop=Yes
Comment=Yes
[FolderOptions\Physical Objects\Database Generation\Dimension]
Create=Yes
Drop=Yes
[FolderOptions\Physical Objects\Database Generation\Synchronization]
GenBackupTabl=1
GenKeepBackTabl=1
GenTmpTablDrop=No
GenKeepTablOpts=No
[FolderOptions\Physical Objects\Database Generation\User <<Schema>>]
Create=Yes
Drop=Yes
Comment=Yes
[FolderOptions\Physical Objects\Database Generation\User <<User>>]
Create=Yes
Drop=Yes
Comment=Yes
Privilege=No
[FolderOptions\Physical Objects\Database Generation\ExtendedObject <<Aggregate>>]
Create=Yes
Drop=Yes
[FolderOptions\Physical Objects\Database Generation\ExtendedObject <<Aggregate>>\ExtendedSubObject <<AggregateParameter>>]
Create=Yes
[FolderOptions\Physical Objects\Database Generation\ExtendedObject <<Assembly>>]
Create=Yes
Drop=Yes
[FolderOptions\Physical Objects\Database Generation\ExtendedObject <<AsymmetricKey>>]
Create=Yes
Drop=Yes
[FolderOptions\Physical Objects\Database Generation\ExtendedObject <<Certificate>>]
Create=Yes
Drop=Yes
[FolderOptions\Physical Objects\Database Generation\ExtendedObject <<Contract>>]
Create=Yes
Drop=Yes
[FolderOptions\Physical Objects\Database Generation\ExtendedObject <<EndPoint>>]
Create=Yes
Drop=Yes
[FolderOptions\Physical Objects\Database Generation\ExtendedObject <<EventNotification>>]
Create=Yes
Drop=Yes
[FolderOptions\Physical Objects\Database Generation\ExtendedObject <<FullTextCatalog>>]
Create=Yes
Drop=Yes
[FolderOptions\Physical Objects\Database Generation\ExtendedObject <<MessageType>>]
Create=Yes
Drop=Yes
[FolderOptions\Physical Objects\Database Generation\ExtendedObject <<PartitionFunction>>]
Create=Yes
Drop=Yes
[FolderOptions\Physical Objects\Database Generation\ExtendedObject <<PartitionScheme>>]
Create=Yes
Drop=Yes
[FolderOptions\Physical Objects\Database Generation\ExtendedObject <<Queue>>]
Create=Yes
Drop=Yes
[FolderOptions\Physical Objects\Database Generation\ExtendedObject <<RemoteServiceBinding>>]
Create=Yes
Drop=Yes
[FolderOptions\Physical Objects\Database Generation\ExtendedObject <<ResourcePool>>]
Create=Yes
Drop=Yes
[FolderOptions\Physical Objects\Database Generation\ExtendedObject <<Route>>]
Create=Yes
Drop=Yes
[FolderOptions\Physical Objects\Database Generation\ExtendedObject <<Service>>]
Create=Yes
Drop=Yes
[FolderOptions\Physical Objects\Database Generation\ExtendedObject <<SymmetricKey>>]
Create=Yes
Drop=Yes
[FolderOptions\Physical Objects\Database Generation\ExtendedObject <<WorkloadGroup>>]
Create=Yes
Drop=Yes
[FolderOptions\Physical Objects\Database Generation\ExtendedObject <<XMLSchemaCollection>>]
Create=Yes
Drop=Yes
[FolderOptions\Physical Objects\Test Data]
GenDataPathName=
GenDataSinglefile=Yes
GenDataScriptName=testdata
GenDataScriptName0=
GenDataScriptName1=
GenDataScriptName2=
GenDataScriptName3=
GenDataScriptName4=
GenDataScriptName5=
GenDataScriptName6=
GenDataScriptName7=
GenDataScriptName8=
GenDataScriptName9=
GenDataOdbc=0
GenDataDelOld=No
GenDataTitle=No
GenDataDefNumRows=20
GenDataCommit=0
GenDataPacket=0
GenDataOwner=No
GenDataProfNumb=
GenDataProfChar=
GenDataProfDate=
GenDataCSVSeparator=,
GenDataFileFormat=CSV
GenDataUseWizard=No
[FolderOptions\Pdm]
IndxIQName=%COLUMN%_%INDEXTYPE%
IndxPK=Yes
IndxFK=Yes
IndxAK=Yes
IndxPKName=%TABLE%_PK
IndxFKName=%REFR%_FK
IndxAKName=%AKEY%_AK
IndxPreserve=No
IndxThreshold=0
IndxStats=No
RefrPreserve=No
JidxPreserve=No
RbldMultiFact=Yes
RbldMultiDim=Yes
RbldMultiJidx=Yes
CubePreserve=No
TablStProcPreserve=No
ProcDepPreserve=Yes
TrgrDepPreserve=Yes
CubeScriptPath=
CubeScriptCase=0
CubeScriptEncoding=ANSI
CubeScriptNacct=No
CubeScriptHeader=No
CubeScriptExt=csv
CubeScriptExt0=txt
CubeScriptExt1=
CubeScriptExt2=
CubeScriptSep=,
CubeScriptDeli="
EstimationYears=0
DfltDomnName=D_%.U:VALUE%
DfltColnName=D_%.U:VALUE%
DfltReuse=Yes
DfltDrop=Yes[ModelOptions]
[ModelOptions\Physical Objects]
CaseSensitive=No
DisplayName=Yes
EnableTrans=No
UseTerm=No
EnableRequirements=No
EnableFullShortcut=Yes
DefaultDttp=
IgnoreOwner=No
RebuildTrigger=Yes
RefrUnique=No
RefrAutoMigrate=Yes
RefrMigrateReuse=Yes
RefrMigrateDomain=Yes
RefrMigrateCheck=Yes
RefrMigrateRule=Yes
RefrMigrateExtd=No
RefrMigrDefaultLink=No
RefrDfltImpl=D
RefrPrgtColn=No
RefrMigrateToEnd=No
RebuildTriggerDep=No
ColnFKName=%.3:PARENT%_%COLUMN%
ColnFKNameUse=No
DomnCopyDttp=Yes
DomnCopyChck=No
DomnCopyRule=No
DomnCopyMand=No
DomnCopyExtd=No
DomnCopyProf=No
Notation=0
DomnDefaultMandatory=No
ColnDefaultMandatory=No
TablDefaultOwner=
ViewDefaultOwner=
TrgrDefaultOwnerTabl=
TrgrDefaultOwnerView=
IdxDefaultOwnerTabl=
IdxDefaultOwnerView=
JdxDefaultOwner=
DBPackDefaultOwner=
SeqDefaultOwner=
ProcDefaultOwner=
DBMSTrgrDefaultOwner=
Currency=USD
RefrDeleteConstraint=0
RefrUpdateConstraint=0
RefrParentMandatory=No
RefrParentChangeAllow=Yes
RefrCheckOnCommit=No
[ModelOptions\Physical Objects\NamingOptionsTemplates]
[ModelOptions\Physical Objects\ClssNamingOptions]
[ModelOptions\Physical Objects\ClssNamingOptions\PDMPCKG]
[ModelOptions\Physical Objects\ClssNamingOptions\PDMPCKG\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\PDMPCKG\Code]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\PDMDOMN]
[ModelOptions\Physical Objects\ClssNamingOptions\PDMDOMN\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\PDMDOMN\Code]
Template=
MaxLen=128
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\TABL]
[ModelOptions\Physical Objects\ClssNamingOptions\TABL\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\TABL\Code]
Template=
MaxLen=128
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\COLN]
[ModelOptions\Physical Objects\ClssNamingOptions\COLN\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\COLN\Code]
Template=
MaxLen=128
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\INDX]
[ModelOptions\Physical Objects\ClssNamingOptions\INDX\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\INDX\Code]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\REFR]
[ModelOptions\Physical Objects\ClssNamingOptions\REFR\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\REFR\Code]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\VREF]
[ModelOptions\Physical Objects\ClssNamingOptions\VREF\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\VREF\Code]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\VIEW]
[ModelOptions\Physical Objects\ClssNamingOptions\VIEW\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\VIEW\Code]
Template=
MaxLen=128
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\VIEWC]
[ModelOptions\Physical Objects\ClssNamingOptions\VIEWC\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\VIEWC\Code]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\WEBSERV]
[ModelOptions\Physical Objects\ClssNamingOptions\WEBSERV\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\WEBSERV\Code]
Template=
MaxLen=254
Case=M
ValidChar='a'-'z','A'-'Z','0'-'9',"/-_.!~*'()"
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\WEBOP]
[ModelOptions\Physical Objects\ClssNamingOptions\WEBOP\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\WEBOP\Code]
Template=
MaxLen=254
Case=M
ValidChar='a'-'z','A'-'Z','0'-'9',"/-_.!~*'()"
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\WPARAM]
[ModelOptions\Physical Objects\ClssNamingOptions\WPARAM\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\WPARAM\Code]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\FACT]
[ModelOptions\Physical Objects\ClssNamingOptions\FACT\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\FACT\Code]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\DIMN]
[ModelOptions\Physical Objects\ClssNamingOptions\DIMN\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\DIMN\Code]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\MEAS]
[ModelOptions\Physical Objects\ClssNamingOptions\MEAS\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\MEAS\Code]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\DATTR]
[ModelOptions\Physical Objects\ClssNamingOptions\DATTR\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\DATTR\Code]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\FILO]
[ModelOptions\Physical Objects\ClssNamingOptions\FILO\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\FILO\Code]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\FRMEOBJ]
[ModelOptions\Physical Objects\ClssNamingOptions\FRMEOBJ\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\FRMEOBJ\Code]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\FRMELNK]
[ModelOptions\Physical Objects\ClssNamingOptions\FRMELNK\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\FRMELNK\Code]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\DefaultClass]
[ModelOptions\Physical Objects\ClssNamingOptions\DefaultClass\Name]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Physical Objects\ClssNamingOptions\DefaultClass\Code]
Template=
MaxLen=254
Case=M
ValidChar=
InvldChar=
AllValid=Yes
NoAccent=No
DefaultChar=
Script=
ConvTable=
ConvTablePath=%_HOME%\Resource Files\Conversion Tables
[ModelOptions\Connection]
[ModelOptions\Pdm]
[ModelOptions\Generate]
[ModelOptions\Generate\Xsm]
GenRootElement=Yes
GenComplexType=No
GenAttribute=Yes
CheckModel=Yes
SaveLinks=Yes
ORMapping=No
NameToCode=No
[ModelOptions\Generate\Pdm]
RRMapping=No
[ModelOptions\Generate\Cdm]
CheckModel=Yes
SaveLinks=Yes
NameToCode=No
Notation=2
[ModelOptions\Generate\Oom]
CheckModel=Yes
SaveLinks=Yes
ORMapping=No
NameToCode=Yes
ClassPrefix=
[ModelOptions\Generate\Ldm]
CheckModel=Yes
SaveLinks=Yes
NameToCode=No
[ModelOptions\Default Opts]
[ModelOptions\Default Opts\TABL]
PhysOpts=
[ModelOptions\Default Opts\COLN]
PhysOpts=
[ModelOptions\Default Opts\INDX]
PhysOpts=
[ModelOptions\Default Opts\AKEY]
PhysOpts=
[ModelOptions\Default Opts\PKEY]
PhysOpts=
[ModelOptions\Default Opts\STOR]
PhysOpts=
[ModelOptions\Default Opts\TSPC]
PhysOpts=
[ModelOptions\Default Opts\SQNC]
PhysOpts=
[ModelOptions\Default Opts\DTBS]
PhysOpts=
[ModelOptions\Default Opts\USER]
PhysOpts=
[ModelOptions\Default Opts\JIDX]
PhysOpts=
[ModelOptions\Default Opts\FRMEOBJ<<ResourcePool>>]
PhysOpts=
[ModelOptions\Default Opts\FRMEOBJ<<WorkloadGroup>>]
PhysOpts=
[ModelOptions\Default Opts\FRMESOB<<ResourcePool>>]
PhysOpts=
[ModelOptions\Default Opts\FRMESOB<<WorkloadGroup>>]
PhysOpts=CCE4FBFC-B300-47D9-8E20-B1A09F5ABACFMicrosoft SQL Server 2008MSSQLSRV20081506739078xgc151506739078xgc15F5C20738-B05A-4F70-BC90-9B5EB94377664BA9F647-DAB1-11D1-9944-006097355D9B5A69F729-BEF2-4E0C-99B2-54CA329A99A9PhysicalDiagram_1PhysicalDiagram_11506739078xgc151536569712xgc15[DisplayPreferences]
[DisplayPreferences\PDM]
[DisplayPreferences\General]
Adjust to text=Yes
Snap Grid=No
Constrain Labels=Yes
Display Grid=No
Show Page Delimiter=Yes
Show Links intersections=Yes
Activate automatic link routing=Yes
Grid size=0
Graphic unit=2
Window color=255, 255, 255
Background image=
Background mode=8
Watermark image=
Watermark mode=8
Show watermark on screen=No
Gradient mode=0
Gradient end color=255, 255, 255
Show Swimlane=No
SwimlaneVert=Yes
TreeVert=No
CompDark=0
[DisplayPreferences\Object]
Show Icon=No
Mode=2
Trunc Length=40
Word Length=40
Word Text=!"#$%&')*+,-./:;=>?@\]^_`|}~
Shortcut IntIcon=Yes
Shortcut IntLoct=Yes
Shortcut IntFullPath=No
Shortcut IntLastPackage=Yes
Shortcut ExtIcon=Yes
Shortcut ExtLoct=No
Shortcut ExtFullPath=No
Shortcut ExtLastPackage=Yes
Shortcut ExtIncludeModl=Yes
EObjShowStrn=Yes
ExtendedObject.Comment=No
ExtendedObject.IconPicture=No
ExtendedObject.TextStyle=No
ExtendedObject_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Object Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
ELnkShowStrn=Yes
ELnkShowName=Yes
ExtendedLink_SymbolLayout=<Form>[CRLF] <Form Name="Center" >[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Caption="" Mandatory="No" />[CRLF] </Form>[CRLF] <Form Name="Source" >[CRLF] </Form>[CRLF] <Form Name="Destination" >[CRLF] </Form>[CRLF]</Form>
FileObject.Stereotype=No
FileObject.DisplayName=Yes
FileObject.LocationOrName=No
FileObject.IconPicture=No
FileObject.TextStyle=No
FileObject.IconMode=Yes
FileObject_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <ExclusiveChoice Name="Exclusive Choice" Mandatory="Yes" Display="HorizontalRadios" >[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Location" Attribute="LocationOrName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] </ExclusiveChoice>[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
Package.Stereotype=Yes
Package.Comment=No
Package.IconPicture=No
Package.TextStyle=No
Package_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
Display Model Version=Yes
Table.Stereotype=Yes
Table.DisplayName=Yes
Table.OwnerDisplayName=No
Table.Columns=Yes
Table.Columns._Filter="All Columns" PDMCOLNALL
Table.Columns._Columns=Stereotype DataType KeyIndicator
Table.Columns._Limit=-5
Table.Keys=No
Table.Keys._Columns=Stereotype Indicator
Table.Indexes=No
Table.Indexes._Columns=Stereotype
Table.Triggers=No
Table.Triggers._Columns=Stereotype
Table.Comment=No
Table.IconPicture=No
Table.TextStyle=No
Table_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <ExclusiveChoice Name="Exclusive Choice" Mandatory="Yes" Display="HorizontalRadios" >[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Owner and Name" Attribute="OwnerDisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] </ExclusiveChoice>[CRLF] <Separator Name="Separator" />[CRLF] <StandardCollection Name="Columns" Collection="Columns" Columns="Stereotype No\r\nDisplayName Yes\r\nDataType No\r\nSymbolDataType No "Domain or Data type"\r\nDomain No\r\nKeyIndicator No\r\nIndexIndicator No\r\nNullStatus No" Filters=""All Columns" PDMCOLNALL ""\r\n"PK Columns" PDMCOLNPK "\"PRIM \"TRUE\" TRUE\""\r\n"Key Columns" PDMCOLNKEY "\"KEYS \"TRUE\" TRUE\""" HasLimit="Yes" HideEmpty="No" Caption="" Mandatory="No" />[CRLF] <StandardCollection Name="Keys" Collection="Keys" Columns="Stereotype No\r\nDisplayName Yes\r\nIndicator No" HasLimit="No" HideEmpty="No" Caption="" Mandatory="No" />[CRLF] <StandardCollection Name="Indexes" Collection="Indexes" Columns="Stereotype No\r\nDisplayName Yes\r\nIndicator No" HasLimit="No" HideEmpty="No" Caption="" Mandatory="No" />[CRLF] <StandardCollection Name="Triggers" Collection="Triggers" Columns="Stereotype No\r\nDisplayName Yes" HasLimit="No" HideEmpty="No" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
View.Stereotype=Yes
View.DisplayName=Yes
View.OwnerDisplayName=No
View.Columns=Yes
View.Columns._Columns=DisplayName
View.Columns._Limit=-5
View.TemporaryVTables=Yes
View.Indexes=No
View.Comment=No
View.IconPicture=No
View.TextStyle=No
View_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <ExclusiveChoice Name="Exclusive Choice" Mandatory="Yes" Display="HorizontalRadios" >[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Owner and Name" Attribute="OwnerDisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] </ExclusiveChoice>[CRLF] <Separator Name="Separator" />[CRLF] <StandardCollection Name="Columns" Collection="Columns" Columns="DisplayName No\r\nExpression No\r\nDataType No\r\nSymbolDataType No "Domain or Data type"\r\nIndexIndicator No" HasLimit="Yes" HideEmpty="No" Caption="" Mandatory="No" />[CRLF] <StandardCollection Name="Tables" Collection="TemporaryVTables" Columns="Name Yes" HasLimit="No" HideEmpty="No" Caption="" Mandatory="No" />[CRLF] <StandardCollection Name="Indexes" Collection="Indexes" Columns="DisplayName Yes" HasLimit="No" HideEmpty="No" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
Procedure.Stereotype=No
Procedure.DisplayName=Yes
Procedure.OwnerDisplayName=No
Procedure.Comment=No
Procedure.IconPicture=No
Procedure.TextStyle=No
Procedure_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <ExclusiveChoice Name="Exclusive Choice" Mandatory="Yes" Display="HorizontalRadios" >[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Owner and Name" Attribute="OwnerDisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] </ExclusiveChoice>[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
Reference.Cardinality=No
Reference.ImplementationType=No
Reference.ChildRole=Yes
Reference.Stereotype=Yes
Reference.DisplayName=No
Reference.ForeignKeyConstraintName=No
Reference.JoinExpression=No
Reference.Integrity=No
Reference.ParentRole=Yes
Reference_SymbolLayout=<Form>[CRLF] <Form Name="Source" >[CRLF] <StandardAttribute Name="Cardinality" Attribute="Cardinality" Prefix="" Suffix="" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Implementation" Attribute="ImplementationType" Prefix="" Suffix="" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Child Role" Attribute="ChildRole" Prefix="" Suffix="" Caption="" Mandatory="No" />[CRLF] </Form>[CRLF] <Form Name="Center" >[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Caption="" Mandatory="No" />[CRLF] <ExclusiveChoice Name="Exclusive Choice" Mandatory="No" Display="HorizontalRadios" >[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Cons&traint Name" Attribute="ForeignKeyConstraintName" Prefix="" Suffix="" Caption="Cons&traint Name" Mandatory="No" />[CRLF] <StandardAttribute Name="Join" Attribute="JoinExpression" Prefix="" Suffix="" Caption="Join" Mandatory="No" />[CRLF] </ExclusiveChoice>[CRLF] <StandardAttribute Name="Referential integrity" Attribute="Integrity" Prefix="" Suffix="" Caption="Referential integrity" Mandatory="No" />[CRLF] </Form>[CRLF] <Form Name="Destination" >[CRLF] <StandardAttribute Name="Parent Role" Attribute="ParentRole" Prefix="" Suffix="" Caption="" Mandatory="No" />[CRLF] </Form>[CRLF]</Form>
ViewReference.ChildRole=Yes
ViewReference.Stereotype=Yes
ViewReference.DisplayName=No
ViewReference.JoinExpression=No
ViewReference.ParentRole=Yes
ViewReference_SymbolLayout=<Form>[CRLF] <Form Name="Source" >[CRLF] <StandardAttribute Name="Child Role" Attribute="ChildRole" Prefix="" Suffix="" Caption="" Mandatory="No" />[CRLF] </Form>[CRLF] <Form Name="Center" >[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Caption="" Mandatory="No" />[CRLF] <ExclusiveChoice Name="Exclusive Choice" Mandatory="No" Display="HorizontalRadios" >[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Join Expression" Attribute="JoinExpression" Prefix="" Suffix="" Caption="" Mandatory="No" />[CRLF] </ExclusiveChoice>[CRLF] </Form>[CRLF] <Form Name="Destination" >[CRLF] <StandardAttribute Name="Parent Role" Attribute="ParentRole" Prefix="" Suffix="" Caption="" Mandatory="No" />[CRLF] </Form>[CRLF]</Form>
[DisplayPreferences\Symbol]
[DisplayPreferences\Symbol\FRMEOBJ]
STRNFont=新宋体,8,N
STRNFont color=0, 0, 0
DISPNAMEFont=新宋体,8,N
DISPNAMEFont color=0, 0, 0
LABLFont=新宋体,8,N
LABLFont color=0, 0, 0
AutoAdjustToText=Yes
Keep aspect=No
Keep center=No
Keep size=No
Width=6000
Height=2000
Brush color=255 255 255
Fill Color=Yes
Brush style=6
Brush bitmap mode=12
Brush gradient mode=64
Brush gradient color=192 192 192
Brush background image=
Custom shape=
Custom text mode=0
Pen=1 0 255 128 128
Shadow color=192 192 192
Shadow=0
[DisplayPreferences\Symbol\FRMELNK]
CENTERFont=新宋体,8,N
CENTERFont color=0, 0, 0
Line style=1
AutoAdjustToText=Yes
Keep aspect=No
Keep center=No
Keep size=No
Brush color=255 255 255
Fill Color=Yes
Brush style=1
Brush bitmap mode=12
Brush gradient mode=0
Brush gradient color=118 118 118
Brush background image=
Custom shape=
Custom text mode=0
Pen=1 0 128 128 255
Shadow color=192 192 192
Shadow=0
[DisplayPreferences\Symbol\FILO]
OBJSTRNFont=新宋体,8,N
OBJSTRNFont color=0, 0, 0
DISPNAMEFont=新宋体,8,N
DISPNAMEFont color=0, 0, 0
LCNMFont=新宋体,8,N
LCNMFont color=0, 0, 0
AutoAdjustToText=Yes
Keep aspect=No
Keep center=No
Keep size=No
Width=4800
Height=3600
Brush color=255 255 255
Fill Color=Yes
Brush style=1
Brush bitmap mode=12
Brush gradient mode=0
Brush gradient color=118 118 118
Brush background image=
Custom shape=
Custom text mode=0
Pen=1 0 0 0 255
Shadow color=192 192 192
Shadow=0
[DisplayPreferences\Symbol\PDMPCKG]
STRNFont=新宋体,8,N
STRNFont color=0, 0, 0
DISPNAMEFont=新宋体,8,N
DISPNAMEFont color=0, 0, 0
LABLFont=新宋体,8,N
LABLFont color=0, 0, 0
AutoAdjustToText=Yes
Keep aspect=No
Keep center=No
Keep size=No
Width=4800
Height=4000
Brush color=255 255 192
Fill Color=Yes
Brush style=6
Brush bitmap mode=12
Brush gradient mode=65
Brush gradient color=255 255 255
Brush background image=
Custom shape=
Custom text mode=0
Pen=1 0 178 178 178
Shadow color=192 192 192
Shadow=0
[DisplayPreferences\Symbol\TABL]
STRNFont=新宋体,8,N
STRNFont color=0, 0, 0
DISPNAMEFont=新宋体,8,N
DISPNAMEFont color=0, 0, 0
OWNRDISPNAMEFont=新宋体,8,N
OWNRDISPNAMEFont color=0, 0, 0
ColumnsFont=新宋体,8,N
ColumnsFont color=0, 0, 0
TablePkColumnsFont=新宋体,8,U
TablePkColumnsFont color=0, 0, 0
TableFkColumnsFont=新宋体,8,N
TableFkColumnsFont color=0, 0, 0
KeysFont=新宋体,8,N
KeysFont color=0, 0, 0
IndexesFont=新宋体,8,N
IndexesFont color=0, 0, 0
TriggersFont=新宋体,8,N
TriggersFont color=0, 0, 0
LABLFont=新宋体,8,N
LABLFont color=0, 0, 0
AutoAdjustToText=Yes
Keep aspect=No
Keep center=No
Keep size=No
Width=4800
Height=4000
Brush color=178 214 252
Fill Color=Yes
Brush style=6
Brush bitmap mode=12
Brush gradient mode=65
Brush gradient color=255 255 255
Brush background image=
Custom shape=
Custom text mode=0
Pen=1 0 0 128 192
Shadow color=192 192 192
Shadow=0
[DisplayPreferences\Symbol\VIEW]
STRNFont=新宋体,8,N
STRNFont color=0, 0, 0
DISPNAMEFont=新宋体,8,N
DISPNAMEFont color=0, 0, 0
OWNRDISPNAMEFont=新宋体,8,N
OWNRDISPNAMEFont color=0, 0, 0
ColumnsFont=新宋体,8,N
ColumnsFont color=0, 0, 0
TablePkColumnsFont=新宋体,8,U
TablePkColumnsFont color=0, 0, 0
TableFkColumnsFont=新宋体,8,N
TableFkColumnsFont color=0, 0, 0
TemporaryVTablesFont=新宋体,8,N
TemporaryVTablesFont color=0, 0, 0
IndexesFont=新宋体,8,N
IndexesFont color=0, 0, 0
LABLFont=新宋体,8,N
LABLFont color=0, 0, 0
AutoAdjustToText=Yes
Keep aspect=No
Keep center=No
Keep size=No
Width=4800
Height=4000
Brush color=208 208 255
Fill Color=Yes
Brush style=6
Brush bitmap mode=12
Brush gradient mode=65
Brush gradient color=255 255 255
Brush background image=
Custom shape=
Custom text mode=0
Pen=1 0 128 128 192
Shadow color=192 192 192
Shadow=0
[DisplayPreferences\Symbol\PROC]
STRNFont=新宋体,8,N
STRNFont color=0, 0, 0
DISPNAMEFont=新宋体,8,N
DISPNAMEFont color=0, 0, 0
OWNRDISPNAMEFont=新宋体,8,N
OWNRDISPNAMEFont color=0, 0, 0
LABLFont=新宋体,8,N
LABLFont color=0, 0, 0
AutoAdjustToText=Yes
Keep aspect=No
Keep center=No
Keep size=No
Width=4000
Height=1000
Brush color=255 255 192
Fill Color=Yes
Brush style=6
Brush bitmap mode=12
Brush gradient mode=65
Brush gradient color=255 255 255
Brush background image=
Custom shape=
Custom text mode=0
Pen=1 0 128 108 0
Shadow color=192 192 192
Shadow=0
[DisplayPreferences\Symbol\REFR]
SOURCEFont=新宋体,8,N
SOURCEFont color=0, 0, 0
CENTERFont=新宋体,8,N
CENTERFont color=0, 0, 0
DESTINATIONFont=新宋体,8,N
DESTINATIONFont color=0, 0, 0
Line style=1
AutoAdjustToText=Yes
Keep aspect=No
Keep center=No
Keep size=No
Brush color=255 255 255
Fill Color=Yes
Brush style=1
Brush bitmap mode=12
Brush gradient mode=0
Brush gradient color=118 118 118
Brush background image=
Custom shape=
Custom text mode=0
Pen=1 0 0 128 192
Shadow color=192 192 192
Shadow=0
[DisplayPreferences\Symbol\VREF]
SOURCEFont=新宋体,8,N
SOURCEFont color=0, 0, 0
CENTERFont=新宋体,8,N
CENTERFont color=0, 0, 0
DESTINATIONFont=新宋体,8,N
DESTINATIONFont color=0, 0, 0
Line style=1
AutoAdjustToText=Yes
Keep aspect=No
Keep center=No
Keep size=No
Brush color=255 255 255
Fill Color=Yes
Brush style=1
Brush bitmap mode=12
Brush gradient mode=0
Brush gradient color=118 118 118
Brush background image=
Custom shape=
Custom text mode=0
Pen=1 0 128 128 192
Shadow color=192 192 192
Shadow=0
[DisplayPreferences\Symbol\USRDEPD]
OBJXSTRFont=新宋体,8,N
OBJXSTRFont color=0, 0, 0
Line style=1
AutoAdjustToText=Yes
Keep aspect=No
Keep center=No
Keep size=No
Brush color=255 255 255
Fill Color=Yes
Brush style=1
Brush bitmap mode=12
Brush gradient mode=0
Brush gradient color=118 118 118
Brush background image=
Custom shape=
Custom text mode=0
Pen=2 0 128 128 255
Shadow color=192 192 192
Shadow=0
[DisplayPreferences\Symbol\Free Symbol]
Free TextFont=新宋体,8,N
Free TextFont color=0, 0, 0
Line style=0
AutoAdjustToText=Yes
Keep aspect=No
Keep center=No
Keep size=No
Brush color=255 255 255
Fill Color=Yes
Brush style=1
Brush bitmap mode=12
Brush gradient mode=0
Brush gradient color=118 118 118
Brush background image=
Custom shape=
Custom text mode=0
Pen=1 0 0 0 255
Shadow color=192 192 192
Shadow=0(8268, 11693)((315,354), (433,354))11515067391001506740418-1((-23080,7260), (-8970,15080))0126156801657003412632256STRN 0 新宋体,8,N
DISPNAME 0 新宋体,8,N
OWNRDISPNAME 0 新宋体,8,N
Columns 0 新宋体,8,N
TablePkColumns 0 新宋体,8,U
TableFkColumns 0 新宋体,8,N
Keys 0 新宋体,8,N
Indexes 0 新宋体,8,N
Triggers 0 新宋体,8,N
LABL 0 新宋体,8,N66516777215115071828821537275215-1((13402,-5170), (26376,378))126156801657003412632256STRN 0 新宋体,8,N
DISPNAME 0 新宋体,8,N
OWNRDISPNAME 0 新宋体,8,N
Columns 0 新宋体,8,N
TablePkColumns 0 新宋体,8,U
TableFkColumns 0 新宋体,8,N
Keys 0 新宋体,8,N
Indexes 0 新宋体,8,N
Triggers 0 新宋体,8,N
LABL 0 新宋体,8,N6651677721515076233251537275207-1((8331,10353), (23370,15825))0126156801657003412632256STRN 0 新宋体,8,N
DISPNAME 0 新宋体,8,N
OWNRDISPNAME 0 新宋体,8,N
Columns 0 新宋体,8,N
TablePkColumns 0 新宋体,8,U
TableFkColumns 0 新宋体,8,N
Keys 0 新宋体,8,N
Indexes 0 新宋体,8,N
Triggers 0 新宋体,8,N
LABL 0 新宋体,8,N66516777215115089786021536569369-1((-23103,449), (-9690,5431))0126156801657003412632256STRN 0 新宋体,8,N
DISPNAME 0 新宋体,8,N
OWNRDISPNAME 0 新宋体,8,N
Columns 0 新宋体,8,N
TablePkColumns 0 新宋体,8,U
TableFkColumns 0 新宋体,8,N
Keys 0 新宋体,8,N
Indexes 0 新宋体,8,N
Triggers 0 新宋体,8,N
LABL 0 新宋体,8,N66516777215115365691881537275214-1((-7948,250), (8370,4250))0126156801657003412632256STRN 0 新宋体,8,N
DISPNAME 0 新宋体,8,N
OWNRDISPNAME 0 新宋体,8,N
Columns 0 新宋体,8,N
TablePkColumns 0 新宋体,8,U
TableFkColumns 0 新宋体,8,N
Keys 0 新宋体,8,N
Indexes 0 新宋体,8,N
Triggers 0 新宋体,8,N
LABL 0 新宋体,8,N66516777215115365692871537275204-1((-7798,11275), (7650,15275))0126156801657003412632256STRN 0 新宋体,8,N
DISPNAME 0 新宋体,8,N
OWNRDISPNAME 0 新宋体,8,N
Columns 0 新宋体,8,N
TablePkColumns 0 新宋体,8,U
TableFkColumns 0 新宋体,8,N
Keys 0 新宋体,8,N
Indexes 0 新宋体,8,N
Triggers 0 新宋体,8,N
LABL 0 新宋体,8,N66516777215115365693801537275211-1((-7864,5650), (7890,9650))0126156801657003412632256STRN 0 新宋体,8,N
DISPNAME 0 新宋体,8,N
OWNRDISPNAME 0 新宋体,8,N
Columns 0 新宋体,8,N
TablePkColumns 0 新宋体,8,U
TableFkColumns 0 新宋体,8,N
Keys 0 新宋体,8,N
Indexes 0 新宋体,8,N
Triggers 0 新宋体,8,N
LABL 0 新宋体,8,N66516777215115365694461537275212-1((10661,3194), (23803,9320))0126156801657003412632256STRN 0 新宋体,8,N
DISPNAME 0 新宋体,8,N
OWNRDISPNAME 0 新宋体,8,N
Columns 0 新宋体,8,N
TablePkColumns 0 新宋体,8,U
TableFkColumns 0 新宋体,8,N
Keys 0 新宋体,8,N
Indexes 0 新宋体,8,N
Triggers 0 新宋体,8,N
LABL 0 新宋体,8,N66516777215115365697121536569714-1((-23075,-6091), (-9662,-1109))0126156801657003412632256STRN 0 新宋体,8,N
DISPNAME 0 新宋体,8,N
OWNRDISPNAME 0 新宋体,8,N
Columns 0 新宋体,8,N
TablePkColumns 0 新宋体,8,U
TableFkColumns 0 新宋体,8,N
Keys 0 新宋体,8,N
Indexes 0 新宋体,8,N
Triggers 0 新宋体,8,N
LABL 0 新宋体,8,N665167772151C0ADB72D-C082-44EE-A15B-D2D44310D18CReport 1Report 11520149495xgc151520149497xgc15xgc15%DATE%LightBlue_Theme.cssHeader_LightBlue.htmlFooter_LightBlue.html541840Home_LightBlue.htmlLight BlueProfessional1ED4A063B-7E7F-4F99-84C5-38253A6716B81520149495xgc151520149497xgc15新宋体10144231061505FD2649D-D025-44D9-849C-A1CE18FA290C1520149495xgc151520149497xgc15Microsoft Sans Serif1040FFBC2925-6524-415C-A652-1BEDC3A64589Section_201520149497xgc15160EB092-2F96-4235-852F-052B990C5A86%_HOME%\Resource Files\Report Templates\pdmlisus.rtp1TEMPLATEPDM%MODULE% %MODELNAME%Physical Data Model Base_Table0%APPNAME% %DATE% Page %PAGE%页脚0((800,899), (1100,899))((549,508), (660,635))(20998, 29698)F9F79E38-28E3-4617-9A9C-8B955325C02D1520149496xgc151520149497xgc151TBLCTSPDM40EEB912-B8AF-4CE6-93C1-C6685AE978BE1520149496xgc151520149497xgc15Arial1051353106218FDEDC-9FCD-4822-A1C5-C71823A98DD81520149496xgc151520149497xgc15Times New Roman10110DBDC4C5-01A1-479A-A142-8CFE6F1104D21520149496xgc151520149497xgc15190983ED3F28CB-F509-4A7E-BB15-C94A362490011520149496xgc151520149497xgc15Times New Roman1013501F7E1A1E7-4D51-43A8-BDD2-619C0DB9A57F1520149496xgc151520149497xgc15190983BC03143A-EDAA-4DF9-8398-3F43467F33181520149496xgc151520149497xgc15Times New Roman1017001E80B597D-51EA-4191-BC43-36CD0A13C2341520149496xgc151520149497xgc1519098318E9BC3D-5E33-437D-BECB-81ACDF6F393E1520149496xgc151520149497xgc15Times New Roman10110501EC511B19-70C8-4A91-AEFA-6085C2266CC51520149496xgc151520149497xgc15190983B8220C6B-4F2C-4250-8327-1B9E7E76A92C1520149496xgc151520149497xgc15Times New Roman10114001C5F36A79-FBAB-4774-AD0E-656A40FBDC5E1520149496xgc151520149497xgc15190983480E378E-B0C8-4D74-A8A0-C66AFE12691B1520149496xgc151520149497xgc15Times New Roman10117501424A128C-0847-4039-81B4-C959E47936961520149496xgc151520149497xgc151909832D35F0B7-6DB1-4564-AA58-1D01B7132AEE1520149496xgc151520149497xgc15Times New Roman1012100181641C03-935E-48A9-919B-FA440AADC8161520149496xgc151520149497xgc15190983764BB5CD-FE99-4BC1-9863-F906078533EF1520149496xgc151520149497xgc15Times New Roman1012450108C19F04-DB05-4894-850B-5CB72C7C6C7D1520149496xgc151520149497xgc15190983FDEB6F58-4FB8-4B3E-A35D-63C2304B791B1520149496xgc151520149497xgc15Times New Roman101280012FAD6409-8014-40D3-A745-F25A6FA925F81520149496xgc151520149497xgc151909837A4D3D48-0546-49E2-B3EC-7EFD228328731520149496xgc151520149497xgc1511TITLEPDMPDM Diagrams29B66374-1AD4-4F1A-9BF9-E319DC2C3AFE1520149496xgc151520149497xgc1511TITLEPDMModel level diagramsDF0766D7-D10F-4D06-B8F2-06F5E5566F2E1520149496xgc151520149497xgc1511PDM_DIAG_TITLEPDMDiagram %ITEM%Diagram %ITEM%Diagram %ITEM%88BA66A9-24BE-4DBD-85F1-C41407337C621520149496xgc151520149497xgc151PDM_GRAPHICPDM1198A7C42D-0009-4E7B-8E3D-6F89E77A25821520149496xgc151520149497xgc15Matrix Item Font Name229594642191613531068EF200B5-7A06-4EF0-A88A-F6649EF4858A1520149496xgc151520149497xgc15Arial1051353106EEAB3EE5-70AF-4201-BE5E-52B0EFAD22111520149496xgc151520149497xgc15Arial1051423106037949C7-40AD-4638-A966-85F7A8E95C991520149496xgc151520149497xgc1511PDM_PCKG_TITLEPDMPackage %ITEM%Package %ITEM%Package diagrams %ITEM%11F856387-1C56-488A-923D-9AFE53F21EC81520149496xgc151520149497xgc1511PDM_DIAG_TITLEPDMDiagram %ITEM%Diagram %ITEM%Diagram %ITEM%85CC6CE2-2365-4438-8AFB-2F497332AC2E1520149496xgc151520149497xgc151PDM_GRAPHICPDM115157F4EC-D138-4536-AB9A-F0706FDDFE811520149496xgc151520149497xgc15Matrix Item Font Name22959464219161353106C990BDE3-E7FE-4D91-A006-49FFA5AF3FE61520149496xgc151520149497xgc15Arial1051353106ED58E901-E79E-451A-B139-F696218DEE591520149496xgc151520149497xgc15Arial1051353106075C0DF1-8E6E-48F6-94C5-6DC5255245F01520149496xgc151520149497xgc151PAGEBREAKPDMA2A74FA4-E86E-426D-BF16-E608295410581520149496xgc151520149497xgc15Arial105142310680F1E3FF-D459-4031-B634-6B3D26CCDB651520149496xgc151520149497xgc1511TITLEPDMModel level object listsFA324AB2-623A-4E5B-9CD5-98DE295556C71520149496xgc151520149497xgc1511TITLEPDMCommon Objects90B3D039-0AA7-448A-B06C-5BD85E663B361520149496xgc151520149497xgc1511PDM_MODEL_RULE_LISTPDMBusiness rule listBusiness rule listBusiness rule list1-40 Name
-40 Code
-20 Type
88C19E6B-61E8-44B3-90DF-2AC648514B121520149496xgc151520149497xgc15Arial1051353106E5600D25-8658-4B91-809E-31EEE6CC1C551520149496xgc151520149497xgc15Times New Roman102141518118ADE288DB-BF8D-4774-9B5E-E48A9428954F1520149496xgc151520149497xgc15Times New Roman1011518118CF82F85D-886F-4AC6-9DF9-61315145D6AC1520149496xgc151520149497xgc15CD48F697-7435-4EAF-823E-C973298EA3CA1520149496xgc151520149497xgc1511PDM_MODEL_DTSC_LISTPDMData source listData source listData source list1-50 Name
-50 Code
86B8A807-50DC-4247-8562-D34F2F32E5DC1520149496xgc151520149497xgc15Arial10513531060FB0DF24D-3B01-4EBC-91AF-A83C8F79CD551520149496xgc151520149497xgc15Times New Roman102141518118F21C5159-23EB-47F8-A45F-E00A0A90B37B1520149496xgc151520149497xgc15Times New Roman101151811861DB9ACA-D71B-41BC-8185-AC2C797BBF0F1520149496xgc151520149497xgc15AB9B7A62-A422-436E-9E33-D959E90C86241520149496xgc151520149497xgc1511PDM_MODEL_DIAG_LISTPDMDiagram listDiagram listDiagram list1-33 Name
-33 Code
407C28DF-9B12-4EF6-83AD-B1AE657B191A1520149496xgc151520149497xgc15Arial105135310606FDA484D-28B1-4D3B-811D-457A3A53DBF91520149496xgc151520149497xgc15Times New Roman102141518118215E0F6D-155D-4592-BE24-AF22EA5B1FDB1520149496xgc151520149497xgc15Times New Roman1011518118B897B633-7CB3-422B-AF3B-0617DFE57F841520149496xgc151520149497xgc15AB56B6DD-E593-463F-9F60-677D80C993061520149496xgc151520149497xgc1511PDM_MODEL_EXA_LISTPDMExtended Attribute listExtended Attribute listExtended Attribute list1-30 Name
-20 DataType
-20 Value
-30 TargetName
2108054D-9629-4DD1-888D-0844D6C32B981520149496xgc151520149497xgc15Arial1051353106004D4DF40-BE0A-43C4-96EE-8B0EE8D46CE31520149496xgc151520149497xgc15Times New Roman1021415181186B4CCB05-3B32-4643-858A-9278BC1A14E61520149496xgc151520149497xgc15Times New Roman10115181182E55059D-A854-47F9-B3B9-6CBBED381AEE1520149496xgc151520149497xgc156AB2BE27-4FE0-4215-9771-51B1B6B505D11520149496xgc151520149497xgc1511PDM_MODEL_FILE_LISTPDMFiles listFiles listFiles list1-40 Name
-40 Location
-20 LocationType
0B38971A-0166-44F4-BBD2-DCE33A004AC41520149496xgc151520149497xgc15Arial1051353106951E4E30-403E-4A28-921F-867D66CFB8CB1520149496xgc151520149497xgc15Times New Roman102141518118E96C4FDC-076C-4C53-B4B7-A43582C9D25B1520149496xgc151520149497xgc15Times New Roman10115181182014F810-5737-485F-A9A9-3CC084AE73ED1520149496xgc151520149497xgc15FAFAE5A6-E037-44D6-9503-CA8DE8F78D991520149496xgc151520149497xgc1511PDM_MODEL_PCKG_LISTPDMPackage listPackage listPackage list1-33 Name
-33 Code
-33 UseParentNamespace
D9F1E1F2-4734-4D78-825A-02288A5B3CCC1520149496xgc151520149497xgc15Arial105135310609509A674-CA95-4BF5-8407-BEFEE484955C1520149496xgc151520149497xgc15Times New Roman102141518118FA3ACCB7-3606-4153-A4E6-49DB3FE6FC991520149496xgc151520149497xgc15Times New Roman1011518118E0A45DEC-D3C1-499D-81F6-3841770BEF5D1520149496xgc151520149497xgc15642F9043-0770-41EF-8C21-298D255824C61520149496xgc151520149497xgc15Arial10514231060EFB38B8D-BD7E-4427-9018-1A7508BBE9121520149496xgc151520149497xgc1511TITLEPDMPhysical diagrams objects9F757AD2-A957-422E-B37A-D7AFBC03197E1520149496xgc151520149497xgc1511PDM_MODEL_ADTS_LISTPDMAbstract Data Type listAbstract Data Type listAbstract Data Type list1-50 Name
-50 Code
AAB26D64-130E-4601-861F-FE11239740201520149496xgc151520149497xgc15Arial105135310605E282C61-D8E3-4173-B8E2-29562E51B92E1520149496xgc151520149497xgc15Times New Roman10214151811870057B56-1F00-444C-B0B0-0DE66FBB6A721520149496xgc151520149497xgc15Times New Roman10115181187CB9D3D8-7782-4B26-936C-40DA7CE198E01520149496xgc151520149497xgc152E12C9F5-21FF-47F6-A2ED-699279B5D5621520149496xgc151520149497xgc1511PDM_MODEL_TABL_COLN_LISTPDMTable columns listTable columns listTable columns list1-50 Name
-50 Code
D66A22B0-1FF4-4B52-B573-0E32472D52851520149496xgc151520149497xgc15Arial1051353106028BDFCCA-DA02-4787-B288-809ED136EF7F1520149496xgc151520149497xgc15Times New Roman102141518118E8983B83-BE61-4BC7-BD08-BEC6C456489C1520149496xgc151520149497xgc15Times New Roman1011518118CC690E77-B595-4664-AECD-3FED31673B801520149496xgc151520149497xgc15F181256F-9FC6-4911-8E81-89BA8E9CA4BF1520149496xgc151520149497xgc1511PDM_MODEL_DOMN_LISTPDMDomain listDomain listDomain list1-30 Name
-30 Code
-30 DataType
-10 Mandatory
A4825872-CF65-4F6B-A588-48735AB542711520149496xgc151520149497xgc15Arial1051353106006C0A45A-EE01-406C-995A-B3D29DCE5CD21520149496xgc151520149497xgc15Times New Roman102141518118E8F0BF0C-DE68-49B4-A4E0-F4CB5FC930B61520149496xgc151520149497xgc15Times New Roman101151811890869955-5FE1-42D1-B585-38CEB29041931520149496xgc151520149497xgc15D16AA53E-CA81-4B36-8F08-625D8B6BEE1D1520149496xgc151520149497xgc1511PDM_MODEL_TABL_INDX_LISTPDMTable indexes listTable indexes listTable indexes list1-33 Name
-33 Code
15 Unique
15 Clustered
15 Primary
15 ForeignKey
15 AlternateKey
-33 Table
A4C8C0E9-64F9-493E-89D8-575322E003CD1520149496xgc151520149497xgc15Arial1051353106090A25FC4-3633-4BFE-B70E-FC6B5F31A1DF1520149496xgc151520149497xgc15Times New Roman1021415181185B3631C5-26C0-428C-97A9-FD46D9E553E51520149496xgc151520149497xgc15Times New Roman1011518118A1285305-68DD-4E0F-803D-E7D399F9AC341520149496xgc151520149497xgc155988BD0A-A3BB-4D61-90BD-3EF28A2F10061520149496xgc151520149497xgc1511PDM_MODEL_JIDX_LISTPDMJoin Index listJoin Index listJoin Index list1-50 Name
-50 Code
D7D79E31-C8FC-447E-AA6A-477436063D2A1520149496xgc151520149497xgc15Arial105135310603B1963E4-4149-4FBC-AC5B-C74C68E3230E1520149496xgc151520149497xgc15Times New Roman102141518118A5A25456-1616-409C-BCE6-1199472DB38A1520149496xgc151520149497xgc15Times New Roman101151811819EE7884-F714-4275-A14C-61A2286089BD1520149496xgc151520149497xgc15C59F3546-495C-414F-B24B-17B59301D8241520149496xgc151520149497xgc1511PDM_MODEL_TABL_KEY_LISTPDMTable keys listTable keys listTable keys list1-33 Name
-33 Code
-33 Table
4985B483-5895-41CB-9F61-CB2E60AFD1761520149496xgc151520149497xgc15Arial10513531060836CF97E-527E-4D8B-8510-444DA9CE8B311520149496xgc151520149497xgc15Times New Roman10214151811844748ADF-25DB-496C-933E-6D02B208FD941520149496xgc151520149497xgc15Times New Roman10115181185DDD7C02-AEC3-4BFB-A82D-DB0F907E5C211520149496xgc151520149497xgc1572840013-E183-4B32-A3B9-01C8308EBEB01520149496xgc151520149497xgc1511PDM_MODEL_PROC_LISTPDMProcedure listProcedure listProcedure list1-50 Name
-50 Code
C3C6425F-F88A-4CE5-AF0D-288819FFD7481520149496xgc151520149497xgc15Arial105135310604C7A8A94-F4B1-41B9-A95A-AA6B15F422A21520149496xgc151520149497xgc15Times New Roman1021415181186622B91A-CAB3-4A64-9B6A-016FA01F30241520149496xgc151520149497xgc15Times New Roman101151811849DC409D-A214-4E71-A907-D720CD97961D1520149496xgc151520149497xgc156F92CE7F-76FF-416E-AAE2-9AD23E6715871520149496xgc151520149497xgc1511PDM_MODEL_REFR_LISTPDMReference listReference listReference list1-25 Name
-25 Code
-25 ParentTable
-25 ChildTable
9061AD08-B056-4BB7-8DC9-3CDF2899AF4A1520149496xgc151520149497xgc15Arial10513531060CFC411DD-0A3C-4A2A-A12C-5E712BBD784D1520149496xgc151520149497xgc15Times New Roman102141518118DDBCF174-503E-4EFB-AF77-84CD4087B6D71520149496xgc151520149497xgc15Times New Roman1011518118F0808275-81B1-4DA9-840E-9CED709651D71520149496xgc151520149497xgc159834E06F-2C1B-45E0-AE7B-F12C9146F6541520149496xgc151520149497xgc1511PDM_MODEL_SQNC_LISTPDMSequence listSequence listSequence list1-50 Name
-50 Code
4903B7FA-CD53-4E6C-AB91-91858322ADBD1520149496xgc151520149497xgc15Arial10513531060106AA283-AA9A-4E36-8E77-D58B379640B21520149496xgc151520149497xgc15Times New Roman10214151811883348A6A-A0D6-4A26-BED6-3CB853AEFF431520149496xgc151520149497xgc15Times New Roman1011518118CF2894F1-89EC-4CC9-9492-F8A1E69677571520149496xgc151520149497xgc15A47AC216-6752-4053-B0E2-3D34F97B61C11520149496xgc151520149497xgc1511PDM_MODEL_STOR_LISTPDMStorage listStorage listStorage list1-50 Name
-50 Code
2AFC6A50-ED84-42FB-9A93-0CB41F8E59BC1520149496xgc151520149497xgc15Arial105135310606D3F616B-E34F-43B8-8C66-B7F8DEA1079B1520149496xgc151520149497xgc15Times New Roman10214151811874C88232-7F00-4B37-9BBB-3754B8AE88CB1520149496xgc151520149497xgc15Times New Roman10115181181BD9CD69-26C3-4581-A33E-1657396C129D1520149496xgc151520149497xgc15D7A04E4F-FFBB-49D4-9BA0-5DD9E917ED2E1520149496xgc151520149497xgc1511PDM_MODEL_TABL_LISTPDMTable listTable listTable list1-50 Name
-50 Code
C3F17EED-5B9C-42FB-A60D-09B5D66CFF611520149496xgc151520149497xgc15Arial1051353106015F6A22D-199E-4FD4-89D1-8673766E72A21520149496xgc151520149497xgc15Times New Roman102141518118B056A8FC-6CAA-49DC-9260-F7B6E7A0798B1520149496xgc151520149497xgc15Times New Roman101151811876D42706-E600-4531-AF6F-C9A7854FE4AE1520149496xgc151520149497xgc156417AEDC-573D-4ED1-B398-C69FB4889BFD1520149496xgc151520149497xgc1511PDM_MODEL_TSPC_LISTPDMTablespace listTablespace listTablespace list1-50 Name
-50 Code
E01D5D0D-A09D-4D38-87EA-ACCEC3DF65671520149496xgc151520149497xgc15Arial10513531060E47C8655-2350-442E-AE98-863C68C5E6C31520149496xgc151520149497xgc15Times New Roman102141518118452FEB0B-5FB6-45E8-B8CF-96362E8FCAD91520149496xgc151520149497xgc15Times New Roman1011518118B6399366-D6EC-4D8D-967A-3FCB79357F161520149496xgc151520149497xgc1578E6DC04-FB50-4384-BC60-C92BF0DD84BB1520149496xgc151520149497xgc1511PDM_MODEL_PROF_LISTPDMTest Data Profile listTest Data Profile listTest Data Profile list1-50 Name
-50 Code
196674BE-C21D-4E8F-BE97-4B9B62CDCEDA1520149496xgc151520149497xgc15Arial105135310603C76A28B-229E-4EFF-A349-2511CD4D9E8B1520149496xgc151520149497xgc15Times New Roman102141518118C4F907DD-1EA9-4A2C-AC75-636FE6650F1E1520149496xgc151520149497xgc15Times New Roman1011518118ADD96F7F-774B-4695-8C3C-5A9CB5D796B11520149496xgc151520149497xgc15EBD91015-9B34-4FF3-87E6-CED9DF7F23141520149496xgc151520149497xgc1511PDM_MODEL_TABL_TRGR_LISTPDMTable triggers listTable triggers listTable triggers list1-50 Name
-50 Code
5DF08AE7-66C5-4660-BA94-E4E2803F378F1520149496xgc151520149497xgc15Arial10513531060DE4A18F4-64EC-4B17-B8F1-6C110EE2A9FB1520149496xgc151520149497xgc15Times New Roman1021415181184001424D-0924-4A33-BF43-FB11659438571520149496xgc151520149497xgc15Times New Roman10115181185C7E3A6C-770D-4C28-89FD-88B133D380861520149496xgc151520149497xgc15F6E85A28-BC8D-479E-8E49-CFE2FE9C99521520149496xgc151520149497xgc1511PDM_MODEL_TRGI_LISTPDMTrigger item listTrigger item listTrigger item list1-50 Name
-50 Code
EEC643C5-3C20-4034-96D0-172C06AC21B11520149496xgc151520149497xgc15Arial10513531060490CF6F8-8295-4EF8-9457-7372CFADB6421520149496xgc151520149497xgc15Times New Roman1021415181183A5BE0FC-2F52-4D9B-A700-3D8690D20BAA1520149496xgc151520149497xgc15Times New Roman1011518118231F89DB-CA6E-4AA7-90DF-A16C4A478AB41520149496xgc151520149497xgc15E9496891-303E-4531-8762-645997BD955C1520149496xgc151520149497xgc1511PDM_MODEL_TRGT_LISTPDMTrigger template listTrigger template listTrigger template list1-50 Name
-50 Code
5C3BC8FE-5180-4D03-A5AB-4B7C99D525221520149496xgc151520149497xgc15Arial10513531060BE8678DC-7CAB-41E3-9242-F9C2FD7802271520149496xgc151520149497xgc15Times New Roman1021415181180DDA92F3-1406-4494-B349-30E86E31061A1520149496xgc151520149497xgc15Times New Roman1011518118C0E9FE1E-DACC-4A64-951A-57DAF9EEF4AE1520149496xgc151520149497xgc15586080EA-2F6C-4F21-8FFF-B39FD7313F401520149496xgc151520149497xgc1511PDM_MODEL_USER_LISTPDMUser listUser listUser list1-50 Name
-50 Code
DB3A9E9E-3D0D-4A3A-9194-BB94F0C68AFC1520149496xgc151520149497xgc15Arial10513531060C830AE94-B223-466D-9A5F-A04E4C7221BE1520149496xgc151520149497xgc15Times New Roman1021415181185584292D-4EB1-4A4F-9527-92A076553F141520149496xgc151520149497xgc15Times New Roman1011518118852CDC8C-AC23-4214-BDD3-7252FEF8C1A51520149496xgc151520149497xgc1510D30C51-AE65-4DD7-9787-E5D0802F476C1520149496xgc151520149497xgc1511PDM_MODEL_VIEW_LISTPDMView listView listView list1-50 Name
-50 Code
393BBBD9-FCCF-4E08-AFEB-847276FBCB8D1520149496xgc151520149497xgc15Arial105135310605E53B308-D5C6-4F86-889C-DC40CBFA9F051520149496xgc151520149497xgc15Times New Roman102141518118D370E5AE-C8A1-4793-835C-0135378771A01520149496xgc151520149497xgc15Times New Roman10115181188B4981A3-F77B-464D-B900-3322DF5F2F201520149496xgc151520149497xgc152D8A955B-4DC9-4DA8-8556-1792F21A22411520149496xgc151520149497xgc1511PDM_MODEL_VREF_LISTPDMView reference listView reference listView reference list1-25 Name
-25 Code
-25 TableView1
-25 TableView2
97C2D6A6-68C3-411D-A9C6-D36F5EC92AC01520149496xgc151520149497xgc15Arial10513531060A0F2C53A-2F60-4BE1-B89C-9F2672431DC91520149496xgc151520149497xgc15Times New Roman1021415181189277301A-BA8B-4D95-8F7C-79EEE04C04971520149496xgc151520149497xgc15Times New Roman1011518118E523491F-DC2C-4961-8E5E-0EB33E0C951B1520149496xgc151520149497xgc15AC570887-FCC8-49DE-919B-BD72C2DAB1B51520149496xgc151520149497xgc1511PDM_MODEL_SYNM_LISTPDMSynonym listSynonym listSynonym list1-50 Name
-50 Code
FF99541A-C89E-4D03-ACCC-74024D2DA85D1520149496xgc151520149497xgc15Arial105353106001A71129-22DB-4008-946C-36FB6594254E1520149496xgc151520149497xgc15Times New Roman1024118FD28E5C-9F1B-4A58-951A-F2C2B30BBCF61520149496xgc151520149497xgc15Times New Roman1011EC5F31D0-5A7F-4459-966E-5F387B2DBEC41520149496xgc151520149497xgc15E16C7389-E91A-4023-BF7D-2FC78B97B77E1520149496xgc151520149497xgc15Arial10514231060EA9AB69E-3EA8-4296-9809-758DCF17BB811520149496xgc151520149497xgc1511TITLEPDMMulti-dimensional Diagrams Objects3DC0FCEF-572A-4791-862D-CBB37C9032A11520149496xgc151520149497xgc1511PDM_MODEL_ASSC_LISTPDMAssociation listAssociation listAssociation list1148EB118-A69D-4D23-939A-2C192EB103A61520149496xgc151520149497xgc15Arial10513531060D85C0DFD-317D-4A60-A4E8-81E19AD1B62D1520149496xgc151520149497xgc15Times New Roman10214151811887D8C006-67E9-493F-94AA-0B4E64F90E0F1520149496xgc151520149497xgc15Times New Roman1011518118D728DF62-4800-487F-AF3D-A4A634D49B121520149496xgc151520149497xgc150189D4FA-33FF-4008-B329-7D7153E3796A1520149496xgc151520149497xgc1511PDM_MODEL_DIMN_LISTPDMDimension listDimension listDimension list1-50 Name
-50 Code
A8EDD111-D277-46CE-96BA-F5EB1F9E46FF1520149496xgc151520149497xgc15Arial10513531060DF264266-4159-46A8-BBE0-51E142048EC81520149496xgc151520149497xgc15Times New Roman1021415181181F5AB017-AF24-4046-8078-09E9C8D05E521520149496xgc151520149497xgc15Times New Roman10115181183D59DADC-0193-4F45-92B8-3E7DBDE079B81520149496xgc151520149497xgc15DCE81E8D-083C-4555-A83B-C50AAD2346CD1520149496xgc151520149497xgc1511PDM_MODEL_FACT_LISTPDMFact listFact listFact list1-50 Name
-50 Code
50C7F090-4F72-47F6-A9C0-EE75186F1F481520149496xgc151520149497xgc15Arial1051353106053F2D8A5-87B0-4B3E-8B94-46926B9926091520149496xgc151520149497xgc15Times New Roman102141518118CAC4A7A0-8CFA-4F58-97F9-2A8324F51E031520149496xgc151520149497xgc15Times New Roman101151811862AA9602-11A6-4AB3-B264-919E76BD91F01520149496xgc151520149497xgc15B85BD691-3AB9-4258-B128-433DD24FC0341520149496xgc151520149497xgc15Arial1051423106062803459-4703-49FA-AF58-617ED84809F71520149496xgc151520149497xgc15Arial10514231068D1DB920-0D73-4012-8CA8-C06E8B74154C1520149496xgc151520149497xgc1511PDM_PCKG_TITLEPDMPackage %ITEM%Package %ITEM%List of objects for package %ITEM%1Packages1BF2BAD1-457A-49DA-AAFE-02BFC3B17B6B1520149496xgc151520149497xgc1511TITLEPDMCommon ObjectsE068B853-5C25-4864-82E8-7D55865A17431520149496xgc151520149497xgc1511PDM_MODEL_DIAG_LISTPDMDiagram listDiagram listDiagram list1-33 Name
-33 Code
5BE6E8CA-6D24-41DB-A35F-7BC708683AAA1520149496xgc151520149497xgc15Arial1051353106012F40770-53E9-40AA-BFA8-4B477D78BE611520149496xgc151520149497xgc15Times New Roman1021415181186E73E5AA-349E-45D0-8132-337731FA3D9C1520149496xgc151520149497xgc15Times New Roman1011518118E11BF1FD-5C26-489A-B254-1CA1DE31E5681520149496xgc151520149497xgc156BEE9A58-0052-4D49-82BB-3C166297DC1F1520149496xgc151520149497xgc1511PDM_MODEL_EXA_LISTPDMExtended Attribute listExtended Attribute listExtended Attribute list1-30 Name
-20 DataType
-20 Value
-30 TargetName
B26764B5-A90B-4B51-A2BB-D80D1D0A73F91520149496xgc151520149497xgc15Arial1051353106011306E20-A717-452E-A2DA-4E71383EFD571520149496xgc151520149497xgc15Times New Roman10214151811859AE33F9-C4B2-4F1C-9C49-F141660E8BA51520149496xgc151520149497xgc15Times New Roman101151811897DFBFA3-C9F0-42B3-A6FD-0AA27B0AD4171520149496xgc151520149497xgc159AF3FFDA-B6A3-4840-A526-4688EE5DD8091520149496xgc151520149497xgc1511PDM_MODEL_FILE_LISTPDMFiles listFiles listFiles list1-40 Name
-40 Location
-20 LocationType
C2402FF9-DC9A-48E2-BFB6-412140ECF5E71520149496xgc151520149497xgc15Arial10513531062B4C5310-4B65-4FF9-8A0E-2000B4E87AC71520149496xgc151520149497xgc15Times New Roman102141518118A29693AE-636A-4174-A893-5583F7E67C591520149496xgc151520149497xgc15Times New Roman101151811830AE3C99-F130-458E-9824-43E2337E34CA1520149496xgc151520149497xgc15F6A34BCF-5292-48A5-8F00-7FCC3E2BE7C51520149496xgc151520149497xgc1511PDM_MODEL_PCKG_LISTPDMPackage listPackage listPackage list1-33 Name
-33 Code
-33 UseParentNamespace
CBE176E5-C22B-47AC-8639-F5D1D2F4E2411520149496xgc151520149497xgc15Arial10513531060A580748F-B8D8-4F86-830B-BD082DF668791520149496xgc151520149497xgc15Times New Roman1021415181183100F148-35BB-461B-A00C-344712459EAC1520149496xgc151520149497xgc15Times New Roman1011518118D6E5CB8A-B22F-45D9-96A5-6D830D93041D1520149496xgc151520149497xgc15367682E9-1D33-4711-9B69-07B5D74B12D61520149496xgc151520149497xgc15Arial105142310601B409040-4B10-4F25-B4BD-D7851DFEC6D61520149496xgc151520149497xgc1511TITLEPDMPhysical diagrams objects45B25234-46AE-46F1-8348-C0699162764F1520149496xgc151520149497xgc1511PDM_MODEL_TABL_COLN_LISTPDMTable columns listTable columns listTable columns list1-50 Name
-50 Code
6AAD05E9-E426-43EC-900C-36510AB33C2C1520149496xgc151520149497xgc15Arial10513531060E1AE1755-E077-4719-A0EF-4CDC3EBBCA1F1520149496xgc151520149497xgc15Times New Roman102141518118BC5CC5E4-F825-4804-954E-B2315C9BDD261520149496xgc151520149497xgc15Times New Roman10115181184EC4AB9D-CE58-4CA9-8E2E-637E97B806D31520149496xgc151520149497xgc1527BB022F-5457-4885-BD88-3A1CDFF6F1F11520149496xgc151520149497xgc1511PDM_MODEL_DOMN_LISTPDMDomain listDomain listDomain list1-30 Name
-30 Code
-30 DataType
-10 Mandatory
55FE3945-40FC-48CA-A67D-7149C21072891520149496xgc151520149497xgc15Arial1051353106085101D4F-AE1A-4E47-A31A-4D064B72F32E1520149496xgc151520149497xgc15Times New Roman10214151811897981568-471F-4CFB-ACBE-C0B14F2AD79F1520149496xgc151520149497xgc15Times New Roman10115181188C081921-92DF-4585-B67F-E9D19F9EE3691520149496xgc151520149497xgc150DED0B38-F070-44A1-A308-30FCBB909FBA1520149496xgc151520149497xgc1511PDM_MODEL_TABL_INDX_LISTPDMTable indexes listTable indexes listTable indexes list1-33 Name
-33 Code
15 Unique
15 Clustered
15 Primary
15 ForeignKey
15 AlternateKey
-33 Table
52913CC5-C848-4CD7-9D35-A970CF819EC41520149496xgc151520149497xgc15Arial10513531060C3361B61-31B8-49AD-8D23-F2D1F42ECDDB1520149496xgc151520149497xgc15Times New Roman102141518118EFC7CF2E-F1B6-4A67-9975-6906D09DA2191520149496xgc151520149497xgc15Times New Roman1011518118C3B7D879-B2B0-419E-B7E5-FD9F3051DD4C1520149496xgc151520149497xgc1599ED0365-26F7-4509-A96C-0AFD7724FA1C1520149496xgc151520149497xgc1511PDM_MODEL_JIDX_LISTPDMJoin Index listJoin Index listJoin Index list1-50 Name
-50 Code
6124EF3D-5768-4D48-A32A-C5857CADCC561520149496xgc151520149497xgc15Arial10513531060704D19BE-34B7-45E4-BA9F-F13203444FE01520149496xgc151520149497xgc15Times New Roman102141518118BF47D311-582B-4683-B0A7-182599DFF42E1520149496xgc151520149497xgc15Times New Roman1011518118C361E965-0F04-4B96-AE6F-3ADB332CBFB51520149496xgc151520149497xgc15407992C7-1383-4005-8B06-4954F5EFBB0B1520149496xgc151520149497xgc1511PDM_MODEL_TABL_KEY_LISTPDMTable keys listTable keys listTable keys list1-33 Name
-33 Code
-33 Table
955C5E1B-F72F-4044-86E9-5E5FEB17B2181520149496xgc151520149497xgc15Arial10513531060312FAD0F-ADEE-453C-95E6-8F579F7B38F11520149496xgc151520149497xgc15Times New Roman102141518118B841B080-7AA6-4405-B36A-DB580D04E4201520149496xgc151520149497xgc15Times New Roman101151811880D21733-B65D-480F-8070-6CC77D29CC8E1520149496xgc151520149497xgc15DC548DCE-986A-4B44-9EB0-8F50ADC1425C1520149496xgc151520149497xgc1511PDM_MODEL_PROC_LISTPDMProcedure listProcedure listProcedure list1-50 Name
-50 Code
8025D245-EAD2-4709-A095-ADB5A8E1AABC1520149496xgc151520149497xgc15Arial10513531060415B6BA2-59EE-48AA-88FB-A69D23A8698D1520149496xgc151520149497xgc15Times New Roman1021415181184D79772D-1700-4B93-8AD4-7020E203EAEF1520149496xgc151520149497xgc15Times New Roman1011518118A5C46895-F0E8-4394-9CD6-B25463F832BB1520149496xgc151520149497xgc15B73B7533-FAB7-48CB-AD65-1B2FC068207C1520149496xgc151520149497xgc1511PDM_MODEL_REFR_LISTPDMReference listReference listReference list1-25 Name
-25 Code
-25 ParentTable
-25 ChildTable
F577F35B-3EA4-4B8F-9B6B-A09E8698E6AA1520149496xgc151520149497xgc15Arial10513531060B1A114D2-3591-456E-9320-F5B2C5444F4E1520149496xgc151520149497xgc15Times New Roman102141518118C704840B-597C-4F0C-8233-13DA317028BF1520149496xgc151520149497xgc15Times New Roman10115181184B1EBC99-4F3C-401E-A6C9-DB92B0826F921520149496xgc151520149497xgc155004F9E1-F6E2-4DA6-A117-C9577CD5DE1B1520149496xgc151520149497xgc1511PDM_MODEL_SQNC_LISTPDMSequence listSequence listSequence list1-50 Name
-50 Code
244D7952-1B38-46D3-9130-2C243C93BD0C1520149496xgc151520149497xgc15Arial1051353106024483DDE-898C-4D30-96D3-0E898681C4571520149496xgc151520149497xgc15Times New Roman1021415181184DB60015-AE6C-4773-B408-65D8820AF9BD1520149496xgc151520149497xgc15Times New Roman1011518118B0CB0EC8-5371-4001-8658-4CEF72A973D71520149496xgc151520149497xgc155162132B-381C-480C-86F5-9034C8575D131520149496xgc151520149497xgc1511PDM_MODEL_STOR_LISTPDMStorage listStorage listStorage list1-50 Name
-50 Code
843119B8-7E65-440C-833B-09D120AD51901520149496xgc151520149497xgc15Arial105135310603BACADB3-76D0-4036-A760-6D57704C978B1520149496xgc151520149497xgc15Times New Roman102141518118137B4D1D-9110-4E07-8123-D7D9475F26E81520149496xgc151520149497xgc15Times New Roman10115181181E6858AC-B3A7-4DD2-84AC-073ACC0144C11520149496xgc151520149497xgc1517153433-2A8C-40F3-A27A-8DF1928728FC1520149496xgc151520149497xgc1511PDM_MODEL_TABL_LISTPDMTable listTable listTable list1-50 Name
-50 Code
195AF5B8-56F8-4DA3-88E2-FE84A2D3EAC91520149496xgc151520149497xgc15Arial1051353106077F7BD5F-CC97-4BDB-B637-11826A2B154F1520149496xgc151520149497xgc15Times New Roman102141518118600FAE2C-CE3E-4E7F-8068-88E886C2A11E1520149496xgc151520149497xgc15Times New Roman101151811867F9DF9D-3292-47A0-9D31-F4316AA793EA1520149496xgc151520149497xgc15FED0C525-DA79-4764-B5BB-0990660448201520149496xgc151520149497xgc1511PDM_MODEL_TSPC_LISTPDMTablespace listTablespace listTablespace list1-50 Name
-50 Code
77152889-0A1C-4D1A-AFED-C218F1B531921520149496xgc151520149497xgc15Arial1051353106002AD7522-F990-48DF-84F1-A4D4635A26A61520149496xgc151520149497xgc15Times New Roman102141518118403C84D0-DA71-444A-AFD7-A3C8125F60671520149496xgc151520149497xgc15Times New Roman1011518118A62850F4-ABCA-4B39-BEA5-368F9AB560131520149496xgc151520149497xgc15201AEF9D-C2F0-4317-9B8F-7E38CC44FC0F1520149496xgc151520149497xgc1511PDM_MODEL_PROF_LISTPDMTest Data Profile listTest Data Profile listTest Data Profile list1-50 Name
-50 Code
9AE0287F-6872-43DC-94C5-B46474CFCFB41520149496xgc151520149497xgc15Arial10513531060E84716C9-51FE-4AA9-85BE-30F5639D443A1520149496xgc151520149497xgc15Times New Roman10214151811871074C48-1B2B-4FE1-860D-EB80A08A032B1520149496xgc151520149497xgc15Times New Roman101151811888D41643-1026-40E6-AA9C-C67C1D4245541520149496xgc151520149497xgc15D2E7E618-E715-4294-809C-1AF76A4E833F1520149496xgc151520149497xgc1511PDM_MODEL_TABL_TRGR_LISTPDMTable triggers listTable triggers listTable triggers list1-50 Name
-50 Code
F12F8F6F-0C7D-409B-A78E-C534C46AE1F11520149496xgc151520149497xgc15Arial10513531060EC2681B6-A634-41FE-911A-1BCB3D380D0B1520149496xgc151520149497xgc15Times New Roman1021415181180980C31D-41E4-417B-8649-2DDDFDFE6E941520149496xgc151520149497xgc15Times New Roman10115181186DB97FCF-3523-4E69-837D-2E3447BD35751520149496xgc151520149497xgc1543B4BE56-98ED-4B2B-9B74-B011E724FF191520149496xgc151520149497xgc1511PDM_MODEL_USER_LISTPDMUser listUser listUser list1-50 Name
-50 Code
4A1009A6-922A-431E-B8EC-348FFF19B9EC1520149496xgc151520149497xgc15Arial10513531060225F794F-4B28-47A2-9C31-9CB6363FD1221520149496xgc151520149497xgc15Times New Roman102141518118865F09B3-E6F4-40BC-A2B2-65AC8A3417691520149496xgc151520149497xgc15Times New Roman101151811842480D90-4BF3-4D6F-AD48-6E72D347D68F1520149496xgc151520149497xgc152737F188-F4D6-47AB-91D3-B116B82534851520149496xgc151520149497xgc1511PDM_MODEL_VIEW_LISTPDMView listView listView list1-50 Name
-50 Code
4362422A-2C4C-4EAF-99E6-31DF21D49A4D1520149496xgc151520149497xgc15Arial10513531060520711F4-1A64-425E-A48E-8447E7775B711520149496xgc151520149497xgc15Times New Roman102141518118C645B297-580F-482F-B286-55C06DC1C5611520149496xgc151520149497xgc15Times New Roman1011518118B0DD7F83-3FFB-4731-AE15-C65801BEED171520149496xgc151520149497xgc153AF0F697-AD67-4960-B16C-DF4CEC78901F1520149496xgc151520149497xgc1511PDM_MODEL_VREF_LISTPDMView reference listView reference listView reference list1-25 Name
-25 Code
-25 TableView1
-25 TableView2
4766C55C-4222-4025-A18D-067644EB5F5D1520149496xgc151520149497xgc15Arial10513531060B7B19525-9ECF-4675-A840-D4BF3D3397CA1520149496xgc151520149497xgc15Times New Roman1021415181182066D0FD-9167-48A7-88F0-40E9C8AACC721520149496xgc151520149497xgc15Times New Roman101151811801FF6129-7948-4582-81D3-DA4E2A3B12011520149496xgc151520149497xgc15B31D914C-44DD-46BE-B03D-54C4AED4929B1520149496xgc151520149497xgc1511PDM_MODEL_SYNM_LISTPDMSynonym listSynonym listSynonym list1-50 Name
-50 Code
115D0CE7-5462-4674-B34D-33A1AAC6DB881520149496xgc151520149497xgc15Arial1053531060F4E25E38-52DB-4B2A-BFEF-503DE0288DB41520149496xgc151520149497xgc15Times New Roman102411DFA18026-CF1E-4B09-889E-36B7874516C21520149496xgc151520149497xgc15Times New Roman1011AE6FF5D4-A600-42E4-BC99-FE7C135A13D31520149496xgc151520149497xgc152C87FA4F-368A-455C-AE1C-4F7D892F79981520149496xgc151520149497xgc15Arial10514231060D6F264B3-35E3-4A87-9400-A750DEBBD6211520149496xgc151520149497xgc1511TITLEPDMMulti-dimensional Diagrams Objects75EC114A-E0C5-48B6-8FAD-9F6B6174FF591520149496xgc151520149497xgc1511PDM_MODEL_ASSC_LISTPDMAssociation listAssociation listAssociation list1562884E0-F5DC-4A41-8984-EE625C1133841520149496xgc151520149497xgc15Arial105135310600004D8F8-4893-4FAA-B0BC-0D7C0E69DA621520149496xgc151520149497xgc15Times New Roman10214151811850AB6598-B1B5-4CB5-A654-014AD7E70DBA1520149496xgc151520149497xgc15Times New Roman1011518118C1B8F26C-C012-46BD-BD06-C99A6D4EB37B1520149496xgc151520149497xgc15A449670D-F595-4382-A536-E27FC5DAA8CE1520149496xgc151520149497xgc1511PDM_MODEL_DIMN_LISTPDMDimension listDimension listDimension list1-50 Name
-50 Code
749BC330-A467-4EB5-AD0F-46E2EDE8B99A1520149496xgc151520149497xgc15Arial105135310607B9842D4-6942-4FCC-9DB2-283AC11E04621520149496xgc151520149497xgc15Times New Roman10214151811883713DB5-754B-4C21-BD2F-B4FA8CF033A51520149496xgc151520149497xgc15Times New Roman10115181180023AD04-9543-4983-B466-FC8DB5DDF51E1520149496xgc151520149497xgc15B3488065-601B-4B68-B2E3-4309A9C71A9D1520149496xgc151520149497xgc1511PDM_MODEL_FACT_LISTPDMFact listFact listFact list1-50 Name
-50 Code
BE60F350-A281-48A7-84F7-8E9698FB66B31520149496xgc151520149497xgc15Arial10513531060CCE7BB1D-0C80-4CB6-B9F9-C5DF220018781520149496xgc151520149497xgc15Times New Roman102141518118C1BEDF02-AFBC-434D-A114-681818A415E01520149496xgc151520149497xgc15Times New Roman101151811803097897-528C-4155-BC95-E98B454988F11520149496xgc151520149497xgc15D10461AA-08B7-475D-8AE3-A48C49A743EC1520149496xgc151520149497xgc15Arial10514231060551DE8AA-5595-428A-98C6-F2F30E94634F1520149496xgc151520149497xgc15Arial1051353106194ACD4F-488D-4793-A58C-13D65E1F2DFD1520149508xgc151520150135xgc1511PDM_MODEL_TABL_COLN_LISTPDMList of table columnsList of table columnsList of table columns1-20 Code
-20 DataType
-10 Length
-30 Comment
-10 Mandatory
-10 Primary
52AA829F-9213-4725-A1B6-1DB24AFEE2F4Column selection1520149549xgc151520149549xgc156Code 1 0
Comment 1 0
DataType 1 0
Mandatory 1 0
Primary 1 0
C91551EB-40E2-41A5-B0FB-ED44CC7326841520149508xgc151520149508xgc15新宋体1053531060F718BEBC-C860-4FA5-8372-676E17D689761520149508xgc151520149508xgc15Microsoft Sans Serif102411E5C5213A-EA16-4EAA-A0C6-EF766E5C896B1520149508xgc151520149508xgc15Microsoft Sans Serif1011422081C4-7B90-45B4-A506-E888688E6D0A1520149508xgc151520149508xgc159C82A7E1-75DB-4F1F-BCDB-001411F973FB1520150527xgc151520150527xgc1511PDM_TABL_TITLEPDMTable %ITEM%Table %ITEM%Table %ITEM%TablesDA440AF5-6849-44F1-830A-9DFCEB5854741520150527xgc151520150527xgc1511PDM_TABL_CARDPDMCard of table %ITEM%Card of table %ITEM%Card of table %ITEM%Name
Code
6DA2B8A2-84A3-41A1-ACEE-9A564F8F83D51520150527xgc151520150527xgc15新宋体105353106206069942D-774D-4F1C-8BA4-6901A888FE8D1520150527xgc151520150527xgc15Microsoft Sans Serif102121F6F18B29-EF03-4951-BD24-9B66AD87EF5A1520150527xgc151520150527xgc15Microsoft Sans Serif10121871361B9-21B3-40E0-BA6B-7B2347A415AF1520150527xgc151520150527xgc1511PDM_TABL_EXA_LISTPDMList of extended attributes of the table %PARENT%List of extended attributes of the table %PARENT%List of extended attributes of the table %PARENT%1-30 LabelOrName
-20 DataType
-20 Value
-30 TargetName
8BD2709F-A12D-45BC-9FF8-16F84E9315E61520150527xgc151520150527xgc15新宋体1053531060BC14158C-A0E4-44C7-A26C-1AA339901DF61520150527xgc151520150527xgc15Microsoft Sans Serif1024113936A72B-E67D-4641-9B7B-6BB4D51886B51520150527xgc151520150527xgc15Microsoft Sans Serif1011B639EC3C-F607-4DD8-9BB4-9D7E2F4075671520150527xgc151520150527xgc15F402232A-5472-496C-AE49-3C81887F82461520150527xgc151520150527xgc1511PDM_TABL_DESCPDMDescription of the table %ITEM%Description of the table %ITEM%Description of the table %ITEM%2B3E1084-8DA9-45A4-9CEB-A437313810911520150527xgc151520150527xgc15新宋体10535310608C23EF83-C10C-4D6E-9595-F1CC6653F2D21520150527xgc151520150527xgc15Microsoft Sans Serif100C6682653-B9E6-411D-961B-62A6F78DC67F1520150527xgc151520150527xgc1511PDM_TABL_NOTEPDMAnnotation of the table %ITEM%Annotation of the table %ITEM%Annotation of the table %ITEM%43C90576-EFD6-4E16-A417-84CBAA8629151520150527xgc151520150527xgc15新宋体1053531060FD6414A9-A0DB-4B9C-A04F-83134AA985611520150527xgc151520150527xgc15Microsoft Sans Serif100E3ED7343-535C-4910-8D0C-AFEF397598F41520150527xgc151520150527xgc1511PDM_TABL_PREVPDMCode preview of the table %ITEM%Code preview of the table %ITEM%Code preview of the table %ITEM%1A81A5BC-ADCD-41CC-A6AB-AFA8228307371520150527xgc151520150527xgc15新宋体10535310607C71A701-464F-4B3F-862E-86459E8650121520150527xgc151520150527xgc15Microsoft Sans Serif100288EAD4B-B97A-485B-BF29-BAE6C9C260BA1520150527xgc151520150527xgc1511PDM_TABL_HEADPDMBegin script of the table %ITEM%Begin script of the table %ITEM%Begin script of the table %ITEM%102D8011-E6D4-4E7A-9309-98E26C2627471520150527xgc151520150527xgc15新宋体1053531060FC174946-D246-46F5-B32D-96CB27CC619F1520150527xgc151520150527xgc15Microsoft Sans Serif100661E99F6-DF3A-475B-9E55-6F45DFFC07C21520150527xgc151520150527xgc1511PDM_TABL_FOOTPDMEnd script of the table %ITEM%End script of the table %ITEM%End script of the table %ITEM%BC235232-615E-4104-9E62-6DD42E042B791520150527xgc151520150527xgc15新宋体1053531060ED035AE7-F510-41FB-8A1F-0771D26B30881520150527xgc151520150527xgc15Microsoft Sans Serif100024340B9-9E7A-40A1-8626-D00AA43CD44D1520150527xgc151520150527xgc1511PDM_TABL_CRULPDMClient validation rule of the table %ITEM%Client validation rule of the table %ITEM%Client validation rule of the table %ITEM%A4860464-87FD-46C3-A97F-80ABFCA8A73C1520150527xgc151520150527xgc15新宋体1053531060713B3B33-57BF-477A-889A-4A67501B6CEE1520150527xgc151520150527xgc15Microsoft Sans Serif1000324C0F8-87FA-4023-AB01-8E08EC5095A91520150527xgc151520150527xgc1511PDM_TABL_SRULPDMServer validation rule of the table %ITEM%Server validation rule of the table %ITEM%Server validation rule of the table %ITEM%BCFAFB38-BA80-4A38-9365-58A99E5A0DA91520150527xgc151520150527xgc15新宋体105353106072B3FA35-BF09-4E05-B9A6-5F1761DB36D01520150527xgc151520150527xgc15Microsoft Sans Serif10012B334FB-C8E1-4351-8B02-C0E804AF77651520150527xgc151520150527xgc1511PDM_TABL_OPTSPDMOptions of the table %ITEM%Options of the table %ITEM%Options of the table %ITEM%AAEBFF19-97F4-4CD5-BA61-35952BCE87E31520150527xgc151520150527xgc15新宋体1053531060977096DB-5437-4E72-A0B0-BC8975BB4AF51520150527xgc151520150527xgc15Microsoft Sans Serif100648751CB-FFFB-4E0E-B7DB-30E514E27EB81520150527xgc151520150527xgc1511PDM_TABL_CKCNPDMCheck constraint name of the table %ITEM%Check constraint name of the table %ITEM%Check constraint name of the table %ITEM%B8BD6CDF-9506-40DC-988F-ECFB7DEEEE811520150527xgc151520150527xgc15新宋体105353106024F71063-E84C-4A0F-8AFC-E51B91F5BB231520150527xgc151520150527xgc15Microsoft Sans Serif100F1D34F01-0FA7-4DA7-AC22-F337D39DB0881520150527xgc151520150527xgc1511PDM_TABL_RELDIAG_LISTPDMList of related diagrams of the table %PARENT%List of related diagrams of the table %PARENT%List of related diagrams of the table %PARENT%1-50 Name
-50 Code
AD47346F-729D-4A65-BFEB-39501840990F1520150527xgc151520150527xgc15新宋体10535310609E429393-3364-4B63-8C45-D6C18526A8071520150527xgc151520150527xgc15Microsoft Sans Serif1024116170F5A0-7FAC-427A-AB1B-2ED21CD5ABD81520150527xgc151520150527xgc15Microsoft Sans Serif1011DDAFF66B-749F-4B36-99F4-7FED6063BFF41520150527xgc151520150527xgc150575511C-51DC-463C-A811-C77C2750D9631520150527xgc151520150527xgc1511PDM_TABL_DIAG_TITLEPDMRelated diagram %ITEM% of the table %PARENT%Related diagram %ITEM% of the table %PARENT%Related diagram %ITEM% of the table %PARENT%RelatedDiagramsE31E4441-3574-48E9-B0D4-C8CE290CA8531520150527xgc151520150527xgc151PDM_TABL_GRAPHICPDM11842070C03E-9960-4BB8-8EF5-26049B004B6E1520150527xgc151520150527xgc15Microsoft Sans Serif10400179EF9B-A0A9-43FA-8BBB-1BE1A9C8E6791520150527xgc151520150527xgc1511PDM_TABL_DIAG_DESCPDMDescription of the related diagram %ITEM% of the table %PARENT%Description of the related diagram %ITEM% of the table %PARENT%Description of the related diagram %ITEM% of the table %PARENT%6F781220-CA8C-46D8-856E-9967E2EA0DAD1520150527xgc151520150527xgc15新宋体1053531060B7DC955A-920F-4573-9959-E7A23D31E51E1520150527xgc151520150527xgc15Microsoft Sans Serif100B0A955A4-EE16-4025-8929-B46B92317FCE1520150527xgc151520150527xgc1511PDM_TABL_DIAG_NOTEPDMAnnotation of the related diagram %ITEM% of the table %PARENT%Annotation of the related diagram %ITEM% of the table %PARENT%Annotation of the related diagram %ITEM% of the table %PARENT%BB7884F9-B027-476C-A15F-3412EBD3B2111520150527xgc151520150527xgc15新宋体1053531060A2C3E230-3172-44EF-8BA5-300A4A78EE151520150527xgc151520150527xgc15Microsoft Sans Serif1006FCA3F6E-871A-4769-8D22-86BFCCD0E1C21520150527xgc151520150527xgc15新宋体105353106016CE3263-B657-425D-B67F-6C72549C8B061520150527xgc151520150527xgc1511PDM_TABL_DEPND_LISTPDMList of all dependencies of the table %PARENT%List of all dependencies of the table %PARENT%List of all dependencies of the table %PARENT%1-40 Name
-40 Code
-20 ClassName
008320E7-7469-48F9-AAD0-B63C3CCB53791520150527xgc151520150527xgc15新宋体10535310609ED7954A-4ED4-48CC-B1EC-9DD189B2F5861520150527xgc151520150527xgc15Microsoft Sans Serif102411C77ACA27-FA99-4EF2-B502-065A58B3BFE61520150527xgc151520150527xgc15Microsoft Sans Serif101101AB6BF5-1F8A-4A9B-830C-8A67A727EC9B1520150527xgc151520150527xgc15FB8A32A2-24FC-44D3-887A-911F07EA0B041520150527xgc151520150527xgc1511PDM_TABL_OBJRDIAG_LISTPDMList of objects in related diagrams of the table %PARENT%List of objects in related diagrams of the table %PARENT%List of objects in related diagrams of the table %PARENT%1-100 ShortDescription
1333A26C-F344-409F-B37D-3D25C7C0B7201520150527xgc151520150527xgc15新宋体105353106031B99AF2-A53B-4CF4-AAD7-67D785FEE71A1520150527xgc151520150527xgc15Microsoft Sans Serif102411163D9196-D833-453C-81C6-E430430A91321520150527xgc151520150527xgc15Microsoft Sans Serif1011DC78682A-4932-497D-82F2-27F3DDBD552F1520150527xgc151520150527xgc15E0AE2C64-EBB5-4AD9-98DA-73E4D9EB06EB1520150527xgc151520150527xgc1511PDM_TABL_ARTC_LISTPDMList of remote articles of the table %PARENT%List of remote articles of the table %PARENT%List of remote articles of the table %PARENT%1-100 ShortDescription
D6613AA0-EB1F-4ED6-BF87-FCB089FC49C61520150527xgc151520150527xgc15新宋体10535310607170B15B-1C19-4CB9-BF70-466DD346DE2E1520150527xgc151520150527xgc15Microsoft Sans Serif102411B31C1007-07F3-4E92-977A-C8C7F76528EC1520150527xgc151520150527xgc15Microsoft Sans Serif10116E442D98-8BED-4CC6-BE89-AF1D5D1907901520150527xgc151520150527xgc15B41D4EF1-3659-42E0-8940-ECA64F2F1EEA1520150527xgc151520150527xgc1511PDM_TABL_SRCARTC_LISTPDMList of source articles of the table %PARENT%List of source articles of the table %PARENT%List of source articles of the table %PARENT%1-100 ShortDescription
B58926BF-320B-4632-A169-68F38E82DDCE1520150527xgc151520150527xgc15新宋体1053531060CE0D2DA5-9C41-47D8-942F-2198D6E6E2F01520150527xgc151520150527xgc15Microsoft Sans Serif102411A4EC3EEF-5B61-4CC3-895C-BFA9605CEA291520150527xgc151520150527xgc15Microsoft Sans Serif10115E340D38-EAD2-4AFF-BC2A-604FCCCD14681520150527xgc151520150527xgc15C3D57FFC-DD1F-4F2A-A742-DD9122B2FE791520150527xgc151520150527xgc1511PDM_TABL_SRCSTEP_LISTPDMList of source steps of the table %PARENT%List of source steps of the table %PARENT%List of source steps of the table %PARENT%1-100 ShortDescription
B9AFB5BE-3052-475D-B9D1-244DE92DDB961520150527xgc151520150527xgc15新宋体10535310605DF907E6-9D58-4086-A85A-E2CA32F9402D1520150527xgc151520150527xgc15Microsoft Sans Serif102411AB39B4AF-D6BE-4104-9B40-57BA9CFAF9F71520150527xgc151520150527xgc15Microsoft Sans Serif1011147865B4-3875-446A-AE02-4864978437981520150527xgc151520150527xgc15E069231D-EC35-4F5C-8063-3E19B9B7C4551520150527xgc151520150527xgc1511PDM_TABL_DSTSTEP_LISTPDMList of target steps of the table %PARENT%List of target steps of the table %PARENT%List of target steps of the table %PARENT%1-100 ShortDescription
8D04C3EE-EAD6-4A9B-A5F2-654220A768291520150527xgc151520150527xgc15新宋体1053531060B4DF1719-8960-4497-ABE9-F5AAE3BE36F41520150527xgc151520150527xgc15Microsoft Sans Serif1024119CCB5302-591E-4CED-B6A2-227C2F10CBDE1520150527xgc151520150527xgc15Microsoft Sans Serif10116B7A943B-6052-424E-A676-AF780F0071D21520150527xgc151520150527xgc151D97F561-F394-4A8E-82AE-1779E7FC4A8D1520150527xgc151520150527xgc1511PDM_TABL_DIAG_LISTPDMList of diagrams containing the table %PARENT%List of diagrams containing the table %PARENT%List of diagrams containing the table %PARENT%1-50 Name
-50 Code
0CC82FCB-058C-4CAE-BC0D-B897B98303091520150527xgc151520150527xgc15新宋体1053531060E0A7E055-987B-495B-972C-89F28160ADF91520150527xgc151520150527xgc15Microsoft Sans Serif102411FFD7362D-0F7A-4CE9-91F8-632439DCA2571520150527xgc151520150527xgc15Microsoft Sans Serif10111A724E9B-E4CE-4691-BA18-99CB9A0B63541520150527xgc151520150527xgc154E86A057-2DBD-41E2-AEF2-74C23BFECDA71520150527xgc151520150527xgc1511PDM_TABL_COLN_LISTPDMList of columns of the table %PARENT%List of columns of the table %PARENT%List of columns of the table %PARENT%Columns1-50 Name
-50 Code
9826DA93-4C6A-40D8-BCFD-C9DA69F9C8BA1520150527xgc151520150527xgc15新宋体1053531060252E9E4A-DF23-403D-BFBA-540E088CCAFD1520150527xgc151520150527xgc15Microsoft Sans Serif102411E360EED1-ADF3-447E-9865-DE210BF0B3561520150527xgc151520150527xgc15Microsoft Sans Serif10118864430D-5672-4CEE-B159-631248A415F91520150527xgc151520150527xgc15B9502DDC-F986-47AD-9C2D-68C494BE07771520150527xgc151520150527xgc1511PDM_TABL_COLN_GROUPPDMColumn %ITEM% of the table %PARENT%Column %ITEM% of the table %PARENT%Column %ITEM% of the table %PARENT%Columns31475FE0-9F55-4FEB-A988-A81CE8ECE7111520150527xgc151520150527xgc1511PDM_TABL_COLN_CARDPDMCard of the column %ITEM% of the table %PARENT%Card of the column %ITEM% of the table %PARENT%Card of the column %ITEM% of the table %PARENT%Name
Code
DataType
Mandatory
0E9D3B88-436B-455E-9BBA-98BA1E2262FB1520150527xgc151520150527xgc15新宋体10535310620A534A371-92BC-487F-A7D0-0069C17D0CE31520150527xgc151520150527xgc15Microsoft Sans Serif1021213663D5E8-6C31-4E55-A03F-3F0D69D3C1C51520150527xgc151520150527xgc15Microsoft Sans Serif101216C929A39-27B0-44D4-AD88-6A8B8A8CE6B61520150527xgc151520150527xgc1511PDM_TABL_COLN_CHECKPDMCheck of the column %ITEM% of the table %PARENT%Check of the column %ITEM% of the table %PARENT%Check of the column %ITEM% of the table %PARENT%LowValue
HighValue
DefaultValue
Unit
Format
CharacterCase
CannotModify
NoSpace
ListOfValues
Complete
DefaultValueDisplayed
4AFD510E-D42A-4ADC-8BF2-79CD19E5D3B41520150527xgc151520150527xgc15新宋体1053531062012FB52D7-D9E9-467A-85CE-2F556DED457E1520150527xgc151520150527xgc15Microsoft Sans Serif1021213F52B5A4-02EE-4CD0-AA46-7FB91CE3138B1520150527xgc151520150527xgc15Microsoft Sans Serif101211B9E0901-147A-4015-A8D9-27FE96F2C4E91520150527xgc151520150527xgc1511PDM_TABL_COLN_EXA_LISTPDMList of extended attributes of the table column %PARENT%List of extended attributes of the table column %PARENT%List of extended attributes of the table column %PARENT%1-30 LabelOrName
-20 DataType
-20 Value
-30 TargetName
65E7D225-EE66-4460-BCD4-0FD84A966C751520150527xgc151520150527xgc15新宋体10535310600734EE67-2E76-4D5B-8449-59E108041D271520150527xgc151520150527xgc15Microsoft Sans Serif102411EDB37382-3962-4B6E-AF26-3CC8222282F41520150527xgc151520150527xgc15Microsoft Sans Serif101177C38B9D-F5F8-4118-847C-9642DDD6D7151520150527xgc151520150527xgc15440DABE9-6C27-4E17-ABB7-6A575DF6C8B11520150527xgc151520150527xgc1511PDM_TABL_COLN_DESCPDMDescription of the column %ITEM% of the table %PARENT%Description of the column %ITEM% of the table %PARENT%Description of the column %ITEM% of the table %PARENT%78A94C21-A851-4C68-B00A-3E070FA76A2D1520150527xgc151520150527xgc15新宋体105353106000DEDD91-EDF6-4DC1-86F5-9DD6AF2A38011520150527xgc151520150527xgc15Microsoft Sans Serif100BDF26648-A104-4BF6-AB23-0D552B24F9771520150527xgc151520150527xgc1511PDM_TABL_COLN_NOTEPDMAnnotation of the column %ITEM% of the table %PARENT%Annotation of the column %ITEM% of the table %PARENT%Annotation of the column %ITEM% of the table %PARENT%D45DFB70-91A6-4D89-8BDA-CC4169B0FD741520150527xgc151520150527xgc15新宋体10535310605DD1374A-151A-4D3D-9B7E-2B149C95B7C31520150527xgc151520150527xgc15Microsoft Sans Serif100B2623089-2714-48DC-A3AB-4CCCEF641B421520150527xgc151520150527xgc1511PDM_TABL_COLN_PREVPDMCode preview of the column %ITEM% of the table %PARENT%Code preview of the column %ITEM% of the table %PARENT%Code preview of the column %ITEM% of the table %PARENT%6CF53286-A317-473A-99BD-6B37130D1A111520150527xgc151520150527xgc15新宋体105353106052EB7ADA-6A90-4D92-8E67-5A3F0E34113E1520150527xgc151520150527xgc15Microsoft Sans Serif100E6B30CF7-BA80-4A61-9AFE-B072C0DDF7B61520150527xgc151520150527xgc1511PDM_TABL_COLN_CRULPDMClient validation rule of the column %ITEM% of the table %PARENT%Client validation rule of the column %ITEM% of the table %PARENT%Client validation rule of the column %ITEM% of the table %PARENT%B66C4B61-9CAF-4C3E-A9DA-D27909723BC71520150527xgc151520150527xgc15新宋体1053531060F0A8EE33-12A3-4019-8B1E-2CE3F43506771520150527xgc151520150527xgc15Microsoft Sans Serif100855EB63F-4A4A-4011-8509-89739C5394181520150527xgc151520150527xgc1511PDM_TABL_COLN_SRULPDMServer validation rule of the column %ITEM% of the table %PARENT%Server validation rule of the column %ITEM% of the table %PARENT%Server validation rule of the column %ITEM% of the table %PARENT%17620A14-1BE7-4A05-9C49-28BB36EB8ECD1520150527xgc151520150527xgc15新宋体1053531060CFDF8290-29E2-427B-A8CB-FF5CD370B12A1520150527xgc151520150527xgc15Microsoft Sans Serif100680DB65F-A3C3-408D-B9CD-2F2B78A0CEC11520150527xgc151520150527xgc1511PDM_TABL_COLN_OPTSPDMOptions of the column %ITEM% of the table %PARENT%Options of the column %ITEM% of the table %PARENT%Options of the column %ITEM% of the table %PARENT%1745CA3A-A4D1-477D-95B5-939EB1556EE11520150527xgc151520150527xgc15新宋体1053531060106D1742-B949-4A44-9CBB-5486AAA2AC2B1520150527xgc151520150527xgc15Microsoft Sans Serif100684C6E98-6E65-4BE2-8486-BE92BB9FB4E91520150527xgc151520150527xgc1511PDM_TABL_COLN_CKCNPDMCheck constraint name of the column %ITEM% of the table %PARENT%Check constraint name of the column %ITEM% of the table %PARENT%Check constraint name of the column %ITEM% of the table %PARENT%E7C2043C-25B1-4B51-BF95-5EE2102AEAB01520150527xgc151520150527xgc15新宋体105353106047CCE3B0-0063-444D-A12A-181BC5FCCBDE1520150527xgc151520150527xgc15Microsoft Sans Serif100B24AE93D-3F7A-4D01-9919-B3A2CE8813DB1520150527xgc151520150527xgc1511PDM_TABL_COLN_CTXTPDMComputed expression text of the column %ITEM% of the table %PARENT%Computed expression text of the column %ITEM% of the table %PARENT%Computed expression text of the column %ITEM% of the table %PARENT%EC89D718-182C-49C5-9028-1A490B2A573E1520150527xgc151520150527xgc15新宋体105353106043F6B76B-FE56-4238-929A-202ADD1A2AC31520150527xgc151520150527xgc15Microsoft Sans Serif100FB855E80-8A14-4E28-9019-4CD105D528C81520150527xgc151520150527xgc1511PDM_TABL_COLN_RELDIAG_LISTPDMList of related diagrams of the table column %PARENT%List of related diagrams of the table column %PARENT%List of related diagrams of the table column %PARENT%1-50 Name
-50 Code
2A6F6F5C-7881-4B3E-9139-5BA128BD0BCE1520150527xgc151520150527xgc15新宋体10535310601CA1D44E-67B5-434E-A408-8AA95D80F9F21520150527xgc151520150527xgc15Microsoft Sans Serif102411E754705C-1B0D-4AF7-A3A5-E39B21238EC31520150527xgc151520150527xgc15Microsoft Sans Serif10110FAD4C83-AA84-4373-89DE-20AA12920E5D1520150527xgc151520150527xgc157C4BDCB1-0FC1-4C78-9129-D898DF6214541520150527xgc151520150527xgc1511PDM_TABL_COLN_DIAG_TITLEPDMRelated diagram %ITEM% of the column %PARENT%Related diagram %ITEM% of the column %PARENT%Related diagram %ITEM% of the column %PARENT%RelatedDiagrams847FF2D7-CB44-4B0D-BC2A-4C22BCD9B92B1520150527xgc151520150527xgc151PDM_TABL_COLN_GRAPHICPDM118416EE8393-3D92-436D-BAC5-A144A9ECF78C1520150527xgc151520150527xgc15Microsoft Sans Serif10402EF28D12-DEAA-4BB0-BDEA-3AF59203730C1520150527xgc151520150527xgc1511PDM_TABL_COLN_DIAG_DESCPDMDescription of the related diagram %ITEM% of the column %PARENT%Description of the related diagram %ITEM% of the column %PARENT%Description of the related diagram %ITEM% of the column %PARENT%C48F0338-F31C-47D0-B55A-BA2C00E954BC1520150527xgc151520150527xgc15新宋体1053531060A79652C6-0B61-4569-9420-A5D5BF8222CC1520150527xgc151520150527xgc15Microsoft Sans Serif100D0C0E604-D6FD-4F10-8369-EEAFEFE3107D1520150527xgc151520150527xgc1511PDM_TABL_COLN_DIAG_NOTEPDMAnnotation of the related diagram %ITEM% of the column %PARENT%Annotation of the related diagram %ITEM% of the column %PARENT%Annotation of the related diagram %ITEM% of the column %PARENT%E5DD5207-B849-47C2-9C53-EAEAE38774ED1520150527xgc151520150527xgc15新宋体105353106099D6D95A-0480-4145-87B6-F21B339D28461520150527xgc151520150527xgc15Microsoft Sans Serif100DBAE8EF2-8731-4ED4-B6E2-A23B0BD2E3551520150527xgc151520150527xgc15新宋体10535310602A948473-F150-4AD9-8E20-F2078714CB861520150527xgc151520150527xgc1511PDM_TABL_COLN_DEPND_LISTPDMList of all dependencies of the table column %PARENT%List of all dependencies of the table column %PARENT%List of all dependencies of the table column %PARENT%1-40 Name
-40 Code
-20 ClassName
C9DD9EC3-3059-4D34-8931-8A622632A2061520150527xgc151520150527xgc15新宋体1053531060CCBDA5AF-3847-4755-BB79-DAF985BF70361520150527xgc151520150527xgc15Microsoft Sans Serif1024111327966A-29A3-459F-98D5-3969331DD3E91520150527xgc151520150527xgc15Microsoft Sans Serif1011CCD9999E-BE6E-4CA8-B93B-85262DF33CCD1520150527xgc151520150527xgc15AD2EB89F-215E-4530-AE35-8BECCA097ADB1520150527xgc151520150527xgc1511PDM_TABL_COLN_OBJRDIAG_LISTPDMList of objects in related diagrams of the table column %PARENT%List of objects in related diagrams of the table column %PARENT%List of objects in related diagrams of the table column %PARENT%1-100 ShortDescription
A37CB878-8268-4EE7-9D95-78823747D2B91520150527xgc151520150527xgc15新宋体10535310601B5E9FB4-F68D-4448-A388-EEE7CC8AD6501520150527xgc151520150527xgc15Microsoft Sans Serif102411EFFE9180-9605-4175-8D4C-CDC1F6C88C871520150527xgc151520150527xgc15Microsoft Sans Serif1011D5B235D9-FBE0-424F-9A42-132753C323B81520150527xgc151520150527xgc15183DC540-2042-44DE-BFA7-E238D5A4AEA31520150527xgc151520150527xgc1511PDM_TABL_COLN_KEY_LISTPDMList of keys of the table column %PARENT%List of keys of the table column %PARENT%List of keys of the table column %PARENT%1-50 Name
-50 Code
20 Primary
232CB511-3AF8-4209-8B9E-BF2D828A6CD61520150527xgc151520150527xgc15新宋体1053531060ABA75834-AF57-4AA8-A6A9-F826C7B94E941520150527xgc151520150527xgc15Microsoft Sans Serif10241175F4EE2A-0DEA-40F6-9685-2330CA6BE4CA1520150527xgc151520150527xgc15Microsoft Sans Serif10114B25D09A-5554-44BD-B676-7D986F5B107A1520150527xgc151520150527xgc15DC03C171-2ADE-4EB7-83F2-8E39D928F9121520150527xgc151520150527xgc1511PDM_TABL_COLN_ARCO_LISTPDMList of remote article columns of the table column %PARENT%List of remote article columns of the table column %PARENT%List of remote article columns of the table column %PARENT%1-100 ShortDescription
DA48AA59-4D70-4ABC-BA18-D863585B65B91520150527xgc151520150527xgc15新宋体105353106086DE6108-F596-4896-B702-2271A822DC651520150527xgc151520150527xgc15Microsoft Sans Serif102411332BDCF9-2978-4AB1-BD1E-77D4089204891520150527xgc151520150527xgc15Microsoft Sans Serif101124C4F31D-2845-405D-8986-DBEF5C07FDCA1520150527xgc151520150527xgc156D22845A-60F0-41C6-BD6C-B819E0517E861520150527xgc151520150527xgc1511PDM_TABL_COLN_SRCARCO_LISTPDMList of source article columns of the table column %PARENT%List of source article columns of the table column %PARENT%List of source article columns of the table column %PARENT%1-100 ShortDescription
B98230B8-EAA4-42B9-8260-F3F7D26FC0A11520150527xgc151520150527xgc15新宋体1053531060385E2E13-C1D7-46C0-A16B-23DB15A6FA3F1520150527xgc151520150527xgc15Microsoft Sans Serif10241109CAC7AE-27AE-4192-9F83-2F6A8420225C1520150527xgc151520150527xgc15Microsoft Sans Serif10112D32F846-0758-4A48-AFC1-F4A638264A5A1520150527xgc151520150527xgc152708BA16-9C48-4127-9363-EA7D85FF22581520150527xgc151520150527xgc1511PDM_TABL_COLN_DSCOLUMNSRC_LISTPDMList of source data structure columns of the table column %PARENT%List of source data structure columns of the table column %PARENT%List of source data structure columns of the table column %PARENT%1-100 ShortDescription
9861B9BF-913A-4D25-B8E5-62425E228BBC1520150527xgc151520150527xgc15新宋体1053531060F2F87666-BE12-42EE-A8DA-B89E01E95D241520150527xgc151520150527xgc15Microsoft Sans Serif102411A08BACA0-115E-411E-A432-7E860B3256501520150527xgc151520150527xgc15Microsoft Sans Serif1011A0184DC0-3D85-4586-811A-41DBEA0819191520150527xgc151520150527xgc15C2C18167-0925-4E56-B5C3-6FB61E1C103F1520150527xgc151520150527xgc1511PDM_TABL_COLN_DSCOLUMNTRG_LISTPDMList of target data structure columns of the table column %PARENT%List of target data structure columns of the table column %PARENT%List of target data structure columns of the table column %PARENT%1-100 ShortDescription
5C0DC575-A6E2-4342-A223-E25E64358CAD1520150527xgc151520150527xgc15新宋体10535310608EE2464D-4D8A-4B5F-AFCE-69ED5F176C131520150527xgc151520150527xgc15Microsoft Sans Serif102411127538BA-EE89-49EC-9169-BB29600B8AAE1520150527xgc151520150527xgc15Microsoft Sans Serif1011F4A1B0B6-D4DE-4171-AEA4-4856432B8C141520150527xgc151520150527xgc1558223E3D-9E90-4876-B474-3E884168218A1520150527xgc151520150527xgc15新宋体105353106074C98288-059F-4E87-AD9F-06E813856A021520150527xgc151520150527xgc1511PDM_TABL_KEY_LISTPDMList of keys of the table %PARENT%List of keys of the table %PARENT%List of keys of the table %PARENT%Keys1-50 Name
-50 Code
20 Primary
B1CE34D7-0731-4F8A-ADF6-531E883DD4131520150527xgc151520150527xgc15新宋体1053531060179C2692-8FA7-479B-B095-69A8CF3D2D7A1520150527xgc151520150527xgc15Microsoft Sans Serif1024113BC57AAF-302E-4974-B8FB-C3B0F574611A1520150527xgc151520150527xgc15Microsoft Sans Serif1011BCE36778-E2C8-43EC-B2C0-EACC622C78D81520150527xgc151520150527xgc15607BFA0A-79E9-408D-B3E9-B484AD7C5ED61520150527xgc151520150527xgc1511PDM_TABL_KEY_GROUPPDMKey %ITEM% of the table %PARENT%Key %ITEM% of the table %PARENT%Key %ITEM% of the table %PARENT%KeysF1E91F21-8C64-4553-85E5-A72F40BD3C941520150527xgc151520150527xgc1511PDM_TABL_KEY_CARDPDMCard of the key %ITEM% of the table %PARENT%Card of the key %ITEM% of the table %PARENT%Card of the key %ITEM% of the table %PARENT%Name
Code
Primary
73EBDEEF-1B65-4386-9795-E140629F80361520150527xgc151520150527xgc15新宋体10535310620BE88FA21-AE52-483E-9B0F-0060D9A5E1FA1520150527xgc151520150527xgc15Microsoft Sans Serif10212184B8292F-317E-40D5-A665-A30B83BFC0661520150527xgc151520150527xgc15Microsoft Sans Serif10121C8E9DF84-A226-4508-8420-54F33613AC7F1520150527xgc151520150527xgc1511PDM_TABL_KEY_EXA_LISTPDMList of extended attributes of the table key %PARENT%List of extended attributes of the table key %PARENT%List of extended attributes of the table key %PARENT%1-30 LabelOrName
-20 DataType
-20 Value
-30 TargetName
F7B5FB9D-0F6F-4DE1-9DBF-C375F571C5771520150527xgc151520150527xgc15新宋体10535310609CD9F91D-0EDA-49B0-A51D-3E9D0C62CB211520150527xgc151520150527xgc15Microsoft Sans Serif1024117AA54816-5DB3-4FAE-B525-7755F67474441520150527xgc151520150527xgc15Microsoft Sans Serif10117CD0E713-03D4-4223-A6FA-05AA6A9858371520150527xgc151520150527xgc154E319A35-C32C-4F4C-9BAA-78D62002048E1520150527xgc151520150527xgc1511PDM_TABL_KEY_DESCPDMDescription of the key %ITEM% of the table %PARENT%Description of the key %ITEM% of the table %PARENT%Description of the key %ITEM% of the table %PARENT%F1A411B9-B2A2-40EB-ABC7-F2F6663381801520150527xgc151520150527xgc15新宋体1053531060B58EB6B8-886E-449C-8106-BB0616EF54B51520150527xgc151520150527xgc15Microsoft Sans Serif1009F9ED7CA-701C-4591-AC9A-8B02A0A1D7F41520150527xgc151520150527xgc1511PDM_TABL_KEY_NOTEPDMAnnotation of the key %ITEM% of the table %PARENT%Annotation of the key %ITEM% of the table %PARENT%Annotation of the key %ITEM% of the table %PARENT%B2F9BE75-5F1A-4D96-AA20-6585E050BF401520150527xgc151520150527xgc15新宋体10535310605B711E32-EA9D-4E33-877E-1A111DAAFC451520150527xgc151520150527xgc15Microsoft Sans Serif10004C0A7DA-0D24-4C29-85D0-B032248D898A1520150527xgc151520150527xgc1511PDM_TABL_KEY_PREVPDMCode preview of the key %ITEM% of the table %PARENT%Code preview of the key %ITEM% of the table %PARENT%Code preview of the key %ITEM% of the table %PARENT%9F53EDF1-7E59-4AD4-BC45-D51D533594B11520150527xgc151520150527xgc15新宋体105353106049C7A6AC-75D1-41B0-9DBA-031E5822929A1520150527xgc151520150527xgc15Microsoft Sans Serif10025848AB6-630F-4BB9-B42F-058491CFA4561520150527xgc151520150527xgc1511PDM_TABL_KEY_OPTSPDMOptions of the key %ITEM% of the table %PARENT%Options of the key %ITEM% of the table %PARENT%Options of the key %ITEM% of the table %PARENT%FBD112A9-FD66-4BE8-9E71-CE547916799E1520150527xgc151520150527xgc15新宋体105353106089072849-1305-4FC9-81BB-3C4BE7BBE7681520150527xgc151520150527xgc15Microsoft Sans Serif100F537D765-AB93-4C04-93AB-DF9B3CB5DFE51520150527xgc151520150527xgc1511PDM_TABL_KEY_RELDIAG_LISTPDMList of related diagrams of the table key %PARENT%List of related diagrams of the table key %PARENT%List of related diagrams of the table key %PARENT%1-50 Name
-50 Code
5D4C0CF8-F159-41A8-8DD8-AA1F2758AE111520150527xgc151520150527xgc15新宋体1053531060822B0FF1-5C6B-422F-866D-D0260A4F641B1520150527xgc151520150527xgc15Microsoft Sans Serif1024118CD91F7E-593F-4D99-B8F0-9E6C1FDAE9BC1520150527xgc151520150527xgc15Microsoft Sans Serif1011051B3665-64C3-4848-AB73-EE2C706CCA901520150527xgc151520150527xgc15D2BB4D18-7379-4320-9126-6FD07F58A4251520150527xgc151520150527xgc1511PDM_TABL_KEY_DIAG_TITLEPDMRelated diagram %ITEM% of the key %PARENT%Related diagram %ITEM% of the key %PARENT%Related diagram %ITEM% of the key %PARENT%RelatedDiagrams72B8C316-6111-415A-AC19-FAD72A86D5481520150527xgc151520150527xgc151PDM_TABL_KEY_GRAPHICPDM1184B1092D0E-8DF3-46FA-902C-4DBADD6141C21520150527xgc151520150527xgc15Microsoft Sans Serif1040384B9254-626D-4168-9C61-5ACD05951D871520150527xgc151520150527xgc1511PDM_TABL_KEY_DIAG_DESCPDMDescription of the related diagram %ITEM% of the key %PARENT%Description of the related diagram %ITEM% of the key %PARENT%Description of the related diagram %ITEM% of the key %PARENT%8499B762-0693-43F0-95D2-D67AB3E07B0F1520150527xgc151520150527xgc15新宋体1053531060E03EE7DF-3DAC-47CD-81A2-6FAD2ECB98941520150527xgc151520150527xgc15Microsoft Sans Serif1001913F6D6-6B63-48C4-9681-20B7EBA9380F1520150527xgc151520150527xgc1511PDM_TABL_KEY_DIAG_NOTEPDMAnnotation of the related diagram %ITEM% of the key %PARENT%Annotation of the related diagram %ITEM% of the key %PARENT%Annotation of the related diagram %ITEM% of the key %PARENT%C3349C5C-871B-4B42-AA3E-33D5777AED691520150527xgc151520150527xgc15新宋体10535310603F68FFBB-7929-4B75-8717-9112AE7AF93D1520150527xgc151520150527xgc15Microsoft Sans Serif1003BEBBC68-9495-4918-85C9-AC2573DDB2741520150527xgc151520150527xgc15新宋体1053531060C6055DBD-2CB9-427C-8960-5A4A44FB51EF1520150527xgc151520150527xgc1511PDM_TABL_KEY_COLN_LISTPDMList of columns of the table key %PARENT%List of columns of the table key %PARENT%List of columns of the table key %PARENT%1-50 Name
-50 Code
F0E30B9A-793C-47C9-9B9D-99F68E572D671520150527xgc151520150527xgc15新宋体105353106036B2A25C-08A3-43FC-975D-934072CEFED01520150527xgc151520150527xgc15Microsoft Sans Serif10241111189362-C393-4C2F-83BB-CCD8A84307721520150527xgc151520150527xgc15Microsoft Sans Serif10114D903237-D5E5-468D-9267-FB4B4D0F31261520150527xgc151520150527xgc15EAA098AD-3FD9-49AA-B93D-64719867D5B21520150527xgc151520150527xgc1511PDM_TABL_KEY_DEPND_LISTPDMList of all dependencies of the table key %PARENT%List of all dependencies of the table key %PARENT%List of all dependencies of the table key %PARENT%1-40 Name
-40 Code
-20 ClassName
3EE90327-8BF9-425E-9CE1-5FA87A254FF31520150527xgc151520150527xgc15新宋体105353106011ED2D51-F7A6-48B6-98FA-CC11F8C0F45D1520150527xgc151520150527xgc15Microsoft Sans Serif10241160E0EF61-C994-425C-A85A-00383481BCF71520150527xgc151520150527xgc15Microsoft Sans Serif1011CAF931E0-22F8-484D-BA68-F6EFEDFC69B81520150527xgc151520150527xgc158D34504C-7C98-486D-B641-F213A68C00601520150527xgc151520150527xgc1511PDM_TABL_KEY_OBJRDIAG_LISTPDMList of objects in related diagrams of the table key %PARENT%List of objects in related diagrams of the table key %PARENT%List of objects in related diagrams of the table key %PARENT%1-100 ShortDescription
7B86FDBA-3F59-4FC4-A89E-72B6CDCFE15A1520150527xgc151520150527xgc15新宋体1053531060252FE093-E230-4CB1-BD91-A3012D8297B71520150527xgc151520150527xgc15Microsoft Sans Serif102411E87E3CB5-5E32-4C25-B2EE-537AE95221631520150527xgc151520150527xgc15Microsoft Sans Serif1011281636E2-88EF-4E53-8BD2-6DC8EF5488D01520150527xgc151520150527xgc1538758B78-6C5C-4407-A231-A046E73CBFED1520150527xgc151520150527xgc15新宋体10535310607B3EF8C9-CA1F-4B4D-BBDC-F818D4F2543C1520150527xgc151520150527xgc15新宋体10535310605AEBBE29-D162-41F1-9E6B-ACA19FB00BE11520150258xgc151520150401xgc1511PDM_TABL_COLN_LISTPDMList of columns of the table %PARENT%List of columns of the table %PARENT%List of columns of the table %PARENT%TableColumns1-20 Code
-20 DataType
-10 Length
-30 Comment
-10 Mandatory
-10 Primary
5907068C-F4A9-477E-9FA9-F639ABE9B6441520150258xgc151520150258xgc15新宋体1053531060D1FE0BCF-162F-401B-B0B1-779BBED56BF61520150258xgc151520150258xgc15Microsoft Sans Serif1024117525EEE2-C979-48CA-921D-E4BCFE3715B51520150258xgc151520150258xgc15Microsoft Sans Serif10118641A469-0618-499A-BDC9-8BD351FE30151520150258xgc151520150258xgc1549FAC418-2E66-4058-90D8-172FE1C3CC841520150582xgc151520150582xgc1511PDM_TABL_TITLEPDMTable %ITEM%Table %ITEM%Table %ITEM%Tables7E2BB7D7-6504-4005-A2D6-544CECF0EACD1520150582xgc151520150582xgc1511PDM_TABL_CARDPDMCard of table %ITEM%Card of table %ITEM%Card of table %ITEM%Name
Code
C6186B78-A92A-40B7-97D6-8397F1082AB51520150582xgc151520150582xgc15新宋体1053531062009B9CF14-DD90-4895-B26C-65AB4B5DE9C11520150582xgc151520150582xgc15Microsoft Sans Serif102121BBBF0308-65A3-48C2-9B9A-1EC18D70D2CA1520150582xgc151520150582xgc15Microsoft Sans Serif1012137BB2894-B6C8-49EE-B16A-7E3DF5AFECD81520150582xgc151520150582xgc1511PDM_TABL_EXA_LISTPDMList of extended attributes of the table %PARENT%List of extended attributes of the table %PARENT%List of extended attributes of the table %PARENT%1-30 LabelOrName
-20 DataType
-20 Value
-30 TargetName
93B85719-8F9C-4FC0-934F-06469895D3921520150582xgc151520150582xgc15新宋体1053531060CB96067F-F8A6-4527-9F69-2CCE4D3C57251520150582xgc151520150582xgc15Microsoft Sans Serif102411B07E9139-45FF-40C7-8468-55CAA1D5EB991520150582xgc151520150582xgc15Microsoft Sans Serif1011C79A7F49-FFB6-4DFD-89AE-9D740E17DDA41520150582xgc151520150582xgc1555268980-CA24-4DB3-A44C-BD57593C25D61520150582xgc151520150582xgc1511PDM_TABL_DESCPDMDescription of the table %ITEM%Description of the table %ITEM%Description of the table %ITEM%540BA19C-93D4-4935-A4D3-486898492B4F1520150582xgc151520150582xgc15新宋体10535310604DB5589D-D34D-485A-9B27-EB714CF9A7851520150582xgc151520150582xgc15Microsoft Sans Serif100E973CFD0-D688-45CD-BD9B-8A233D3F65531520150582xgc151520150582xgc1511PDM_TABL_NOTEPDMAnnotation of the table %ITEM%Annotation of the table %ITEM%Annotation of the table %ITEM%EDE9D99B-514C-44B9-B5C1-F44FF1F3D4CB1520150582xgc151520150582xgc15新宋体10535310602D963386-BF30-4651-B5F2-647DB136A42B1520150582xgc151520150582xgc15Microsoft Sans Serif1002A4DBD51-D7E5-4F76-8CE9-D2B090310EC31520150582xgc151520150582xgc1511PDM_TABL_PREVPDMCode preview of the table %ITEM%Code preview of the table %ITEM%Code preview of the table %ITEM%843766D4-106F-4229-AB36-880CBBC486811520150582xgc151520150582xgc15新宋体105353106068BB147C-12AB-45C2-B5AB-00FFDCE0B93F1520150582xgc151520150582xgc15Microsoft Sans Serif10028FC543D-767E-458B-B8C0-B5C0B138D01F1520150582xgc151520150582xgc1511PDM_TABL_HEADPDMBegin script of the table %ITEM%Begin script of the table %ITEM%Begin script of the table %ITEM%C055FECD-D0F0-4570-8CE2-5791ACF846F61520150582xgc151520150582xgc15新宋体1053531060ABE1D49C-0515-4367-9E40-FCEAA29B675B1520150582xgc151520150582xgc15Microsoft Sans Serif10007F0BCA1-3E58-45B8-ACA3-F2EBBB0CAC1E1520150582xgc151520150582xgc1511PDM_TABL_FOOTPDMEnd script of the table %ITEM%End script of the table %ITEM%End script of the table %ITEM%9C5F8A09-E0FF-407E-9192-36BF40D21E581520150582xgc151520150582xgc15新宋体1053531060A4140A8C-78C4-4B63-AC9B-0B2B1DCE735A1520150582xgc151520150582xgc15Microsoft Sans Serif100F5EC42A4-8D4D-49BA-8EC2-43F962E503DB1520150582xgc151520150582xgc1511PDM_TABL_CRULPDMClient validation rule of the table %ITEM%Client validation rule of the table %ITEM%Client validation rule of the table %ITEM%B4EE5376-2B2F-48D9-AD4D-919C080C4FB71520150582xgc151520150582xgc15新宋体1053531060065D761B-1A15-4139-8CBA-DF7D6E83D11F1520150582xgc151520150582xgc15Microsoft Sans Serif100C829A231-DC5A-4488-AEFD-AF94B55B84D21520150582xgc151520150582xgc1511PDM_TABL_SRULPDMServer validation rule of the table %ITEM%Server validation rule of the table %ITEM%Server validation rule of the table %ITEM%011C4595-D6E8-4AEF-9FF9-3FEA8DD9EFAE1520150582xgc151520150582xgc15新宋体1053531060B298602A-8158-4733-9FDE-C48CFADE0F241520150582xgc151520150582xgc15Microsoft Sans Serif100DD4BE1DD-F710-4028-BF12-CAE8BE50A21A1520150582xgc151520150582xgc1511PDM_TABL_OPTSPDMOptions of the table %ITEM%Options of the table %ITEM%Options of the table %ITEM%DA9E793E-4F2F-4FF3-AF59-A830525A24171520150582xgc151520150582xgc15新宋体105353106096238CD0-F3A9-4504-9B8F-8E22A03E1AB21520150582xgc151520150582xgc15Microsoft Sans Serif10042CC8C0D-59F8-4E63-916A-DD7FE9E500A71520150582xgc151520150582xgc1511PDM_TABL_CKCNPDMCheck constraint name of the table %ITEM%Check constraint name of the table %ITEM%Check constraint name of the table %ITEM%6205590B-44F9-4E7F-A23D-2E6325BFE2441520150582xgc151520150582xgc15新宋体10535310607640A0E6-8DDC-42D1-BC33-13BCFFE41A211520150582xgc151520150582xgc15Microsoft Sans Serif100DC55D993-C0B7-432A-B940-F745A65BEC261520150582xgc151520150582xgc1511PDM_TABL_RELDIAG_LISTPDMList of related diagrams of the table %PARENT%List of related diagrams of the table %PARENT%List of related diagrams of the table %PARENT%1-50 Name
-50 Code
F8189939-04DC-4C92-9005-5409B787DF241520150582xgc151520150582xgc15新宋体1053531060CA5CDFA7-E8D8-4AD7-A0DC-F97B7C6807171520150582xgc151520150582xgc15Microsoft Sans Serif102411E175FA63-0721-4E34-9DEA-FC190BCAB3BF1520150582xgc151520150582xgc15Microsoft Sans Serif1011D3D3318E-B50E-4FBA-A998-D9104EA3BA3F1520150582xgc151520150582xgc15EF322B6E-2FCC-466D-871B-AD35856642E51520150582xgc151520150582xgc1511PDM_TABL_DIAG_TITLEPDMRelated diagram %ITEM% of the table %PARENT%Related diagram %ITEM% of the table %PARENT%Related diagram %ITEM% of the table %PARENT%RelatedDiagrams878344DC-A687-4BFA-9028-98EF0D1D845C1520150582xgc151520150582xgc151PDM_TABL_GRAPHICPDM1184059017D8-F2CB-4055-AA70-1D4D486EAB231520150582xgc151520150582xgc15Microsoft Sans Serif10403AAD16E7-7071-4194-92B1-5293CE13594F1520150582xgc151520150582xgc1511PDM_TABL_DIAG_DESCPDMDescription of the related diagram %ITEM% of the table %PARENT%Description of the related diagram %ITEM% of the table %PARENT%Description of the related diagram %ITEM% of the table %PARENT%3CF6AA94-BE1A-4931-8353-875C162891A51520150582xgc151520150582xgc15新宋体105353106071136655-C557-41E8-92C6-195E2F7F2AC61520150582xgc151520150582xgc15Microsoft Sans Serif1002EDABD8F-0E04-4FEC-B35B-7ED75E2AF23D1520150582xgc151520150582xgc1511PDM_TABL_DIAG_NOTEPDMAnnotation of the related diagram %ITEM% of the table %PARENT%Annotation of the related diagram %ITEM% of the table %PARENT%Annotation of the related diagram %ITEM% of the table %PARENT%58E6A40D-658E-4B87-B746-1CDFB1C8F49B1520150582xgc151520150582xgc15新宋体10535310606932D5B5-55CF-4D03-9E08-942B148773E41520150582xgc151520150582xgc15Microsoft Sans Serif1001398533D-85B7-4EB3-8A00-1BF2EF47978C1520150582xgc151520150582xgc15新宋体10535310607A56D2FA-708C-4722-A6A7-66E08755B4C71520150582xgc151520150582xgc1511PDM_TABL_DEPND_LISTPDMList of all dependencies of the table %PARENT%List of all dependencies of the table %PARENT%List of all dependencies of the table %PARENT%1-40 Name
-40 Code
-20 ClassName
39021ECB-FF06-4DA1-B0C7-918CB5349F391520150582xgc151520150582xgc15新宋体1053531060438B268E-CC9A-4099-9EC8-38A002E480E51520150582xgc151520150582xgc15Microsoft Sans Serif1024118D72922E-6D78-4FE2-9DC1-0A4D9A170ACD1520150582xgc151520150582xgc15Microsoft Sans Serif10112CBBBB9A-E3EF-487C-9182-15156412BCF41520150582xgc151520150582xgc1590977E2B-76C2-467C-A96B-0CFF6E283AFF1520150582xgc151520150582xgc1511PDM_TABL_OBJRDIAG_LISTPDMList of objects in related diagrams of the table %PARENT%List of objects in related diagrams of the table %PARENT%List of objects in related diagrams of the table %PARENT%1-100 ShortDescription
0138366E-0FFA-464E-A594-5ED5002F8B111520150582xgc151520150582xgc15新宋体10535310601A49DA9F-36CA-474D-9D22-AF95B176D5D81520150582xgc151520150582xgc15Microsoft Sans Serif102411B483C5C7-EB3D-4CA6-AB65-ED311118483B1520150582xgc151520150582xgc15Microsoft Sans Serif1011DBFCE969-A460-4417-968C-17C1B654325C1520150582xgc151520150582xgc15A6ED2BEA-671E-4D0C-98C3-5C84D5624DE31520150582xgc151520150582xgc1511PDM_TABL_ARTC_LISTPDMList of remote articles of the table %PARENT%List of remote articles of the table %PARENT%List of remote articles of the table %PARENT%1-100 ShortDescription
E46D84CF-1D70-4C38-86C9-31C6C641A3C01520150582xgc151520150582xgc15新宋体10535310601B7675F0-EDF9-4D6B-A4EC-576416B360B11520150582xgc151520150582xgc15Microsoft Sans Serif1024114E66EF04-3C1A-42A8-B19C-15B48D931D291520150582xgc151520150582xgc15Microsoft Sans Serif1011A4B405BA-5EE8-4E9B-9CDD-BF489164CF4C1520150582xgc151520150582xgc15DB9C850B-191B-4C50-A019-C5A929A425631520150582xgc151520150582xgc1511PDM_TABL_SRCARTC_LISTPDMList of source articles of the table %PARENT%List of source articles of the table %PARENT%List of source articles of the table %PARENT%1-100 ShortDescription
21282441-8FC7-4AEC-9D71-711D0FF5D15C1520150582xgc151520150582xgc15新宋体1053531060546C8A96-6BBC-4765-B5D3-6DC74AF7C4751520150582xgc151520150582xgc15Microsoft Sans Serif1024119FCE6953-A685-4FD0-8D5D-E4E3E8325D611520150582xgc151520150582xgc15Microsoft Sans Serif1011E62B29A1-7712-4025-A603-1EAC468614131520150582xgc151520150582xgc15D49D1F9B-99B1-4075-9090-02C417CAEF2A1520150582xgc151520150582xgc1511PDM_TABL_SRCSTEP_LISTPDMList of source steps of the table %PARENT%List of source steps of the table %PARENT%List of source steps of the table %PARENT%1-100 ShortDescription
BCDFF1B2-8604-4856-A047-915B6B075C621520150582xgc151520150582xgc15新宋体105353106021275FAE-798C-4A9C-935C-BE10305698E71520150582xgc151520150582xgc15Microsoft Sans Serif102411C97A6711-7C54-469C-A7E3-4797FB0A7D2A1520150582xgc151520150582xgc15Microsoft Sans Serif10119F796143-DA10-4EA9-B093-8DE39C7DABDA1520150582xgc151520150582xgc154E7C987E-9E6A-489B-8318-ACF7955790AA1520150582xgc151520150582xgc1511PDM_TABL_DSTSTEP_LISTPDMList of target steps of the table %PARENT%List of target steps of the table %PARENT%List of target steps of the table %PARENT%1-100 ShortDescription
DFA07C85-3AAE-481E-8218-ADFFAA77CE611520150582xgc151520150582xgc15新宋体10535310609C3DE6FA-DCED-445D-997A-EE837DB48E3B1520150582xgc151520150582xgc15Microsoft Sans Serif102411A93FE252-A9D7-4FC2-BE53-016BB22F502D1520150582xgc151520150582xgc15Microsoft Sans Serif1011CF0344BD-9128-4394-B5C6-2E8A15682AAB1520150582xgc151520150582xgc1592C22AE6-481F-4508-9428-AB63663B4C251520150582xgc151520150582xgc1511PDM_TABL_DIAG_LISTPDMList of diagrams containing the table %PARENT%List of diagrams containing the table %PARENT%List of diagrams containing the table %PARENT%1-50 Name
-50 Code
44939C14-0328-4696-BB5F-97EA69606FDE1520150582xgc151520150582xgc15新宋体10535310609E39808C-E481-49C6-8E75-0403D0870D741520150582xgc151520150582xgc15Microsoft Sans Serif102411A9ADCC89-69BB-44CF-81F7-2DC629AC19851520150582xgc151520150582xgc15Microsoft Sans Serif10117E9B427B-9E48-427A-90C6-255E0F5EEFAA1520150582xgc151520150582xgc15B1F12228-3CAD-4F6C-AE0E-24D5527FF7661520150582xgc151520150582xgc1511PDM_TABL_COLN_LISTPDMList of columns of the table %PARENT%List of columns of the table %PARENT%List of columns of the table %PARENT%Columns1-50 Name
-50 Code
E7BA8098-C5AA-4F0F-BB52-3F5B85135F741520150582xgc151520150582xgc15新宋体1053531060289CF866-1C75-4986-8947-DF377467FC191520150582xgc151520150582xgc15Microsoft Sans Serif1024117727C3E4-7C43-4EC4-AA8B-1DB9CF31BDBC1520150582xgc151520150582xgc15Microsoft Sans Serif1011DE1BA866-EBE2-43C5-9A6E-778FDB2AF4D21520150582xgc151520150582xgc15604A08D8-E11E-48C5-9F18-75BD4E0F76B31520150582xgc151520150582xgc1511PDM_TABL_COLN_GROUPPDMColumn %ITEM% of the table %PARENT%Column %ITEM% of the table %PARENT%Column %ITEM% of the table %PARENT%Columns89E79601-FCC0-4B10-86D5-38CED0AF5FF81520150582xgc151520150582xgc1511PDM_TABL_COLN_CARDPDMCard of the column %ITEM% of the table %PARENT%Card of the column %ITEM% of the table %PARENT%Card of the column %ITEM% of the table %PARENT%Name
Code
DataType
Mandatory
BB48133D-C36B-46B9-AA10-305A515F40E91520150582xgc151520150582xgc15新宋体105353106202250E877-AA64-4DCA-97E1-E6E9905D9C6E1520150582xgc151520150582xgc15Microsoft Sans Serif10212145D96B6C-97EE-4632-B942-BCE1141D4C301520150582xgc151520150582xgc15Microsoft Sans Serif10121DB1365BF-B078-4700-B34F-91DE456AAA911520150582xgc151520150582xgc1511PDM_TABL_COLN_CHECKPDMCheck of the column %ITEM% of the table %PARENT%Check of the column %ITEM% of the table %PARENT%Check of the column %ITEM% of the table %PARENT%LowValue
HighValue
DefaultValue
Unit
Format
CharacterCase
CannotModify
NoSpace
ListOfValues
Complete
DefaultValueDisplayed
168626C5-F894-4C79-B274-188A90DF452E1520150582xgc151520150582xgc15新宋体105353106201FA16DC7-7B7E-4B13-84BA-D9A80FD751801520150582xgc151520150582xgc15Microsoft Sans Serif102121B72BD854-2877-4B86-B4EF-6EA8B099BD901520150582xgc151520150582xgc15Microsoft Sans Serif1012157208C66-4E66-40DD-84CD-9674810B161D1520150582xgc151520150582xgc1511PDM_TABL_COLN_EXA_LISTPDMList of extended attributes of the table column %PARENT%List of extended attributes of the table column %PARENT%List of extended attributes of the table column %PARENT%1-30 LabelOrName
-20 DataType
-20 Value
-30 TargetName
D50D12BB-5D5A-4AE6-BD2E-D83A682B0F6B1520150582xgc151520150582xgc15新宋体1053531060C9C5B470-E0BF-443F-89B2-482765A3E5C31520150582xgc151520150582xgc15Microsoft Sans Serif102411AA3C6768-94B5-44D1-B90B-155094286AF41520150582xgc151520150582xgc15Microsoft Sans Serif1011B49FB810-DED6-4690-BBBB-26C4FFF4AD171520150582xgc151520150582xgc15C114DD91-4AFE-43C6-BB34-7825E99492671520150582xgc151520150582xgc1511PDM_TABL_COLN_DESCPDMDescription of the column %ITEM% of the table %PARENT%Description of the column %ITEM% of the table %PARENT%Description of the column %ITEM% of the table %PARENT%417F6279-CED3-49D6-92B0-A91233DBEA421520150582xgc151520150582xgc15新宋体105353106061F111B9-047B-43B0-B922-FE87DFF8EB5C1520150582xgc151520150582xgc15Microsoft Sans Serif1005EE3D98F-2ED4-4BC8-AFE9-E551DDE2A0761520150582xgc151520150582xgc1511PDM_TABL_COLN_NOTEPDMAnnotation of the column %ITEM% of the table %PARENT%Annotation of the column %ITEM% of the table %PARENT%Annotation of the column %ITEM% of the table %PARENT%0BE24668-1417-4CD4-8AAA-410C48CE2C9F1520150582xgc151520150582xgc15新宋体1053531060FAD10A2E-7C26-47CB-9583-9EE2E5D99E871520150582xgc151520150582xgc15Microsoft Sans Serif10092A0ED57-84B9-4A29-BAE0-EE30B02EA2181520150582xgc151520150582xgc1511PDM_TABL_COLN_PREVPDMCode preview of the column %ITEM% of the table %PARENT%Code preview of the column %ITEM% of the table %PARENT%Code preview of the column %ITEM% of the table %PARENT%D950456B-F738-45EA-8AEE-FE212A9C07C41520150582xgc151520150582xgc15新宋体1053531060706FB166-5182-40BB-8FF0-D52E8E6555331520150582xgc151520150582xgc15Microsoft Sans Serif100B20D8F7C-B294-4A49-B70D-19F0D45134BD1520150582xgc151520150582xgc1511PDM_TABL_COLN_CRULPDMClient validation rule of the column %ITEM% of the table %PARENT%Client validation rule of the column %ITEM% of the table %PARENT%Client validation rule of the column %ITEM% of the table %PARENT%A53FF02C-CC69-4B04-8973-EB2A53A519D51520150582xgc151520150582xgc15新宋体1053531060B5CF878E-A296-4688-B124-DE451ED2A8D71520150582xgc151520150582xgc15Microsoft Sans Serif100B4262694-3BB1-4D27-8EA0-10385C4902CB1520150582xgc151520150582xgc1511PDM_TABL_COLN_SRULPDMServer validation rule of the column %ITEM% of the table %PARENT%Server validation rule of the column %ITEM% of the table %PARENT%Server validation rule of the column %ITEM% of the table %PARENT%3A1FE621-6B5B-4B6E-B351-377B77A67EDD1520150582xgc151520150582xgc15新宋体1053531060A96A206B-3035-4CB1-BE23-1A929A529E181520150582xgc151520150582xgc15Microsoft Sans Serif100EACC381B-E943-4E58-A81F-01A924F6E3A31520150582xgc151520150582xgc1511PDM_TABL_COLN_OPTSPDMOptions of the column %ITEM% of the table %PARENT%Options of the column %ITEM% of the table %PARENT%Options of the column %ITEM% of the table %PARENT%33D71281-E554-485D-8E41-9109A5C3A65D1520150582xgc151520150582xgc15新宋体1053531060CF6C906B-D98D-411D-8EEC-F2C1685B721A1520150582xgc151520150582xgc15Microsoft Sans Serif1007FD90E6A-648D-4505-A725-BB82E70101EA1520150582xgc151520150582xgc1511PDM_TABL_COLN_CKCNPDMCheck constraint name of the column %ITEM% of the table %PARENT%Check constraint name of the column %ITEM% of the table %PARENT%Check constraint name of the column %ITEM% of the table %PARENT%A21402CE-6B2F-4B9D-90A6-783F5EFE4CC21520150582xgc151520150582xgc15新宋体105353106014FE955D-3B3F-4A39-ACAD-551EC1BF6A741520150582xgc151520150582xgc15Microsoft Sans Serif1001090E6AE-ED70-4DB7-97B9-0002841BE6601520150582xgc151520150582xgc1511PDM_TABL_COLN_CTXTPDMComputed expression text of the column %ITEM% of the table %PARENT%Computed expression text of the column %ITEM% of the table %PARENT%Computed expression text of the column %ITEM% of the table %PARENT%54CD7DE0-E9B4-4A8A-972C-3DCADF8376C31520150582xgc151520150582xgc15新宋体1053531060F83ACAF8-AD5D-44DF-A376-71B54B24B1E41520150582xgc151520150582xgc15Microsoft Sans Serif100F4FD8F47-8FC0-475D-A520-9B130A67A1161520150582xgc151520150582xgc1511PDM_TABL_COLN_RELDIAG_LISTPDMList of related diagrams of the table column %PARENT%List of related diagrams of the table column %PARENT%List of related diagrams of the table column %PARENT%1-50 Name
-50 Code
A3BE2208-50AA-4462-BAE7-7BAD8620ECF31520150582xgc151520150582xgc15新宋体1053531060A10C2B1C-9BC0-42F7-BE6D-BC4EAFD5C0C01520150582xgc151520150582xgc15Microsoft Sans Serif10241164F5B3F3-743D-484B-AF5F-26173E1B3B2B1520150582xgc151520150582xgc15Microsoft Sans Serif101193611278-0A24-45FF-8BF5-7AE328E7EC1D1520150582xgc151520150582xgc15398AEFF2-826E-4275-829B-E28A8F8BFE901520150582xgc151520150582xgc1511PDM_TABL_COLN_DIAG_TITLEPDMRelated diagram %ITEM% of the column %PARENT%Related diagram %ITEM% of the column %PARENT%Related diagram %ITEM% of the column %PARENT%RelatedDiagrams79A69529-37FE-4D8B-9AC4-E24FD2B97B411520150582xgc151520150582xgc151PDM_TABL_COLN_GRAPHICPDM11847B994A3F-6616-4572-9EC7-2E976C6EC2BF1520150582xgc151520150582xgc15Microsoft Sans Serif10405D650326-E99A-43C7-BD86-E362B090D9191520150582xgc151520150582xgc1511PDM_TABL_COLN_DIAG_DESCPDMDescription of the related diagram %ITEM% of the column %PARENT%Description of the related diagram %ITEM% of the column %PARENT%Description of the related diagram %ITEM% of the column %PARENT%15DD2EAE-327C-49EE-A108-39315E83EF7C1520150582xgc151520150582xgc15新宋体10535310608D8FAE18-C205-42D9-B2A5-FF2356770DB11520150582xgc151520150582xgc15Microsoft Sans Serif100A1C6AEF1-5FE8-4D6F-98D5-0F47F7AD34E81520150582xgc151520150582xgc1511PDM_TABL_COLN_DIAG_NOTEPDMAnnotation of the related diagram %ITEM% of the column %PARENT%Annotation of the related diagram %ITEM% of the column %PARENT%Annotation of the related diagram %ITEM% of the column %PARENT%976538FE-3099-4842-820D-E1751D6DC4BF1520150582xgc151520150582xgc15新宋体10535310605226BACA-13D1-4491-A537-9751F77E99271520150582xgc151520150582xgc15Microsoft Sans Serif10093293527-DCF6-4AC8-8D82-4A1D036BD6451520150582xgc151520150582xgc15新宋体10535310607A9C9098-B5CF-4FCF-9B7B-0F73495833F61520150582xgc151520150582xgc1511PDM_TABL_COLN_DEPND_LISTPDMList of all dependencies of the table column %PARENT%List of all dependencies of the table column %PARENT%List of all dependencies of the table column %PARENT%1-40 Name
-40 Code
-20 ClassName
67FC8B0A-D015-4E53-9466-90F128FCF2011520150582xgc151520150582xgc15新宋体10535310606E5EDA0D-7EAC-43B6-ABBA-B47E6BA684961520150582xgc151520150582xgc15Microsoft Sans Serif1024119225DE65-1D28-42CC-99B0-654A4FCEC8801520150582xgc151520150582xgc15Microsoft Sans Serif1011C394CFDF-B525-44D5-8EAD-76F66528EA801520150582xgc151520150582xgc15C5351579-E281-471A-B213-D938DA19ACDA1520150582xgc151520150582xgc1511PDM_TABL_COLN_OBJRDIAG_LISTPDMList of objects in related diagrams of the table column %PARENT%List of objects in related diagrams of the table column %PARENT%List of objects in related diagrams of the table column %PARENT%1-100 ShortDescription
679DED90-6CBD-4DCE-873B-C6386407EF211520150582xgc151520150582xgc15新宋体1053531060B4AA04F3-B8CA-445F-A738-F216ECCA83861520150582xgc151520150582xgc15Microsoft Sans Serif1024113E701EDF-5A9E-46A3-9C61-048FEE05A1091520150582xgc151520150582xgc15Microsoft Sans Serif1011B57E69B8-44E6-4023-92E5-00BCB591D6FE1520150582xgc151520150582xgc159F2CD8E2-7342-4FFC-B27B-033AEB98DF151520150582xgc151520150582xgc1511PDM_TABL_COLN_KEY_LISTPDMList of keys of the table column %PARENT%List of keys of the table column %PARENT%List of keys of the table column %PARENT%1-50 Name
-50 Code
20 Primary
728E0AC8-EAF3-4E91-8BDF-95F867E4BB7C1520150582xgc151520150582xgc15新宋体1053531060284469E4-FAC3-4838-B1AA-958BA5CA0C321520150582xgc151520150582xgc15Microsoft Sans Serif102411666DFB2C-85CC-499A-B55E-274AFED2077A1520150582xgc151520150582xgc15Microsoft Sans Serif10119C7B94A9-DEF8-4A5A-A159-25BBC82EAE581520150582xgc151520150582xgc15D8154AD8-5D0E-46B4-B4D5-A4FA888DB0971520150582xgc151520150582xgc1511PDM_TABL_COLN_ARCO_LISTPDMList of remote article columns of the table column %PARENT%List of remote article columns of the table column %PARENT%List of remote article columns of the table column %PARENT%1-100 ShortDescription
DB0993BE-2C13-4304-A7BE-C3A701AECE211520150582xgc151520150582xgc15新宋体10535310608EDF0191-62E2-4D2D-949C-CC98882535F31520150582xgc151520150582xgc15Microsoft Sans Serif1024112C45CC5F-3163-4150-9AE5-0B53F59D58F81520150582xgc151520150582xgc15Microsoft Sans Serif1011831450E2-25A2-4747-BE1A-3AC2D26C81C91520150582xgc151520150582xgc1514A6A9DD-8EC1-4173-8D4A-2DE2353CD3741520150582xgc151520150582xgc1511PDM_TABL_COLN_SRCARCO_LISTPDMList of source article columns of the table column %PARENT%List of source article columns of the table column %PARENT%List of source article columns of the table column %PARENT%1-100 ShortDescription
36B93F3C-94EB-4979-A064-0D33C2427EC61520150582xgc151520150582xgc15新宋体105353106055DAEE4B-85FC-4D65-8AC7-31B301556E5C1520150582xgc151520150582xgc15Microsoft Sans Serif102411FEBEBEEF-AD49-43C9-A4FD-02257DCC8E791520150582xgc151520150582xgc15Microsoft Sans Serif1011CFB1C978-99BF-4E20-BCD8-9BA4ABFF16A81520150582xgc151520150582xgc15D3EC13EE-9DF3-4E1C-ADE5-05A5F82632081520150582xgc151520150582xgc1511PDM_TABL_COLN_DSCOLUMNSRC_LISTPDMList of source data structure columns of the table column %PARENT%List of source data structure columns of the table column %PARENT%List of source data structure columns of the table column %PARENT%1-100 ShortDescription
BC7F6350-1DA1-40D8-80F7-77BAE8258FA01520150582xgc151520150582xgc15新宋体10535310600D5273BF-0EC2-48BA-9E26-AA2407B878F21520150582xgc151520150582xgc15Microsoft Sans Serif102411AC16DFD1-A025-44E4-B08A-D1201BC6B9731520150582xgc151520150582xgc15Microsoft Sans Serif1011E7F48B15-E180-4384-849F-A42BC9247DA21520150582xgc151520150582xgc159D7AA746-ECC0-424B-B163-331CAFB7D17A1520150582xgc151520150582xgc1511PDM_TABL_COLN_DSCOLUMNTRG_LISTPDMList of target data structure columns of the table column %PARENT%List of target data structure columns of the table column %PARENT%List of target data structure columns of the table column %PARENT%1-100 ShortDescription
042E9F7C-0052-4390-842F-D453CA6FD1C71520150582xgc151520150582xgc15新宋体10535310607006D085-8BF1-449A-BB7A-C521DA9154631520150582xgc151520150582xgc15Microsoft Sans Serif102411904E6268-E200-4AC6-8E2E-47B2BBE9A4801520150582xgc151520150582xgc15Microsoft Sans Serif1011D5415BCA-E7AA-4C82-A511-1AE2BDF8558F1520150582xgc151520150582xgc1508216174-1E3E-4EB1-B5E0-CB6C723D0A871520150582xgc151520150582xgc15新宋体105353106021BEBBC3-7227-46B7-A933-C975849812F41520150582xgc151520150582xgc1511PDM_TABL_KEY_LISTPDMList of keys of the table %PARENT%List of keys of the table %PARENT%List of keys of the table %PARENT%Keys1-50 Name
-50 Code
20 Primary
7B5AEBF9-45D5-4DA2-B021-F3A99E2AF3B41520150582xgc151520150582xgc15新宋体105353106062EC36DE-740D-4ACB-9ABD-217666DB3BB01520150582xgc151520150582xgc15Microsoft Sans Serif1024118979041D-A2B4-4814-8642-0F1AEE039FF01520150582xgc151520150582xgc15Microsoft Sans Serif1011DAAC0AFA-D4B1-4F25-A7D7-FE02088DCAD61520150582xgc151520150582xgc153F73224A-35ED-46C1-AD8D-C89C2CCAA0B61520150582xgc151520150582xgc1511PDM_TABL_KEY_GROUPPDMKey %ITEM% of the table %PARENT%Key %ITEM% of the table %PARENT%Key %ITEM% of the table %PARENT%KeysB229B0E2-71A4-4DF8-A1AE-CD7B855D01D61520150582xgc151520150582xgc1511PDM_TABL_KEY_CARDPDMCard of the key %ITEM% of the table %PARENT%Card of the key %ITEM% of the table %PARENT%Card of the key %ITEM% of the table %PARENT%Name
Code
Primary
AE0D7FB4-A51A-4BFD-B68A-02FB6849253A1520150582xgc151520150582xgc15新宋体105353106202BB9CC6A-6A77-41FA-A3C2-C69D7004734D1520150582xgc151520150582xgc15Microsoft Sans Serif102121448669BE-570E-40A0-AF40-0B0047D92D8F1520150582xgc151520150582xgc15Microsoft Sans Serif1012150899BD5-9618-49E3-BC98-3757A77638231520150582xgc151520150582xgc1511PDM_TABL_KEY_EXA_LISTPDMList of extended attributes of the table key %PARENT%List of extended attributes of the table key %PARENT%List of extended attributes of the table key %PARENT%1-30 LabelOrName
-20 DataType
-20 Value
-30 TargetName
A8072E8E-622B-4779-A1FF-E1BE332FFF231520150582xgc151520150582xgc15新宋体10535310600E552B4B-6E3A-424E-9BF5-3711CEFA8DA21520150582xgc151520150582xgc15Microsoft Sans Serif10241145922E4A-7814-469D-8D4E-5C73C887DE521520150582xgc151520150582xgc15Microsoft Sans Serif1011C4B2705D-1DE7-457D-B0E4-E555CD7CFB3B1520150582xgc151520150582xgc151E7F2023-F258-4A0C-9107-F1C6CECD435E1520150582xgc151520150582xgc1511PDM_TABL_KEY_DESCPDMDescription of the key %ITEM% of the table %PARENT%Description of the key %ITEM% of the table %PARENT%Description of the key %ITEM% of the table %PARENT%29D10C8C-228A-4C94-83F5-6148A6369F111520150582xgc151520150582xgc15新宋体1053531060C5FBEFDA-B02F-4CC0-B414-C739ECE69CC21520150582xgc151520150582xgc15Microsoft Sans Serif10092A74146-D68E-4902-8D43-0916CA9524AA1520150582xgc151520150582xgc1511PDM_TABL_KEY_NOTEPDMAnnotation of the key %ITEM% of the table %PARENT%Annotation of the key %ITEM% of the table %PARENT%Annotation of the key %ITEM% of the table %PARENT%FE1AB247-F291-40BB-9246-3211E7B4AEBA1520150582xgc151520150582xgc15新宋体10535310603ECF4CAE-3EBD-4C66-8B0A-6593F8373DEB1520150582xgc151520150582xgc15Microsoft Sans Serif100BA94858C-7DA5-4CCA-850D-73E3BF42A4B11520150582xgc151520150582xgc1511PDM_TABL_KEY_PREVPDMCode preview of the key %ITEM% of the table %PARENT%Code preview of the key %ITEM% of the table %PARENT%Code preview of the key %ITEM% of the table %PARENT%AD27CD3D-851A-41F2-B595-028D83AEF9001520150582xgc151520150582xgc15新宋体10535310600B3A808C-6B25-408D-A8D2-62FF66222C741520150582xgc151520150582xgc15Microsoft Sans Serif100F6221C2B-976B-45A5-9EE4-F312EEA128071520150582xgc151520150582xgc1511PDM_TABL_KEY_OPTSPDMOptions of the key %ITEM% of the table %PARENT%Options of the key %ITEM% of the table %PARENT%Options of the key %ITEM% of the table %PARENT%9E9BEA72-D6BF-4FFE-BF9F-77D7B63477731520150582xgc151520150582xgc15新宋体1053531060BEC068DF-59E0-491A-9770-9CE1C7CC918F1520150582xgc151520150582xgc15Microsoft Sans Serif100DF566F1A-633B-4136-B536-6F3A47CD2D391520150582xgc151520150582xgc1511PDM_TABL_KEY_RELDIAG_LISTPDMList of related diagrams of the table key %PARENT%List of related diagrams of the table key %PARENT%List of related diagrams of the table key %PARENT%1-50 Name
-50 Code
76339250-2747-44CF-9F4D-41924A690EDB1520150582xgc151520150582xgc15新宋体1053531060349F5B2A-13A1-4F59-9EA6-7B0BE3E71B6D1520150582xgc151520150582xgc15Microsoft Sans Serif10241156708C85-A7E5-4D6C-B522-2C3254E47C651520150582xgc151520150582xgc15Microsoft Sans Serif1011F700D2E0-9B8D-421D-AD60-B6DDA700C86F1520150582xgc151520150582xgc156DB43E28-1F39-490F-836D-427F2089D2741520150582xgc151520150582xgc1511PDM_TABL_KEY_DIAG_TITLEPDMRelated diagram %ITEM% of the key %PARENT%Related diagram %ITEM% of the key %PARENT%Related diagram %ITEM% of the key %PARENT%RelatedDiagramsCBAF74BA-F14A-43C7-AC88-5203B90370A11520150582xgc151520150582xgc151PDM_TABL_KEY_GRAPHICPDM118490A565F5-0553-4293-8097-D1E75B613DEE1520150582xgc151520150582xgc15Microsoft Sans Serif1040BE4DB18F-2F2C-4AEC-B232-459EFDB923ED1520150582xgc151520150582xgc1511PDM_TABL_KEY_DIAG_DESCPDMDescription of the related diagram %ITEM% of the key %PARENT%Description of the related diagram %ITEM% of the key %PARENT%Description of the related diagram %ITEM% of the key %PARENT%3088AC61-36C1-4E8F-B697-279E8EC807731520150582xgc151520150582xgc15新宋体10535310603A0C637E-7C66-4AAC-A513-D66B807437CA1520150582xgc151520150582xgc15Microsoft Sans Serif10016038B14-ABC9-40BB-85CB-11DBDA4704CE1520150582xgc151520150582xgc1511PDM_TABL_KEY_DIAG_NOTEPDMAnnotation of the related diagram %ITEM% of the key %PARENT%Annotation of the related diagram %ITEM% of the key %PARENT%Annotation of the related diagram %ITEM% of the key %PARENT%012C7025-ADE9-4462-83EF-F0AC199A1FCB1520150582xgc151520150582xgc15新宋体1053531060FFB82E91-AB72-4398-8BF4-41076574245F1520150582xgc151520150582xgc15Microsoft Sans Serif100912C7640-D79C-4858-AF7A-42557EE3D7A21520150582xgc151520150582xgc15新宋体10535310602FCA7ED2-745F-48D1-9966-3EC1457AB7251520150582xgc151520150582xgc1511PDM_TABL_KEY_COLN_LISTPDMList of columns of the table key %PARENT%List of columns of the table key %PARENT%List of columns of the table key %PARENT%1-50 Name
-50 Code
E7FEAD84-A4D0-4860-8074-7E8DBD2B792E1520150582xgc151520150582xgc15新宋体10535310602DC2BA2A-25A3-4F42-B892-E4F99B768DDA1520150582xgc151520150582xgc15Microsoft Sans Serif102411FC50FC8E-FC87-4898-A885-3E8FD66B29FB1520150582xgc151520150582xgc15Microsoft Sans Serif1011259BC7A7-C7E9-4851-8330-C66EAC062A641520150582xgc151520150582xgc150FF37AF7-F570-4B3A-A0D1-50F54DD1A7971520150582xgc151520150582xgc1511PDM_TABL_KEY_DEPND_LISTPDMList of all dependencies of the table key %PARENT%List of all dependencies of the table key %PARENT%List of all dependencies of the table key %PARENT%1-40 Name
-40 Code
-20 ClassName
76455E23-C571-49E9-9E4E-7E09EC965B881520150582xgc151520150582xgc15新宋体10535310605DD07F8B-1A2D-41A8-A30F-AB0ECCE86ED41520150582xgc151520150582xgc15Microsoft Sans Serif102411E096ACAF-3E66-49C7-81E0-08BCAF1F13571520150582xgc151520150582xgc15Microsoft Sans Serif1011FEB4D8D3-46EE-455A-8876-0EE78C48A22B1520150582xgc151520150582xgc15213353AD-1F82-48C0-9BCF-CBF7B20528791520150582xgc151520150582xgc1511PDM_TABL_KEY_OBJRDIAG_LISTPDMList of objects in related diagrams of the table key %PARENT%List of objects in related diagrams of the table key %PARENT%List of objects in related diagrams of the table key %PARENT%1-100 ShortDescription
9AA73B95-6AD6-4D89-A61D-896ED6AE70BE1520150582xgc151520150582xgc15新宋体10535310605983649A-D689-4438-8358-BD84C96870381520150582xgc151520150582xgc15Microsoft Sans Serif102411DD773960-ECFB-4908-9972-51BF810011051520150582xgc151520150582xgc15Microsoft Sans Serif1011193F362E-639C-4134-87F4-AEBC8C4D8D3F1520150582xgc151520150582xgc158587F65C-6068-4CA1-A7E2-5E680C6CCBBC1520150582xgc151520150582xgc15新宋体1053531060EDFE05A7-674C-4AD8-8FDE-2A58FA3B3CA21520150582xgc151520150582xgc15新宋体105353106064270F8B-AB0E-4146-A4A4-341273F740CF1520149496xgc151520149497xgc15Times New Roman1018C2821889-1039-4967-9D1B-B7EA6E47F3701520149496xgc151520149497xgc151863732E750007-5228-4A14-A024-D959C98867C01520149496xgc151520149497xgc15Times New Roman10121C5CA2EC-1DF7-479F-8897-CB2A9D538CD81520149496xgc151520149497xgc1595492328EF1B8-A40A-4213-91F1-41EBA3E7A1B31520149496xgc151520149497xgc15190983F47E36E8-D6CF-4242-BA30-8102CE505817Simplified ChineseZH-CN1520149495xgc151520149497xgc15F3A0BF0F-7536-11D5-A4D6-0008C79B4501585CBB37-C940-11D1-BD0D-00A02478ECC94A321061-16C6-4615-9CD3-3553F85CFF26Base_TableBase_Table1520149495xgc151520149497xgc15file:///.160EB092-2F96-4235-852F-052B990C5A86CDE44E21-9669-11D1-9914-006097355D9B15201516631A538BB0-E6BA-4769-97A9-CA6737B443DBReport 2Report 21520150885xgc151520150885xgc15xgc15%DATE%LightBlue_Theme.cssHeader_LightBlue.htmlFooter_LightBlue.html541840Home_LightBlue.htmlLight BlueProfessional1874FE50C-2094-4712-B6FC-24F32C4ACF0C1520150885xgc151520150885xgc15新宋体10144231061504B0F34D2-7881-41A4-AC4B-9D62523614671520150885xgc151520150885xgc15Microsoft Sans Serif1040236EF371-9C70-42DE-BE93-DC07E2971186Section_21520150885xgc151520150885xgc15160EB092-2F96-4235-852F-052B990C5A861TEMPLATEPDM%MODULE% %MODELNAME%Physical Data Model Base_Table0%APPNAME% %DATE% Page %PAGE%页脚0((800,900), (1100,900))(21000, 29700)A85E645C-BC6C-47A6-B02A-4FA92D24E5661520150895xgc151520150895xgc1511PDM_TABL_COLN_LISTPDMList of columns of the table %PARENT%List of columns of the table %PARENT%List of columns of the table %PARENT%TableColumns1-50 Name
-50 Code
D4B602A3-378C-4F04-A148-BAE7C8417F111520150895xgc151520150895xgc15新宋体105353106063E440D0-03EA-4120-8011-A1601AAD58471520150895xgc151520150895xgc15Microsoft Sans Serif1024116510AA29-8C23-4053-A4F7-B0AC10A855FC1520150895xgc151520150895xgc15Microsoft Sans Serif10114E3348EA-87C9-42C4-A0AE-8761201355011520150895xgc151520150895xgc158DDAED3C-1924-4FA6-B143-CD595101C7E11520150885xgc151520150885xgc15Microsoft Sans Serif1080EB033BAD-61BC-48B2-AC26-11E5331D048A1520150885xgc151520150885xgc15186463B6BB36FA-79B4-43E2-9DC0-600AF38EE4341520150885xgc151520150885xgc15Microsoft Sans Serif1020528C893F-98A5-4080-B7D1-7037CF12A3A91520150885xgc151520150885xgc1595502D6763196-1A27-4E44-98EF-E09120472F4A1520150885xgc151520150885xgc1519100373D92C6D-2048-4842-B6F3-37E8B4D64226Simplified ChineseZH-CN1520150885xgc151520150885xgc15F3A0BF0F-7536-11D5-A4D6-0008C79B4501585CBB37-C940-11D1-BD0D-00A02478ECC9E4673642-D432-4422-986B-F85B6EA6399CBase_TableBase_Table1520150885xgc151520150885xgc15file:///.160EB092-2F96-4235-852F-052B990C5A86CDE44E21-9669-11D1-9914-006097355D9B1520152423C60A483F-DCF4-454C-A8F9-253B486E0BCC数据字典数据字典1520151187xgc151520151187xgc15xgc15%DATE%LightBlue_Theme.cssHeader_LightBlue.htmlFooter_LightBlue.html541840Home_LightBlue.htmlLight BlueProfessional13F8FF574-34C5-4481-9F02-561B28D9EA911520151187xgc151520151187xgc15新宋体1014423106150804F4716-3DC5-42BA-93B8-6F335BE42DF31520151187xgc151520151187xgc15Microsoft Sans Serif1040A3C49456-5B20-4F86-A952-D2CC80BA762ESection_201520151187xgc15160EB092-2F96-4235-852F-052B990C5A86%_HOME%\Resource Files\Report Templates\pdmstdus.rtp1TEMPLATEPDM%MODULE% %MODELNAME%Physical Data Model Base_Table0%APPNAME% %DATE% Page %PAGE%页脚0((800,899), (1100,899))((549,508), (660,635))(20998, 29698)27225498-E881-4429-AF71-B8CFD96FD7C91520151187xgc151520151187xgc151TBLCTSPDM6D12096E-0082-4875-96F9-B04EE19388051520151187xgc151520151187xgc15Arial1051353106AF77978E-B6AE-432C-A377-00EF7812F08F1520151187xgc151520151187xgc15Times New Roman10117BEBDACB-1FAD-4A33-853E-2F09200DF3DD1520151187xgc151520151187xgc15190983B5FE9B83-2D7A-4B9D-8187-3AC1BCB81B331520151187xgc151520151187xgc15Times New Roman10135016FED272A-6689-4CBF-84A5-933EFDA9A9C01520151187xgc151520151187xgc1519098329A9CF82-C295-4691-9128-739AB60055981520151187xgc151520151187xgc15Times New Roman1017001E62EC301-A284-4291-9CA8-46E6584DE2D51520151187xgc151520151187xgc151909839FF9F60C-BE0C-41C9-B99E-0A1A02CC4E8E1520151187xgc151520151187xgc15Times New Roman101105018EA6E028-DD03-470D-8E47-3FDECD2041721520151187xgc151520151187xgc151909837D6B0D9D-0116-481E-9989-832F25460C121520151187xgc151520151187xgc15Times New Roman101140011BE62F52-929D-4FE7-A852-5B68608498961520151187xgc151520151187xgc1519098323B391DE-015D-402B-AB21-0C168A4049431520151187xgc151520151187xgc15Times New Roman101175017C718E03-7390-42E8-AA02-07717A14BC331520151187xgc151520151187xgc151909833EF0CA01-2604-4679-8233-2914519CCE8C1520151187xgc151520151187xgc15Times New Roman1012100141A55C77-16C4-4133-A545-0CDABB32B2F51520151187xgc151520151187xgc1519098313A9B827-0A6C-424B-85CB-51940969B6701520151187xgc151520151187xgc15Times New Roman10124501961FB7A7-45F5-419E-9418-FCAB176A1EAC1520151187xgc151520151187xgc15190983C19B959C-D5DD-44FA-99F8-94E64FE5323B1520151187xgc151520151187xgc15Times New Roman101280019FD83584-0533-413D-B2D7-FBA5517BD81B1520151187xgc151520151187xgc15190983DB9B2955-8181-411F-AEF8-10AEC87080AC1520151187xgc151520151187xgc1511TITLEPDMPDM Diagrams704714DA-CB4C-488E-984E-FF2260BA2CD11520151187xgc151520151187xgc1511TITLEPDMModel level diagramsC41330D0-13C2-4A56-9FB2-83BC33581DBF1520151187xgc151520151187xgc1511PDM_DIAG_TITLEPDMDiagram %ITEM%Diagram %ITEM%Diagram %ITEM%77E6BD1A-823C-4493-BE86-5161CF45F1B01520151187xgc151520151187xgc151PDM_GRAPHICPDM119FF91CE9-85F6-4EDB-B517-B9B1CF6AD41A1520151187xgc151520151187xgc15Matrix Item Font Name22959464219161353106B97F8695-EC75-4DFE-B5B3-DF4CA1A174801520151187xgc151520151187xgc15Arial10513531063C96943C-4723-46F0-A73D-73F7A8AB96551520151187xgc151520151187xgc15Arial10514231066254853A-29F5-4B53-BE20-52E39D0C9B1A1520151187xgc151520151187xgc1511PDM_PCKG_TITLEPDMPackage %ITEM%Package %ITEM%Package diagrams %ITEM%1CB2B46B1-F9B1-463F-953E-BCE0DFBDECC61520151187xgc151520151187xgc1511PDM_DIAG_TITLEPDMDiagram %ITEM%Diagram %ITEM%Diagram %ITEM%DE81EACE-3C77-46EE-BEED-B1ED83FDE4A91520151187xgc151520151187xgc151PDM_GRAPHICPDM11268C0861-A121-4AA7-966F-EF5152D802EF1520151187xgc151520151187xgc15Matrix Item Font Name22959464219161353106E2F69160-E1CD-4128-AA61-217C249BF6931520151187xgc151520151187xgc15Arial10513531060E97C535-1A59-468B-A717-CB2BC259DB931520151187xgc151520151187xgc15Arial105135310697087606-E711-439B-B678-1A2BE57BCA8C1520151187xgc151520151187xgc151PAGEBREAKPDM0E04F935-76BF-4C47-B750-349B3B383F4C1520151187xgc151520151187xgc15Arial1051423106C8FBE9A3-EAAC-4BB5-B7F7-B39E8BB0BE1A1520151187xgc151520151187xgc1511TITLEPDMModel level object lists78F16469-3048-4422-A482-0282E8069B8D1520151187xgc151520151187xgc1511TITLEPDMCommon Objects52C24925-0495-4E9E-978F-C2D1A892B7F61520151187xgc151520151187xgc1511PDM_MODEL_RULE_LISTPDMBusiness rule listBusiness rule listBusiness rule list1-40 Name
-40 Code
-20 Type
443AD121-A52F-4759-9A36-2F1A375359F61520151187xgc151520151187xgc15Arial105135310683E38487-2723-4AE5-B923-50A0EAFB03651520151187xgc151520151187xgc15Times New Roman1021415181189F38C21E-B136-445A-92B3-C7F2D286390F1520151187xgc151520151187xgc15Times New Roman101151811843623767-56C2-4C2D-9D5A-021D96E0584A1520151187xgc151520151187xgc15AD3270E5-A122-41B4-AC68-ECE33D4545651520151187xgc151520151187xgc1511PDM_MODEL_DTSC_LISTPDMData source listData source listData source list1-50 Name
-50 Code
51DAD11E-BCD8-42F1-A8EE-6BD6A6EE4A881520151187xgc151520151187xgc15Arial1051353106053AE0B0C-5B52-4F27-AD90-03A3A889F95C1520151187xgc151520151187xgc15Times New Roman102141518118D95B5C57-CD1C-454D-B2F8-BADFC26BB7D91520151187xgc151520151187xgc15Times New Roman1011518118F70C0846-FB5C-4A66-86C8-44D893EBEA631520151187xgc151520151187xgc157DD69E6C-2024-4516-AFD2-4BAD7573572B1520151187xgc151520151187xgc1511PDM_MODEL_DIAG_LISTPDMDiagram listDiagram listDiagram list1-33 Name
-33 Code
20185D00-5F8E-46A6-9848-8C71471D51761520151187xgc151520151187xgc15Arial10513531060AFB2439A-143C-445D-B298-32133FA9EC0A1520151187xgc151520151187xgc15Times New Roman1021415181186E8B5757-21C7-4EDB-9F4F-3B631E30A4431520151187xgc151520151187xgc15Times New Roman1011518118DA3C017C-AC31-459F-841C-C473B68C4F0C1520151187xgc151520151187xgc150F26E8C0-CB61-470F-B5C5-4CE55CEEF9691520151187xgc151520151187xgc1511PDM_MODEL_EXA_LISTPDMExtended Attribute listExtended Attribute listExtended Attribute list1-30 Name
-20 DataType
-20 Value
-30 TargetName
5592295D-0A81-4583-92F8-FAB7C46B233A1520151187xgc151520151187xgc15Arial10513531060EF0F9088-AE58-43A7-B2CB-01F970F94A091520151187xgc151520151187xgc15Times New Roman10214151811809BC9D2F-3F79-49C3-9D9C-755E709E14FA1520151187xgc151520151187xgc15Times New Roman1011518118F819AC17-0065-480D-8A91-C621E4BFE2771520151187xgc151520151187xgc15E68BA1D8-B97C-4785-AC4B-F718C8D9ACE41520151187xgc151520151187xgc1511PDM_MODEL_FILE_LISTPDMFiles listFiles listFiles list1-40 Name
-40 Location
-20 LocationType
B379DCBA-3EB6-49E8-AF11-274B78F36C421520151187xgc151520151187xgc15Arial1051353106B33F05FA-A21E-4585-911A-AA5097CA92661520151187xgc151520151187xgc15Times New Roman1021415181181F194AFD-271B-41CE-BD8A-F8989C2108441520151187xgc151520151187xgc15Times New Roman101151811876584274-2D33-4BE5-8C49-BD26D0F80CEE1520151187xgc151520151187xgc15EAC31485-04F5-49C4-BB68-B9C53141F9491520151187xgc151520151187xgc1511PDM_MODEL_PCKG_LISTPDMPackage listPackage listPackage list1-33 Name
-33 Code
-33 UseParentNamespace
76F4A0CC-8997-47D6-A947-D7BFE20F3D751520151187xgc151520151187xgc15Arial10513531060BE4544A5-FEC9-485E-8A3E-0AF74D53D0841520151187xgc151520151187xgc15Times New Roman102141518118C7228BDD-A0F6-4C21-A5EE-42DF679AA09B1520151187xgc151520151187xgc15Times New Roman1011518118C8F96355-DE2B-4496-B540-9A47B35F89041520151187xgc151520151187xgc1550B81E4F-CB92-4B74-8EEC-454A6A2EF3531520151187xgc151520151187xgc15Arial105142310602B5A917E-A200-4334-91C9-D9E82AB3170A1520151187xgc151520151187xgc1511TITLEPDMPhysical diagrams objects9977D4FC-B925-462F-849A-EB9CEE43A9581520151187xgc151520151187xgc1511PDM_MODEL_ADTS_LISTPDMAbstract Data Type listAbstract Data Type listAbstract Data Type list1-50 Name
-50 Code
D26EA485-6B70-4656-8F9B-64A6322408041520151187xgc151520151187xgc15Arial105135310600C4BF186-9DDA-44EC-A696-AF69C06FAA281520151187xgc151520151187xgc15Times New Roman102141518118E89B3F1C-D2A7-41A7-8A83-79B6F3CD86611520151187xgc151520151187xgc15Times New Roman10115181180C64A5DA-291D-442A-8884-1DD188C01CC91520151187xgc151520151187xgc15A4E094D0-960D-4AE2-AF1C-32CA5E5D783C1520151187xgc151520151187xgc1511PDM_MODEL_TABL_COLN_LISTPDMTable columns listTable columns listTable columns list1-50 Name
-50 Code
67181DBF-0DB2-44B8-BAB7-84B4073E5E7A1520151187xgc151520151187xgc15Arial10513531060D4D4BE52-EC60-4CD8-9BD8-1EC7CE8293021520151187xgc151520151187xgc15Times New Roman102141518118FA329696-01A8-46C3-8B21-8EE67FBF5CC41520151187xgc151520151187xgc15Times New Roman1011518118F5D90461-7B8D-4B0B-8B7E-CA08403955571520151187xgc151520151187xgc15E4ED7D9A-DF6D-4DE2-84A5-EE469E96B67C1520151187xgc151520151187xgc1511PDM_MODEL_DOMN_LISTPDMDomain listDomain listDomain list1-30 Name
-30 Code
-30 DataType
-10 Mandatory
86093040-31BD-4904-A747-445E7B9FB9BE1520151187xgc151520151187xgc15Arial105135310604951F6EE-1A9F-44D3-A327-7253383041C31520151187xgc151520151187xgc15Times New Roman102141518118A0F4404B-01AC-4F2C-B119-547D284B8CA81520151187xgc151520151187xgc15Times New Roman1011518118DC9A0C2E-7D59-4FEC-9F2D-D057F19D29411520151187xgc151520151187xgc15FCBA6C76-F9FB-4114-803A-947BA1EC19901520151187xgc151520151187xgc1511PDM_MODEL_TABL_INDX_LISTPDMTable indexes listTable indexes listTable indexes list1-33 Name
-33 Code
15 Unique
15 Clustered
15 Primary
15 ForeignKey
15 AlternateKey
-33 Table
F9363510-6144-4C8C-9ADE-26A37F9FE4441520151187xgc151520151187xgc15Arial1051353106090B2F00B-18AA-4B18-96CE-BECB216061C61520151187xgc151520151187xgc15Times New Roman102141518118D4CB3152-EA3A-4032-9D1B-FD8B7F979C151520151187xgc151520151187xgc15Times New Roman1011518118B3F0075D-7767-43B3-A88E-E368DD00FE081520151187xgc151520151187xgc15803DDD9E-21DB-4BBD-A0D4-D700BDEE50161520151187xgc151520151187xgc1511PDM_MODEL_JIDX_LISTPDMJoin Index listJoin Index listJoin Index list1-50 Name
-50 Code
229CAA7D-653F-48A5-8A8E-FD67660599CE1520151187xgc151520151187xgc15Arial10513531060B284D6CD-19B6-4779-8F34-B52D00279F1D1520151187xgc151520151187xgc15Times New Roman10214151811875B8D35D-58A2-4E24-9416-F67422D519821520151187xgc151520151187xgc15Times New Roman1011518118132BE5D1-B91B-4E86-BF36-5FFCAE21CF741520151187xgc151520151187xgc15EC51259C-1FEC-4979-9E59-4DF2CDD23E251520151187xgc151520151187xgc1511PDM_MODEL_TABL_KEY_LISTPDMTable keys listTable keys listTable keys list1-33 Name
-33 Code
-33 Table
9392E0CB-A806-47BD-8213-D3B8801325401520151187xgc151520151187xgc15Arial105135310600DD23A65-AB17-484E-A301-CEB50E75DFA11520151187xgc151520151187xgc15Times New Roman10214151811816A31AB3-9AAF-49CE-801F-D244A1C603311520151187xgc151520151187xgc15Times New Roman101151811847932A5F-FFC3-43C8-B5A2-C1AE213F91071520151187xgc151520151187xgc150DF6A1A2-B43F-4900-B5AE-676F57A4FFF61520151187xgc151520151187xgc1511PDM_MODEL_PROC_LISTPDMProcedure listProcedure listProcedure list1-50 Name
-50 Code
64A9BFC3-0CC7-4DBB-BC08-D7BB1B6528241520151187xgc151520151187xgc15Arial10513531060EFEC238E-D487-42A2-B3D6-0CB50055D8AA1520151187xgc151520151187xgc15Times New Roman102141518118F9667768-C7CC-489D-ABE0-C5C7EA8B9BDE1520151187xgc151520151187xgc15Times New Roman1011518118191178B1-DBCB-4978-AAA7-B8E192E072A91520151187xgc151520151187xgc155D10AC2F-69F7-43DC-80EA-7DE1DC5992781520151187xgc151520151187xgc1511PDM_MODEL_REFR_LISTPDMReference listReference listReference list1-25 Name
-25 Code
-25 ParentTable
-25 ChildTable
9A04D847-5F4D-41F7-9049-30947C440CD61520151187xgc151520151187xgc15Arial105135310604567E8AD-DDE0-4F80-9CB6-A16EE2ACDED91520151187xgc151520151187xgc15Times New Roman102141518118AEC6683F-B078-4330-A597-585064FE78CB1520151187xgc151520151187xgc15Times New Roman1011518118A88ABE9A-5E27-4F89-BC14-ADDA31D331B21520151187xgc151520151187xgc1530571371-AC5C-4F41-AF49-2F19DB66E4D31520151187xgc151520151187xgc1511PDM_MODEL_SQNC_LISTPDMSequence listSequence listSequence list1-50 Name
-50 Code
70480FE3-7CB2-412F-B63C-AF222CD2288B1520151187xgc151520151187xgc15Arial10513531060846EB801-B113-4782-8ECE-BD9DD56E426C1520151187xgc151520151187xgc15Times New Roman10214151811828D7D844-D62F-4F72-B146-3EF274FBE72A1520151187xgc151520151187xgc15Times New Roman101151811837BB38DC-6AB3-43C6-86B0-AE42C95803301520151187xgc151520151187xgc154B6327BB-3BF8-45E6-8B88-9467C5195F171520151187xgc151520151187xgc1511PDM_MODEL_STOR_LISTPDMStorage listStorage listStorage list1-50 Name
-50 Code
AEF41369-F157-44B4-991A-D6E09AFB90BF1520151187xgc151520151187xgc15Arial10513531060BFDAA330-9BDB-4232-A900-52C03A40CE7F1520151187xgc151520151187xgc15Times New Roman1021415181188EE8972E-F7E2-4CF9-8AB8-F4CC6EB17EFE1520151187xgc151520151187xgc15Times New Roman1011518118E43B5734-6659-4E17-9BE3-B1B429A4B6DA1520151187xgc151520151187xgc1560100057-5243-48FA-8F4D-89467207061A1520151187xgc151520151187xgc1511PDM_MODEL_TABL_LISTPDMTable listTable listTable list1-50 Name
-50 Code
97B6A284-43D6-4454-9040-3525C9E4840C1520151187xgc151520151187xgc15Arial10513531060697DB81A-5684-4095-BB04-74619D4F1E381520151187xgc151520151187xgc15Times New Roman1021415181186ACA907F-6D11-4248-A44F-61E712C32D5B1520151187xgc151520151187xgc15Times New Roman10115181184E7DD767-7586-4E3A-BD4E-A9AE203DF3A01520151187xgc151520151187xgc15679FBFE9-357D-479D-AB6A-32C2187384AE1520151187xgc151520151187xgc1511PDM_MODEL_TSPC_LISTPDMTablespace listTablespace listTablespace list1-50 Name
-50 Code
A882668E-E00C-455D-B6E5-537F8EBE8CC31520151187xgc151520151187xgc15Arial1051353106039AED3BC-8B6F-4F68-A74D-5280B8F739B71520151187xgc151520151187xgc15Times New Roman102141518118CB14BE5C-EAD7-4946-B7BB-E00288B66C831520151187xgc151520151187xgc15Times New Roman1011518118A64A21F5-8E82-411C-85C6-ED7E41E67DAF1520151187xgc151520151187xgc15982601C9-A820-4A34-A643-B55CC433980B1520151187xgc151520151187xgc1511PDM_MODEL_PROF_LISTPDMTest Data Profile listTest Data Profile listTest Data Profile list1-50 Name
-50 Code
417C140A-1467-4DD2-83DB-A270EAC587FB1520151187xgc151520151187xgc15Arial105135310600F2134E6-47BC-45A7-9109-F59A23989C771520151187xgc151520151187xgc15Times New Roman10214151811845C1B41E-D7DB-4281-9D6E-E6A42569B0861520151187xgc151520151187xgc15Times New Roman10115181180DBE65EA-C660-423A-B835-E7F9991BA4091520151187xgc151520151187xgc15981001E8-D59D-466B-9DE1-C60325FF90E91520151187xgc151520151187xgc1511PDM_MODEL_TABL_TRGR_LISTPDMTable triggers listTable triggers listTable triggers list1-50 Name
-50 Code
5C66AE22-5BC1-473D-B427-EE3FAF87DDCC1520151187xgc151520151187xgc15Arial10513531060B51ADA7E-2A2A-42A5-87BF-63287FB174421520151187xgc151520151187xgc15Times New Roman1021415181183CDB3473-7988-4EDC-812C-3A59ECD1FBDF1520151187xgc151520151187xgc15Times New Roman10115181180A3FB1E4-B4FC-42FF-B1F4-B766133926E21520151187xgc151520151187xgc15C18F36C9-2265-4D60-B7BC-E64D5C0469031520151187xgc151520151187xgc1511PDM_MODEL_TRGI_LISTPDMTrigger item listTrigger item listTrigger item list1-50 Name
-50 Code
FF436B5E-BB78-4AF4-9DB1-ECE31E46BAA81520151187xgc151520151187xgc15Arial10513531060ABD1D8E2-15C4-4B24-9991-BC776A91027C1520151187xgc151520151187xgc15Times New Roman102141518118724F7F87-83C1-4039-BA6A-453C1CE03D2E1520151187xgc151520151187xgc15Times New Roman10115181185D3326FB-FF42-4234-8035-EB9D335423D11520151187xgc151520151187xgc15DEB33FD0-EB02-4D91-A3A3-0DE5E6D09FF31520151187xgc151520151187xgc1511PDM_MODEL_TRGT_LISTPDMTrigger template listTrigger template listTrigger template list1-50 Name
-50 Code
3082E3B9-A86E-43CA-8F96-82F520F54A2E1520151187xgc151520151187xgc15Arial10513531060A61F27E0-CA4F-4419-A196-14005D7054CB1520151187xgc151520151187xgc15Times New Roman1021415181183D9C36DC-7B63-4ED3-AF30-CA4F258970AB1520151187xgc151520151187xgc15Times New Roman1011518118F72D7810-D7C8-4252-9A26-180DC723962B1520151187xgc151520151187xgc1596AEFA52-C3AE-4116-8F93-D4AF767E3B341520151187xgc151520151187xgc1511PDM_MODEL_USER_LISTPDMUser listUser listUser list1-50 Name
-50 Code
AA41DC45-3FEC-4E46-94F1-20C17EA84E4F1520151187xgc151520151187xgc15Arial105135310604D299C62-9AAE-4D33-A3FB-D0A94C274F0D1520151187xgc151520151187xgc15Times New Roman102141518118ACD5DA27-3AEF-4870-A3FA-E1780539BA011520151187xgc151520151187xgc15Times New Roman10115181186F49140D-B06A-44A1-9958-570B24AC65BC1520151187xgc151520151187xgc1533041100-B562-4DF1-B5AE-029CC70A40911520151187xgc151520151187xgc1511PDM_MODEL_VIEW_LISTPDMView listView listView list1-50 Name
-50 Code
E43F90E2-7EB5-4302-870E-1322F15C7B651520151187xgc151520151187xgc15Arial10513531060BA1E6B39-F826-4FFE-A4D0-7AD9CEAB8DA81520151187xgc151520151187xgc15Times New Roman1021415181188560DB51-846E-4075-A1DC-06585EA7E9671520151187xgc151520151187xgc15Times New Roman10115181184BE10315-31DA-41EB-8D83-316E755A0C431520151187xgc151520151187xgc1521E5E51E-1132-439C-A645-3D4C2A8E47971520151187xgc151520151187xgc1511PDM_MODEL_VREF_LISTPDMView reference listView reference listView reference list1-25 Name
-25 Code
-25 TableView1
-25 TableView2
7824F9B7-A9F7-4D4D-AE40-D7986D56797C1520151187xgc151520151187xgc15Arial10513531060A830CED1-47F2-49C3-B915-82E3274549A21520151187xgc151520151187xgc15Times New Roman1021415181184031ED9C-AC94-4542-A20C-A3243C22BC4F1520151187xgc151520151187xgc15Times New Roman1011518118D80796EC-B5FE-4B85-A90D-8934479A79E31520151187xgc151520151187xgc15AE4BFA79-EDB0-4FF1-B82E-E928A5355B151520151187xgc151520151187xgc1511PDM_MODEL_SYNM_LISTPDMSynonym listSynonym listSynonym list1-50 Name
-50 Code
7754B474-0C5F-4674-9C2A-A1050911E5101520151187xgc151520151187xgc15Arial10535310606EBE4F89-EADB-4F95-BC31-A14AF63C16241520151187xgc151520151187xgc15Times New Roman102411EBF6D6DC-48B4-466D-8FE0-E627AD19E5C61520151187xgc151520151187xgc15Times New Roman1011C9682A46-8E4D-4B9A-B5B0-2343023364851520151187xgc151520151187xgc159BF3831F-6D5F-41FE-A2F3-7158B93018B61520151187xgc151520151187xgc15Arial1051423106036EA68DF-5E05-4227-A6C3-E54AB68791601520151187xgc151520151187xgc1511TITLEPDMMulti-dimensional Diagrams ObjectsAF7E2C34-FD15-48B3-92A1-B864046005971520151187xgc151520151187xgc1511PDM_MODEL_ASSC_LISTPDMAssociation listAssociation listAssociation list1DF2042A6-37A3-4E17-90F2-476FE87FA7061520151187xgc151520151187xgc15Arial105135310607E77BDFC-29B3-4EA9-BD8E-94EFDBF5E0C41520151187xgc151520151187xgc15Times New Roman1021415181188DD1AE6F-1FE3-49C8-A411-A60EBD657FC91520151187xgc151520151187xgc15Times New Roman1011518118CDBDC290-5A22-4E67-8C78-D08A629BAB1E1520151187xgc151520151187xgc156BDC3A4D-4956-4655-AEE8-8D11ED47F68B1520151187xgc151520151187xgc1511PDM_MODEL_DIMN_LISTPDMDimension listDimension listDimension list1-50 Name
-50 Code
DC76E0BD-8C22-4D16-816E-D66C2C830B831520151187xgc151520151187xgc15Arial1051353106078A41FEF-1885-47A1-B838-B8F0A95145D91520151187xgc151520151187xgc15Times New Roman102141518118A0BE1D4A-3125-4523-A2EB-94521340FF841520151187xgc151520151187xgc15Times New Roman1011518118706F9377-BA2F-491D-9AE4-9A08156583E11520151187xgc151520151187xgc1570EFD9CA-9111-4A6A-84FE-4CF2E7BCABA71520151187xgc151520151187xgc1511PDM_MODEL_FACT_LISTPDMFact listFact listFact list1-50 Name
-50 Code
259F146D-BCAF-4E03-8983-9A9E634EE9281520151187xgc151520151187xgc15Arial105135310605CF1FAB1-ED55-4C4B-B543-CE7911F5DEFD1520151187xgc151520151187xgc15Times New Roman1021415181189F0C7486-E405-4E58-AC65-7E317AA087B61520151187xgc151520151187xgc15Times New Roman101151811847FAF41E-B98B-437B-84F4-28146B78B2931520151187xgc151520151187xgc1572EABF15-6038-42B6-A934-71649BE11F671520151187xgc151520151187xgc15Arial1051423106005E41949-3EF8-416A-A256-668873DB8F221520151187xgc151520151187xgc15Arial105142310650E8514B-C427-465A-8E49-36E0CF2047CB1520151187xgc151520151187xgc1511PDM_PCKG_TITLEPDMPackage %ITEM%Package %ITEM%List of objects for package %ITEM%1Packages27DC2851-7A33-470B-8AF5-29BE452567FD1520151187xgc151520151187xgc1511TITLEPDMCommon Objects9FC1DD13-E19C-40D2-9BEB-BA1E7967FD4F1520151187xgc151520151187xgc1511PDM_MODEL_DIAG_LISTPDMDiagram listDiagram listDiagram list1-33 Name
-33 Code
217BF0C5-B53B-4F3F-BE94-6EDC2932A3C31520151187xgc151520151187xgc15Arial1051353106021FF2026-49C7-45C6-A0CE-DE1E6F22AB161520151187xgc151520151187xgc15Times New Roman102141518118D87DE588-1DD9-49CA-B85F-1ABB54EBEE781520151187xgc151520151187xgc15Times New Roman1011518118F250646D-04CB-4249-B423-7695F8C262181520151187xgc151520151187xgc159CE17B9D-FB07-4474-9237-7BEA5231EF1B1520151187xgc151520151187xgc1511PDM_MODEL_EXA_LISTPDMExtended Attribute listExtended Attribute listExtended Attribute list1-30 Name
-20 DataType
-20 Value
-30 TargetName
127BE89C-137C-47C1-91C3-C5654833E0181520151187xgc151520151187xgc15Arial10513531060DF2A37C7-8E6D-49A0-B783-AEA33076E63B1520151187xgc151520151187xgc15Times New Roman102141518118A66A186C-F16F-486C-80A7-20A5BF2990461520151187xgc151520151187xgc15Times New Roman101151811817E06212-4F6E-47B4-B357-602AAE5AEA851520151187xgc151520151187xgc15F3213664-0B9B-45EF-8E89-8B43E02F44581520151187xgc151520151187xgc1511PDM_MODEL_FILE_LISTPDMFiles listFiles listFiles list1-40 Name
-40 Location
-20 LocationType
914D044E-324B-4A14-9D97-96328F3ED6F21520151187xgc151520151187xgc15Arial10513531067CB1CEC6-6294-4CAA-9CCD-396F57ED74171520151187xgc151520151187xgc15Times New Roman1021415181183423E98B-4623-41CD-B753-E46E7925E18A1520151187xgc151520151187xgc15Times New Roman101151811851F623B9-C8A4-464C-9BC4-733A111E93A01520151187xgc151520151187xgc151C2D776D-78AB-4C2F-B40D-A9FF4190FE281520151187xgc151520151187xgc1511PDM_MODEL_PCKG_LISTPDMPackage listPackage listPackage list1-33 Name
-33 Code
-33 UseParentNamespace
E1FFB9B8-9DA1-4244-8AB4-7345122F744A1520151187xgc151520151187xgc15Arial105135310602457601D-42A4-4B8B-B8C0-CF922E59B8D01520151187xgc151520151187xgc15Times New Roman10214151811896E6C50F-C5C2-46C2-B598-B5041619DE471520151187xgc151520151187xgc15Times New Roman1011518118CF3487C0-5663-4AB5-9310-F607CDA33BD21520151187xgc151520151187xgc159D230F63-D1A8-4C68-A1C7-E3B6D6B4C6D71520151187xgc151520151187xgc15Arial10514231060989F4CBA-6DBA-4E91-A6CB-29EA90B05E7F1520151187xgc151520151187xgc1511TITLEPDMPhysical diagrams objects43FB0DE1-6DA9-47CA-BA2B-70A15763A3281520151187xgc151520151187xgc1511PDM_MODEL_TABL_COLN_LISTPDMTable columns listTable columns listTable columns list1-50 Name
-50 Code
3AA12604-3FC9-49D3-A629-409AECC1AA1A1520151187xgc151520151187xgc15Arial10513531060E546D650-10DE-47FB-9E5C-AF2407CFF2221520151187xgc151520151187xgc15Times New Roman102141518118606A418D-807B-4F6B-82C0-DC139A475F411520151187xgc151520151187xgc15Times New Roman10115181188C18F27B-FC0B-4C79-A067-476EBDE147B71520151187xgc151520151187xgc159E116855-BA65-4AC4-8C87-B8E47546BBC71520151187xgc151520151187xgc1511PDM_MODEL_DOMN_LISTPDMDomain listDomain listDomain list1-30 Name
-30 Code
-30 DataType
-10 Mandatory
8C5B1098-CCE7-4DF6-B71B-876AA347BD101520151187xgc151520151187xgc15Arial10513531060A6F47924-8728-4EB9-B874-890FFE06E2621520151187xgc151520151187xgc15Times New Roman102141518118A26638C6-B54A-4933-9FEF-4E73689652351520151187xgc151520151187xgc15Times New Roman101151811875FB11B8-8E2E-46C5-9C43-43D0ACB0F77C1520151187xgc151520151187xgc159C2DBCEA-9F0D-4473-AC30-2B1191F1D07B1520151187xgc151520151187xgc1511PDM_MODEL_TABL_INDX_LISTPDMTable indexes listTable indexes listTable indexes list1-33 Name
-33 Code
15 Unique
15 Clustered
15 Primary
15 ForeignKey
15 AlternateKey
-33 Table
5F7F7A4F-B518-40D9-9C25-1D40803799D71520151187xgc151520151187xgc15Arial105135310604847A49D-3CC6-4401-91FB-0020D8D8F1581520151187xgc151520151187xgc15Times New Roman102141518118F938EAD7-6FF3-482D-B178-1398BC3DB86D1520151187xgc151520151187xgc15Times New Roman1011518118E0FE5345-FD27-4CA0-A7A6-2F278A6B7DA71520151187xgc151520151187xgc1571681809-F766-4DCB-AEFE-12F35B5136991520151187xgc151520151187xgc1511PDM_MODEL_JIDX_LISTPDMJoin Index listJoin Index listJoin Index list1-50 Name
-50 Code
B5891F9A-B02B-4CA3-B662-DEDA30AA03841520151187xgc151520151187xgc15Arial10513531060BED96078-DCCA-4D45-BD37-B485C509A0591520151187xgc151520151187xgc15Times New Roman102141518118D4A5C952-5329-42A8-B18A-71651ACC48051520151187xgc151520151187xgc15Times New Roman10115181181D10D5AE-2069-4F68-8D53-75EAFABCBE9B1520151187xgc151520151187xgc1509629B49-C76A-4F14-857F-EAFB934D4ADB1520151187xgc151520151187xgc1511PDM_MODEL_TABL_KEY_LISTPDMTable keys listTable keys listTable keys list1-33 Name
-33 Code
-33 Table
106C40BB-A998-47CF-913E-0D2EB79662E41520151187xgc151520151187xgc15Arial10513531060246A308E-4057-4A4B-8D4C-9372877DE80E1520151187xgc151520151187xgc15Times New Roman10214151811899F7DF83-D604-48C9-8C61-EC4C937452131520151187xgc151520151187xgc15Times New Roman10115181180643CDD6-990D-4EBE-969F-2ECAAAC1E0F81520151187xgc151520151187xgc1553D40C78-D78A-447A-9894-9F658F76D5691520151187xgc151520151187xgc1511PDM_MODEL_PROC_LISTPDMProcedure listProcedure listProcedure list1-50 Name
-50 Code
0946BC28-99A8-44D4-AD38-CBC862A1F0DD1520151187xgc151520151187xgc15Arial10513531060857F3533-20A0-4C00-91DD-19BED1C377421520151187xgc151520151187xgc15Times New Roman102141518118B71856F0-2F59-49A1-83D2-F60C840A4F481520151187xgc151520151187xgc15Times New Roman10115181182022D117-6888-4260-B829-8E58A48FCF841520151187xgc151520151187xgc15193AAA52-8BBD-48E9-A1B7-961502D984C61520151187xgc151520151187xgc1511PDM_MODEL_REFR_LISTPDMReference listReference listReference list1-25 Name
-25 Code
-25 ParentTable
-25 ChildTable
FBCDD09E-58F8-4F2C-9D66-20C83620A1D71520151187xgc151520151187xgc15Arial10513531060EA322B82-C0B7-43E3-8B65-B712F50CA3111520151187xgc151520151187xgc15Times New Roman102141518118FDB0F2AC-701A-49DF-93A9-F7FE5CBADF351520151187xgc151520151187xgc15Times New Roman101151811869A6CDD0-3168-4925-9788-6FE6A8B2465C1520151187xgc151520151187xgc159B555AB9-48FA-4301-ADAE-D5EDAA7004241520151187xgc151520151187xgc1511PDM_MODEL_SQNC_LISTPDMSequence listSequence listSequence list1-50 Name
-50 Code
19209452-822D-4395-B791-256167C9872E1520151187xgc151520151187xgc15Arial105135310601158A21E-5842-44D8-BB28-4F8041F055801520151187xgc151520151187xgc15Times New Roman102141518118BC17A0A2-A065-407F-B489-37FA604754F91520151187xgc151520151187xgc15Times New Roman101151811844C94ECF-CB48-4471-8C93-9E5392F40A071520151187xgc151520151187xgc15C244877F-AB98-4B9A-9242-7A4FE23061D41520151187xgc151520151187xgc1511PDM_MODEL_STOR_LISTPDMStorage listStorage listStorage list1-50 Name
-50 Code
2FCD6A59-9012-4A74-AD12-E25CF1CE00441520151187xgc151520151187xgc15Arial10513531060B8276B55-EAFA-4F22-8892-B1E772BAC6791520151187xgc151520151187xgc15Times New Roman1021415181182DE2FC3B-1498-4363-8150-10C062D2EF7D1520151187xgc151520151187xgc15Times New Roman1011518118E53F487C-8EEA-4EF9-8D3E-986B8C1613371520151187xgc151520151187xgc15B42A854B-7225-4EBF-BE10-BE31D1319ACD1520151187xgc151520151187xgc1511PDM_MODEL_TABL_LISTPDMTable listTable listTable list1-50 Name
-50 Code
986B3EF8-9A4A-4235-BB5F-8E18849308641520151187xgc151520151187xgc15Arial1051353106042C17DAF-765C-405C-9F37-9A012F1E27BE1520151187xgc151520151187xgc15Times New Roman102141518118D3F7D852-6176-4E68-B1CA-C32847040F881520151187xgc151520151187xgc15Times New Roman1011518118C3A3D2F0-662B-4FDA-8DF4-0481D73E45591520151187xgc151520151187xgc15AB66ECB6-38AE-49C2-876B-245F128380101520151187xgc151520151187xgc1511PDM_MODEL_TSPC_LISTPDMTablespace listTablespace listTablespace list1-50 Name
-50 Code
2DC82754-9D40-409E-AADC-452D923EABE61520151187xgc151520151187xgc15Arial10513531060532CBCB8-DE97-41B5-8173-A1D2E77DA3AF1520151187xgc151520151187xgc15Times New Roman102141518118BB3BAFFE-B789-4DCF-B43B-274966B71A3D1520151187xgc151520151187xgc15Times New Roman101151811808D4685C-5416-45D3-9B4E-32DCF3DE5C541520151187xgc151520151187xgc15AC08D3EE-02AF-4FBE-B373-B1D62614E25F1520151187xgc151520151187xgc1511PDM_MODEL_PROF_LISTPDMTest Data Profile listTest Data Profile listTest Data Profile list1-50 Name
-50 Code
271B8CC9-BB24-46F5-8424-30B3F8FFFB321520151187xgc151520151187xgc15Arial1051353106013B1C10A-4F60-4C04-9184-2A92BC1D815B1520151187xgc151520151187xgc15Times New Roman102141518118CDC4CE65-35B2-4026-A805-6AAA9A64F73F1520151187xgc151520151187xgc15Times New Roman10115181186E1DF0E9-4C8D-4322-A534-192E8A8CC0C81520151187xgc151520151187xgc155AC387CD-C1D4-4604-A24C-8EC128D9D0611520151187xgc151520151187xgc1511PDM_MODEL_TABL_TRGR_LISTPDMTable triggers listTable triggers listTable triggers list1-50 Name
-50 Code
12C6448D-6782-466F-8C1E-45E3F063981C1520151187xgc151520151187xgc15Arial105135310609CA0113F-00DF-4BE4-BF1B-495612EEAA7F1520151187xgc151520151187xgc15Times New Roman102141518118F5904E8E-445C-419D-9654-973E2F62E20B1520151187xgc151520151187xgc15Times New Roman10115181189FC835B8-BD29-47C6-B38E-B4FB98230B751520151187xgc151520151187xgc156766DD4F-7327-4AB5-9DCC-65A6B0C8B3C51520151187xgc151520151187xgc1511PDM_MODEL_USER_LISTPDMUser listUser listUser list1-50 Name
-50 Code
10DC2209-FF27-48E9-821F-4354C755F49E1520151187xgc151520151187xgc15Arial10513531060E02B0692-1592-49E9-B54D-0E093964086C1520151187xgc151520151187xgc15Times New Roman10214151811823D4E1F0-7F13-442E-9411-3BBD2E1CE54D1520151187xgc151520151187xgc15Times New Roman10115181189D20DAE5-0636-4044-82A9-05F6C2E990AC1520151187xgc151520151187xgc154177BE3A-B935-4CC1-86C2-AD194D5B8FD51520151187xgc151520151187xgc1511PDM_MODEL_VIEW_LISTPDMView listView listView list1-50 Name
-50 Code
63E1691C-1661-4CC8-8375-F7792588D5AC1520151187xgc151520151187xgc15Arial105135310607723DC2E-2493-41FA-86E4-BBACD9461CEF1520151187xgc151520151187xgc15Times New Roman102141518118056DA258-AAD9-4CE9-AD96-6B920EDAFB2B1520151187xgc151520151187xgc15Times New Roman1011518118D9C933E6-1675-4658-8CC2-B54CB3D86DCB1520151187xgc151520151187xgc154A834C9E-E247-4B35-A839-46870E6050121520151187xgc151520151187xgc1511PDM_MODEL_VREF_LISTPDMView reference listView reference listView reference list1-25 Name
-25 Code
-25 TableView1
-25 TableView2
1AB34B0B-2010-420E-A4EE-5ADDD65366301520151187xgc151520151187xgc15Arial1051353106020098E62-FDAD-4248-9C5B-B1A5AF25A30C1520151187xgc151520151187xgc15Times New Roman1021415181186F6F6D9C-BD26-4ECF-A383-37D191E6ABDE1520151187xgc151520151187xgc15Times New Roman101151811864F4E52E-1A40-497E-A810-CDC5E9FF6F411520151187xgc151520151187xgc15B92E908A-C9CE-4D33-A25B-C2097F0F2BEF1520151187xgc151520151187xgc1511PDM_MODEL_SYNM_LISTPDMSynonym listSynonym listSynonym list1-50 Name
-50 Code
88E62E8F-9412-49B9-B2DB-D4B6BA4205C11520151187xgc151520151187xgc15Arial10535310605BAACC8E-AB93-4565-9AB7-B0F31191E9C81520151187xgc151520151187xgc15Times New Roman10241111CCFAAB-E597-442C-8FD1-85B9F93D1B721520151187xgc151520151187xgc15Times New Roman10110F9127B4-48F5-4268-AEA1-4DD99830A5191520151187xgc151520151187xgc15E2E6FE00-0221-4C31-9436-A36779C37B5B1520151187xgc151520151187xgc15Arial105142310601C92B4D6-C296-40EE-ACAA-DD1BF423F1391520151187xgc151520151187xgc1511TITLEPDMMulti-dimensional Diagrams ObjectsBE68FF49-ABCD-4165-91DB-CBA7E3347EEF1520151187xgc151520151187xgc1511PDM_MODEL_ASSC_LISTPDMAssociation listAssociation listAssociation list14F1BCD77-D72B-4A33-A4AB-8F1DB69D0F9B1520151187xgc151520151187xgc15Arial1051353106004961ED9-8A19-4C5F-819B-23EFB09A8D0E1520151187xgc151520151187xgc15Times New Roman10214151811862BA040B-5A3E-4780-A62F-55949BE4DF2C1520151187xgc151520151187xgc15Times New Roman1011518118B4F1E9DE-3135-4B1C-90CB-5BA6E90C6D971520151187xgc151520151187xgc15E00CC7E1-B174-46E8-A70E-430EA05371E51520151187xgc151520151187xgc1511PDM_MODEL_DIMN_LISTPDMDimension listDimension listDimension list1-50 Name
-50 Code
509AF360-1DD8-4096-A245-5EF3CBF955C81520151187xgc151520151187xgc15Arial10513531060FF42F206-8D8C-4583-BF0D-421D2D73A9741520151187xgc151520151187xgc15Times New Roman102141518118AFB1AA95-A08F-49F1-ADD0-1F56ED9D2EC31520151187xgc151520151187xgc15Times New Roman101151811868060778-5BBA-4677-A91B-D80315A07E861520151187xgc151520151187xgc15EE53A3C9-CBDB-404E-A1AF-0C52093899541520151187xgc151520151187xgc1511PDM_MODEL_FACT_LISTPDMFact listFact listFact list1-50 Name
-50 Code
9C70E234-63F7-4797-A1E6-C06A9A92CA191520151187xgc151520151187xgc15Arial10513531060B6FAB691-D03C-464D-90A6-09707753C7FF1520151187xgc151520151187xgc15Times New Roman102141518118AFE3F04A-465C-402C-9DF3-0B7AF98DEE591520151187xgc151520151187xgc15Times New Roman10115181182740B8CD-BF65-446A-98D8-73E674F2C1381520151187xgc151520151187xgc159866F4DE-AD95-4271-92F7-A53513FBC06D1520151187xgc151520151187xgc15Arial105142310604970FE59-ED79-4AED-88D4-154F8538E0661520151187xgc151520151187xgc151PAGEBREAKPDM90511B93-2BCA-4CD5-AA07-F3D1DD5D43AA1520151187xgc151520151187xgc15Arial1051353106D0BBD5F6-FC79-40DC-8607-362300989FE91520151187xgc151520151187xgc1511TITLEPDMTablesD2BA4CED-47A3-4DE3-AD03-D3DEE0CED6381520151187xgc151520151187xgc1511TITLEPDMModel level tablesB17C85E7-E316-4AA9-90D4-2ED482FD68A21520151187xgc151520151187xgc1511PDM_TABL_TITLEPDMTable %ITEM%Table %ITEM%Table %ITEM%A3D01512-3CC0-4FFB-8A02-6E7F2584D1AE1520151187xgc151520151187xgc1511PDM_TABL_CARDPDMCard of the table %ITEM%Card of the table %ITEM%Card of the table %ITEM%Name
Code
DBMS
C3B0F8E1-76B2-4F9C-8137-CA32C09107251520151187xgc151520151187xgc15Arial105135310607CD2110A-E329-405B-98C6-E68442FB80D81520151187xgc151520151187xgc15Times New Roman10213315182118D0DB9211-9E96-4B5D-AEAF-D1B43A40D9A81520151187xgc151520151187xgc15Times New Roman1011518211802D8CB52-39D0-4890-A5C2-F09F164B61581520151187xgc151520151187xgc1511PDM_TABL_DESCPDMDescription of table %ITEM%Description of table %ITEM%Description of table %ITEM%7EA39F86-C352-4A08-97E4-3BD65D59C7041520151187xgc151520151187xgc15Arial10513531060DAB932C6-09FA-4887-B10B-23032A2740B61520151187xgc151520151187xgc15Times New Roman10105342B3C4-448B-46F4-A79F-E127C5F8F13B1520151187xgc151520151187xgc1511PDM_TABL_NOTEPDMAnnotation of table %ITEM%Annotation of table %ITEM%Annotation of table %ITEM%8DC59206-2235-4A57-8515-85DF96C780AA1520151187xgc151520151187xgc15Arial10513531060D81DAA41-31FA-46CD-9701-CE32C9C0B21E1520151187xgc151520151187xgc15Times New Roman101090395FB1-C97E-42FF-BD10-CA20F15C98DA1520151187xgc151520151187xgc1511PDM_TABL_CKCNPDMConstraint name of table %ITEM%Constraint name of table %ITEM%Constraint name of table %ITEM%52E883B8-79EB-42CB-A257-3BAEC05D11861520151187xgc151520151187xgc15Arial10513531060E0B53380-1608-4C36-8E97-75ACD4500C991520151187xgc151520151187xgc15Times New Roman1010E39D1A54-AD9F-479D-9BFD-973DFA013E111520151187xgc151520151187xgc1511PDM_TABL_OPTSPDMOptions of table %ITEM%Options of table %ITEM%Options of table %ITEM%41F6F0FE-52CF-460F-81B6-26E9ACE792051520151187xgc151520151187xgc15Arial10513531060A7CDB8B7-E08C-4BB5-B681-7D31010BC9A41520151187xgc151520151187xgc15Times New Roman10102CCCCE64-4789-4EF0-9DD6-414E7684F8F01520151187xgc151520151187xgc1511PDM_TABL_CRULPDMClient check expression of table %ITEM%Client check expression of table %ITEM%Client check expression of table %ITEM%DA1967BA-FE75-4A2C-9C90-62E6FBD62EC21520151187xgc151520151187xgc15Arial10513531060AE7CCCEA-1085-4493-B8FD-0B338FB25D271520151187xgc151520151187xgc15Times New Roman1010D02AD1EE-DB37-4752-ACEE-A1FACFB8C3691520151187xgc151520151187xgc1511PDM_TABL_SRULPDMServer check expression of table %ITEM%Server check expression of table %ITEM%Server check expression of table %ITEM%0910C831-5A1B-48FD-9184-AFD51E694E051520151187xgc151520151187xgc15Arial10513531060A7185E47-4082-4D17-8C68-817A9215F7311520151187xgc151520151187xgc15Times New Roman1010E2F03E7A-7EA1-4EA8-A9F0-B0A76F55097B1520151187xgc151520151187xgc1511PDM_TABL_HEADPDMBegin script of table %ITEM%Begin script of table %ITEM%Begin script of table %ITEM%CED97ECA-C684-40D0-9345-9732B158A2B11520151187xgc151520151187xgc15Arial105135310603352F075-58BD-46D3-BF17-2251C25FBC8E1520151187xgc151520151187xgc15Times New Roman1010EB05C860-2C0D-4D2D-87E5-97FEA412C7101520151187xgc151520151187xgc1511PDM_TABL_FOOTPDMEnd script of table %ITEM%End script of table %ITEM%End script of table %ITEM%3423913F-4093-4029-A2EA-0E224A1068C21520151187xgc151520151187xgc15Arial105135310608A96282C-E98D-4562-B30C-AD478961B3621520151187xgc151520151187xgc15Times New Roman1010BCEA23C4-4894-446E-8831-F4BC5007E9611520151187xgc151520151187xgc1511PDM_TABL_PREVPDMCode preview of %ITEM%Code preview of %ITEM%Code preview of %ITEM%299B3C1A-F98D-4311-986C-ADA65B5865A41520151187xgc151520151187xgc15Arial1051353106090FB4714-E320-44C9-9A15-59CDCE2025E61520151187xgc151520151187xgc15Times New Roman101024CB08F9-5F85-4BD1-895E-6284EF4D9EAE1520151187xgc151520151187xgc1511PDM_TABL_DIAG_LISTPDMList of diagrams containing table %PARENT%List of diagrams containing table %PARENT%List of diagrams containing table %PARENT%1-50 Name
-50 Code
432AFDD3-6663-45BF-B527-97AB91D50A141520151187xgc151520151187xgc15Arial10513531060A1D7E406-B1C8-49F2-9982-8F36AF7B6BD51520151187xgc151520151187xgc15Times New Roman102141518118A28DA089-2B1A-4E3D-9B61-6B266CB14F461520151187xgc151520151187xgc15Times New Roman10115181185A269020-8841-4FBE-89C1-DC2F5571F2071520151187xgc151520151187xgc15C7398BAC-B906-4B3E-BC9F-C6EC806C04251520151187xgc151520151187xgc1511PDM_TABL_OUTREFR_LISTPDMReference from list of the table %PARENT%Reference from list of the table %PARENT%Reference from list of the table %PARENT%1-30 Name
-30 Code
-40 ForeignKeyColumnList
97F975C9-B9FA-4BB8-9794-6476F465218F1520151187xgc151520151187xgc15Arial10513531060B3C3B278-9586-4092-8F93-5ED8B61BFEE01520151187xgc151520151187xgc15Times New Roman102141518118E3B56A29-4CDC-4B57-8209-A45FF705E9C51520151187xgc151520151187xgc15Times New Roman1011518118A1FEED2A-D00E-4159-AF16-56663D6CD9EA1520151187xgc151520151187xgc15D442435C-17B3-472D-9935-E143D1109AA61520151187xgc151520151187xgc1511PDM_TABL_INREFR_LISTPDMReference to list of the table %PARENT%Reference to list of the table %PARENT%Reference to list of the table %PARENT%1-50 Name
-50 Code
8EC97202-525C-406C-99CD-74D11FF70E251520151187xgc151520151187xgc15Arial105135310609541EAA0-C1F1-4D77-A005-7428B110B6F91520151187xgc151520151187xgc15Times New Roman102141518118F501373B-81B2-4938-9DAC-FDE4948D32BE1520151187xgc151520151187xgc15Times New Roman1011518118EF4E15B9-EAD1-4533-90A2-CFADCC8E56361520151187xgc151520151187xgc15CA085900-DC8C-41D3-82AA-EE10FA08715C1520151187xgc151520151187xgc1511PDM_TABL_RULE_LISTPDMRule list of the table %PARENT%Rule list of the table %PARENT%Rule list of the table %PARENT%1-50 Name
-50 Code
D22B27ED-FD62-4026-98AD-52A04ED9F3FF1520151187xgc151520151187xgc15Arial10513531060D4EFC273-5D77-4EB4-8C1B-EF5296C5385B1520151187xgc151520151187xgc15Times New Roman1021415181180E30097D-6490-40E6-A3D1-36B54AEFC1801520151187xgc151520151187xgc15Times New Roman10115181182E2A4F68-44D9-411D-BAA2-0FDB26EE74721520151187xgc151520151187xgc1583BEB3CD-AF90-4F37-94AD-67B09A30B1F81520151187xgc151520151187xgc1511PDM_TABL_DEPND_LISTPDMDependent Object list of table %PARENT%Dependent Object list of table %PARENT%Dependent Object list of table %PARENT%1-40 Name
-40 Code
-20 ClassName
FBD21BC8-82B9-4EB5-B05F-BA7E61D358501520151187xgc151520151187xgc15Arial10513531060E38124E6-E07A-43DE-A850-4E0CF8EFD18D1520151187xgc151520151187xgc15Times New Roman102141518118A000DCE3-12E3-4F9C-B5F4-04F5A3A165251520151187xgc151520151187xgc15Times New Roman10115181189FBFE327-DD72-490A-AC46-5FCF28A0EFBC1520151187xgc151520151187xgc15D6C02708-4F21-4F44-816C-F861CD8D6CE51520151187xgc151520151187xgc1511PDM_TABL_EXA_LISTPDMExtended Attribute list of table %PARENT%Extended Attribute list of table %PARENT%Extended Attribute list of table %PARENT%1-30 Name
-20 DataType
-20 Value
-30 TargetName
A3EAA1E6-57BB-41D2-B3B0-73EEC69F13111520151187xgc151520151187xgc15Arial10513531060BF9DF718-A3A8-4B50-B49F-B1EF29B3BD531520151187xgc151520151187xgc15Times New Roman10214151811894DB910D-1756-4BEE-A7C3-6CD43CEF215B1520151187xgc151520151187xgc15Times New Roman10115181181E6D342E-05E8-429A-ADD7-CA6A930BA9451520151187xgc151520151187xgc15210AFFAC-A7A0-4159-80D4-91FE8B18CF051520151187xgc151520151187xgc1511PDM_TABL_USRDEPD_LISTPDMExtended Dependency list of table %PARENT%Extended Dependency list of table %PARENT%Extended Dependency list of table %PARENT%1-33 Stereotype
-33 InfluentObject
-33 InfluentObjectType
0A0385BC-BF2B-4057-98E6-32AB676C9A461520151187xgc151520151187xgc15Arial10513531060E017F2B8-7806-46BF-A314-16E464AF4BA41520151187xgc151520151187xgc15Times New Roman102141518118B5EB8E52-3716-4E79-AACD-26FB162E59311520151187xgc151520151187xgc15Times New Roman10115181188E838864-33D4-45B8-B7D6-6C38288CA9F91520151187xgc151520151187xgc1579E9F8F2-26F2-45DB-8C9A-2317F495B1151520151187xgc151520151187xgc1511PDM_TABL_COLN_LISTPDMColumn list of the table %PARENT%Column list of the table %PARENT%Column list of the table %PARENT%1-50 Name
-50 Code
1690FBA3-6C9B-42AC-913D-6EB22F8434C61520151187xgc151520151187xgc15Arial105135310607F100B05-C982-42D8-B589-305FD88494ED1520151187xgc151520151187xgc15Times New Roman1021415181183C2EF127-6EEE-4F79-BD75-05854ADA42221520151187xgc151520151187xgc15Times New Roman1011518118269004B5-5A23-47CA-8F89-8C22FF3B65671520151187xgc151520151187xgc1579CDBDD3-D257-4676-933D-49CE7F36A34F1520151187xgc151520151187xgc1511PDM_TABL_COLN_GROUPPDMColumn %ITEM% of table %PARENT%Column %ITEM% of table %PARENT%Column %ITEM% of table %PARENT%99D60897-9CDA-4624-AE19-DCE7DA8BE8A21520151187xgc151520151187xgc1511PDM_TABL_COLN_CARDPDMCard of the column %ITEM% of the table %PARENT%Card of the column %ITEM% of the table %PARENT%Card of the column %ITEM% of the table %PARENT%Name
Code
DataType
Mandatory
3ADF8CD6-BC67-4116-84A1-D739B5A76FE31520151187xgc151520151187xgc15Arial10513531060B4AEA30E-B543-4496-BC5D-0C80AD688C201520151187xgc151520151187xgc15Times New Roman102133151821185A6F2A1C-3305-4485-A884-798EA9330EE21520151187xgc151520151187xgc15Times New Roman1011518211819823A86-D8E0-4E87-A03E-53A1B0A47DE01520151187xgc151520151187xgc1511PDM_TABL_COLN_DESCPDMDescription of column %ITEM% of table %PARENT%Description of column %ITEM% of table %PARENT%Description of column %ITEM% of table %PARENT%F0A694A1-3EC4-4258-9942-5B83535B951F1520151187xgc151520151187xgc15Arial10513531060384E11D2-1F1E-4FAE-94AC-86E831DC7A6A1520151187xgc151520151187xgc15Times New Roman1010A011855C-2A91-482C-B571-B2BF5AF086131520151187xgc151520151187xgc1511PDM_TABL_COLN_NOTEPDMAnnotation of column %ITEM% of table %PARENT%Annotation of column %ITEM% of table %PARENT%Annotation of column %ITEM% of table %PARENT%15A537B3-F524-43A2-B550-737A3B250D811520151187xgc151520151187xgc15Arial1051353106054980C3E-C5F1-4D65-A51A-3CCCC1E899C41520151187xgc151520151187xgc15Times New Roman10106C837863-5976-4FD0-B40D-F94C7B3E4B781520151187xgc151520151187xgc1511PDM_TABL_COLN_CKCNPDMConstraint name of column %ITEM% of table %PARENT%Constraint name of column %ITEM% of table %PARENT%Constraint name of column %ITEM% of table %PARENT%038A91AC-3C36-4DE1-8B57-B30D66F8D90A1520151187xgc151520151187xgc15Arial105135310607A6822BE-B160-4301-A2E4-016978C227841520151187xgc151520151187xgc15Times New Roman1010847AC2CC-861D-424B-B2E5-2DA1CB33F6321520151187xgc151520151187xgc1511PDM_TABL_COLN_CHECKPDMStandard check of column %ITEM% of table %PARENT%Standard check of column %ITEM% of table %PARENT%Standard check of column %ITEM% of table %PARENT%LowValue
HighValue
DefaultValue
Unit
Format
Uppercase
Lowercase
CannotModify
ListOfValues
97F8F7D1-7013-43E2-BA28-58A7A3E2BFF61520151187xgc151520151187xgc15Arial105135310603F839DF8-2240-47CD-A550-B40DF1C76B1A1520151187xgc151520151187xgc15Times New Roman1021331518211824321B94-AA03-416B-98A0-E7C85B2ED2171520151187xgc151520151187xgc15Times New Roman10115182118D1CA28EE-6E8C-41DC-8A5A-BC537DE7754C1520151187xgc151520151187xgc1511PDM_TABL_COLN_CRULPDMClient check expression of column %ITEM% of table %PARENT%Client check expression of column %ITEM% of table %PARENT%Client check expression of column %ITEM% of table %PARENT%495F2829-C07A-41E0-9397-33AAC56C2AE61520151187xgc151520151187xgc15Arial10513531060D3B8FD48-7E1E-43A2-8EC0-67A662DE42551520151187xgc151520151187xgc15Times New Roman101070A5F918-5067-4C4C-9BFD-BA4F4216AE661520151187xgc151520151187xgc1511PDM_TABL_COLN_SRULPDMServer check expression of column %ITEM% of table %PARENT%Server check expression of column %ITEM% of table %PARENT%Server check expression of column %ITEM% of table %PARENT%2C2AA37A-936B-45FC-8092-B31F13BFAAC61520151187xgc151520151187xgc15Arial1051353106006E6679A-C1EC-4ACD-8DBC-827B36D4508C1520151187xgc151520151187xgc15Times New Roman10105DE98579-6AA3-4A6E-901C-600D3155E9091520151187xgc151520151187xgc1511PDM_TABL_COLN_RULE_LISTPDMBusiness rule list for column %PARENT%Business rule list for column %PARENT%Business rule list for column %PARENT%1-40 Name
-40 Code
-20 Type
E81D0D1C-EC42-4380-AD7F-62ECDF80E7871520151187xgc151520151187xgc15Arial105135310606D8F0E95-04C4-4C5F-88FE-944E3861FADF1520151187xgc151520151187xgc15Times New Roman102141518118A77CE050-E1FA-4DBB-AE41-82DFF225AC431520151187xgc151520151187xgc15Times New Roman10115181186AC45C78-87BA-42CB-BF18-263032DE094E1520151187xgc151520151187xgc157F148DE3-FC16-43A0-A496-C913DEB4DFD51520151187xgc151520151187xgc1511PDM_TABL_COLN_DEPND_LISTPDMDependent Object list of column %PARENT%Dependent Object list of column %PARENT%Dependent Object list of column %PARENT%1-40 Name
-40 Code
-20 ClassName
D8D50176-D7DF-4639-8D0E-C37642808E451520151187xgc151520151187xgc15Arial105135310606767ADE1-13ED-4AD3-8932-D9521232FA5E1520151187xgc151520151187xgc15Times New Roman1021415181180285E542-1B39-4798-9F95-C5E6AE1FCFE61520151187xgc151520151187xgc15Times New Roman101151811855EFEE63-5A1E-494B-ADEA-DD7EA8B39F281520151187xgc151520151187xgc158FA6A0D1-B43F-4457-98C1-617521B2E4501520151187xgc151520151187xgc1511PDM_TABL_COLN_EXA_LISTPDMExtended Attribute List of column %PARENT%Extended Attribute List of column %PARENT%Extended Attribute List of column %PARENT%1-30 Name
-20 DataType
-20 Value
-30 TargetName
C5EE453E-A034-4184-906C-693E0171C4131520151187xgc151520151187xgc15Arial1051353106099120C07-19DB-4A48-9CD4-917A8B3EFA491520151187xgc151520151187xgc15Times New Roman102141518118828FEAA0-8628-4BC2-927D-B3C3FE90DCE31520151187xgc151520151187xgc15Times New Roman1011518118F35DB53A-0346-4C50-ACCA-12FCB2E46DF31520151187xgc151520151187xgc15EE02968F-E822-4442-8BC3-6E568940DB3A1520151187xgc151520151187xgc15Arial1051353106050342B1A-3F0E-4616-B203-BE30500F94B51520151187xgc151520151187xgc1511PDM_TABL_KEY_LISTPDMKey list of the table %PARENT%Key list of the table %PARENT%Key list of the table %PARENT%1-40 Name
-40 Code
-20 Primary
822DEBB3-A650-4AEE-8F31-A928638CDFA71520151187xgc151520151187xgc15Arial105135310605D6A12E3-A88D-4FEF-814A-2845A417E7661520151187xgc151520151187xgc15Times New Roman102141518118CF23C898-ED26-4ABC-B195-F0D6005E497A1520151187xgc151520151187xgc15Times New Roman101151811809F5B75D-A0D5-4691-94EB-CA3A8E9464FB1520151187xgc151520151187xgc154DD773DD-D038-43E6-8B8A-9D5755747C0B1520151187xgc151520151187xgc1511PDM_TABL_KEY_GROUPPDMKey %ITEM% of table %PARENT%Key %ITEM% of table %PARENT%Key %ITEM% of table %PARENT%3D2394E4-DA7E-476A-A6AD-A7DB35B5DF761520151187xgc151520151187xgc1511PDM_TABL_KEY_CARDPDMCard of the key %ITEM% of the table %PARENT%Card of the key %ITEM% of the table %PARENT%Card of the key %ITEM% of the table %PARENT%Name
Code
Table
097C3E82-841E-4EBF-829A-696FAEBF4C2E1520151187xgc151520151187xgc15Arial1051353106029FDD743-74D7-4CA2-A95F-91072BBDA19F1520151187xgc151520151187xgc15Times New Roman10213315182118C3982028-46F4-4EA9-9134-EAABA2327D781520151187xgc151520151187xgc15Times New Roman10115182118C37C196F-1414-428C-9CA5-1B4CAAFF795C1520151187xgc151520151187xgc1511PDM_TABL_KEY_DESCPDMDescription of key %ITEM% of table %PARENT%Description of key %ITEM% of table %PARENT%Description of key %ITEM% of table %PARENT%4D7E9E09-4044-4869-A50F-3CECFAE882171520151187xgc151520151187xgc15Arial1051353106010CF3917-49F8-4245-9407-FBC3BB3563741520151187xgc151520151187xgc15Times New Roman1010B4D55410-EA3B-4A0F-AC1B-D064CA76EC3D1520151187xgc151520151187xgc1511PDM_TABL_KEY_NOTEPDMAnnotation of key %ITEM% of table %PARENT%Annotation of key %ITEM% of table %PARENT%Annotation of key %ITEM% of table %PARENT%586C701C-A773-47A1-9A1B-A15AB76768A61520151187xgc151520151187xgc15Arial10513531060C04C7144-431A-4CE1-8B70-E4BD7B92B5041520151187xgc151520151187xgc15Times New Roman101094972349-AB3E-4A5B-A390-2C9AA0D4FA231520151187xgc151520151187xgc1511PDM_TABL_KEY_PREVPDMCode preview of %ITEM%Code preview of %ITEM%Code preview of %ITEM%19CE769A-9CD5-413D-9240-813C17E728171520151187xgc151520151187xgc15Arial10513531060C313205D-553F-4E48-90E9-0CD0F97A9C261520151187xgc151520151187xgc15Times New Roman10102BEC70C0-3523-4068-9F92-E9DD1A48887B1520151187xgc151520151187xgc1511PDM_TABL_KEY_COLN_LISTPDMColumn list of the key %PARENT%Column list of the key %PARENT%Column list of the key %PARENT%1-40 Name
-40 Code
DB5E5AC8-63EE-40BF-8FC0-A3C09DE4D5751520151187xgc151520151187xgc15Arial10513531060792F41F6-922B-42B4-B143-5D6D310E05731520151187xgc151520151187xgc15Times New Roman102141518118CF11FC82-D71F-421C-A52E-463855D945541520151187xgc151520151187xgc15Times New Roman1011518118397290C2-3BF7-468C-83B2-7E51AEE641791520151187xgc151520151187xgc1507EA638B-DEBB-4567-854A-DA70131348271520151187xgc151520151187xgc1511PDM_TABL_KEY_DEPND_LISTPDMDependent Object list of key %PARENT%Dependent Object list of key %PARENT%Dependent Object list of key %PARENT%1-40 Name
-40 Code
-20 ClassName
78000E5E-1BDB-4648-B5D9-EE5E10B0B2201520151187xgc151520151187xgc15Arial10513531060430650DD-E99A-418C-BDC6-D9086744898A1520151187xgc151520151187xgc15Times New Roman10214151811843BADD84-1F7E-4A38-BA83-866221372B981520151187xgc151520151187xgc15Times New Roman101151811826D2F7A0-5675-4A06-B7A8-F4733955E4BE1520151187xgc151520151187xgc15FCE76825-EB13-4EBF-8154-EF1954D1E9A91520151187xgc151520151187xgc1511PDM_TABL_KEY_EXA_LISTPDMExtended Attribute List of key %PARENT%Extended Attribute List of key %PARENT%Extended Attribute List of key %PARENT%1-30 Name
-20 DataType
-20 Value
-30 TargetName
CEDB96C8-0290-41BA-AE35-A019D49FEAC01520151187xgc151520151187xgc15Arial10513531060F3874BA2-3905-4ADA-B7A0-30A36F0E78C21520151187xgc151520151187xgc15Times New Roman1021415181183583CA36-28FE-45B9-B3CC-616739DAAAAA1520151187xgc151520151187xgc15Times New Roman10115181187F4ACEB3-C3F8-4AFE-8703-EB59DEA3E1631520151187xgc151520151187xgc155A314E20-997A-4B82-AFA0-A66A300521EB1520151187xgc151520151187xgc15Arial10513531060AF389C54-0A2E-4121-941F-E07B0C550F0F1520151187xgc151520151187xgc1511PDM_TABL_INDX_LISTPDMIndex list of the table %PARENT%Index list of the table %PARENT%Index list of the table %PARENT%1-20 Name
-20 Code
-12 Unique
-12 Clustered
-12 Primary
-12 ForeignKey
-12 AlternateKey
8664B7A6-F7FD-44FC-8753-55D252478D631520151187xgc151520151187xgc15Arial105135310600D44788E-2BD5-4BE1-905A-A6882F4765201520151187xgc151520151187xgc15Times New Roman102141518118861FA560-EE2A-4735-8228-34227E52B8211520151187xgc151520151187xgc15Times New Roman1011518118A74E149E-64AA-4EA0-ACD3-9D8BA52CCE231520151187xgc151520151187xgc152BB3C754-55FD-432F-9C17-DB9EF5A22C5B1520151187xgc151520151187xgc1511PDM_TABL_INDX_GROUPPDMIndex %ITEM% of table %PARENT%Index %ITEM% of table %PARENT%Index %ITEM% of table %PARENT%54785C1C-4B35-49DB-918C-F25F92C52D201520151187xgc151520151187xgc1511PDM_TABL_INDX_CARDPDMCard of the index %ITEM% of the table %PARENT%Card of the index %ITEM% of the table %PARENT%Card of the index %ITEM% of the table %PARENT%Name
Code
Unique
Clustered
Primary
ForeignKey
AlternateKey
Table
7FDA9F1E-487C-4DD9-A98F-389C7989D3991520151187xgc151520151187xgc15Arial10513531060AE4C4DC4-7C31-4C45-A3C4-96842F06BA731520151187xgc151520151187xgc15Times New Roman102133151821181F0073BD-8E72-4F20-80AD-5F9C31A505201520151187xgc151520151187xgc15Times New Roman101151821187BE0E505-C6C5-4283-B9C6-90E1DCD046971520151187xgc151520151187xgc1511PDM_TABL_INDX_DESCPDMDescription of index %ITEM% of table %PARENT%Description of index %ITEM% of table %PARENT%Description of index %ITEM% of table %PARENT%E0D06D69-4DDA-41FB-9505-71F12E7D950A1520151187xgc151520151187xgc15Arial1051353106008922C1D-73F2-4B1A-A670-7B0CDBF81D971520151187xgc151520151187xgc15Times New Roman1010D8D5EB49-7C75-45C6-AF17-D6303AE4C5261520151187xgc151520151187xgc1511PDM_TABL_INDX_NOTEPDMAnnotation of index %ITEM% of table %PARENT%Annotation of index %ITEM% of table %PARENT%Annotation of index %ITEM% of table %PARENT%9866D144-0944-4AC7-84A9-66F8A9949D211520151187xgc151520151187xgc15Arial105135310609912F08D-0994-4BBE-918C-72DBE9C5BEF91520151187xgc151520151187xgc15Times New Roman1010CE28B11E-26F6-446B-9C6B-D66622D8CCBD1520151187xgc151520151187xgc1511PDM_TABL_INDX_PREVPDMCode preview of %ITEM%Code preview of %ITEM%Code preview of %ITEM%3B8B1707-BA46-4453-8573-D5B5A5E2F7321520151187xgc151520151187xgc15Arial10513531060DBFAB69A-19E5-4D75-8358-19020DC089B81520151187xgc151520151187xgc15Times New Roman10108ADCE383-FF8B-4F01-BF80-F3D9D2EF7D181520151187xgc151520151187xgc1511PDM_TABL_INDX_COLN_LISTPDMColumn list of the index %PARENT%Column list of the index %PARENT%Column list of the index %PARENT%1-38 Name
-38 Code
-24 Ascending
D34FE212-0622-4074-B659-15977A4B2A771520151187xgc151520151187xgc15Arial10513531060762DEAEB-5BC9-43B4-82BD-0BD1CD47BB341520151187xgc151520151187xgc15Times New Roman1021415181182E8ED2AA-2AB9-4F00-A191-054D857361A31520151187xgc151520151187xgc15Times New Roman1011518118FF33ED15-FDC1-431A-BAD6-FC51F555548D1520151187xgc151520151187xgc15D68870CE-6A3A-495A-9DBE-8E5DB03218181520151187xgc151520151187xgc1511PDM_TABL_INDX_DEPND_LISTPDMDependent Object list of index %PARENT%Dependent Object list of index %PARENT%Dependent Object list of index %PARENT%1-40 Name
-40 Code
-20 ClassName
AE8529B4-DB2A-48C2-96EF-85056F1565871520151187xgc151520151187xgc15Arial1051353106004CE433A-F4E2-4470-B100-2CC8C126F14C1520151187xgc151520151187xgc15Times New Roman1021415181184A4A354B-09DE-4880-8222-C8AB1EE395D51520151187xgc151520151187xgc15Times New Roman10115181184BEE0AE2-F0F9-4AD9-AD93-30B180D7D0951520151187xgc151520151187xgc15BCC52926-636C-4627-ABA2-48B80D1C30071520151187xgc151520151187xgc1511PDM_TABL_INDX_EXA_LISTPDMExtended Attribute List of index %PARENT%Extended Attribute List of index %PARENT%Extended Attribute List of index %PARENT%1-30 Name
-20 DataType
-20 Value
-30 TargetName
C8A65B78-7295-4364-A878-5C85E6812CE91520151187xgc151520151187xgc15Arial10513531060E817AE37-F7C6-496D-960B-B327AF0E511F1520151187xgc151520151187xgc15Times New Roman1021415181182740DCC6-CD22-4361-8C40-AE85E3843B7B1520151187xgc151520151187xgc15Times New Roman1011518118A5FCECC5-0CB2-46BE-8AC7-9835BECD58C41520151187xgc151520151187xgc15E08C71B0-9454-4285-B5EA-440FCA4A12641520151187xgc151520151187xgc15Arial10513531060B1C5C462-BE98-4D51-BD84-6789A29CD0361520151187xgc151520151187xgc1511PDM_TABL_TRGR_LISTPDMTrigger list of the table %PARENT%Trigger list of the table %PARENT%Trigger list of the table %PARENT%1-50 Name
-50 Code
F888A7E1-B391-410F-83DE-BCE8613F71F71520151187xgc151520151187xgc15Arial105135310609347517B-7D32-4CC5-9F2C-32C5AD1741411520151187xgc151520151187xgc15Times New Roman10214151811854AC804F-868E-498A-92AF-404085A406021520151187xgc151520151187xgc15Times New Roman1011518118BCEE2334-8BEE-4FBB-9B6D-5AED9DE5095C1520151187xgc151520151187xgc15BB71BF6A-DD3A-4459-9D76-0BE704C8206C1520151187xgc151520151187xgc1511PDM_TABL_TRGR_GROUPPDMTrigger %ITEM% of table %PARENT%Trigger %ITEM% of table %PARENT%Trigger %ITEM% of table %PARENT%253DF56F-929E-4B36-B8EE-8B4E3658366A1520151187xgc151520151187xgc1511PDM_TABL_TRGR_CARDPDMCard of the trigger %ITEM% of the table %PARENT%Card of the trigger %ITEM% of the table %PARENT%Card of the trigger %ITEM% of the table %PARENT%Name
Code
Generated
Table
TriggerTemplate
UserDefinedSQL
101502B6-72D2-4D07-B693-5BA01820F6BD1520151187xgc151520151187xgc15Arial10513531060F834BC8C-04B5-4107-920B-080F917677321520151187xgc151520151187xgc15Times New Roman102133151821182EBEDEA4-9C47-41E2-A968-B39105DC8BC71520151187xgc151520151187xgc15Times New Roman101151821182E20E3AF-0266-464D-8C05-BF96462B4A561520151187xgc151520151187xgc1511PDM_TABL_TRGR_DESCPDMDescription of trigger %ITEM% of table %PARENT%Description of trigger %ITEM% of table %PARENT%Description of trigger %ITEM% of table %PARENT%FF9E72C4-CF5A-45F1-92C1-0F59E0994F701520151187xgc151520151187xgc15Arial105135310600A2DEAE0-4F68-41FA-A9D6-DB44634B61511520151187xgc151520151187xgc15Times New Roman1010897267B7-A180-4514-8695-1C9FCBAF76F81520151187xgc151520151187xgc1511PDM_TABL_TRGR_NOTEPDMAnnotation of trigger %ITEM% of table %PARENT%Annotation of trigger %ITEM% of table %PARENT%Annotation of trigger %ITEM% of table %PARENT%7CB09BD8-D941-4E93-A58F-B9AE878BC53F1520151187xgc151520151187xgc15Arial105135310603DAD36EF-DA02-4716-A36A-FCDA066769BF1520151187xgc151520151187xgc15Times New Roman10101257B66F-3DF3-47DB-8226-42581396230C1520151187xgc151520151187xgc1511PDM_TABL_TRGR_PREVPDMCode preview of %ITEM%Code preview of %ITEM%Code preview of %ITEM%0CD615AD-4DB9-48E0-BF2D-65FE09BCB5761520151187xgc151520151187xgc15Arial10513531060B17FECBE-1587-4201-BB2C-454C8CE2EB1E1520151187xgc151520151187xgc15Times New Roman1010BF3865DD-78FF-4C82-B932-DCB04779BE031520151187xgc151520151187xgc1511PDM_TABL_TRGR_EXA_LISTPDMExtended Attribute List of trigger %PARENT%Extended Attribute List of trigger %PARENT%Extended Attribute List of trigger %PARENT%1-30 Name
-20 DataType
-20 Value
-30 TargetName
29B34873-3AA3-4E7D-83CE-84A1E93DE64B1520151187xgc151520151187xgc15Arial105135310603E90B620-EAEC-42DF-8444-D9801FB767391520151187xgc151520151187xgc15Times New Roman10214151811831E56A2B-671F-4959-B9AF-F952C415E5161520151187xgc151520151187xgc15Times New Roman1011518118F83446B3-501C-4B01-895F-1EB5B3D980D11520151187xgc151520151187xgc151F4E073A-6A3A-46FB-BA3F-A7A4D8D2982C1520151187xgc151520151187xgc15Arial10513531060ADA6767C-0EAC-4E9C-BFDE-54B4D0DDFA0C1520151187xgc151520151187xgc1511PDM_TABL_CMAP_LISTPDMMapping list of the table %PARENT%Mapping list of the table %PARENT%Mapping list of the table %PARENT%1-50 Name
-50 Code
1BE16EDC-7950-4EDB-A4F6-55CC9CB78F891520151187xgc151520151187xgc15Arial10513531060EFE62122-82FD-4235-9B99-30028DB5DE751520151187xgc151520151187xgc15Times New Roman102141518118EEBDE29D-F6F4-4A64-AA1D-A07F8F6B37981520151187xgc151520151187xgc15Times New Roman1011518118DB5A51F3-EE34-4C22-8679-4E03B7AADD381520151187xgc151520151187xgc1594B7A46D-1E59-4E7E-8624-54C88F5B51C21520151187xgc151520151187xgc1511PDM_TABL_CMAP_GROUPPDMMapping %ITEM% of table %PARENT%Mapping %ITEM% of table %PARENT%Mapping %ITEM% of table %PARENT%971843E5-859E-423F-AB5C-4CBCA13286F81520151187xgc151520151187xgc1511PDM_TABL_CMAP_CARDPDMCard of the mapping %ITEM% of the table %PARENT%Card of the mapping %ITEM% of the table %PARENT%Card of the mapping %ITEM% of the table %PARENT%Name
Code
E55DA18B-DB2B-4249-A3F3-DB6D1328083D1520151187xgc151520151187xgc15Arial10513531060F98EADFF-7D32-40C1-A6DB-6545C7F96F571520151187xgc151520151187xgc15Times New Roman10213315182118A83801A1-C659-4622-BEC9-3A1708BDEE401520151187xgc151520151187xgc15Times New Roman10115182118F25D1152-8B27-48FE-943F-D165C029A62D1520151187xgc151520151187xgc1511PDM_TABL_CMAP_CRTRPDMCriteria of mapping %ITEM% of table %PARENT%Criteria of mapping %ITEM% of table %PARENT%Criteria of mapping %ITEM% of table %PARENT%F606ADF3-1512-41DA-824F-9C1302C64C8A1520151187xgc151520151187xgc15Arial1051353106011D4F0E2-9D0B-4250-B646-0FBB1E07E7DE1520151187xgc151520151187xgc15Times New Roman10105FBBDB86-79AD-461D-A7E2-16C265AED5BD1520151187xgc151520151187xgc1511PDM_TABL_CMAP_EXPRPDMSource expression of mapping %ITEM% of table %PARENT%Source expression of mapping %ITEM% of table %PARENT%Source expression of mapping %ITEM% of table %PARENT%CCA55894-3F87-4CDE-A2DC-B6A906E8255F1520151187xgc151520151187xgc15Arial1051353106046C9FCC2-4BB6-486B-A560-9B7CCC90CEC41520151187xgc151520151187xgc15Times New Roman10100261F20D-6C8A-4688-8035-1749597480061520151187xgc151520151187xgc1511PDM_TABL_CMAP_SFEA_LISTPDMColumn mapping list of %PARENT%Column mapping list of %PARENT%Column mapping list of %PARENT%1-50 Column
-50 MappedTo
0A2BC6F9-0C85-47C6-A5F8-5D1424D2557D1520151187xgc151520151187xgc15Arial105135310606741F9C2-C625-4EAB-BC5B-D030C7C91DCE1520151187xgc151520151187xgc15Times New Roman102141518118B112FE2D-1C0C-4021-AEB6-5B0F40DCE5991520151187xgc151520151187xgc15Times New Roman10115181189BFEF338-1815-45BC-8E50-D47E79DDA0C11520151187xgc151520151187xgc15999476D4-7AFB-41F0-9C8E-6ED4F58BC12C1520151187xgc151520151187xgc1511PDM_TABL_CMAP_SCRC_LISTPDMTable sources list of mapping %PARENT%Table sources list of mapping %PARENT%Table sources list of mapping %PARENT%1-50 Name
-50 Code
2D5EBF55-D904-42A3-8B5C-FC88A5AEADBF1520151187xgc151520151187xgc15Arial10513531060AD69AA9D-BC31-422F-8B9C-F1157F9B4ABD1520151187xgc151520151187xgc15Times New Roman102141518118D1A9DC15-4B11-4726-A643-2992CFCD5A591520151187xgc151520151187xgc15Times New Roman1011518118F895B843-4204-4127-9268-F4CB57C4D0281520151187xgc151520151187xgc1584C23F12-8CBB-4619-BA7F-24C78E5A13441520151187xgc151520151187xgc15Arial1051353106040883E92-7E62-4B13-9AF8-DD58BA08CC331520151187xgc151520151187xgc15Arial10513531060E4BD7426-38A6-4295-BF28-A3AE4E7F61661520151187xgc151520151187xgc15Arial105142310601ADE5A5E-F265-49FB-96D6-90CE2CB8DE921520151187xgc151520151187xgc1511PDM_PCKG_TITLEPDMPackage %ITEM%Package %ITEM%Tables from Package %ITEM%17E696E34-EEE4-4B23-B958-AFF71E089EF01520151187xgc151520151187xgc1511PDM_TABL_TITLEPDMTable %ITEM%Table %ITEM%Table %ITEM%3D0C2D1F-0DEE-46C0-B43E-5DE59492C8BF1520151187xgc151520151187xgc1511PDM_TABL_CARDPDMCard of the table %ITEM%Card of the table %ITEM%Card of the table %ITEM%Name
Code
DBMS
29D0BC3F-7BDF-45F2-9531-3739476816361520151187xgc151520151187xgc15Arial10513531060BD020968-C0AA-4A2B-B63E-2701899547FF1520151187xgc151520151187xgc15Times New Roman1021331518211878C877C1-FB8A-47BF-8E9C-EFE639A05EC81520151187xgc151520151187xgc15Times New Roman10115182118EBD89807-0B5F-4EB3-A097-F790A9A45A211520151187xgc151520151187xgc1511PDM_TABL_DESCPDMDescription of table %ITEM%Description of table %ITEM%Description of table %ITEM%2C1CC0F4-8CF1-4340-B5CC-CF179D71ED111520151187xgc151520151187xgc15Arial10513531060E7979525-2609-46FC-937C-4C97E472CD5A1520151187xgc151520151187xgc15Times New Roman10102B13C6C3-5122-48F1-BA69-28BFC345CDB41520151187xgc151520151187xgc1511PDM_TABL_NOTEPDMAnnotation of table %ITEM%Annotation of table %ITEM%Annotation of table %ITEM%B21C6F35-80E9-4002-AB9B-C555C564B9DB1520151187xgc151520151187xgc15Arial1051353106033E79A81-DE23-491F-94E1-4304237AE4F51520151187xgc151520151187xgc15Times New Roman10100CF81F75-7403-4699-B391-1625E86D01DA1520151187xgc151520151187xgc1511PDM_TABL_CKCNPDMConstraint name of table %ITEM%Constraint name of table %ITEM%Constraint name of table %ITEM%99445715-0C2B-4C06-8ACB-7A5D8836C94A1520151187xgc151520151187xgc15Arial10513531060EA067031-ECE2-4D1B-B99F-ACFC224468C11520151187xgc151520151187xgc15Times New Roman1010287AAD6F-09E4-4570-8842-33B96A20F7F81520151187xgc151520151187xgc1511PDM_TABL_OPTSPDMOptions of table %ITEM%Options of table %ITEM%Options of table %ITEM%D7BD98AB-CEB6-4AE9-B5DE-8C70958A1CAC1520151187xgc151520151187xgc15Arial10513531060D2A31D0C-173E-4981-B97A-180AE34613251520151187xgc151520151187xgc15Times New Roman1010C5242344-2953-4808-9934-D55ABB6BFC641520151187xgc151520151187xgc1511PDM_TABL_CRULPDMClient check expression of table %ITEM%Client check expression of table %ITEM%Client check expression of table %ITEM%305B7B47-233F-40E0-B33F-7F4CC4F147961520151187xgc151520151187xgc15Arial105135310600AD0EFD8-8EAF-4893-A9D9-A502D26BC2F51520151187xgc151520151187xgc15Times New Roman1010C8544E07-E73C-4CFE-989F-FA19F433D6441520151187xgc151520151187xgc1511PDM_TABL_SRULPDMServer check expression of table %ITEM%Server check expression of table %ITEM%Server check expression of table %ITEM%10B74337-774E-4767-8FC5-EEE2F45DF5991520151187xgc151520151187xgc15Arial1051353106062F9DF60-A889-4996-80DE-72C826E754E71520151187xgc151520151187xgc15Times New Roman101086EF52F7-E3D7-4558-89E2-04458EAADBD81520151187xgc151520151187xgc1511PDM_TABL_HEADPDMBegin script of table %ITEM%Begin script of table %ITEM%Begin script of table %ITEM%5146AB2F-6E07-42B1-9DDB-0671DC22C51E1520151187xgc151520151187xgc15Arial105135310605A69255A-D09F-499F-A3A5-097914E9E6BF1520151187xgc151520151187xgc15Times New Roman10104B44952A-B291-4301-ADB4-A75C5A69EA311520151187xgc151520151187xgc1511PDM_TABL_FOOTPDMEnd script of table %ITEM%End script of table %ITEM%End script of table %ITEM%48DB551F-43F0-46DA-94F2-F9393619A1351520151187xgc151520151187xgc15Arial1051353106044F50A4E-FA8D-46EE-B15F-1E26C059F66A1520151187xgc151520151187xgc15Times New Roman101027D0FE6F-685D-4EAB-9AC7-2090102A77731520151187xgc151520151187xgc1511PDM_TABL_PREVPDMCode preview of %ITEM%Code preview of %ITEM%Code preview of %ITEM%4A348F51-0B91-4A3A-9119-E9871886F29B1520151187xgc151520151187xgc15Arial10513531060E667C0CE-074D-4611-B2A5-8E7034D541CC1520151187xgc151520151187xgc15Times New Roman1010A902407F-A17A-4A47-A8C8-A1FE8365D5BB1520151187xgc151520151187xgc1511PDM_TABL_DIAG_LISTPDMList of diagrams containing table %PARENT%List of diagrams containing table %PARENT%List of diagrams containing table %PARENT%1-50 Name
-50 Code
380C3FF0-7407-4633-89AC-023646A25FBA1520151187xgc151520151187xgc15Arial10513531060B049C2F8-8ED5-47D8-8619-C7C2BCC49C3A1520151187xgc151520151187xgc15Times New Roman1021415181183E764E12-023D-4500-B9E1-021BE4FD7FA61520151187xgc151520151187xgc15Times New Roman101151811848D64230-E1A4-4F63-BBDA-0171443B2F241520151187xgc151520151187xgc15992F09B7-D8F0-409F-A411-DF7A870C703B1520151187xgc151520151187xgc1511PDM_TABL_OUTREFR_LISTPDMReference from list of the table %PARENT%Reference from list of the table %PARENT%Reference from list of the table %PARENT%1-30 Name
-30 Code
-40 ForeignKeyColumnList
159C8A70-9106-45CC-A573-7D737450D3DE1520151187xgc151520151187xgc15Arial105135310604E65418B-EB6C-41B6-97C5-E9A85F9020811520151187xgc151520151187xgc15Times New Roman102141518118D794F099-8BAC-4900-B125-C8DD90A5345E1520151187xgc151520151187xgc15Times New Roman10115181186AFACA4F-C411-4AFF-A269-BD810635780A1520151187xgc151520151187xgc1594E87BE7-7A5E-4677-B888-6EBB787C8C691520151187xgc151520151187xgc1511PDM_TABL_INREFR_LISTPDMReference to list of the table %PARENT%Reference to list of the table %PARENT%Reference to list of the table %PARENT%1-50 Name
-50 Code
64623C7C-583C-4D9D-9E2D-45F03AE020801520151187xgc151520151187xgc15Arial10513531060233F0AD5-833C-4407-9125-1994098344051520151187xgc151520151187xgc15Times New Roman1021415181186F6ADA17-6ACF-4D14-BA36-B2BBD8ADFC551520151187xgc151520151187xgc15Times New Roman10115181180BBFBC6D-DDBC-4365-8C76-5A21C81143EB1520151187xgc151520151187xgc15E189136C-30F0-4BD0-AB2D-E1BB7B5C2F261520151187xgc151520151187xgc1511PDM_TABL_RULE_LISTPDMRule list of the table %PARENT%Rule list of the table %PARENT%Rule list of the table %PARENT%1-50 Name
-50 Code
CE939A29-B04F-4076-B765-0B10E44B7E5B1520151187xgc151520151187xgc15Arial105135310605A273D1A-3046-45D9-B139-35883EED36F51520151187xgc151520151187xgc15Times New Roman102141518118AD91B9B9-B239-41C2-8D60-57708D6E029F1520151187xgc151520151187xgc15Times New Roman1011518118FE43BD5E-EA33-4185-B4AD-3276B7DA53C51520151187xgc151520151187xgc15A9689F1A-949A-4B74-9352-EC23B7B0D4CD1520151187xgc151520151187xgc1511PDM_TABL_DEPND_LISTPDMDependent Object list of table %PARENT%Dependent Object list of table %PARENT%Dependent Object list of table %PARENT%1-40 Name
-40 Code
-20 ClassName
1F9E3DD2-4F71-4580-AF37-B9DC44C4DCE71520151187xgc151520151187xgc15Arial10513531060498ECAC9-371D-426D-AED2-465E47A4B4E51520151187xgc151520151187xgc15Times New Roman1021415181183975E162-1B5B-44A3-9DDC-C68C58DE10501520151187xgc151520151187xgc15Times New Roman1011518118CC8E254A-FF54-45CD-84C7-C8467B83C5A31520151187xgc151520151187xgc15E3C83257-A1E9-49DB-9E56-A237EA4F3B521520151187xgc151520151187xgc1511PDM_TABL_EXA_LISTPDMExtended Attribute list of table %PARENT%Extended Attribute list of table %PARENT%Extended Attribute list of table %PARENT%1-30 Name
-20 DataType
-20 Value
-30 TargetName
98E7F1D5-89AB-4E92-B3F5-0C229AFBF3481520151187xgc151520151187xgc15Arial10513531060659AF5CE-33E4-4CC7-BAA1-EE95346FBCFA1520151187xgc151520151187xgc15Times New Roman102141518118B9F1FB48-74A3-4003-B939-98867E018D7D1520151187xgc151520151187xgc15Times New Roman10115181187884758F-8C22-4318-A5CA-46A8D36751B11520151187xgc151520151187xgc15645A6F20-77F1-4C15-993D-883B38E2B1F91520151187xgc151520151187xgc1511PDM_TABL_USRDEPD_LISTPDMExtended Dependency list of table %PARENT%Extended Dependency list of table %PARENT%Extended Dependency list of table %PARENT%1-33 Stereotype
-33 InfluentObject
-33 InfluentObjectType
151A1930-C63E-4FAF-AC57-35FBB4A77F8B1520151187xgc151520151187xgc15Arial10513531060577150D3-4A24-485E-9D2D-A476077F05DC1520151187xgc151520151187xgc15Times New Roman1021415181183A3A0A2D-284D-4B6A-925E-5DD6E2344AFD1520151187xgc151520151187xgc15Times New Roman10115181188527A99E-6673-4882-B323-7A7B846B434E1520151187xgc151520151187xgc15DAA8BF3D-1ED7-4E66-9402-EDAD08FD7BC61520151187xgc151520151187xgc1511PDM_TABL_COLN_LISTPDMColumn list of the table %PARENT%Column list of the table %PARENT%Column list of the table %PARENT%1-50 Name
-50 Code
4F6091C2-144F-4CE4-BC84-0F86486D81B51520151187xgc151520151187xgc15Arial10513531060F9964BA7-DEA9-4A44-8A7C-FDC22223F9EA1520151187xgc151520151187xgc15Times New Roman102141518118B1619A93-87A6-463F-BE7C-AC0801B0D88F1520151187xgc151520151187xgc15Times New Roman1011518118BD4CA778-175E-4FAF-A808-6E829E37CB8B1520151187xgc151520151187xgc156832EF66-D4C2-483D-B020-C76619DA9CB31520151187xgc151520151187xgc1511PDM_TABL_COLN_GROUPPDMColumn %ITEM% of table %PARENT%Column %ITEM% of table %PARENT%Column %ITEM% of table %PARENT%2E8FB912-0B83-426A-A0C5-B91C58791E211520151187xgc151520151187xgc1511PDM_TABL_COLN_CARDPDMCard of the column %ITEM% of the table %PARENT%Card of the column %ITEM% of the table %PARENT%Card of the column %ITEM% of the table %PARENT%Name
Code
DataType
Mandatory
5B9051E5-E804-4C17-B478-F504EE060B511520151187xgc151520151187xgc15Arial1051353106001EFC7DD-ABDA-488D-95AB-54226FD6B62D1520151187xgc151520151187xgc15Times New Roman10213315182118369BD774-75DC-4008-A7AA-ACF8871418C01520151187xgc151520151187xgc15Times New Roman101151821187503CE7D-8A42-494D-B5FA-95B82075F0121520151187xgc151520151187xgc1511PDM_TABL_COLN_DESCPDMDescription of column %ITEM% of table %PARENT%Description of column %ITEM% of table %PARENT%Description of column %ITEM% of table %PARENT%429C9414-4CD3-4DA7-AF9A-C82CB0F68E661520151187xgc151520151187xgc15Arial1051353106028E43237-FCE6-40FE-AF08-4CB418B6B7281520151187xgc151520151187xgc15Times New Roman10108AA92C6A-82FF-47A2-B9C6-3922B90C522B1520151187xgc151520151187xgc1511PDM_TABL_COLN_NOTEPDMAnnotation of column %ITEM% of table %PARENT%Annotation of column %ITEM% of table %PARENT%Annotation of column %ITEM% of table %PARENT%E63E501D-811D-4BEB-8893-68B2A4592F5A1520151187xgc151520151187xgc15Arial105135310602E7ABAAB-9613-4D72-A107-C6B4620946751520151187xgc151520151187xgc15Times New Roman1010F7162A72-DC93-4585-B266-B8E786379F931520151187xgc151520151187xgc1511PDM_TABL_COLN_CKCNPDMConstraint name of column %ITEM% of table %PARENT%Constraint name of column %ITEM% of table %PARENT%Constraint name of column %ITEM% of table %PARENT%356797AD-2C03-49EA-98AC-2FBD2A80A6661520151187xgc151520151187xgc15Arial10513531060BE8B3586-FA7F-4810-96C9-69E1721FA42A1520151187xgc151520151187xgc15Times New Roman10101C927C4C-98EB-4020-8CA0-0178A7FF86CE1520151187xgc151520151187xgc1511PDM_TABL_COLN_CHECKPDMStandard check of column %ITEM% of table %PARENT%Standard check of column %ITEM% of table %PARENT%Standard check of column %ITEM% of table %PARENT%LowValue
HighValue
DefaultValue
Unit
Format
Uppercase
Lowercase
CannotModify
ListOfValues
2652A55F-4533-438F-B4E2-59455CB32C791520151187xgc151520151187xgc15Arial105135310607EB0EE2F-F2E5-4BC3-A67A-C3A59FF2F2A21520151187xgc151520151187xgc15Times New Roman102133151821184628BEAE-73E1-48AE-85D9-462473473DF91520151187xgc151520151187xgc15Times New Roman1011518211804B29851-1D6D-42FE-BEB2-A1353E8750881520151187xgc151520151187xgc1511PDM_TABL_COLN_CRULPDMClient check expression of column %ITEM% of table %PARENT%Client check expression of column %ITEM% of table %PARENT%Client check expression of column %ITEM% of table %PARENT%E2EB7862-B1C4-463D-9935-58051C9E9C9A1520151187xgc151520151187xgc15Arial105135310601A31BF0B-FF6F-4A0C-801D-1B4DB732E82E1520151187xgc151520151187xgc15Times New Roman10108BA90D21-727A-450F-9215-E691940FAEB41520151187xgc151520151187xgc1511PDM_TABL_COLN_SRULPDMServer check expression of column %ITEM% of table %PARENT%Server check expression of column %ITEM% of table %PARENT%Server check expression of column %ITEM% of table %PARENT%720C87FC-B80C-4625-886D-569761A8B0951520151187xgc151520151187xgc15Arial105135310607C21416A-5A77-43EF-B64D-011436F898C51520151187xgc151520151187xgc15Times New Roman1010828CA840-D092-4B74-9B34-46D3F24EEE661520151187xgc151520151187xgc1511PDM_TABL_COLN_RULE_LISTPDMBusiness rule list for column %PARENT%Business rule list for column %PARENT%Business rule list for column %PARENT%1-40 Name
-40 Code
-20 Type
C9FCA523-CF7B-4788-ADA3-E7A61AFB6B741520151187xgc151520151187xgc15Arial105135310601C5A7BC9-5B59-4692-8EDC-21AAE5006D781520151187xgc151520151187xgc15Times New Roman1021415181187EFA1DEA-26E5-42AF-8D75-8F218E89C03E1520151187xgc151520151187xgc15Times New Roman10115181188E70FDCD-7BF5-482E-9258-5CD4F2D650B61520151187xgc151520151187xgc15992A6AE1-9879-40C6-BBCC-E61692B4FE3D1520151187xgc151520151187xgc1511PDM_TABL_COLN_DEPND_LISTPDMDependent Object list of column %PARENT%Dependent Object list of column %PARENT%Dependent Object list of column %PARENT%1-40 Name
-40 Code
-20 ClassName
AAE42D2A-BAD7-422D-992F-0064183EC1FB1520151187xgc151520151187xgc15Arial10513531060D63E05A1-A474-465D-901B-30A521F82C361520151187xgc151520151187xgc15Times New Roman102141518118A73A3C89-008D-4ECD-8270-2DEEA70238191520151187xgc151520151187xgc15Times New Roman10115181186AE5CEEA-DD08-4E90-922D-E200E0957D3E1520151187xgc151520151187xgc1585AE1AA4-54A3-4ECF-B9AA-45A1DAFFE6C61520151187xgc151520151187xgc1511PDM_TABL_COLN_EXA_LISTPDMExtended Attribute List of column %PARENT%Extended Attribute List of column %PARENT%Extended Attribute List of column %PARENT%1-30 Name
-20 DataType
-20 Value
-30 TargetName
C34A98B8-A647-4177-872C-C3D34A18E1111520151187xgc151520151187xgc15Arial10513531060F4F91B2E-AC96-4D10-8665-0F3E9E7FF0FD1520151187xgc151520151187xgc15Times New Roman1021415181187C03B4D6-E38C-47F7-B1D3-C18C7E1CD95A1520151187xgc151520151187xgc15Times New Roman101151811851C3D6AF-AFA4-4EE4-80FC-094D7D46A9781520151187xgc151520151187xgc156DFF472C-5A42-4019-8807-92A9BBC8301D1520151187xgc151520151187xgc15Arial1051353106061616735-7578-42E4-9C86-496964D8A5681520151187xgc151520151187xgc1511PDM_TABL_KEY_LISTPDMKey list of the table %PARENT%Key list of the table %PARENT%Key list of the table %PARENT%1-40 Name
-40 Code
-20 Primary
F35D0791-9C52-410D-AEDE-4C1EF9F8D9541520151187xgc151520151187xgc15Arial1051353106054361C71-9648-4D0A-9EBF-DAF690FE943B1520151187xgc151520151187xgc15Times New Roman10214151811819BD5E83-1DEC-4C1F-BD58-1BF3275E8EE71520151187xgc151520151187xgc15Times New Roman101151811828DE4348-79DD-41D0-B8ED-4585C8E1A1E81520151187xgc151520151187xgc1547EA6FD2-FE63-45CF-B927-57A1194A76671520151187xgc151520151187xgc1511PDM_TABL_KEY_GROUPPDMKey %ITEM% of table %PARENT%Key %ITEM% of table %PARENT%Key %ITEM% of table %PARENT%2018D9E6-7D77-4927-AAA6-743DD5D851541520151187xgc151520151187xgc1511PDM_TABL_KEY_CARDPDMCard of the key %ITEM% of the table %PARENT%Card of the key %ITEM% of the table %PARENT%Card of the key %ITEM% of the table %PARENT%Name
Code
Table
A801F351-66F0-42C9-8E8D-18FB75431DD41520151187xgc151520151187xgc15Arial105135310602E84C64D-9ED0-40B1-8DA6-FFD16EAA3F4E1520151187xgc151520151187xgc15Times New Roman10213315182118E3C47CF0-7B21-41D2-A964-048DE19C2EC61520151187xgc151520151187xgc15Times New Roman101151821183CD112D8-D510-4609-A3F8-3DA227F2C8B11520151187xgc151520151187xgc1511PDM_TABL_KEY_DESCPDMDescription of key %ITEM% of table %PARENT%Description of key %ITEM% of table %PARENT%Description of key %ITEM% of table %PARENT%6BECB2FF-EE93-46FA-B305-18311E8DF73A1520151187xgc151520151187xgc15Arial10513531060E3DF573C-8D8B-42D3-ACC3-E3E77F805CAB1520151187xgc151520151187xgc15Times New Roman10105AD0FC53-1C95-498B-B578-B00A2A51C2751520151187xgc151520151187xgc1511PDM_TABL_KEY_NOTEPDMAnnotation of key %ITEM% of table %PARENT%Annotation of key %ITEM% of table %PARENT%Annotation of key %ITEM% of table %PARENT%E6184F0B-9427-48D3-8B38-18A4DFD525321520151187xgc151520151187xgc15Arial10513531060DFDF5726-F68E-402E-A32F-755272BB82E61520151187xgc151520151187xgc15Times New Roman1010076E4CF9-C861-4CF9-B970-0E5C5BCC63791520151187xgc151520151187xgc1511PDM_TABL_KEY_PREVPDMCode preview of %ITEM%Code preview of %ITEM%Code preview of %ITEM%E471FA52-4FBF-4C04-BF5F-E81CC6AE6CB51520151187xgc151520151187xgc15Arial10513531060E2354ABC-CFA7-4EA8-917D-1851EF125E941520151187xgc151520151187xgc15Times New Roman1010B6B86D9A-607B-4D21-87CD-83972DC8641F1520151187xgc151520151187xgc1511PDM_TABL_KEY_COLN_LISTPDMColumn list of the key %PARENT%Column list of the key %PARENT%Column list of the key %PARENT%1-40 Name
-40 Code
A9EABEBA-9B00-4279-B7C2-C558E91A2E931520151187xgc151520151187xgc15Arial10513531060894B91E4-1A6E-46A3-A02A-40374B0EC49C1520151187xgc151520151187xgc15Times New Roman1021415181184E19F7D6-F09E-4161-833D-FA8708E1733D1520151187xgc151520151187xgc15Times New Roman1011518118FAE5489A-7CE5-4D78-AFEB-693D446CE35F1520151187xgc151520151187xgc154C97E934-8069-4773-BF59-C3EB6F8563171520151187xgc151520151187xgc1511PDM_TABL_KEY_DEPND_LISTPDMDependent Object list of key %PARENT%Dependent Object list of key %PARENT%Dependent Object list of key %PARENT%1-40 Name
-40 Code
-20 ClassName
F58FE9F1-8AA1-44AA-B153-268653ABE62C1520151187xgc151520151187xgc15Arial10513531060080D9E48-BCD9-44D4-8569-435A1A1BC09D1520151187xgc151520151187xgc15Times New Roman102141518118EC72745D-55ED-4133-A1CF-05410386595A1520151187xgc151520151187xgc15Times New Roman101151811827BC4FBC-B4F4-4824-A215-F916112A6FC01520151187xgc151520151187xgc1576FB9373-F685-4022-B135-3682A96841E51520151187xgc151520151187xgc1511PDM_TABL_KEY_EXA_LISTPDMExtended Attribute List of key %PARENT%Extended Attribute List of key %PARENT%Extended Attribute List of key %PARENT%1-30 Name
-20 DataType
-20 Value
-30 TargetName
AB003CC0-B48F-4A1D-B1CA-48AE2C5136DB1520151187xgc151520151187xgc15Arial105135310604185D297-320C-4776-AEB5-0F10E2DA0C651520151187xgc151520151187xgc15Times New Roman10214151811811A20852-D3BF-4153-970E-64419BB34FFA1520151187xgc151520151187xgc15Times New Roman101151811847DF072A-04D5-4188-A0E7-AD0BB18CAD7B1520151187xgc151520151187xgc1574694177-7637-4C28-8ABD-7194449E810B1520151187xgc151520151187xgc15Arial10513531060D9A3402D-38AD-4FC5-8CAD-3F708B09EFDC1520151187xgc151520151187xgc1511PDM_TABL_INDX_LISTPDMIndex list of the table %PARENT%Index list of the table %PARENT%Index list of the table %PARENT%1-20 Name
-20 Code
-12 Unique
-12 Clustered
-12 Primary
-12 ForeignKey
-12 AlternateKey
7B743B45-C260-4156-8A16-DDE4B823D4631520151187xgc151520151187xgc15Arial10513531060FED1AE76-1CB8-4585-9F1F-82EC06A95F981520151187xgc151520151187xgc15Times New Roman102141518118AAEC7377-CB64-450E-87A6-260601ADF6871520151187xgc151520151187xgc15Times New Roman101151811830D1A988-84F3-4CA9-BEDC-D576D7ADBD521520151187xgc151520151187xgc15E799A759-01C7-43D8-8F57-9C8BA45F20ED1520151187xgc151520151187xgc1511PDM_TABL_INDX_GROUPPDMIndex %ITEM% of table %PARENT%Index %ITEM% of table %PARENT%Index %ITEM% of table %PARENT%C7E23D20-7DFB-433D-A666-BE3CC1D597411520151187xgc151520151187xgc1511PDM_TABL_INDX_CARDPDMCard of the index %ITEM% of the table %PARENT%Card of the index %ITEM% of the table %PARENT%Card of the index %ITEM% of the table %PARENT%Name
Code
Unique
Clustered
Primary
ForeignKey
AlternateKey
Table
B08C55C2-E5CB-4E26-9C18-62DA0355A9881520151187xgc151520151187xgc15Arial10513531060F292E192-A166-4061-96FB-E6E909CBDD5E1520151187xgc151520151187xgc15Times New Roman1021331518211827D923F2-D0FB-42A5-BD68-7D55EA3C4D7D1520151187xgc151520151187xgc15Times New Roman1011518211854881D94-E248-43F1-9D94-EB10C91D549C1520151187xgc151520151187xgc1511PDM_TABL_INDX_DESCPDMDescription of index %ITEM% of table %PARENT%Description of index %ITEM% of table %PARENT%Description of index %ITEM% of table %PARENT%C0645CBA-C586-4215-9C92-71FCECBD67761520151187xgc151520151187xgc15Arial10513531060EB91DD3B-0B1C-48AB-BD9E-DABC275026E31520151187xgc151520151187xgc15Times New Roman1010C9364F2B-F44F-46A4-887B-8FBFF84768441520151187xgc151520151187xgc1511PDM_TABL_INDX_NOTEPDMAnnotation of index %ITEM% of table %PARENT%Annotation of index %ITEM% of table %PARENT%Annotation of index %ITEM% of table %PARENT%CD80DCC6-D3C9-4B1E-886A-6FDF03D857721520151187xgc151520151187xgc15Arial10513531060974FE524-E37D-4B19-9592-15AD6AA87AEB1520151187xgc151520151187xgc15Times New Roman1010E0F63CAF-3EF5-4411-A93E-961C93576F811520151187xgc151520151187xgc1511PDM_TABL_INDX_PREVPDMCode preview of %ITEM%Code preview of %ITEM%Code preview of %ITEM%BDF7938C-B490-46E8-8470-E4B389379BB71520151187xgc151520151187xgc15Arial105135310600CFBE1CA-C148-487B-A0E6-C61BEBDA0CDA1520151187xgc151520151187xgc15Times New Roman10108BF7424E-E205-4852-BA41-F5E996E08AEA1520151187xgc151520151187xgc1511PDM_TABL_INDX_COLN_LISTPDMColumn list of the index %PARENT%Column list of the index %PARENT%Column list of the index %PARENT%1-38 Name
-38 Code
-24 Ascending
3838941C-5A82-4455-847D-F3FE01FDB7181520151187xgc151520151187xgc15Arial105135310605E34DC54-782E-49F8-AAEA-746F45CBF97F1520151187xgc151520151187xgc15Times New Roman102141518118B4C373E3-E05B-49AD-8FD8-5C410B4F4C741520151187xgc151520151187xgc15Times New Roman1011518118CD1BB8EC-B40A-4D4D-87F1-4448A277A14E1520151187xgc151520151187xgc15D65939A8-07DE-4D5C-9885-A428B27B3C531520151187xgc151520151187xgc1511PDM_TABL_INDX_DEPND_LISTPDMDependent Object list of index %PARENT%Dependent Object list of index %PARENT%Dependent Object list of index %PARENT%1-40 Name
-40 Code
-20 ClassName
5B75C0D3-EA22-4653-B91A-D32411DDFA0F1520151187xgc151520151187xgc15Arial1051353106057D80BF1-B539-46B7-9AA2-5ED90696449D1520151187xgc151520151187xgc15Times New Roman1021415181182CB79D12-0E4D-4FEF-A6B5-7AD3A3BE2B231520151187xgc151520151187xgc15Times New Roman10115181182798DA78-3092-40B1-AE35-D9110D9548C51520151187xgc151520151187xgc15AFBA88EB-795D-4217-8BFA-A7004810E8C21520151187xgc151520151187xgc1511PDM_TABL_INDX_EXA_LISTPDMExtended Attribute List of index %PARENT%Extended Attribute List of index %PARENT%Extended Attribute List of index %PARENT%1-30 Name
-20 DataType
-20 Value
-30 TargetName
0EA7A3F7-E00C-4353-A68D-7D6070EBC23F1520151187xgc151520151187xgc15Arial10513531060A4E119FF-442F-461C-BD9C-953C65BDC8341520151187xgc151520151187xgc15Times New Roman10214151811836408750-C9C0-4A5A-A5B0-A7B9FB9640161520151187xgc151520151187xgc15Times New Roman101151811876A0F303-5933-4B71-93DD-147EAB32DEBF1520151187xgc151520151187xgc15FA9EED4B-8680-49FA-86B0-D9B32BC0E7991520151187xgc151520151187xgc15Arial10513531060D8CD8B6D-A5D9-458A-9FDB-F0013686F5331520151187xgc151520151187xgc1511PDM_TABL_TRGR_LISTPDMTrigger list of the table %PARENT%Trigger list of the table %PARENT%Trigger list of the table %PARENT%1-50 Name
-50 Code
46B7D9F8-25CA-4C39-8099-F5250E7C3AF31520151187xgc151520151187xgc15Arial1051353106031D0407F-982F-42A1-8DE0-92FEB676EDD81520151187xgc151520151187xgc15Times New Roman1021415181186B18CEF2-266D-4FF6-9F04-E5FBBD4B93311520151187xgc151520151187xgc15Times New Roman10115181184B167012-EF61-4817-AF56-63BDDBBA34151520151187xgc151520151187xgc15FDF19855-A8D1-44B7-97AA-9DC0D297FFEC1520151187xgc151520151187xgc1511PDM_TABL_TRGR_GROUPPDMTrigger %ITEM% of table %PARENT%Trigger %ITEM% of table %PARENT%Trigger %ITEM% of table %PARENT%F9FACE19-A4DF-4B8C-91E4-8C4360E3486C1520151187xgc151520151187xgc1511PDM_TABL_TRGR_CARDPDMCard of the trigger %ITEM% of the table %PARENT%Card of the trigger %ITEM% of the table %PARENT%Card of the trigger %ITEM% of the table %PARENT%Name
Code
Generated
Table
TriggerTemplate
UserDefinedSQL
29A008AD-0F0C-44F9-AD11-75B489A438981520151187xgc151520151187xgc15Arial1051353106055A98446-FA90-40A4-93BC-FA1C062CE6201520151187xgc151520151187xgc15Times New Roman102133151821188ED23B2A-5EDA-4E8C-8EA5-CA5FF859CA361520151187xgc151520151187xgc15Times New Roman10115182118781A4703-F3F4-4B9A-889B-4E2A8405E8541520151187xgc151520151187xgc1511PDM_TABL_TRGR_DESCPDMDescription of trigger %ITEM% of table %PARENT%Description of trigger %ITEM% of table %PARENT%Description of trigger %ITEM% of table %PARENT%8FD37192-63B1-4030-9EF2-F9002DBF2EAF1520151187xgc151520151187xgc15Arial105135310605FD17B6A-A8E4-48FE-B6C6-0F4CADFA5B8E1520151187xgc151520151187xgc15Times New Roman101019F17E6E-AE64-443F-B62C-32DCEFF6D74B1520151187xgc151520151187xgc1511PDM_TABL_TRGR_NOTEPDMAnnotation of trigger %ITEM% of table %PARENT%Annotation of trigger %ITEM% of table %PARENT%Annotation of trigger %ITEM% of table %PARENT%B042ADD7-8631-4F35-A711-DAD53155AFAE1520151187xgc151520151187xgc15Arial10513531060C8DFDDF3-ED6B-4A32-99EE-7FF0AE73F0891520151187xgc151520151187xgc15Times New Roman101087941272-924B-4086-ADE3-52534688C4C31520151187xgc151520151187xgc1511PDM_TABL_TRGR_PREVPDMCode preview of %ITEM%Code preview of %ITEM%Code preview of %ITEM%1C91690D-533A-4D99-96BE-EB83A538923C1520151187xgc151520151187xgc15Arial1051353106072FAF641-77A6-4798-B14A-8695609C6B5B1520151187xgc151520151187xgc15Times New Roman10103537AE2F-D469-48C1-9110-52900301B6D11520151187xgc151520151187xgc1511PDM_TABL_TRGR_EXA_LISTPDMExtended Attribute List of trigger %PARENT%Extended Attribute List of trigger %PARENT%Extended Attribute List of trigger %PARENT%1-30 Name
-20 DataType
-20 Value
-30 TargetName
2BE71A2E-446D-48D7-B53B-D792C1FBBFF11520151187xgc151520151187xgc15Arial105135310602E396F20-544A-4779-B518-910D29EEF9411520151187xgc151520151187xgc15Times New Roman10214151811824B7F7F0-001B-429A-86B1-22D6E2BD10F31520151187xgc151520151187xgc15Times New Roman101151811801BDD309-7646-4A47-A565-D19183FBEA2B1520151187xgc151520151187xgc151C0CD79D-7554-4ABD-8CE9-1777B34583EC1520151187xgc151520151187xgc15Arial105135310606B1D9D7C-781B-41A2-96CF-2A607620406A1520151187xgc151520151187xgc1511PDM_TABL_CMAP_LISTPDMMapping list of the table %PARENT%Mapping list of the table %PARENT%Mapping list of the table %PARENT%1-50 Name
-50 Code
8943D873-2DF8-4989-9AAC-B85CACF6DECA1520151187xgc151520151187xgc15Arial1051353106078A86BDA-3C2A-4D5A-AA1A-3D0A7DE4B4AF1520151187xgc151520151187xgc15Times New Roman102141518118B7391239-FFAA-40F5-9DC7-998A838D452E1520151187xgc151520151187xgc15Times New Roman101151811824AC25FA-2CC2-419D-AF98-03908D18F4CE1520151187xgc151520151187xgc159D6AF91B-E9EB-49CC-9B38-30B2BA3586891520151187xgc151520151187xgc1511PDM_TABL_CMAP_GROUPPDMMapping %ITEM% of table %PARENT%Mapping %ITEM% of table %PARENT%Mapping %ITEM% of table %PARENT%C2838D98-0D7D-43C4-970C-74E0787F322F1520151187xgc151520151187xgc1511PDM_TABL_CMAP_CARDPDMCard of the mapping %ITEM% of the table %PARENT%Card of the mapping %ITEM% of the table %PARENT%Card of the mapping %ITEM% of the table %PARENT%Name
Code
90C5FD16-7A61-42F4-B15C-BB3B2AD31FD81520151187xgc151520151187xgc15Arial105135310606EBEFC15-05FA-4DD2-9E98-96EFC282F45E1520151187xgc151520151187xgc15Times New Roman10213315182118F94BA990-03CE-459D-A0B3-EAC374573E0E1520151187xgc151520151187xgc15Times New Roman10115182118E0ED34BF-79CE-409E-9BF4-D07BBBB2CC581520151187xgc151520151187xgc1511PDM_TABL_CMAP_CRTRPDMCriteria of mapping %ITEM% of table %PARENT%Criteria of mapping %ITEM% of table %PARENT%Criteria of mapping %ITEM% of table %PARENT%4F93EAE7-B52E-4318-9A68-2F5C8ADBDA1B1520151187xgc151520151187xgc15Arial10513531060050B9FB3-1C69-44DA-9BFE-68479D3731261520151187xgc151520151187xgc15Times New Roman1010DFF4D900-06C5-44EC-B640-1C629628DE0E1520151187xgc151520151187xgc1511PDM_TABL_CMAP_EXPRPDMSource expression of mapping %ITEM% of table %PARENT%Source expression of mapping %ITEM% of table %PARENT%Source expression of mapping %ITEM% of table %PARENT%7E0E09FA-8AAA-4221-9283-CAA94182F0AD1520151187xgc151520151187xgc15Arial10513531060F5BCB16F-8665-41CE-8CC0-D8D77105A89A1520151187xgc151520151187xgc15Times New Roman1010A0A4AA39-FC0F-4E57-8B4B-6D4CD2671F411520151187xgc151520151187xgc1511PDM_TABL_CMAP_SFEA_LISTPDMColumn mapping list of %PARENT%Column mapping list of %PARENT%Column mapping list of %PARENT%1-50 Column
-50 MappedTo
1DF9CB73-C67F-4269-84AC-C6DF2D5B83A31520151187xgc151520151187xgc15Arial105135310605575C57B-7D51-4779-AB2A-87EDAEDA08D81520151187xgc151520151187xgc15Times New Roman102141518118EF1F1619-4D01-46DA-B484-7D5C73238A971520151187xgc151520151187xgc15Times New Roman1011518118AB5C4A72-955C-406D-9681-2F12B0C969FE1520151187xgc151520151187xgc15A5E47DE3-905D-48C2-BD2E-9DAA974E9B341520151187xgc151520151187xgc1511PDM_TABL_CMAP_SCRC_LISTPDMTable sources list of mapping %PARENT%Table sources list of mapping %PARENT%Table sources list of mapping %PARENT%1-50 Name
-50 Code
09A86C87-3A70-49CF-84B4-F2861BDA84E31520151187xgc151520151187xgc15Arial105135310601414C752-6293-4BA6-AFA2-9046A51862DE1520151187xgc151520151187xgc15Times New Roman102141518118003D878A-82E5-498C-B4B0-F40CBB0053801520151187xgc151520151187xgc15Times New Roman101151811822804F10-B622-42F6-842A-A13A987F6E5D1520151187xgc151520151187xgc154B5E4FDD-4928-48E0-9679-7D904192C3271520151187xgc151520151187xgc15Arial1051353106094D1D95E-0326-4957-91D2-85EFECBDE33A1520151187xgc151520151187xgc15Arial105135310607C7546E6-76AA-4D31-9481-D09CA48B9CE91520151187xgc151520151187xgc15Arial10513531060DC861F22-3700-4DF7-B784-1B77CCF962581520151187xgc151520151187xgc151PAGEBREAKPDM7B57D1B2-DF2B-4F60-8E43-F56DC1F818281520151187xgc151520151187xgc15Arial10514231060B8E67C95-DFB6-4020-AFC2-43B0528842B41520151187xgc151520151187xgc1511TITLEPDMReferences54CFBC79-69D9-4D2E-A200-310030212D381520151187xgc151520151187xgc1511TITLEPDMModel level references137632D7-DB0B-4739-8210-557AEFE534FD1520151187xgc151520151187xgc1511PDM_REFR_TITLEPDMReference %ITEM%Reference %ITEM%Reference %ITEM%C19EC3FB-E719-4FE2-8639-98DFE27382521520151187xgc151520151187xgc1511PDM_REFR_CARDPDMCard of the reference %ITEM%Card of the reference %ITEM%Card of the reference %ITEM%Name
Code
ParentTable
ChildTable
715A044D-ADB4-4837-9086-69161FFEC3E41520151187xgc151520151187xgc15Arial10513531060AED25EC1-E4FB-4505-A5A1-EF98D2CDCD741520151187xgc151520151187xgc15Times New Roman1021331518211880E7489B-072F-4AAF-A190-67A764E9289C1520151187xgc151520151187xgc15Times New Roman101151821189988A862-D86A-4511-8EE4-4D588C76B91B1520151187xgc151520151187xgc1511PDM_REFR_DESCPDMDescription of reference %ITEM%Description of reference %ITEM%Description of reference %ITEM%A153505B-51E1-4233-A5A1-5406AE40EE2D1520151187xgc151520151187xgc15Arial10513531060AE5AE5B4-B332-44FB-94E0-F955ED5B48A61520151187xgc151520151187xgc15Times New Roman10103A93213A-F477-4312-BA70-21341364EC951520151187xgc151520151187xgc1511PDM_REFR_NOTEPDMAnnotation of reference %ITEM%Annotation of reference %ITEM%Annotation of reference %ITEM%0851FD2B-9FBB-47E3-BD48-6EF515AA172B1520151187xgc151520151187xgc15Arial10513531060EBBCC0D7-0348-40C2-9BE3-75A514C1E7751520151187xgc151520151187xgc15Times New Roman1010D6293FCC-2C21-42ED-A867-5CEAFFB6C6E61520151187xgc151520151187xgc1511PDM_REFR_PREVPDMCode preview of %ITEM%Code preview of %ITEM%Code preview of %ITEM%DA94F163-E3D5-4119-9417-31A10BCC4BB01520151187xgc151520151187xgc15Arial1051353106030C448C4-D12A-4C64-9B86-7382CF6BEABD1520151187xgc151520151187xgc15Times New Roman1010878ED414-10C2-4C2A-97BF-2A703E11DE901520151187xgc151520151187xgc1511PDM_REFR_DIAG_LISTPDMList of diagrams containing reference %PARENT%List of diagrams containing reference %PARENT%List of diagrams containing reference %PARENT%1-50 Name
-50 Code
861D7376-B9FB-4825-99E8-180250B29CA31520151187xgc151520151187xgc15Arial10513531060FF75633E-6E59-4761-A617-4DA3D260CEAA1520151187xgc151520151187xgc15Times New Roman102141518118F275B88D-CFF9-4B87-BDBC-C3B1FEFBECF31520151187xgc151520151187xgc15Times New Roman101151811806B1B345-A832-4F8F-BA6B-D09C54B9B0581520151187xgc151520151187xgc15658EEEDE-A9C6-4214-9FC5-4D71CD7257511520151187xgc151520151187xgc1511PDM_REFR_JOIN_LISTPDMReference join list for reference %PARENT%Reference join list for reference %PARENT%Reference join list for reference %PARENT%1-50 ParentTableColumn
-50 ChildTableColumn
7229EA17-777B-45BA-9CFF-678B277139321520151187xgc151520151187xgc15Arial10513531060A2ED70A4-95C5-4E50-B66F-1981D083C6E21520151187xgc151520151187xgc15Times New Roman1021415181189012A4EA-2B2E-4839-886E-0E1D3D3136D91520151187xgc151520151187xgc15Times New Roman10115181182625E506-0C76-440B-9849-B2A17F366CDD1520151187xgc151520151187xgc15DDC19BD2-037D-4E20-B1C5-23CC2F81832D1520151187xgc151520151187xgc1511PDM_REFR_RULE_LISTPDMBusiness rule list for reference %PARENT%Business rule list for reference %PARENT%Business rule list for reference %PARENT%140 Name
-40 Code
-20 Type
0BD77A38-F16A-41E3-8A66-DAAB851033BB1520151187xgc151520151187xgc15Arial105135310604C7599D8-A3C2-4978-BF99-16F734DBD1D01520151187xgc151520151187xgc15Times New Roman102141518118DA575D97-8BBE-41AC-B30F-C47ACBA36F5D1520151187xgc151520151187xgc15Times New Roman101151811883DFBBFC-24F5-48A1-B0CA-CEE46BB2889E1520151187xgc151520151187xgc155D44ECB0-F379-4DD5-9ACA-1DAD8E8DD4AC1520151187xgc151520151187xgc1511PDM_REFR_DEPND_LISTPDMDependent Object list of reference %PARENT%Dependent Object list of reference %PARENT%Dependent Object list of reference %PARENT%1-40 Name
-40 Code
-20 ClassName
628E7FEB-DFB6-4D8A-930D-81314AB3FB3F1520151187xgc151520151187xgc15Arial10513531060B7043CB7-4B01-40FE-939D-F6FFB98E25AD1520151187xgc151520151187xgc15Times New Roman1021415181181BD94DA2-515E-470C-9344-D2E9AD15134F1520151187xgc151520151187xgc15Times New Roman10115181183532D74F-C9FC-41E1-8D2C-9C0BEBD193E81520151187xgc151520151187xgc1536BED4BA-6B4C-4414-BE78-439C04F569BE1520151187xgc151520151187xgc1511PDM_REFR_EXA_LISTPDMExtended Attribute List of reference %PARENT%Extended Attribute List of reference %PARENT%Extended Attribute List of reference %PARENT%1-30 Name
-20 DataType
-20 Value
-30 TargetName
B873E81E-737F-4F78-90FE-53EEA664F9621520151187xgc151520151187xgc15Arial105135310608BCAC1DF-ACD4-4F3D-A8A9-D5E0807A611A1520151187xgc151520151187xgc15Times New Roman1021415181183CF30E71-20DB-49E5-BC6D-446CEFEAFFF41520151187xgc151520151187xgc15Times New Roman10115181187E9C2AE6-C1D7-49D0-AD24-53C160A39D331520151187xgc151520151187xgc15EA8CD7B3-F643-4AD0-B9C0-07655E6A55641520151187xgc151520151187xgc15Arial10513531060E40D27D0-1CE0-4378-AF27-A80E542949071520151187xgc151520151187xgc15Arial10514231060CA00E6AA-1909-4A53-9CAA-B77E8915330F1520151187xgc151520151187xgc1511PDM_PCKG_TITLEPDMPackage %ITEM%Package %ITEM%References from Package %ITEM%10B8BD47E-9453-487D-8D73-94AF32F4BDF01520151187xgc151520151187xgc1511PDM_REFR_TITLEPDMReference %ITEM%Reference %ITEM%Reference %ITEM%0151F1FB-A91A-4F45-BC93-C82BDDB193681520151187xgc151520151187xgc1511PDM_REFR_CARDPDMCard of the reference %ITEM%Card of the reference %ITEM%Card of the reference %ITEM%Name
Code
ParentTable
ChildTable
C5911253-87DA-4A03-813E-A931B7CA3E5B1520151187xgc151520151187xgc15Arial1051353106057501C16-6514-4EFA-89B9-F7F68B9213F41520151187xgc151520151187xgc15Times New Roman10213315182118D6C0B9F7-6921-4AD5-AD23-A9E9A3F1E3161520151187xgc151520151187xgc15Times New Roman10115182118DAD120C1-75AF-4BBD-B8EC-6E0A4AC983701520151187xgc151520151187xgc1511PDM_REFR_DESCPDMDescription of reference %ITEM%Description of reference %ITEM%Description of reference %ITEM%312C44E0-B0FA-4884-9B82-3C049F76A5431520151187xgc151520151187xgc15Arial105135310609D6B3FAB-C781-4B49-AD96-976DA587F2A91520151187xgc151520151187xgc15Times New Roman101058AE6DE2-1595-40A5-B12C-595DF8367F1E1520151187xgc151520151187xgc1511PDM_REFR_NOTEPDMAnnotation of reference %ITEM%Annotation of reference %ITEM%Annotation of reference %ITEM%7E1AF600-CC64-4792-9BFC-F2D4DE305FEF1520151187xgc151520151187xgc15Arial1051353106020C5F302-5D63-4556-ACB0-1051C3CA959F1520151187xgc151520151187xgc15Times New Roman10107CDCB967-2644-4A7B-8BD6-B6DB256054AA1520151187xgc151520151187xgc1511PDM_REFR_PREVPDMCode preview of %ITEM%Code preview of %ITEM%Code preview of %ITEM%B7AC1F61-1080-43BB-9525-0A9CF95AD3AD1520151187xgc151520151187xgc15Arial1051353106091B9657A-ADAA-4209-A0B0-3E7F4E526C9C1520151187xgc151520151187xgc15Times New Roman1010943C74B7-B891-4A3C-85D4-63663A5E36831520151187xgc151520151187xgc1511PDM_REFR_DIAG_LISTPDMList of diagrams containing reference %PARENT%List of diagrams containing reference %PARENT%List of diagrams containing reference %PARENT%1-50 Name
-50 Code
D7D88508-161E-4ACD-846F-2502B64ECE911520151187xgc151520151187xgc15Arial10513531060A3B60F4B-1F6D-4FEC-A64B-3D05DE08E2181520151187xgc151520151187xgc15Times New Roman102141518118C88210DA-6AC7-41F8-A6FD-6A6ADC130A121520151187xgc151520151187xgc15Times New Roman10115181187BC4BF76-2CD7-405D-8435-FAAAEDF7BA001520151187xgc151520151187xgc15FFB65DEC-E601-40DC-959E-C5B3C90BC6B81520151187xgc151520151187xgc1511PDM_REFR_JOIN_LISTPDMReference join list for reference %PARENT%Reference join list for reference %PARENT%Reference join list for reference %PARENT%1-50 ParentTableColumn
-50 ChildTableColumn
8D1EA1C1-8894-46CE-A2A9-3E87E7CA32681520151187xgc151520151187xgc15Arial10513531060B25BF302-CB57-41C0-98FA-09A1684D6B581520151187xgc151520151187xgc15Times New Roman1021415181187FAB3D09-8819-45D6-8EA3-EB478F03D5AD1520151187xgc151520151187xgc15Times New Roman101151811819641722-4DD3-41D5-964E-724C5D1F9E981520151187xgc151520151187xgc15EACE22B6-4267-4D41-89C3-1ED7F00A6D761520151187xgc151520151187xgc1511PDM_REFR_RULE_LISTPDMBusiness rule list for reference %PARENT%Business rule list for reference %PARENT%Business rule list for reference %PARENT%140 Name
-40 Code
-20 Type
F51D4CF9-258C-4B67-8EB0-A447CA5C30E11520151187xgc151520151187xgc15Arial10513531060ECDB68B1-EB25-41A4-8FEA-A6F5B304E7721520151187xgc151520151187xgc15Times New Roman102141518118C10B3F73-0BD8-4108-999A-775CE8B348291520151187xgc151520151187xgc15Times New Roman1011518118F95EFCEE-71E3-4077-AEFE-CF20F6A4C4831520151187xgc151520151187xgc1599D71A7F-EED6-4A37-B0AB-8F3601CB19B81520151187xgc151520151187xgc1511PDM_REFR_DEPND_LISTPDMDependent Object list of reference %PARENT%Dependent Object list of reference %PARENT%Dependent Object list of reference %PARENT%1-40 Name
-40 Code
-20 ClassName
48464DC2-9AC0-49BA-83DE-968E235FDECB1520151187xgc151520151187xgc15Arial105135310602532FF09-F30D-4E2C-9CAD-25C7E22FE7E01520151187xgc151520151187xgc15Times New Roman102141518118AC752B4C-180B-400A-9A97-11E7B0268CBD1520151187xgc151520151187xgc15Times New Roman101151811850CA876F-B706-4BD2-9DCA-B6F25D16A1E31520151187xgc151520151187xgc1599614512-26FE-46CF-90CB-A5787E46BBEA1520151187xgc151520151187xgc1511PDM_REFR_EXA_LISTPDMExtended Attribute List of reference %PARENT%Extended Attribute List of reference %PARENT%Extended Attribute List of reference %PARENT%1-30 Name
-20 DataType
-20 Value
-30 TargetName
4F81922C-D36E-4010-B950-E5C6A21B7BE91520151187xgc151520151187xgc15Arial10513531060D2AFB262-A5F3-4871-875B-38EF097FA9F31520151187xgc151520151187xgc15Times New Roman10214151811891875C27-9FBF-4B37-A225-878CA61C01271520151187xgc151520151187xgc15Times New Roman1011518118DD90EB2E-6B1A-47CD-9B42-4E350B8376B21520151187xgc151520151187xgc154633929D-BBCC-4382-899E-8E788F2783611520151187xgc151520151187xgc15Arial105135310608788514B-8CF7-4619-AA18-14756F23309F1520151187xgc151520151187xgc15Arial1051353106049AE045C-E443-4976-BDA5-40B3B7F1324B1520151187xgc151520151187xgc151PAGEBREAKPDM7D1E19C0-5CC5-4F26-B401-475E4C8BD72E1520151187xgc151520151187xgc15Arial105142310608DD734E4-CF30-4EDD-B84B-D21DE39F029A1520151187xgc151520151187xgc1511TITLEPDMViewsAF6D7EFB-A8D0-40E9-8021-EC1BB6B7CF811520151187xgc151520151187xgc1511TITLEPDMModel level views753CB2B9-3AC4-4048-BFD3-23905ABF30741520151187xgc151520151187xgc1511PDM_VIEW_TITLEPDMView %ITEM%View %ITEM%View %ITEM%63142F7E-4507-4430-AB58-5C3D650349EE1520151187xgc151520151187xgc1511PDM_VIEW_CARDPDMCard of the view %ITEM%Card of the view %ITEM%Card of the view %ITEM%Name
Code
052F4211-8A4D-4109-939D-F76490B29D161520151187xgc151520151187xgc15Arial105135310604E398A21-4076-448D-9E29-706388FF9BD21520151187xgc151520151187xgc15Times New Roman102133151821189E8410C6-ABBB-42F9-B3B6-7AD4F01B14441520151187xgc151520151187xgc15Times New Roman101151821188A442524-E50B-41CC-9F21-007D937056EF1520151187xgc151520151187xgc1511PDM_VIEW_DESCPDMDescription of view %ITEM%Description of view %ITEM%Description of view %ITEM%9CB73691-CD26-41CF-8D8D-69FFD8F340581520151187xgc151520151187xgc15Arial105135310604A202D32-E7C3-4890-A21F-1ADC3248F0481520151187xgc151520151187xgc15Times New Roman101061D3FACB-DF43-43E7-B2AB-25D2123F4FA61520151187xgc151520151187xgc1511PDM_VIEW_NOTEPDMAnnotation of view %ITEM%Annotation of view %ITEM%Annotation of view %ITEM%2E17353D-A119-47B7-9EAA-39EDCE4FAE3F1520151187xgc151520151187xgc15Arial10513531060FFE8F12B-02EC-4598-A52C-D76EE5E80D421520151187xgc151520151187xgc15Times New Roman101064F18370-845C-4C13-BDBF-1E68CF2193171520151187xgc151520151187xgc1511PDM_VIEW_SQLPDMSQL Query of view %ITEM%SQL Query of view %ITEM%SQL Query of view %ITEM%1C979C27-076E-44A8-8C79-0034C2097BF01520151187xgc151520151187xgc15Arial105135310604D83B429-A674-411E-9C03-C7410DDE19C71520151187xgc151520151187xgc15Times New Roman1010EDE4C060-F9DB-4053-AF2A-2508E400CB121520151187xgc151520151187xgc1511PDM_VIEW_PREVPDMCode preview of %ITEM%Code preview of %ITEM%Code preview of %ITEM%2C21FBF9-7399-4EF7-AB24-7A5F7795D5761520151187xgc151520151187xgc15Arial10513531060C0B1B372-3C66-491C-AA8C-0CF51B876F621520151187xgc151520151187xgc15Times New Roman101032ABB1C6-B576-47E2-93E7-CD51A8A2B2EC1520151187xgc151520151187xgc1511PDM_VIEW_DIAG_LISTPDMList of diagrams containing view %PARENT%List of diagrams containing view %PARENT%List of diagrams containing view %PARENT%1-50 Name
-50 Code
712AFC6E-64AA-4B30-93A8-17DB4983C8841520151187xgc151520151187xgc15Arial10513531060DA2DA555-17A2-4704-85D2-86B3BD410DBC1520151187xgc151520151187xgc15Times New Roman10214151811874345BFE-B0F5-4381-B1EA-B3113B6FF2351520151187xgc151520151187xgc15Times New Roman101151811815128A1F-D5E8-489F-9CF7-6B7D61CDF63F1520151187xgc151520151187xgc15D7FC2888-FB89-4E56-A973-58C5D20DD4AD1520151187xgc151520151187xgc1511PDM_VIEW_RULE_LISTPDMBusiness rule list for view %PARENT%Business rule list for view %PARENT%Business rule list for view %PARENT%1-40 Name
-40 Code
-20 Type
64EF05CA-6067-43FD-8EFC-3A6F70110D321520151187xgc151520151187xgc15Arial105135310606F795DC0-180A-45E2-91C1-58238A44C4AE1520151187xgc151520151187xgc15Times New Roman1021415181182246D278-C502-477F-B5AD-FBEF72423D991520151187xgc151520151187xgc15Times New Roman101151811834936B9C-EE1C-4700-9551-161A0800D5D21520151187xgc151520151187xgc1546950520-9FC2-4E66-A00C-6E73393AE40B1520151187xgc151520151187xgc1511PDM_VIEW_DEPND_LISTPDMDependent Object list of view %PARENT%Dependent Object list of view %PARENT%Dependent Object list of view %PARENT%1-40 Name
-40 Code
-20 ClassName
F2868E15-C9D1-4680-BA40-C8F41CAB59571520151187xgc151520151187xgc15Arial10513531060090E1620-2697-45CA-939E-E8FBA391D0521520151187xgc151520151187xgc15Times New Roman1021415181181E9B7887-AE29-4532-8274-2BA92C9A4F491520151187xgc151520151187xgc15Times New Roman1011518118F9693C75-C74F-46AA-BE17-691245D576A51520151187xgc151520151187xgc15C5F0381B-9E38-4D7D-BB59-51AA83FABA311520151187xgc151520151187xgc1511PDM_VIEW_EXA_LISTPDMExtended Attribute List of view %PARENT%Extended Attribute List of view %PARENT%Extended Attribute List of view %PARENT%1-30 Name
-20 DataType
-20 Value
-30 TargetName
079E78F3-0E2E-4A6C-A2B3-AA0D2C27A1F51520151187xgc151520151187xgc15Arial10513531060D7009DE8-DC01-4506-B760-F422F1DAF1C81520151187xgc151520151187xgc15Times New Roman10214151811880FE5F80-159E-42C8-B5C7-B4E4B1AF978F1520151187xgc151520151187xgc15Times New Roman10115181184CED98E1-F056-4881-9E2D-4BC04DD239B51520151187xgc151520151187xgc15CE596463-AAC9-4C7F-977C-3A001FA4CDC61520151187xgc151520151187xgc1511PDM_VIEW_USRDEPD_LISTPDMExtended Dependency list of view %PARENT%Extended Dependency list of view %PARENT%Extended Dependency list of view %PARENT%1-33 Stereotype
-33 InfluentObject
-33 InfluentObjectType
469D7855-4573-4883-AE92-2B89365D500A1520151187xgc151520151187xgc15Arial10513531060157DA92A-07D8-4A8D-8F3B-71C64C3982EC1520151187xgc151520151187xgc15Times New Roman102141518118A66918C6-CF2C-4DD2-A534-FF1DDB3F0E0D1520151187xgc151520151187xgc15Times New Roman10115181184CE98770-841E-4651-8EC0-ED392D974B7A1520151187xgc151520151187xgc151B084F34-B2D5-433E-BC4F-D08BBDA110CA1520151187xgc151520151187xgc15Arial10513531060F0443B15-278E-4381-9CBE-633C48FE8FF31520151187xgc151520151187xgc15Arial105142310600BC335A2-E42E-42C2-9EAF-44259CB7B5C41520151187xgc151520151187xgc1511PDM_PCKG_TITLEPDMPackage %ITEM%Package %ITEM%Views from Package %ITEM%12491A54C-3339-4269-A1D1-CEDC43D3F24D1520151187xgc151520151187xgc1511PDM_VIEW_TITLEPDMView %ITEM%View %ITEM%View %ITEM%2241F318-89E3-4343-8221-F3AD38E5DBA81520151187xgc151520151187xgc1511PDM_VIEW_CARDPDMCard of the view %ITEM%Card of the view %ITEM%Card of the view %ITEM%Name
Code
2AB4F98D-DD3C-4BE3-BB7E-61866C00F6151520151187xgc151520151187xgc15Arial1051353106084018A10-15C8-4D33-8FA2-F48356414F6C1520151187xgc151520151187xgc15Times New Roman102133151821185D401759-244D-4E26-AF43-FBF31BA70C051520151187xgc151520151187xgc15Times New Roman10115182118123731A7-F712-4287-8806-D335F6C48B581520151187xgc151520151187xgc1511PDM_VIEW_DESCPDMDescription of view %ITEM%Description of view %ITEM%Description of view %ITEM%61676F88-9A23-4C6C-9C37-0BFECF09388F1520151187xgc151520151187xgc15Arial10513531060BF83CC81-4B4A-4A19-8081-50F8B62184271520151187xgc151520151187xgc15Times New Roman10100C45EDCC-0016-4A1C-9F89-97D5C9531EA01520151187xgc151520151187xgc1511PDM_VIEW_NOTEPDMAnnotation of view %ITEM%Annotation of view %ITEM%Annotation of view %ITEM%AE108F8E-8D89-4AB8-9AB2-B3A3BE470B501520151187xgc151520151187xgc15Arial10513531060FEE60422-3669-4D6D-A1D9-B196ED9072C61520151187xgc151520151187xgc15Times New Roman10104E1D94FF-A431-457E-B8CD-F9C612FD3A181520151187xgc151520151187xgc1511PDM_VIEW_SQLPDMSQL Query of view %ITEM%SQL Query of view %ITEM%SQL Query of view %ITEM%EE530644-48B9-4B74-9CCC-DAC02D8395C21520151187xgc151520151187xgc15Arial1051353106057A1E7F7-D66B-433A-B036-79553AF53BDD1520151187xgc151520151187xgc15Times New Roman10108B7BFEB9-D797-49D8-A303-9060C75A167B1520151187xgc151520151187xgc1511PDM_VIEW_PREVPDMCode preview of %ITEM%Code preview of %ITEM%Code preview of %ITEM%DC507A7B-68B3-4EE7-8D1C-0B7D9A731A231520151187xgc151520151187xgc15Arial10513531060039DAF1B-F29A-468C-894B-BF21983957341520151187xgc151520151187xgc15Times New Roman1010F373E61D-9DF6-40B5-A891-75222AA7EBCE1520151187xgc151520151187xgc1511PDM_VIEW_DIAG_LISTPDMList of diagrams containing view %PARENT%List of diagrams containing view %PARENT%List of diagrams containing view %PARENT%1-50 Name
-50 Code
099A5800-6BA3-4F18-A6C5-11FA13CF34481520151187xgc151520151187xgc15Arial10513531060FE2174AE-55EA-4F61-B3FD-BF35706A786E1520151187xgc151520151187xgc15Times New Roman102141518118A7F90FC8-D7D2-46BF-B422-7E55E21AF8931520151187xgc151520151187xgc15Times New Roman1011518118F36B6798-DF8D-4F38-B6FE-25C3857137E41520151187xgc151520151187xgc15BAC99D7B-9158-43F2-A163-E720914E00E41520151187xgc151520151187xgc1511PDM_VIEW_RULE_LISTPDMBusiness rule list for view %PARENT%Business rule list for view %PARENT%Business rule list for view %PARENT%1-40 Name
-40 Code
-20 Type
B294E570-60FC-4247-B45F-4FAC660C15221520151187xgc151520151187xgc15Arial105135310602A6BA9EC-EEEC-4E07-9F26-7CBE79DEC29A1520151187xgc151520151187xgc15Times New Roman10214151811824652BD2-A61C-415A-B833-0762FCD7A8071520151187xgc151520151187xgc15Times New Roman1011518118BC3386A9-7483-440B-893D-8B3CF23332E21520151187xgc151520151187xgc15D082A43D-8864-4826-A552-FF042F9A64121520151187xgc151520151187xgc1511PDM_VIEW_DEPND_LISTPDMDependent Object list of view %PARENT%Dependent Object list of view %PARENT%Dependent Object list of view %PARENT%1-40 Name
-40 Code
-20 ClassName
F3AF65C2-B7B1-4E54-AFF3-CCF7CF7B12791520151187xgc151520151187xgc15Arial105135310604EE232EE-E696-4912-8DAC-772EA8173F4F1520151187xgc151520151187xgc15Times New Roman1021415181188C8D70B8-6B0B-4C28-9130-A9EA5DE05AFC1520151187xgc151520151187xgc15Times New Roman101151811899258EDA-3091-4FFB-A728-3FE4D4D723271520151187xgc151520151187xgc15CD7E4684-B559-4939-B1D3-D57EE9BBBDEC1520151187xgc151520151187xgc1511PDM_VIEW_EXA_LISTPDMExtended Attribute List of view %PARENT%Extended Attribute List of view %PARENT%Extended Attribute List of view %PARENT%1-30 Name
-20 DataType
-20 Value
-30 TargetName
3E1E07AD-F83D-4297-BECE-DFE38E6AE6141520151187xgc151520151187xgc15Arial105135310600E4AC3E4-E3FB-4097-841E-E9492D0642A51520151187xgc151520151187xgc15Times New Roman10214151811823EC3C9B-CCEE-46D2-959F-C54628CECB241520151187xgc151520151187xgc15Times New Roman1011518118910B4850-5716-4259-BD54-1984E213B3301520151187xgc151520151187xgc15F2049227-1EB8-463E-A89C-94A7EDD466A21520151187xgc151520151187xgc1511PDM_VIEW_USRDEPD_LISTPDMExtended Dependency list of view %PARENT%Extended Dependency list of view %PARENT%Extended Dependency list of view %PARENT%1-33 Stereotype
-33 InfluentObject
-33 InfluentObjectType
873BA5AA-0008-45A0-8843-CF5D858AD2B81520151187xgc151520151187xgc15Arial105135310605135F69F-9E20-45C6-B619-7E7520958FFA1520151187xgc151520151187xgc15Times New Roman102141518118FAF94DE9-8F15-4E78-B174-21A563BFCD831520151187xgc151520151187xgc15Times New Roman101151811825FD696C-65A6-4B62-A685-B36A5821F6A11520151187xgc151520151187xgc15FC65EEED-87C0-4A8C-9DAC-FB0B085D63AA1520151187xgc151520151187xgc15Arial10513531060F6D5AA32-C177-43C5-BA57-AFD725EE9E7A1520151187xgc151520151187xgc15Arial10513531060253F3CFB-C227-47F7-9D3F-0814C335D8A91520151187xgc151520151187xgc15Arial10514231060FDFB2823-7213-47A0-B44D-754A46D2EA741520151187xgc151520151187xgc15Times New Roman1018FC988883-6324-474F-BD73-15E2BC532C791520151187xgc151520151187xgc15186373E7AD5389-8331-4BBD-9CDA-79468FF204B71520151187xgc151520151187xgc15Times New Roman10126CB94A64-F1A5-4A7C-9E36-935AF97299541520151187xgc151520151187xgc159549231360B31-5FC2-46CE-B630-EFCBF668DEF71520151187xgc151520151187xgc15190983563AD98D-E295-4070-9CF8-B4C08FC2C4A4Simplified ChineseZH-CN1520151187xgc151520151187xgc15F3A0BF0F-7536-11D5-A4D6-0008C79B4501585CBB37-C940-11D1-BD0D-00A02478ECC9F6286BA7-1961-4383-A9BF-DDE1FA1B644BBase_TableBase_Table1520151187xgc151520151187xgc15file:///.160EB092-2F96-4235-852F-052B990C5A86CDE44E21-9669-11D1-9914-006097355D9B152015242360F3F38A-27B8-4A5B-92FE-140B232919F7Report 4Report 41520151423xgc151520151423xgc15xgc15%DATE%LightBlue_Theme.cssHeader_LightBlue.htmlFooter_LightBlue.html541840Home_LightBlue.htmlLight BlueProfessional13D9F3DAF-8E85-4B9F-9858-EF7A6B477FF41520151423xgc151520151423xgc15新宋体1014423106150DC97FC0F-9794-4F0D-B4C8-5A853C1BC9101520151423xgc151520151423xgc15Microsoft Sans Serif1040E3826CC4-C8F8-4C12-9ABF-39F64E6D5BD5Section_201520151423xgc15160EB092-2F96-4235-852F-052B990C5A86%_HOME%\Resource Files\Report Templates\pdmstdus.rtp1TEMPLATEPDM%MODULE% %MODELNAME%Physical Data Model Base_Table0%APPNAME% %DATE% Page %PAGE%页脚0((800,899), (1100,899))((549,508), (660,635))(20998, 29698)1B8CA8D0-2A7D-4815-8F94-421CB3D3DAD81520151423xgc151520151423xgc151TBLCTSPDMD5E3F49E-A54E-4B83-8F6E-62379374C8E71520151423xgc151520151423xgc15Arial1051353106E8BCB5C3-93D2-41B7-8552-274B48C0DFB01520151423xgc151520151423xgc15Times New Roman101112B5389A-1124-471B-A42B-35370F0903DA1520151423xgc151520151423xgc15190983C5B65801-77FF-4BB2-8DDB-C68EC87E08171520151423xgc151520151423xgc15Times New Roman1013501B6C10035-E5C6-4428-AD53-64E44E9037561520151423xgc151520151423xgc15190983A848E846-D402-4F4E-93C6-8D3703DD29A11520151423xgc151520151423xgc15Times New Roman101700141D30052-CB1D-40D3-B76A-A0EBFAF7C97A1520151423xgc151520151423xgc151909838DAB616B-83EE-46E4-8923-E76BDA9EBD8A1520151423xgc151520151423xgc15Times New Roman101105014BA2F162-E532-4B29-BADA-BF06ADAE5EB41520151423xgc151520151423xgc151909833918C356-FE97-4169-88DF-FEFDE0E5E33E1520151423xgc151520151423xgc15Times New Roman1011400177FF76E6-FEFE-437C-B0B4-CA92B4D1909C1520151423xgc151520151423xgc151909839DF9107E-E6C5-4D6A-B2C5-4509E85B08E21520151423xgc151520151423xgc15Times New Roman101175010B35579F-D488-4D30-9A78-CE1D5F185BEA1520151423xgc151520151423xgc151909837C97F97D-FD64-4455-BEC8-6D8DB8C68E051520151423xgc151520151423xgc15Times New Roman101210018A1C97F6-A466-4AE3-B33E-D3ACD58E8F881520151423xgc151520151423xgc15190983CA196BBA-3C6D-47AF-8616-03FC76D627781520151423xgc151520151423xgc15Times New Roman10124501502587D1-F626-48BD-A7B1-FC016FD874FC1520151423xgc151520151423xgc1519098328D1E268-E83E-4C13-8346-307968FE7CA51520151423xgc151520151423xgc15Times New Roman101280013F503BA6-F026-45FB-86F5-54B4442A3B821520151423xgc151520151423xgc15190983DC80E0AF-F506-4DCA-8B0A-3BD13E4418281520151423xgc151520151423xgc1511TITLEPDMPDM DiagramsFE4A17AE-515C-4187-9468-FD7065D22A101520151423xgc151520151423xgc1511TITLEPDMModel level diagrams95AA42F5-14B0-4831-9546-95D4A86471011520151423xgc151520151423xgc1511PDM_DIAG_TITLEPDMDiagram %ITEM%Diagram %ITEM%Diagram %ITEM%886A004A-88CD-4E1D-AF04-12E1277A3EF31520151423xgc151520151423xgc151PDM_GRAPHICPDM1149EEBBE5-2F8A-4D14-A1F7-CDA485EDCAFF1520151423xgc151520151423xgc15Matrix Item Font Name2295946421916135310672D6949A-1920-4E12-A117-E17590F58CF61520151423xgc151520151423xgc15Arial10513531065CFE6B18-56AF-4B48-BEF4-325320A75C2A1520151423xgc151520151423xgc15Arial10514231067445232B-584F-4C6E-8A67-036BBAB17CDA1520151423xgc151520151423xgc1511PDM_PCKG_TITLEPDMPackage %ITEM%Package %ITEM%Package diagrams %ITEM%1B972C6E3-49BE-46C7-A544-2B6810028EE11520151423xgc151520151423xgc1511PDM_DIAG_TITLEPDMDiagram %ITEM%Diagram %ITEM%Diagram %ITEM%C4B43A54-017E-48EE-896E-15A0DC7D895D1520151423xgc151520151423xgc151PDM_GRAPHICPDM11A1CA2097-8704-419A-9BAC-D0383169B8BE1520151423xgc151520151423xgc15Matrix Item Font Name2295946421916135310670411870-07A2-4560-A78F-4D91F528B7971520151423xgc151520151423xgc15Arial1051353106ED12ECBB-2AC2-4AA5-AE00-112646FA9B881520151423xgc151520151423xgc15Arial1051353106A11D6604-21B9-48C6-A9A9-39C7C3F646FC1520151423xgc151520151423xgc151PAGEBREAKPDM5C1576E7-0482-42D7-9E92-BCC4C0A1D9B21520151423xgc151520151423xgc15Arial1051423106C3E473DC-CA87-4C13-979C-3C8A9F9852341520151423xgc151520151423xgc1511TITLEPDMModel level object lists3086143E-1CF6-461F-8929-93833F67076D1520151423xgc151520151423xgc1511TITLEPDMCommon Objects3EA05029-DC4F-47F9-86C1-C138537DAE2F1520151423xgc151520151423xgc1511PDM_MODEL_RULE_LISTPDMBusiness rule listBusiness rule listBusiness rule list1-40 Name
-40 Code
-20 Type
B6D917B3-07F9-462A-A6B0-CA81BDC2AE041520151423xgc151520151423xgc15Arial1051353106C91DD9EF-72B5-4646-82F4-C433019273BD1520151423xgc151520151423xgc15Times New Roman1021415181189E83D489-6B2B-405F-A426-9023B331F3FB1520151423xgc151520151423xgc15Times New Roman10115181183646E7F4-EC32-435C-B9AF-CB4FDD731EF31520151423xgc151520151423xgc15530CE16E-C148-4E9B-9D1C-F7226E4B76681520151423xgc151520151423xgc1511PDM_MODEL_DTSC_LISTPDMData source listData source listData source list1-50 Name
-50 Code
6622A397-AD25-41F3-930E-E7F468E5DD811520151423xgc151520151423xgc15Arial105135310601113BB66-7DF3-45DE-8795-ECF41D08F4981520151423xgc151520151423xgc15Times New Roman102141518118E6A77FCB-A220-4D6A-BF4A-B902C2F5C16C1520151423xgc151520151423xgc15Times New Roman1011518118728125B3-4088-448E-A474-01AE520B013F1520151423xgc151520151423xgc1500829659-ADD0-4876-B2B3-0BBADFBCEE3A1520151423xgc151520151423xgc1511PDM_MODEL_DIAG_LISTPDMDiagram listDiagram listDiagram list1-33 Name
-33 Code
65A67D0F-A916-463C-BA0E-E0AE641263461520151423xgc151520151423xgc15Arial105135310606B9B6AD8-2820-4FEE-9270-D37150F2078E1520151423xgc151520151423xgc15Times New Roman102141518118C135F826-84B0-49C6-A8EA-1D1B26F6589E1520151423xgc151520151423xgc15Times New Roman1011518118DB4BC2B9-6C10-40C4-8119-6FB8D294095C1520151423xgc151520151423xgc159B853CB0-C33C-46FF-940F-315CE53725BA1520151423xgc151520151423xgc1511PDM_MODEL_EXA_LISTPDMExtended Attribute listExtended Attribute listExtended Attribute list1-30 Name
-20 DataType
-20 Value
-30 TargetName
7CDEA038-83D3-4AF6-B02D-4152923BC51E1520151423xgc151520151423xgc15Arial105135310607D27EFAB-9783-4DD4-BE3F-833925F353F61520151423xgc151520151423xgc15Times New Roman10214151811821CD3147-6D45-4C29-B9EF-F46D518FBAF51520151423xgc151520151423xgc15Times New Roman1011518118C8FFB685-2F9D-4957-AB94-E1D8354D353E1520151423xgc151520151423xgc15B6C42FB0-D53D-4943-AA76-0309183B50351520151423xgc151520151423xgc1511PDM_MODEL_FILE_LISTPDMFiles listFiles listFiles list1-40 Name
-40 Location
-20 LocationType
01A3E993-D5E8-4FCF-95EA-9A7C088E72D51520151423xgc151520151423xgc15Arial10513531068952FB08-39A9-49CD-8EEC-79FC8AA71E1C1520151423xgc151520151423xgc15Times New Roman102141518118BBF54732-5AB2-4E48-A7E1-3C04C56566051520151423xgc151520151423xgc15Times New Roman1011518118080B810D-2CC3-404A-AA0F-42461CFB44491520151423xgc151520151423xgc15C39C2734-B831-4D32-BCAB-812234F51DE81520151423xgc151520151423xgc1511PDM_MODEL_PCKG_LISTPDMPackage listPackage listPackage list1-33 Name
-33 Code
-33 UseParentNamespace
ED8C6868-5C56-435D-BCB4-6614AD8A14041520151423xgc151520151423xgc15Arial10513531060A1EC30F4-08C7-4E80-93E6-D2C29D024FCC1520151423xgc151520151423xgc15Times New Roman102141518118D0EBC2B6-EC04-4215-8D05-49A85C7818CA1520151423xgc151520151423xgc15Times New Roman1011518118BF75CB6F-975E-4458-A6CD-099DADE53A9A1520151423xgc151520151423xgc1584F7E200-297F-4B97-AEC2-6A77F93A04891520151423xgc151520151423xgc15Arial10514231060A7A4F6B2-1352-4F88-A6AA-372CA64ADC201520151423xgc151520151423xgc1511TITLEPDMPhysical diagrams objects3D7F7C29-35AA-4725-94B2-689FCCFAAD7A1520151423xgc151520151423xgc1511PDM_MODEL_ADTS_LISTPDMAbstract Data Type listAbstract Data Type listAbstract Data Type list1-50 Name
-50 Code
38C2CA9B-B510-44F2-A7D1-FF95064E4C801520151423xgc151520151423xgc15Arial10513531060DABCE908-DA76-464A-A5FE-04CC556BA7491520151423xgc151520151423xgc15Times New Roman10214151811830EC900B-B046-4A96-8101-AE6C00CD8D6D1520151423xgc151520151423xgc15Times New Roman1011518118E644D6C2-C147-47D9-8FE1-A7A24DCAB3871520151423xgc151520151423xgc15F8F9F732-4319-4B7B-AFED-2844798D2E7E1520151423xgc151520151423xgc1511PDM_MODEL_TABL_COLN_LISTPDMTable columns listTable columns listTable columns list1-50 Name
-50 Code
398DF0A1-54D2-4B7F-B558-C5E692C3E2071520151423xgc151520151423xgc15Arial105135310607EE4344E-002A-4C8F-B6A3-2E801156172E1520151423xgc151520151423xgc15Times New Roman1021415181186BB910AA-AA24-424C-BCF9-5FFA531B6B7A1520151423xgc151520151423xgc15Times New Roman10115181186E760A80-169B-49E8-99B5-86A3DF1926D91520151423xgc151520151423xgc15F8DA4D88-32A6-4D73-9DFB-06740DA8BF4F1520151423xgc151520151423xgc1511PDM_MODEL_DOMN_LISTPDMDomain listDomain listDomain list1-30 Name
-30 Code
-30 DataType
-10 Mandatory
4BA0AB77-0A81-45E1-9A4F-1A417C3B1AA31520151423xgc151520151423xgc15Arial10513531060210C8EF8-15DA-460A-AD90-6940463458C61520151423xgc151520151423xgc15Times New Roman1021415181182E32269B-35D2-46A2-A683-41C1B6B35CF21520151423xgc151520151423xgc15Times New Roman101151811881D41198-5403-4BB5-8E69-FEFCDF4C31A81520151423xgc151520151423xgc15BA3B85FC-F2A2-4B06-B080-AA14C3354FEE1520151423xgc151520151423xgc1511PDM_MODEL_TABL_INDX_LISTPDMTable indexes listTable indexes listTable indexes list1-33 Name
-33 Code
15 Unique
15 Clustered
15 Primary
15 ForeignKey
15 AlternateKey
-33 Table
17D52ACB-2340-4F8D-AD3B-3C01C0F2439B1520151423xgc151520151423xgc15Arial10513531060302C6E72-EB52-476F-95D8-175A2F40DB1D1520151423xgc151520151423xgc15Times New Roman1021415181187BBF35D6-1FE3-493D-91E0-6800E0AA8A9C1520151423xgc151520151423xgc15Times New Roman1011518118B2A79D85-2091-4FF9-BFEE-209254C822DE1520151423xgc151520151423xgc1584CE0C90-7EC9-483E-8122-18D05572A3801520151423xgc151520151423xgc1511PDM_MODEL_JIDX_LISTPDMJoin Index listJoin Index listJoin Index list1-50 Name
-50 Code
E4FD38FF-A333-4B13-8C22-C3EE376929C81520151423xgc151520151423xgc15Arial1051353106043A7CA91-28FA-415A-B1E1-8976058D29061520151423xgc151520151423xgc15Times New Roman1021415181187DB0A8B7-3F33-4A5C-8833-EE2E5BD4C7661520151423xgc151520151423xgc15Times New Roman101151811833AC3166-785B-49CB-B7A2-2DFA1649B8711520151423xgc151520151423xgc1558C18471-C049-42C1-B92C-A7AEDB2DBD331520151423xgc151520151423xgc1511PDM_MODEL_TABL_KEY_LISTPDMTable keys listTable keys listTable keys list1-33 Name
-33 Code
-33 Table
5D915556-D209-4BE2-B094-1B1FEC8713971520151423xgc151520151423xgc15Arial10513531060C490A275-CB54-4F55-96BB-8CC2866CAD1B1520151423xgc151520151423xgc15Times New Roman10214151811886461079-1132-4983-8045-108B6BCB40E21520151423xgc151520151423xgc15Times New Roman10115181188A49DF8A-1759-4D3F-8CB4-0D7A37860B6D1520151423xgc151520151423xgc15F388812C-5806-48F7-956A-A447F4EA8D5F1520151423xgc151520151423xgc1511PDM_MODEL_PROC_LISTPDMProcedure listProcedure listProcedure list1-50 Name
-50 Code
7D395CC9-0168-4C73-BCD0-79A4C102CFF51520151423xgc151520151423xgc15Arial105135310608FB12427-985C-4709-A1D0-7F7731EE89BA1520151423xgc151520151423xgc15Times New Roman1021415181187B4F00D2-96DD-494E-B03A-6EE7599FEE671520151423xgc151520151423xgc15Times New Roman1011518118C3D76085-689A-46D9-BCF4-3B2D533591A61520151423xgc151520151423xgc15DA51F732-9FB1-4435-A42C-AD88C08EB8AB1520151423xgc151520151423xgc1511PDM_MODEL_REFR_LISTPDMReference listReference listReference list1-25 Name
-25 Code
-25 ParentTable
-25 ChildTable
4CC3E3A7-54BB-4279-9B47-26A24EF04BC41520151423xgc151520151423xgc15Arial105135310608E56A1D1-0813-4EA8-A6DC-8BF08B58F5D11520151423xgc151520151423xgc15Times New Roman1021415181189F059678-4C5C-4737-9CE5-93EA255EDE591520151423xgc151520151423xgc15Times New Roman1011518118EFBF46AF-FE26-4B10-97B0-0043AEA68A8F1520151423xgc151520151423xgc15888ACED3-4AAD-4792-8BED-1841ACD576241520151423xgc151520151423xgc1511PDM_MODEL_SQNC_LISTPDMSequence listSequence listSequence list1-50 Name
-50 Code
DD068F13-4CB9-47A4-883C-4D485EA116B21520151423xgc151520151423xgc15Arial10513531060D5613FE6-9A46-417E-B3E8-D476AF5916F01520151423xgc151520151423xgc15Times New Roman102141518118B1A5A827-386D-4B81-AFFB-D527C6884F6A1520151423xgc151520151423xgc15Times New Roman10115181188FA060E8-F66C-4503-B108-0796484808091520151423xgc151520151423xgc159B17EFC1-0A1B-411F-BC34-7EA9D0E677DE1520151423xgc151520151423xgc1511PDM_MODEL_STOR_LISTPDMStorage listStorage listStorage list1-50 Name
-50 Code
5023164A-A0AE-461E-BEC1-606665B36D3C1520151423xgc151520151423xgc15Arial10513531060672B683F-8AFF-43E1-8FDD-0FA0A3199F361520151423xgc151520151423xgc15Times New Roman102141518118C6FDA0E6-2C15-4842-A2C4-9C65BF0E252E1520151423xgc151520151423xgc15Times New Roman10115181189BF0656B-0AF7-4B83-B929-50BEC26555501520151423xgc151520151423xgc15DA316CC8-282E-4357-8CB1-755EE9476CE81520151423xgc151520151423xgc1511PDM_MODEL_TABL_LISTPDMTable listTable listTable list1-50 Name
-50 Code
1397E1EE-5B5B-438B-834B-CA624B4C360A1520151423xgc151520151423xgc15Arial10513531060180ACC73-EA3A-4621-B23F-85C6C46C97B71520151423xgc151520151423xgc15Times New Roman102141518118E4676510-15AA-453F-9D04-5FCC0EC516F01520151423xgc151520151423xgc15Times New Roman10115181188E814B39-EEBA-4315-A650-A8542FE18DE21520151423xgc151520151423xgc150DEE73BD-993D-4612-96F9-E254A2DD2CAE1520151423xgc151520151423xgc1511PDM_MODEL_TSPC_LISTPDMTablespace listTablespace listTablespace list1-50 Name
-50 Code
55241C91-1230-49F0-A5E0-C0C76416359D1520151423xgc151520151423xgc15Arial10513531060B03F1C15-5CC9-4C6E-B756-42FFC7F92BF31520151423xgc151520151423xgc15Times New Roman102141518118A31DC067-0B85-46FE-8FDA-C861A74420171520151423xgc151520151423xgc15Times New Roman10115181183A421DB8-E099-469E-8107-546C72F3B1D31520151423xgc151520151423xgc15CB5FD64D-6823-4C1E-AB67-4DA4C5AD1F351520151423xgc151520151423xgc1511PDM_MODEL_PROF_LISTPDMTest Data Profile listTest Data Profile listTest Data Profile list1-50 Name
-50 Code
B3E605B4-09F0-4E59-8263-65D84DA3F74C1520151423xgc151520151423xgc15Arial1051353106061E2386C-A86C-4F45-AA92-8CAC110357081520151423xgc151520151423xgc15Times New Roman102141518118F7664A3A-ED89-40E8-B8EE-87A7638E5DCD1520151423xgc151520151423xgc15Times New Roman10115181188262B707-7763-4C73-8F3D-684F7645C8EC1520151423xgc151520151423xgc150571CE0A-DCF0-4D25-8478-47352AE50ABD1520151423xgc151520151423xgc1511PDM_MODEL_TABL_TRGR_LISTPDMTable triggers listTable triggers listTable triggers list1-50 Name
-50 Code
DF92E60A-9F52-4DE2-9B83-EE72E19ECF171520151423xgc151520151423xgc15Arial105135310608F5AD087-E730-4068-96AD-8E54EEDD8EBC1520151423xgc151520151423xgc15Times New Roman1021415181180BB76DF3-2D96-4F9D-B803-78DAC755830C1520151423xgc151520151423xgc15Times New Roman101151811891CF9664-650E-4626-A9DC-A6CB58D7B8E01520151423xgc151520151423xgc1557D67A4D-A1D5-4087-9E93-B0236BE261E91520151423xgc151520151423xgc1511PDM_MODEL_TRGI_LISTPDMTrigger item listTrigger item listTrigger item list1-50 Name
-50 Code
ED269C9D-FDAB-4442-A8AA-44C8D45629411520151423xgc151520151423xgc15Arial105135310601B772920-B45D-4FA7-9C3C-5F58296B47EB1520151423xgc151520151423xgc15Times New Roman102141518118425E55F7-42BA-4D98-B892-9530C268B5B91520151423xgc151520151423xgc15Times New Roman101151811818B9BE43-E573-4E17-90DF-6819513071571520151423xgc151520151423xgc15AD14D195-D917-4DB1-8F06-188B0B18F90E1520151423xgc151520151423xgc1511PDM_MODEL_TRGT_LISTPDMTrigger template listTrigger template listTrigger template list1-50 Name
-50 Code
BC9FECEE-7106-4CA7-994A-857DD59E6CFE1520151423xgc151520151423xgc15Arial10513531060A04FBB8A-6988-4048-9E5F-FB7D9D97D6751520151423xgc151520151423xgc15Times New Roman102141518118CE808897-7C77-4C7F-BEA5-4257B9413C1B1520151423xgc151520151423xgc15Times New Roman10115181184501B191-C381-4451-92FD-67A07148335B1520151423xgc151520151423xgc156575F54F-DA26-4F25-9DEC-3C263DAFF96F1520151423xgc151520151423xgc1511PDM_MODEL_USER_LISTPDMUser listUser listUser list1-50 Name
-50 Code
811EF872-2ABF-4EC0-96CB-92DB7BBD944F1520151423xgc151520151423xgc15Arial10513531060E3D4C33F-92FC-4B5F-B25C-CF0FEFD624C31520151423xgc151520151423xgc15Times New Roman102141518118F70580CF-8416-4A74-9F24-76832572CA7F1520151423xgc151520151423xgc15Times New Roman1011518118E3A9E582-6712-4FF9-A49D-830177C013E61520151423xgc151520151423xgc15DD9057A2-898A-4F84-B8C7-F4738CF9C3F51520151423xgc151520151423xgc1511PDM_MODEL_VIEW_LISTPDMView listView listView list1-50 Name
-50 Code
C276109F-209C-4A40-99F1-F6A0BCA0D8A01520151423xgc151520151423xgc15Arial10513531060B60F9F13-61CB-4A70-8F35-F6000F910C9A1520151423xgc151520151423xgc15Times New Roman102141518118299F0782-C891-4308-815A-B551B78D43201520151423xgc151520151423xgc15Times New Roman1011518118DCEDE3D5-65C6-47A3-9AA0-C9C6B36021481520151423xgc151520151423xgc154283FEB2-C44A-475C-9F03-0B6EF1D8FD2E1520151423xgc151520151423xgc1511PDM_MODEL_VREF_LISTPDMView reference listView reference listView reference list1-25 Name
-25 Code
-25 TableView1
-25 TableView2
D824862E-9467-407D-BEFD-2BAA146CEE5A1520151423xgc151520151423xgc15Arial10513531060DA9AB6EB-A79C-4F47-9CC6-5D80B9E393851520151423xgc151520151423xgc15Times New Roman1021415181182251716C-5DDE-489E-90B7-8AEACE730D0F1520151423xgc151520151423xgc15Times New Roman101151811863400E56-856B-40D9-B8C1-543648D59DBD1520151423xgc151520151423xgc159C6D1FFD-D09C-4C43-85E8-BECC29BC63BA1520151423xgc151520151423xgc1511PDM_MODEL_SYNM_LISTPDMSynonym listSynonym listSynonym list1-50 Name
-50 Code
36E32971-8003-44E2-B244-BC054F4AB2921520151423xgc151520151423xgc15Arial10535310604BE5F321-9907-4E2E-B300-964058D232CC1520151423xgc151520151423xgc15Times New Roman1024111F62A21A-119E-4082-AE01-B0A5098276A11520151423xgc151520151423xgc15Times New Roman10112CE3F083-FA49-44D1-93DE-58D4D504A4081520151423xgc151520151423xgc1521C38D12-4B60-4E84-BC00-D18D363D7AF21520151423xgc151520151423xgc15Arial10514231060D163F290-110A-49BC-B57D-3DDC4BFB96391520151423xgc151520151423xgc1511TITLEPDMMulti-dimensional Diagrams ObjectsA84F1265-9CD2-4A7D-ADB4-6089E4517DA11520151423xgc151520151423xgc1511PDM_MODEL_ASSC_LISTPDMAssociation listAssociation listAssociation list161A3C941-9094-4859-AE04-1C11C66ED3D41520151423xgc151520151423xgc15Arial10513531060FCA5920E-431E-44E9-8AE2-A0F2CE4BD5C51520151423xgc151520151423xgc15Times New Roman1021415181188AB9CB03-1C2F-4C1D-9CBF-5CE2F6AAEF0A1520151423xgc151520151423xgc15Times New Roman1011518118EDBC3DB2-75D9-4924-A902-DE12FF4456FA1520151423xgc151520151423xgc152EED99A2-3712-487F-A87D-EC7F00F55F3F1520151423xgc151520151423xgc1511PDM_MODEL_DIMN_LISTPDMDimension listDimension listDimension list1-50 Name
-50 Code
00789073-D4BA-4FE9-9E64-5DAC95265B811520151423xgc151520151423xgc15Arial1051353106045F7C895-EC39-4A69-866E-64428D404E3C1520151423xgc151520151423xgc15Times New Roman102141518118D3E45BA3-23F7-4D98-97C0-6C8474B146541520151423xgc151520151423xgc15Times New Roman1011518118FBEF8609-BC9B-487E-9384-A554E05A30B11520151423xgc151520151423xgc150B647FDF-BB15-4B1E-A0F0-326578794F691520151423xgc151520151423xgc1511PDM_MODEL_FACT_LISTPDMFact listFact listFact list1-50 Name
-50 Code
5A159B8E-18B3-4EAE-952D-137F23B6007E1520151423xgc151520151423xgc15Arial10513531060F3B29E64-A1DA-4C83-9CA2-A8B95A1CBB0F1520151423xgc151520151423xgc15Times New Roman102141518118D20925E3-9443-4B63-BF65-A8FFC5535CA01520151423xgc151520151423xgc15Times New Roman10115181187501725D-45EB-43C3-B663-1A3959381F441520151423xgc151520151423xgc1546280300-0219-4072-8A87-9A3CC2D5E5B31520151423xgc151520151423xgc15Arial10514231060130C76E4-55E7-4239-A72C-11D6E0E041DF1520151423xgc151520151423xgc15Arial1051423106C49952A7-C472-4147-83BC-13856E8E6C2F1520151423xgc151520151423xgc1511PDM_PCKG_TITLEPDMPackage %ITEM%Package %ITEM%List of objects for package %ITEM%1Packages1D8347D2-C07C-45E7-8B20-F115CC7B89CF1520151423xgc151520151423xgc1511TITLEPDMCommon Objects6D28209B-7859-4A35-81C3-2A2FC052CEBA1520151423xgc151520151423xgc1511PDM_MODEL_DIAG_LISTPDMDiagram listDiagram listDiagram list1-33 Name
-33 Code
93561738-1907-4D0A-88B9-15D66D40CBC71520151423xgc151520151423xgc15Arial10513531060580757CC-C0E3-47D7-AA7C-A5BD4607AE981520151423xgc151520151423xgc15Times New Roman102141518118863A8F40-B4B2-4F9E-96B2-AF53EBECEBAD1520151423xgc151520151423xgc15Times New Roman10115181182F639631-3556-4805-A9B5-8F87A489DC311520151423xgc151520151423xgc15814BE6EB-D0B0-4650-9316-B4596FC05F671520151423xgc151520151423xgc1511PDM_MODEL_EXA_LISTPDMExtended Attribute listExtended Attribute listExtended Attribute list1-30 Name
-20 DataType
-20 Value
-30 TargetName
0B82CF54-7FA7-4913-8C39-5CB5CACDE5F61520151423xgc151520151423xgc15Arial105135310603F577B09-0994-4D42-8673-E5488B1031891520151423xgc151520151423xgc15Times New Roman1021415181180D2B5E74-535C-4751-BE04-DD60D896C2761520151423xgc151520151423xgc15Times New Roman1011518118EC95C740-3E48-44DC-8E3B-561C4387A1F71520151423xgc151520151423xgc15DF5231AD-DF69-424F-A32A-CCA83AA931E51520151423xgc151520151423xgc1511PDM_MODEL_FILE_LISTPDMFiles listFiles listFiles list1-40 Name
-40 Location
-20 LocationType
46702808-5262-4CBA-AE03-0783A55F1EC91520151423xgc151520151423xgc15Arial1051353106E3FC35B9-B163-4A9A-B051-684D74AC16561520151423xgc151520151423xgc15Times New Roman102141518118AF2D8925-0933-4FB2-8025-56ABD6172DEF1520151423xgc151520151423xgc15Times New Roman1011518118BFCC7779-86C3-4AAD-B9AF-CDABFE709CBB1520151423xgc151520151423xgc15A8ABC6EC-5D17-44DC-AC5E-4AA41E0281781520151423xgc151520151423xgc1511PDM_MODEL_PCKG_LISTPDMPackage listPackage listPackage list1-33 Name
-33 Code
-33 UseParentNamespace
3C72BBC5-F7F6-4625-8F91-90BB100460371520151423xgc151520151423xgc15Arial10513531060B046D7D9-7A42-4105-BAAA-6CD557FC3A5E1520151423xgc151520151423xgc15Times New Roman102141518118C629586A-9C55-47FF-92BC-A47B3A5C5B7A1520151423xgc151520151423xgc15Times New Roman1011518118DE082E33-A92B-4324-9F07-1E2B7AEC1CB71520151423xgc151520151423xgc157CE1D2E3-8CA0-41B6-8D13-9C519ED1F2C31520151423xgc151520151423xgc15Arial10514231060C6288BCC-8785-4C88-9576-33A0E62696E01520151423xgc151520151423xgc1511TITLEPDMPhysical diagrams objectsD3909663-406C-4EB0-9B94-71F2851834F71520151423xgc151520151423xgc1511PDM_MODEL_TABL_COLN_LISTPDMTable columns listTable columns listTable columns list1-50 Name
-50 Code
5D9EABE9-3D64-4FB6-A029-A43BCF55D66A1520151423xgc151520151423xgc15Arial10513531060B35864F9-140C-4A16-AC42-1F7013F2B9D31520151423xgc151520151423xgc15Times New Roman102141518118EC2D8E6E-3BA2-4072-A588-C58A6E2B78171520151423xgc151520151423xgc15Times New Roman101151811891671EC1-ECA5-47E6-A54B-7F7CED1BD4CF1520151423xgc151520151423xgc153F5C71D4-A15A-4950-9953-DE47155A34791520151423xgc151520151423xgc1511PDM_MODEL_DOMN_LISTPDMDomain listDomain listDomain list1-30 Name
-30 Code
-30 DataType
-10 Mandatory
86A22404-C7CC-47B2-A3D8-8D387B9B07F51520151423xgc151520151423xgc15Arial105135310603270AD86-08F8-44EE-A78A-53984679CDF11520151423xgc151520151423xgc15Times New Roman102141518118F6EDDAAF-5FE9-4032-882B-B05F1E83E05D1520151423xgc151520151423xgc15Times New Roman10115181185395C188-E4EF-4E24-9489-946EBC011DFD1520151423xgc151520151423xgc15908A3EB0-BF86-4D43-866D-2F5F09559F201520151423xgc151520151423xgc1511PDM_MODEL_TABL_INDX_LISTPDMTable indexes listTable indexes listTable indexes list1-33 Name
-33 Code
15 Unique
15 Clustered
15 Primary
15 ForeignKey
15 AlternateKey
-33 Table
862B89CD-CC53-4CA6-A4D3-E1B45904B3371520151423xgc151520151423xgc15Arial105135310604B5A6EF6-1F64-4A39-9782-137757F8CD211520151423xgc151520151423xgc15Times New Roman102141518118CD0FFBA7-2E18-4B0D-947B-1E5EB32CCAF01520151423xgc151520151423xgc15Times New Roman1011518118CBDDC1E1-C0CE-42A2-A2ED-4E2338FC9FE01520151423xgc151520151423xgc15BA0ABF75-AD41-4C64-AF77-507B920D7E4D1520151423xgc151520151423xgc1511PDM_MODEL_JIDX_LISTPDMJoin Index listJoin Index listJoin Index list1-50 Name
-50 Code
9FED02F2-73F6-4174-8105-0F57184D179E1520151423xgc151520151423xgc15Arial10513531060E0650624-D5BA-458B-BCB2-9BC4F6ED826B1520151423xgc151520151423xgc15Times New Roman102141518118CB76A648-6D2D-47C0-8C9E-74C6A4F094AF1520151423xgc151520151423xgc15Times New Roman10115181189380DC46-E46F-4AB4-9DA1-DAB9329A7BD91520151423xgc151520151423xgc15E87CAF7F-FDD4-458E-AF74-57FF426F3A681520151423xgc151520151423xgc1511PDM_MODEL_TABL_KEY_LISTPDMTable keys listTable keys listTable keys list1-33 Name
-33 Code
-33 Table
07FC884B-5129-46C0-ADEA-6E7C569114451520151423xgc151520151423xgc15Arial10513531060DE5695F4-E469-4FE2-A980-A8E8417C03CF1520151423xgc151520151423xgc15Times New Roman102141518118FFE775D3-DC21-41DD-9470-0279DD97C85B1520151423xgc151520151423xgc15Times New Roman1011518118D0786D9B-97F9-4561-906D-AEAD4F9B41601520151423xgc151520151423xgc154ED8EA2A-C353-42AB-AE3F-97F078A01CFE1520151423xgc151520151423xgc1511PDM_MODEL_PROC_LISTPDMProcedure listProcedure listProcedure list1-50 Name
-50 Code
5034BD87-0B8B-4DA4-A3C4-104D3D07CB841520151423xgc151520151423xgc15Arial10513531060BCB02F84-3A57-428E-B169-37DE91B636051520151423xgc151520151423xgc15Times New Roman10214151811874E95358-2A5C-4D93-821B-766AAC7A54CF1520151423xgc151520151423xgc15Times New Roman1011518118E0BB4BF8-8AB1-4B26-8F13-7B4DEDFE3DF81520151423xgc151520151423xgc155A24C246-1BB0-4075-9689-19C8A76D6D281520151423xgc151520151423xgc1511PDM_MODEL_REFR_LISTPDMReference listReference listReference list1-25 Name
-25 Code
-25 ParentTable
-25 ChildTable
27079CF2-7508-40F0-B6CF-D38FF471CDB11520151423xgc151520151423xgc15Arial10513531060D089AA01-7540-4A60-ADD9-FCA4AFCCFF951520151423xgc151520151423xgc15Times New Roman102141518118587BFA24-9D38-4BCE-8C16-5D8F9ECC1B481520151423xgc151520151423xgc15Times New Roman10115181187770E6A9-CE89-467C-B4CF-9BA4A22E13871520151423xgc151520151423xgc154ED1567A-1CF6-40E1-B960-59096CA27BD21520151423xgc151520151423xgc1511PDM_MODEL_SQNC_LISTPDMSequence listSequence listSequence list1-50 Name
-50 Code
E48A3E4C-7657-4F9D-B9AC-02E89CC7013D1520151423xgc151520151423xgc15Arial10513531060BA3A24E5-E77A-49C4-A4ED-927B43E9D79B1520151423xgc151520151423xgc15Times New Roman1021415181180822B394-4560-4A32-8BAC-904EAAC4DF301520151423xgc151520151423xgc15Times New Roman10115181188E172071-651B-40EF-BC25-BB1D337B53DE1520151423xgc151520151423xgc15AEDFB38D-6DB5-4737-872E-1A631CEC487B1520151423xgc151520151423xgc1511PDM_MODEL_STOR_LISTPDMStorage listStorage listStorage list1-50 Name
-50 Code
C277D4C2-108A-4DC7-A31C-5C0B40BF82591520151423xgc151520151423xgc15Arial105135310603E9A9D22-DFDC-40D3-BB58-D973386A89811520151423xgc151520151423xgc15Times New Roman1021415181180DB5673A-798F-40B2-A773-3201C388195C1520151423xgc151520151423xgc15Times New Roman1011518118474A3080-0B2F-44D7-A0A6-A633F4C27C6F1520151423xgc151520151423xgc156C8B7474-017B-4513-8E7D-BF9831ADFC091520151423xgc151520151423xgc1511PDM_MODEL_TABL_LISTPDMTable listTable listTable list1-50 Name
-50 Code
B8A33954-4069-4EFC-80CF-D699038489551520151423xgc151520151423xgc15Arial1051353106045DFDB14-E52E-4F10-970D-A763EC8C723C1520151423xgc151520151423xgc15Times New Roman102141518118719E0C7F-6AB0-4442-BC38-6D8665FFEA7B1520151423xgc151520151423xgc15Times New Roman1011518118DF9D6001-3779-42AB-AD48-EE04EFA7B7241520151423xgc151520151423xgc15236488AD-9AFD-42F0-9F7B-EA7729DC122C1520151423xgc151520151423xgc1511PDM_MODEL_TSPC_LISTPDMTablespace listTablespace listTablespace list1-50 Name
-50 Code
AFB1615C-E7BA-438A-ABB2-BF2AC95768481520151423xgc151520151423xgc15Arial1051353106035FAC8B5-9699-496C-BF72-0D6642CD98111520151423xgc151520151423xgc15Times New Roman102141518118EB2AA7D0-3648-4849-959F-F0E92F50C2611520151423xgc151520151423xgc15Times New Roman1011518118F110FB76-DC47-4BB7-ADE1-4506785E387B1520151423xgc151520151423xgc15646E2E97-8754-4D4E-B2CE-58A6B8DF9C4C1520151423xgc151520151423xgc1511PDM_MODEL_PROF_LISTPDMTest Data Profile listTest Data Profile listTest Data Profile list1-50 Name
-50 Code
E8FBB22E-0034-49B4-9648-9AA6A2E0C2FA1520151423xgc151520151423xgc15Arial105135310604072E638-C39B-4D13-AFE2-F206EC8F129D1520151423xgc151520151423xgc15Times New Roman1021415181182A940C41-C87F-4020-B813-2406B34D2B9E1520151423xgc151520151423xgc15Times New Roman101151811870951502-7EAD-4257-955B-216B33D2686E1520151423xgc151520151423xgc15F2E84B8D-FF7E-4F4E-9A1D-A858B85813291520151423xgc151520151423xgc1511PDM_MODEL_TABL_TRGR_LISTPDMTable triggers listTable triggers listTable triggers list1-50 Name
-50 Code
84FEBADA-2F59-4FBC-B22D-E3036E91E0EA1520151423xgc151520151423xgc15Arial105135310601A3BD0A0-14FE-4764-9344-59CFFAD8C23C1520151423xgc151520151423xgc15Times New Roman102141518118AF2DB5A6-9D5F-4713-9124-92D7563B68231520151423xgc151520151423xgc15Times New Roman101151811891721EB2-C708-4F6B-BF08-5C5A171F01B71520151423xgc151520151423xgc1591A1C49B-89BA-4295-B1E3-8769B4288DEA1520151423xgc151520151423xgc1511PDM_MODEL_USER_LISTPDMUser listUser listUser list1-50 Name
-50 Code
C25D75A8-0C3F-4403-A105-39403D46D1EF1520151423xgc151520151423xgc15Arial1051353106026BF8790-1580-4AF9-B10E-3C1FDABF8E171520151423xgc151520151423xgc15Times New Roman102141518118D0635EB3-D7BF-4ADF-BD20-02631846E97F1520151423xgc151520151423xgc15Times New Roman101151811809B8C4F4-EDEB-4C72-876E-E7507291F94A1520151423xgc151520151423xgc15024B373A-568A-4149-8CFC-0D18778168F31520151423xgc151520151423xgc1511PDM_MODEL_VIEW_LISTPDMView listView listView list1-50 Name
-50 Code
9A7E9D85-8E11-4EF1-9FEA-957423A8E1051520151423xgc151520151423xgc15Arial10513531060A7A6F6C1-69BC-4636-9F01-21707D1C65D81520151423xgc151520151423xgc15Times New Roman1021415181186E576981-534C-4357-B7D5-ED1DE84C9F9D1520151423xgc151520151423xgc15Times New Roman1011518118BC11CEB9-910F-4F93-8957-526C34E597051520151423xgc151520151423xgc154013CE9E-4C5F-4B2B-AE21-30C9F17CDD5E1520151423xgc151520151423xgc1511PDM_MODEL_VREF_LISTPDMView reference listView reference listView reference list1-25 Name
-25 Code
-25 TableView1
-25 TableView2
F8ACF602-7E5D-4671-BCEE-33C0304548F41520151423xgc151520151423xgc15Arial105135310606DD36886-700C-4BAF-B47A-F9E2869E1A931520151423xgc151520151423xgc15Times New Roman1021415181184A02A577-C338-4D7A-A4F5-8192E0E3970F1520151423xgc151520151423xgc15Times New Roman1011518118127C108F-593A-4CE6-AA64-770F4F11115F1520151423xgc151520151423xgc15EED7E53E-CA61-4406-8103-C781E770C00F1520151423xgc151520151423xgc1511PDM_MODEL_SYNM_LISTPDMSynonym listSynonym listSynonym list1-50 Name
-50 Code
6FF3C1F7-4CB3-4000-98F1-A0594AAF9B5E1520151423xgc151520151423xgc15Arial1053531060E47F4608-C35D-49BB-BA83-FDBD14FCA9821520151423xgc151520151423xgc15Times New Roman1024116F40E481-1196-4947-A5E3-7F63286B8BD61520151423xgc151520151423xgc15Times New Roman101189330DE8-D5AA-42A8-BF18-C95F94A539FE1520151423xgc151520151423xgc159915FEA9-DE1F-4115-AD9A-B153097C10E61520151423xgc151520151423xgc15Arial10514231060473A46BA-7041-45CA-AE60-27DEB55A6BCE1520151423xgc151520151423xgc1511TITLEPDMMulti-dimensional Diagrams ObjectsD16FB8A7-593D-4B87-AE5E-2BA801FC203D1520151423xgc151520151423xgc1511PDM_MODEL_ASSC_LISTPDMAssociation listAssociation listAssociation list1FD84CC1F-BB8C-434A-8910-790A482494991520151423xgc151520151423xgc15Arial10513531060540D2688-403B-450E-A94A-476AA4905EFB1520151423xgc151520151423xgc15Times New Roman102141518118A88BF583-8911-4D14-8431-BBC2FC8D27AA1520151423xgc151520151423xgc15Times New Roman10115181182E87C807-B493-40EF-BB88-82D20137EBBB1520151423xgc151520151423xgc15EC714899-1B5D-4C22-A0DA-29BCFB7C38D41520151423xgc151520151423xgc1511PDM_MODEL_DIMN_LISTPDMDimension listDimension listDimension list1-50 Name
-50 Code
75A061BE-0AF7-4A04-98F8-A2A742DC68531520151423xgc151520151423xgc15Arial10513531060546BBE6B-F6F8-4BAE-B255-D3A55CE735631520151423xgc151520151423xgc15Times New Roman1021415181186671AF52-BC8F-46B6-A9DC-D214247347231520151423xgc151520151423xgc15Times New Roman1011518118F7A15013-5A44-401E-8A28-983E706E13581520151423xgc151520151423xgc15F8E29CDA-6D56-4317-951A-1D5B597722F31520151423xgc151520151423xgc1511PDM_MODEL_FACT_LISTPDMFact listFact listFact list1-50 Name
-50 Code
A67A70F8-1340-41EC-A7FA-C4FF7FCF01C51520151423xgc151520151423xgc15Arial1051353106032DAE570-8B5A-44ED-8D9F-5F9BEF7C4F021520151423xgc151520151423xgc15Times New Roman102141518118C9D62644-498C-41C4-B5C0-4840B82CEA331520151423xgc151520151423xgc15Times New Roman10115181185DFB2F73-0D92-41B4-A27C-75C032513A511520151423xgc151520151423xgc15B8D58C1D-0D33-40F0-95D2-B6564A35DD6E1520151423xgc151520151423xgc15Arial10514231060DE7DF03F-DB73-408C-987F-A167C20694E81520151423xgc151520151423xgc151PAGEBREAKPDMB10A1E20-0342-4630-B7C9-5141EFEB7CAC1520151423xgc151520151423xgc15Arial1051353106D2EC0688-071F-4ED8-9958-2A9223E5B6231520151423xgc151520151423xgc1511TITLEPDMTablesD795B2BA-28E3-4AB9-B510-B7EB807B996B1520151423xgc151520151423xgc1511TITLEPDMModel level tablesDD190E00-EF6E-400E-B1EE-4A6E642FC3111520151423xgc151520151423xgc1511PDM_TABL_TITLEPDMTable %ITEM%Table %ITEM%Table %ITEM%21A7BB8B-CA89-44B8-BA04-7AA03910EE731520151423xgc151520151423xgc1511PDM_TABL_CARDPDMCard of the table %ITEM%Card of the table %ITEM%Card of the table %ITEM%Name
Code
DBMS
3A64AE82-FF99-43DE-9BB1-FD6FD6DD3C5B1520151423xgc151520151423xgc15Arial105135310603ADEB762-4D45-45B6-AB87-7EF39FE365821520151423xgc151520151423xgc15Times New Roman1021331518211828D25A8B-3756-47A7-9F0F-A984A179864E1520151423xgc151520151423xgc15Times New Roman10115182118D0F90ADD-D007-448D-9DC1-03D06B0E5C341520151423xgc151520151423xgc1511PDM_TABL_DESCPDMDescription of table %ITEM%Description of table %ITEM%Description of table %ITEM%7DC60D00-F841-4A32-B6A2-E8528C48841E1520151423xgc151520151423xgc15Arial105135310604978E4FD-75E1-4B64-8860-7AE54C7A6D561520151423xgc151520151423xgc15Times New Roman101034926628-A2E8-430A-AA42-F585675DC9A61520151423xgc151520151423xgc1511PDM_TABL_NOTEPDMAnnotation of table %ITEM%Annotation of table %ITEM%Annotation of table %ITEM%06E3EF66-8C05-4F61-BF53-1ED6A7E6F20A1520151423xgc151520151423xgc15Arial1051353106009A4165A-1F9B-4470-904A-EE76E808B2D61520151423xgc151520151423xgc15Times New Roman1010B911D7A4-445F-4D1C-B077-90347DC04C671520151423xgc151520151423xgc1511PDM_TABL_CKCNPDMConstraint name of table %ITEM%Constraint name of table %ITEM%Constraint name of table %ITEM%05B9CBC9-BBFE-4463-A6D5-B1A2EF4E4E3C1520151423xgc151520151423xgc15Arial1051353106002074456-F738-470F-9E4A-1DA66E6702A41520151423xgc151520151423xgc15Times New Roman101028074069-F392-49DA-A6FB-9EB565E1C6591520151423xgc151520151423xgc1511PDM_TABL_OPTSPDMOptions of table %ITEM%Options of table %ITEM%Options of table %ITEM%B1AC6D2B-285D-4C16-BC4C-DDEF08F07A591520151423xgc151520151423xgc15Arial1051353106019B7C758-9F69-4382-8884-609DB96FEB001520151423xgc151520151423xgc15Times New Roman101008479137-E12E-4026-961F-2328E1647CD01520151423xgc151520151423xgc1511PDM_TABL_CRULPDMClient check expression of table %ITEM%Client check expression of table %ITEM%Client check expression of table %ITEM%055CCAF3-F3DF-4F82-8C63-4E1121D986C31520151423xgc151520151423xgc15Arial10513531060EA3E103F-764F-465E-8483-73AC20523D311520151423xgc151520151423xgc15Times New Roman10101865E430-1B56-4B54-8577-064DB789089A1520151423xgc151520151423xgc1511PDM_TABL_SRULPDMServer check expression of table %ITEM%Server check expression of table %ITEM%Server check expression of table %ITEM%4C71CF31-CB35-4BB1-911D-30E9F78353FD1520151423xgc151520151423xgc15Arial1051353106044CAEA37-5667-49EB-BA77-80F6AB97DAD81520151423xgc151520151423xgc15Times New Roman10106629B66E-2987-4F30-AAF3-0DA0A61739891520151423xgc151520151423xgc1511PDM_TABL_HEADPDMBegin script of table %ITEM%Begin script of table %ITEM%Begin script of table %ITEM%120BDFC6-9E44-4AEB-84B8-3FBB70A9A5141520151423xgc151520151423xgc15Arial105135310607724D3D7-4190-4993-9D2F-D85E318538251520151423xgc151520151423xgc15Times New Roman1010B3CF9F82-6580-4C35-BEA2-6901BDCD2A9C1520151423xgc151520151423xgc1511PDM_TABL_FOOTPDMEnd script of table %ITEM%End script of table %ITEM%End script of table %ITEM%337F7179-1908-447D-B32A-EB6CD17D2F601520151423xgc151520151423xgc15Arial1051353106084DD4402-F221-4E97-BA04-F9A0A0394EAC1520151423xgc151520151423xgc15Times New Roman101003A2CBA3-685D-4C50-A891-7771DBB1CC331520151423xgc151520151423xgc1511PDM_TABL_PREVPDMCode preview of %ITEM%Code preview of %ITEM%Code preview of %ITEM%ABD83C7D-21B2-4B42-B0C9-5642F1DD3EED1520151423xgc151520151423xgc15Arial1051353106096AADE12-CFF9-4ACB-B3CD-3D9B50A1889F1520151423xgc151520151423xgc15Times New Roman1010F317DFB6-6687-4AC1-A02B-6B9EE658A9E61520151423xgc151520151423xgc1511PDM_TABL_DIAG_LISTPDMList of diagrams containing table %PARENT%List of diagrams containing table %PARENT%List of diagrams containing table %PARENT%1-50 Name
-50 Code
69C25C5E-9447-4FE8-8C8E-8D42AFEA3A281520151423xgc151520151423xgc15Arial1051353106083A8FE47-4F5D-42F2-8290-2D342E6821BE1520151423xgc151520151423xgc15Times New Roman1021415181183FFC096D-9ABC-4342-880A-822A80A067421520151423xgc151520151423xgc15Times New Roman101151811804758050-B4E1-46B3-B305-5ED87DC16A341520151423xgc151520151423xgc156FFC6C8D-9354-49F6-A81A-CD2494FE8DF11520151423xgc151520151423xgc1511PDM_TABL_OUTREFR_LISTPDMReference from list of the table %PARENT%Reference from list of the table %PARENT%Reference from list of the table %PARENT%1-30 Name
-30 Code
-40 ForeignKeyColumnList
74D383BC-E7C6-4B52-B3A5-13A3D1177B971520151423xgc151520151423xgc15Arial10513531060548CB10E-88C9-45AF-B8D8-F342D471A18A1520151423xgc151520151423xgc15Times New Roman10214151811819BAC2FB-11EB-4DD7-AED9-C37732D89EC51520151423xgc151520151423xgc15Times New Roman1011518118CC6C2CC1-7537-4812-B766-3FC9D11BAC3D1520151423xgc151520151423xgc15363F2552-3438-4D3D-B3A5-BEC447150E851520151423xgc151520151423xgc1511PDM_TABL_INREFR_LISTPDMReference to list of the table %PARENT%Reference to list of the table %PARENT%Reference to list of the table %PARENT%1-50 Name
-50 Code
9AB23194-F639-4230-A849-2806DD3327FF1520151423xgc151520151423xgc15Arial10513531060E3708112-3431-4235-9D68-0DC525FAE9A31520151423xgc151520151423xgc15Times New Roman102141518118DF5DA6C9-0F96-4D9A-A0D6-84CF9D39D71E1520151423xgc151520151423xgc15Times New Roman1011518118AF544F31-8B87-498A-96BD-0E34E96DA9231520151423xgc151520151423xgc152EDF6765-CE6D-492B-AB30-A7D56903C81A1520151423xgc151520151423xgc1511PDM_TABL_RULE_LISTPDMRule list of the table %PARENT%Rule list of the table %PARENT%Rule list of the table %PARENT%1-50 Name
-50 Code
26A1DB94-FD6A-4391-A4E0-ECE810F53E601520151423xgc151520151423xgc15Arial10513531060E723E681-D335-4D5F-A906-CBB57B9DC8D11520151423xgc151520151423xgc15Times New Roman10214151811847EAAE0F-4B73-48E9-8663-DD5317950B271520151423xgc151520151423xgc15Times New Roman1011518118F12E16DB-41DF-4D37-B1DE-A94C2316FCF01520151423xgc151520151423xgc15B99B54C9-762E-4ED5-A2D5-CFBC605E19831520151423xgc151520151423xgc1511PDM_TABL_DEPND_LISTPDMDependent Object list of table %PARENT%Dependent Object list of table %PARENT%Dependent Object list of table %PARENT%1-40 Name
-40 Code
-20 ClassName
4D4F1645-7B40-4B73-AEA8-C44B80800FD11520151423xgc151520151423xgc15Arial105135310605F0E6266-6854-448C-B825-06D8CE7B9FDE1520151423xgc151520151423xgc15Times New Roman102141518118541387B0-C15D-4144-B9B4-A9FF8A0566011520151423xgc151520151423xgc15Times New Roman1011518118F270B8EB-231B-4322-925E-C84FC97728F81520151423xgc151520151423xgc15D77E7251-ECD3-4BD4-89F7-6A192A38DB5D1520151423xgc151520151423xgc1511PDM_TABL_EXA_LISTPDMExtended Attribute list of table %PARENT%Extended Attribute list of table %PARENT%Extended Attribute list of table %PARENT%1-30 Name
-20 DataType
-20 Value
-30 TargetName
BB7D8924-4A7E-4800-BAD0-D6F986FD2D511520151423xgc151520151423xgc15Arial10513531060189F57FE-B803-4B46-A333-2FB262FFA50F1520151423xgc151520151423xgc15Times New Roman102141518118D7AE13A8-A958-439E-A1DE-FA72CCD7D4A11520151423xgc151520151423xgc15Times New Roman1011518118324EF0C8-665C-40FA-983A-0D7C8328AD7E1520151423xgc151520151423xgc155795C8A5-8B3B-4E86-889D-860E6E94A0491520151423xgc151520151423xgc1511PDM_TABL_USRDEPD_LISTPDMExtended Dependency list of table %PARENT%Extended Dependency list of table %PARENT%Extended Dependency list of table %PARENT%1-33 Stereotype
-33 InfluentObject
-33 InfluentObjectType
D8290E21-5A0C-4848-9466-10AF288B44271520151423xgc151520151423xgc15Arial10513531060A560402B-443C-4570-8D3A-0E55A08777531520151423xgc151520151423xgc15Times New Roman1021415181183878B6F1-830F-461E-998D-CE098B87632C1520151423xgc151520151423xgc15Times New Roman101151811857F97788-FBA0-468B-B6F2-247CFF878CA81520151423xgc151520151423xgc1553AACDD7-53B4-465D-814E-B5E0207CE4701520151423xgc151520151423xgc1511PDM_TABL_COLN_LISTPDMColumn list of the table %PARENT%Column list of the table %PARENT%Column list of the table %PARENT%1-50 Name
-50 Code
7E5C699F-579C-47B0-BDFD-1003E7CFF2C51520151423xgc151520151423xgc15Arial105135310606EBEF1C9-E1A5-44A2-82E6-19390A3AD97F1520151423xgc151520151423xgc15Times New Roman1021415181180B88F9B3-32DA-4C34-92A9-BBAA1553F5581520151423xgc151520151423xgc15Times New Roman101151811814D7CB98-DA4D-4987-9959-28BC791207A31520151423xgc151520151423xgc1530CE0A52-8E35-4154-BBA1-1866E4BDF4641520151423xgc151520151423xgc1511PDM_TABL_COLN_GROUPPDMColumn %ITEM% of table %PARENT%Column %ITEM% of table %PARENT%Column %ITEM% of table %PARENT%E7DD8128-9209-433E-B536-CC7479635F381520151423xgc151520151423xgc1511PDM_TABL_COLN_CARDPDMCard of the column %ITEM% of the table %PARENT%Card of the column %ITEM% of the table %PARENT%Card of the column %ITEM% of the table %PARENT%Name
Code
DataType
Mandatory
CE1B2C37-ECC6-4E06-B0D3-17478B0615C31520151423xgc151520151423xgc15Arial10513531060D41A76BA-AABE-4731-A0B7-107F3B3CEE821520151423xgc151520151423xgc15Times New Roman102133151821184E18BF66-D9A6-45E2-AB21-EBA26EDB1E7A1520151423xgc151520151423xgc15Times New Roman101151821184E2FCE9F-8851-48BF-9364-021CAEA27A091520151423xgc151520151423xgc1511PDM_TABL_COLN_DESCPDMDescription of column %ITEM% of table %PARENT%Description of column %ITEM% of table %PARENT%Description of column %ITEM% of table %PARENT%3E2ACBED-F132-4EC8-AB33-8A7EE00130E91520151423xgc151520151423xgc15Arial10513531060B9EBA9E3-57EF-4966-A664-BE9988E29FDF1520151423xgc151520151423xgc15Times New Roman1010CA889551-7A05-4D19-BD8E-B914EB2E47441520151423xgc151520151423xgc1511PDM_TABL_COLN_NOTEPDMAnnotation of column %ITEM% of table %PARENT%Annotation of column %ITEM% of table %PARENT%Annotation of column %ITEM% of table %PARENT%E4E567AA-21A4-42CE-A16E-BA9DEDB436F61520151423xgc151520151423xgc15Arial10513531060365A5A14-6D99-4A82-838F-1746A563F2731520151423xgc151520151423xgc15Times New Roman101075EC5540-646B-4023-9603-57C678FDE1761520151423xgc151520151423xgc1511PDM_TABL_COLN_CKCNPDMConstraint name of column %ITEM% of table %PARENT%Constraint name of column %ITEM% of table %PARENT%Constraint name of column %ITEM% of table %PARENT%3563BC9F-1550-4A76-8977-339CCAA9018F1520151423xgc151520151423xgc15Arial1051353106029E91A7D-030B-4A7A-87F6-4B19E1F2DEE51520151423xgc151520151423xgc15Times New Roman1010419BEB93-C9AC-4671-8E12-B10AE2F058531520151423xgc151520151423xgc1511PDM_TABL_COLN_CHECKPDMStandard check of column %ITEM% of table %PARENT%Standard check of column %ITEM% of table %PARENT%Standard check of column %ITEM% of table %PARENT%LowValue
HighValue
DefaultValue
Unit
Format
Uppercase
Lowercase
CannotModify
ListOfValues
AEE98C9B-48BC-4D26-A26F-6533FEE8379F1520151423xgc151520151423xgc15Arial10513531060959BB730-B85C-426B-B7DA-08A947D72BCF1520151423xgc151520151423xgc15Times New Roman10213315182118B5CFF4F3-1336-4CA8-A31C-D0C34665F2A71520151423xgc151520151423xgc15Times New Roman10115182118B4E95138-F5DC-44B2-8EFC-0F0D119C8CE21520151423xgc151520151423xgc1511PDM_TABL_COLN_CRULPDMClient check expression of column %ITEM% of table %PARENT%Client check expression of column %ITEM% of table %PARENT%Client check expression of column %ITEM% of table %PARENT%DA76345D-9A9F-4A7E-9F61-DADBCE77941A1520151423xgc151520151423xgc15Arial1051353106091C97184-CA91-4449-81A0-5F1CA07FB3421520151423xgc151520151423xgc15Times New Roman1010E6EB53C4-BAD5-4249-9596-CB7451E584CE1520151423xgc151520151423xgc1511PDM_TABL_COLN_SRULPDMServer check expression of column %ITEM% of table %PARENT%Server check expression of column %ITEM% of table %PARENT%Server check expression of column %ITEM% of table %PARENT%B3EF1076-B423-4214-8E11-0D6145D7CCDD1520151423xgc151520151423xgc15Arial10513531060E8EF9046-4448-45E9-8E44-29324A5A57271520151423xgc151520151423xgc15Times New Roman101085DAD165-C365-454D-B531-B86904972A031520151423xgc151520151423xgc1511PDM_TABL_COLN_RULE_LISTPDMBusiness rule list for column %PARENT%Business rule list for column %PARENT%Business rule list for column %PARENT%1-40 Name
-40 Code
-20 Type
1E927228-4BA3-4F2C-AC76-70A88094237D1520151423xgc151520151423xgc15Arial10513531060E84002A1-BF92-41ED-B2E0-D3044D4F181C1520151423xgc151520151423xgc15Times New Roman1021415181188B0F376F-4486-462E-BE6E-D1E709630CB61520151423xgc151520151423xgc15Times New Roman1011518118A59D5FEE-5CB0-4996-9324-CF58D21B81E31520151423xgc151520151423xgc15ECB2EBDF-584E-4C07-B9B6-96A6C1F94F9F1520151423xgc151520151423xgc1511PDM_TABL_COLN_DEPND_LISTPDMDependent Object list of column %PARENT%Dependent Object list of column %PARENT%Dependent Object list of column %PARENT%1-40 Name
-40 Code
-20 ClassName
0FDCDC3F-C5D8-4A2D-B5A4-3C21EF2944F11520151423xgc151520151423xgc15Arial10513531060513C5CEC-9055-4C4A-A26A-49F5066C79451520151423xgc151520151423xgc15Times New Roman102141518118F691D812-D69C-4B77-9491-678DBDDA5FE21520151423xgc151520151423xgc15Times New Roman10115181188A249403-AB1B-4CBF-8471-02EE35CC64751520151423xgc151520151423xgc152AC0382E-6EE2-4EE0-B492-D2D5CB7E82D21520151423xgc151520151423xgc1511PDM_TABL_COLN_EXA_LISTPDMExtended Attribute List of column %PARENT%Extended Attribute List of column %PARENT%Extended Attribute List of column %PARENT%1-30 Name
-20 DataType
-20 Value
-30 TargetName
2E571C79-D1E3-4EBF-85A7-8B70235BE1A41520151423xgc151520151423xgc15Arial10513531060C84FB574-31D1-4DDA-B2F8-2B3094F6C0E21520151423xgc151520151423xgc15Times New Roman1021415181180DB3E3F2-D1D5-45CD-80DF-CAB37922CD601520151423xgc151520151423xgc15Times New Roman1011518118990CEA69-4F00-4A79-9593-E55193CDA79D1520151423xgc151520151423xgc151F4AC2F6-D510-46D1-9A9B-3DC949A3E3331520151423xgc151520151423xgc15Arial105135310603B006EAE-5054-4342-9DAA-1B76C05A7C881520151423xgc151520151423xgc1511PDM_TABL_KEY_LISTPDMKey list of the table %PARENT%Key list of the table %PARENT%Key list of the table %PARENT%1-40 Name
-40 Code
-20 Primary
45DC5596-FD76-4177-8FB8-9EBB6F6157241520151423xgc151520151423xgc15Arial105135310607F979BC2-66C9-4334-B052-0BB1D680F0991520151423xgc151520151423xgc15Times New Roman102141518118DAE58A01-17FE-48F5-B017-DCB2DFD1B2481520151423xgc151520151423xgc15Times New Roman1011518118B1BA2506-978E-423F-BE26-2F99A8C0876D1520151423xgc151520151423xgc157928A16E-07F9-49D8-A724-C5EE29CEF9431520151423xgc151520151423xgc1511PDM_TABL_KEY_GROUPPDMKey %ITEM% of table %PARENT%Key %ITEM% of table %PARENT%Key %ITEM% of table %PARENT%C7D958D6-77D3-4BBC-95C7-26A1FD33D60E1520151423xgc151520151423xgc1511PDM_TABL_KEY_CARDPDMCard of the key %ITEM% of the table %PARENT%Card of the key %ITEM% of the table %PARENT%Card of the key %ITEM% of the table %PARENT%Name
Code
Table
9172F94F-B497-4B80-BE2E-CF642EA6DAC61520151423xgc151520151423xgc15Arial105135310602B15E7A7-7577-407A-BA84-6278C635ECDB1520151423xgc151520151423xgc15Times New Roman10213315182118264F3D38-3C87-43E8-BC04-6E3C5C3B33851520151423xgc151520151423xgc15Times New Roman101151821186D8095EE-313E-4DA3-9983-AEDD0807CCAA1520151423xgc151520151423xgc1511PDM_TABL_KEY_DESCPDMDescription of key %ITEM% of table %PARENT%Description of key %ITEM% of table %PARENT%Description of key %ITEM% of table %PARENT%015B79CC-3575-4A93-80DC-EC8E9CBDAEF71520151423xgc151520151423xgc15Arial10513531060302A9F60-5353-4915-A85F-9A5E3FCDDB8F1520151423xgc151520151423xgc15Times New Roman101035B97F10-CFE7-4A97-9F13-1B777D91C57A1520151423xgc151520151423xgc1511PDM_TABL_KEY_NOTEPDMAnnotation of key %ITEM% of table %PARENT%Annotation of key %ITEM% of table %PARENT%Annotation of key %ITEM% of table %PARENT%01CBEFA3-FE7F-4D11-AAE8-34C19FCC66B51520151423xgc151520151423xgc15Arial10513531060CC6CD734-D6D7-4454-9722-DD70B81F8DB91520151423xgc151520151423xgc15Times New Roman10101BCDC598-4CE3-423D-9A27-E8741CF801141520151423xgc151520151423xgc1511PDM_TABL_KEY_PREVPDMCode preview of %ITEM%Code preview of %ITEM%Code preview of %ITEM%E7825B3B-90DC-434E-89F0-F4A5283097F41520151423xgc151520151423xgc15Arial10513531060361C3154-2F25-44EE-8718-8639B51733771520151423xgc151520151423xgc15Times New Roman1010EC803E1F-2576-4B3F-B50C-49DB65D8B0CB1520151423xgc151520151423xgc1511PDM_TABL_KEY_COLN_LISTPDMColumn list of the key %PARENT%Column list of the key %PARENT%Column list of the key %PARENT%1-40 Name
-40 Code
2044313E-7173-45CC-B8D2-FD5A32F1953E1520151423xgc151520151423xgc15Arial10513531060C0397EEC-BDF0-4486-80E0-351CCCB5652B1520151423xgc151520151423xgc15Times New Roman1021415181189720BDC7-90B1-467F-AF6D-D3FB6227F8291520151423xgc151520151423xgc15Times New Roman101151811825AF84F3-A2F8-4973-9E4D-F325810B4B261520151423xgc151520151423xgc152075671B-0B27-48EF-A4C0-7A639E7D535A1520151423xgc151520151423xgc1511PDM_TABL_KEY_DEPND_LISTPDMDependent Object list of key %PARENT%Dependent Object list of key %PARENT%Dependent Object list of key %PARENT%1-40 Name
-40 Code
-20 ClassName
8396BCFF-796A-4788-8692-6187D4A31AA41520151423xgc151520151423xgc15Arial10513531060EDC30B6E-C833-4FC7-9FCA-AA75956A8C2C1520151423xgc151520151423xgc15Times New Roman102141518118BE64FA36-B0E2-4FF2-A5FA-9E5F01530A751520151423xgc151520151423xgc15Times New Roman1011518118770CF679-54FF-4484-A1C5-0EBA1C475DD61520151423xgc151520151423xgc15DA01FCD4-7A5F-4834-A191-FD53FEBAE56D1520151423xgc151520151423xgc1511PDM_TABL_KEY_EXA_LISTPDMExtended Attribute List of key %PARENT%Extended Attribute List of key %PARENT%Extended Attribute List of key %PARENT%1-30 Name
-20 DataType
-20 Value
-30 TargetName
0A77A143-7A83-4243-B18C-09FE2F8F17171520151423xgc151520151423xgc15Arial105135310600436050F-6236-421E-9219-7B868A042E9B1520151423xgc151520151423xgc15Times New Roman1021415181183FDEEC8E-FEB5-4C83-BD5D-B97B07B626461520151423xgc151520151423xgc15Times New Roman10115181180CB84DC8-10BF-4B7F-85FE-DB00F44539E81520151423xgc151520151423xgc15BCF1B0B3-B720-4CA2-A831-C011E756F8181520151423xgc151520151423xgc15Arial10513531060911D94B8-E828-416E-9105-E83DD20DD8F01520151423xgc151520151423xgc1511PDM_TABL_INDX_LISTPDMIndex list of the table %PARENT%Index list of the table %PARENT%Index list of the table %PARENT%1-20 Name
-20 Code
-12 Unique
-12 Clustered
-12 Primary
-12 ForeignKey
-12 AlternateKey
FB4FF54C-286F-48E0-8827-DE45060986EB1520151423xgc151520151423xgc15Arial105135310607F395D11-5DA0-4CFD-8F21-3A3C97C0EBF71520151423xgc151520151423xgc15Times New Roman102141518118BF559408-AF86-44D2-A534-360AF67872AA1520151423xgc151520151423xgc15Times New Roman1011518118165CDEC2-3E9E-46B1-8E97-5AC73E85B2681520151423xgc151520151423xgc15B8D31DA4-AA6F-4E58-BE94-E3A2BFE4F2D31520151423xgc151520151423xgc1511PDM_TABL_INDX_GROUPPDMIndex %ITEM% of table %PARENT%Index %ITEM% of table %PARENT%Index %ITEM% of table %PARENT%08E75F48-1E1D-4EF4-B9D4-7F58C871A3AE1520151423xgc151520151423xgc1511PDM_TABL_INDX_CARDPDMCard of the index %ITEM% of the table %PARENT%Card of the index %ITEM% of the table %PARENT%Card of the index %ITEM% of the table %PARENT%Name
Code
Unique
Clustered
Primary
ForeignKey
AlternateKey
Table
7538056F-ED16-434A-8DE7-32F22C35E8BF1520151423xgc151520151423xgc15Arial1051353106012ADA2C8-8D9F-4D95-9126-736E757F76FF1520151423xgc151520151423xgc15Times New Roman1021331518211831F27853-97D7-47C0-AFBE-2CA69D8DCD761520151423xgc151520151423xgc15Times New Roman10115182118A167C1A8-DE72-44F9-B6DE-34865C8E8FA21520151423xgc151520151423xgc1511PDM_TABL_INDX_DESCPDMDescription of index %ITEM% of table %PARENT%Description of index %ITEM% of table %PARENT%Description of index %ITEM% of table %PARENT%CE9E391C-5E6C-4F23-A930-99D1E9CD73241520151423xgc151520151423xgc15Arial1051353106005090842-95EF-4062-A698-F98E0A3700A41520151423xgc151520151423xgc15Times New Roman10108B71F1F9-405E-459B-94FC-74B5FBA4BFC01520151423xgc151520151423xgc1511PDM_TABL_INDX_NOTEPDMAnnotation of index %ITEM% of table %PARENT%Annotation of index %ITEM% of table %PARENT%Annotation of index %ITEM% of table %PARENT%BC1AE058-2959-4F36-A267-E62387DBF6881520151423xgc151520151423xgc15Arial10513531060B206C289-F4A5-49B6-A842-5DAF204669BD1520151423xgc151520151423xgc15Times New Roman101097DC763F-ABEA-4F9D-A67A-5D2D898B9EC01520151423xgc151520151423xgc1511PDM_TABL_INDX_PREVPDMCode preview of %ITEM%Code preview of %ITEM%Code preview of %ITEM%6BAEE641-D531-40D1-8D00-3FB63D4330DF1520151423xgc151520151423xgc15Arial1051353106094B2D008-2E0D-485F-A002-8F31B452D1401520151423xgc151520151423xgc15Times New Roman1010D5082209-63A0-4A64-A6BB-0EF7EF7229A31520151423xgc151520151423xgc1511PDM_TABL_INDX_COLN_LISTPDMColumn list of the index %PARENT%Column list of the index %PARENT%Column list of the index %PARENT%1-38 Name
-38 Code
-24 Ascending
797A8E70-1A32-4DE5-A471-6C7464CA17D51520151423xgc151520151423xgc15Arial10513531060BD2DD853-0C63-4E0C-A6A5-51EF9454FCF71520151423xgc151520151423xgc15Times New Roman10214151811873EFA706-3D7F-43D7-A97D-E5AC95E1C5D41520151423xgc151520151423xgc15Times New Roman1011518118E58849F6-FE5E-4480-8CF8-3ED34BB99EA11520151423xgc151520151423xgc154C19AB01-55BF-4628-AE83-767919554FBE1520151423xgc151520151423xgc1511PDM_TABL_INDX_DEPND_LISTPDMDependent Object list of index %PARENT%Dependent Object list of index %PARENT%Dependent Object list of index %PARENT%1-40 Name
-40 Code
-20 ClassName
5885AD87-9F53-410E-847E-20060D58688E1520151423xgc151520151423xgc15Arial1051353106024E78B6C-2809-455F-A9D8-4A8E36B41F001520151423xgc151520151423xgc15Times New Roman1021415181180379AC26-1A3E-4952-965B-22A1133C5BEB1520151423xgc151520151423xgc15Times New Roman1011518118150B2E75-D1D3-4AF1-809D-7DFEFB90E29E1520151423xgc151520151423xgc15CE8D9DE8-7A68-44D3-8461-8087785BFE3D1520151423xgc151520151423xgc1511PDM_TABL_INDX_EXA_LISTPDMExtended Attribute List of index %PARENT%Extended Attribute List of index %PARENT%Extended Attribute List of index %PARENT%1-30 Name
-20 DataType
-20 Value
-30 TargetName
BBCA5A33-67FB-4450-8567-178BD3057D9A1520151423xgc151520151423xgc15Arial105135310603AABCB9B-BA13-47A1-8F36-B9260E4259BC1520151423xgc151520151423xgc15Times New Roman1021415181184FBAEE38-2027-48DE-8E5A-0DD8430B97A21520151423xgc151520151423xgc15Times New Roman1011518118A093A8CE-2D6B-47B6-8FB1-3A504C7DE9A21520151423xgc151520151423xgc15656AA66A-6D06-49E6-B26C-94468B3B198E1520151423xgc151520151423xgc15Arial105135310605F124C18-A857-4646-B8BB-15461F2BD0E41520151423xgc151520151423xgc1511PDM_TABL_TRGR_LISTPDMTrigger list of the table %PARENT%Trigger list of the table %PARENT%Trigger list of the table %PARENT%1-50 Name
-50 Code
41081C89-500D-4793-BA8F-C5653F7D19BD1520151423xgc151520151423xgc15Arial105135310605D849BF9-B17D-4034-ABC0-3106366EBB0C1520151423xgc151520151423xgc15Times New Roman102141518118E39C2F1E-362E-482C-B14C-1B36F1BD85FB1520151423xgc151520151423xgc15Times New Roman10115181180274260C-8964-4E16-B4C8-F583B43390881520151423xgc151520151423xgc150135035F-279D-4FE2-975C-03249D8BDC311520151423xgc151520151423xgc1511PDM_TABL_TRGR_GROUPPDMTrigger %ITEM% of table %PARENT%Trigger %ITEM% of table %PARENT%Trigger %ITEM% of table %PARENT%63944921-C14C-40F5-9477-CA9F4C370C961520151423xgc151520151423xgc1511PDM_TABL_TRGR_CARDPDMCard of the trigger %ITEM% of the table %PARENT%Card of the trigger %ITEM% of the table %PARENT%Card of the trigger %ITEM% of the table %PARENT%Name
Code
Generated
Table
TriggerTemplate
UserDefinedSQL
BF3CE3A6-155D-4A8E-9E7D-4F67D8E5B8771520151423xgc151520151423xgc15Arial105135310603DE88F0F-7D13-4C56-9692-C817858AF9E21520151423xgc151520151423xgc15Times New Roman10213315182118C7B9CE11-D3A9-4106-B0AC-58562AF0B2591520151423xgc151520151423xgc15Times New Roman10115182118FE3A1DA5-ACEA-4DBD-9D52-C16681DA97391520151423xgc151520151423xgc1511PDM_TABL_TRGR_DESCPDMDescription of trigger %ITEM% of table %PARENT%Description of trigger %ITEM% of table %PARENT%Description of trigger %ITEM% of table %PARENT%B11F9D35-2A0D-4650-A748-47D77E72EC711520151423xgc151520151423xgc15Arial10513531060427CC969-51F8-489C-9DBF-5EC8629AE6201520151423xgc151520151423xgc15Times New Roman1010D2D05472-D35B-4065-BB6E-FB2658A47D351520151423xgc151520151423xgc1511PDM_TABL_TRGR_NOTEPDMAnnotation of trigger %ITEM% of table %PARENT%Annotation of trigger %ITEM% of table %PARENT%Annotation of trigger %ITEM% of table %PARENT%48ED1CFA-E026-47F8-BF3F-E76A18792B421520151423xgc151520151423xgc15Arial10513531060B40F4B70-D49A-4759-9D87-D92AE8A670A51520151423xgc151520151423xgc15Times New Roman1010EAAF151E-27F4-403D-BBD5-20BD9853F1CA1520151423xgc151520151423xgc1511PDM_TABL_TRGR_PREVPDMCode preview of %ITEM%Code preview of %ITEM%Code preview of %ITEM%ADF1EFE6-1828-4E04-8182-4555D809D8C31520151423xgc151520151423xgc15Arial10513531060E922B931-C5AE-48CB-957B-D62FE306AA421520151423xgc151520151423xgc15Times New Roman1010B20251CB-FC51-4BD3-869D-A2E51EEA8B1C1520151423xgc151520151423xgc1511PDM_TABL_TRGR_EXA_LISTPDMExtended Attribute List of trigger %PARENT%Extended Attribute List of trigger %PARENT%Extended Attribute List of trigger %PARENT%1-30 Name
-20 DataType
-20 Value
-30 TargetName
874F70DD-B466-4365-829B-271EA521294D1520151423xgc151520151423xgc15Arial10513531060A4B99510-91DC-42FA-9F34-412CB67B87B61520151423xgc151520151423xgc15Times New Roman102141518118C85DE611-9059-4D0D-99EF-C767A14363911520151423xgc151520151423xgc15Times New Roman10115181187257B05C-1A0F-4953-9C62-967AEEAA66B61520151423xgc151520151423xgc154D2D38E5-C610-4E0A-B9C9-DCDB34738C701520151423xgc151520151423xgc15Arial10513531060B2BAA9F6-5296-449F-AFBE-F03ECE3A5BF31520151423xgc151520151423xgc1511PDM_TABL_CMAP_LISTPDMMapping list of the table %PARENT%Mapping list of the table %PARENT%Mapping list of the table %PARENT%1-50 Name
-50 Code
1FB32A37-74A1-43C6-9374-10C044E894471520151423xgc151520151423xgc15Arial10513531060332AFA15-8078-4986-BAEE-4496658AF19C1520151423xgc151520151423xgc15Times New Roman102141518118395D84A0-7990-4A7B-A6DD-8062EBC277D31520151423xgc151520151423xgc15Times New Roman1011518118D1696FAD-40C4-493B-8776-A37A4A94EB4D1520151423xgc151520151423xgc1511B3D362-EAD5-4384-BFB6-BBC3E501D9BF1520151423xgc151520151423xgc1511PDM_TABL_CMAP_GROUPPDMMapping %ITEM% of table %PARENT%Mapping %ITEM% of table %PARENT%Mapping %ITEM% of table %PARENT%99DD0528-8ED8-4134-BEDE-4C757FCBFD731520151423xgc151520151423xgc1511PDM_TABL_CMAP_CARDPDMCard of the mapping %ITEM% of the table %PARENT%Card of the mapping %ITEM% of the table %PARENT%Card of the mapping %ITEM% of the table %PARENT%Name
Code
2C95FEA3-DFC5-4CB0-91CA-F4CDAFD5DF4D1520151423xgc151520151423xgc15Arial105135310606A835383-CBAD-4411-8530-CC4BFCFCD35D1520151423xgc151520151423xgc15Times New Roman102133151821187E8CC751-D7C9-4E4B-A290-44FAC7A037B51520151423xgc151520151423xgc15Times New Roman10115182118A1F347CD-E368-4A8E-A49C-80F8ADA68F8C1520151423xgc151520151423xgc1511PDM_TABL_CMAP_CRTRPDMCriteria of mapping %ITEM% of table %PARENT%Criteria of mapping %ITEM% of table %PARENT%Criteria of mapping %ITEM% of table %PARENT%1AE4C3D7-5889-44DB-972B-704794A17F361520151423xgc151520151423xgc15Arial10513531060CA779B68-CE88-4F6B-A70D-9881730684BF1520151423xgc151520151423xgc15Times New Roman101001C72B21-1F5C-4185-848A-F6930C6DAB4D1520151423xgc151520151423xgc1511PDM_TABL_CMAP_EXPRPDMSource expression of mapping %ITEM% of table %PARENT%Source expression of mapping %ITEM% of table %PARENT%Source expression of mapping %ITEM% of table %PARENT%EA9993F1-938B-40BD-8F62-7C73C157FF3A1520151423xgc151520151423xgc15Arial105135310603FE73B15-A9BB-41A2-93F2-625CDB80889A1520151423xgc151520151423xgc15Times New Roman1010BAC34D14-59D8-4629-8509-08059C5810D31520151423xgc151520151423xgc1511PDM_TABL_CMAP_SFEA_LISTPDMColumn mapping list of %PARENT%Column mapping list of %PARENT%Column mapping list of %PARENT%1-50 Column
-50 MappedTo
DA2B2157-B4BE-4071-872C-D4069CD93D171520151423xgc151520151423xgc15Arial10513531060B98A51C8-B01C-4C1B-B42F-9F32AFBEA6F41520151423xgc151520151423xgc15Times New Roman10214151811851CE4BE5-9E44-4B60-8586-20450240A1271520151423xgc151520151423xgc15Times New Roman1011518118B248D7FB-8349-4ED8-9CB9-4DBE44508B681520151423xgc151520151423xgc159322410F-DB82-4F82-9092-6C689C5836741520151423xgc151520151423xgc1511PDM_TABL_CMAP_SCRC_LISTPDMTable sources list of mapping %PARENT%Table sources list of mapping %PARENT%Table sources list of mapping %PARENT%1-50 Name
-50 Code
F0B5397F-8625-4DF8-93D3-C8E625ADE0341520151423xgc151520151423xgc15Arial1051353106048E867E8-47EF-4118-99BD-A4F6A0E229F41520151423xgc151520151423xgc15Times New Roman10214151811887FCE07E-3D2C-4BEF-AC0D-E2503CA494B01520151423xgc151520151423xgc15Times New Roman10115181187E68FC4D-61F7-4DA5-A210-E3CF0F6D85DB1520151423xgc151520151423xgc15C2D47371-1C7F-4A0B-95DF-BB4C6A0BD7F91520151423xgc151520151423xgc15Arial10513531060840C36D7-66C2-4B5F-8D3F-1F615E4A887C1520151423xgc151520151423xgc15Arial105135310601990AE1E-4D48-4627-912E-3926B88EC64F1520151423xgc151520151423xgc15Arial10514231060696BFD44-9500-4B6E-BC2B-762809F77FC51520151423xgc151520151423xgc1511PDM_PCKG_TITLEPDMPackage %ITEM%Package %ITEM%Tables from Package %ITEM%16EAE93A6-124D-4B8C-AADE-47E1871184201520151423xgc151520151423xgc1511PDM_TABL_TITLEPDMTable %ITEM%Table %ITEM%Table %ITEM%214FA28D-B316-4A31-BB77-FB9DD77DD35A1520151423xgc151520151423xgc1511PDM_TABL_CARDPDMCard of the table %ITEM%Card of the table %ITEM%Card of the table %ITEM%Name
Code
DBMS
7B92323D-614B-4381-B67E-12ED3E7E57301520151423xgc151520151423xgc15Arial10513531060225406AE-FEB9-4818-880B-058DF556B1FF1520151423xgc151520151423xgc15Times New Roman1021331518211894A9AB46-8FF2-4A3A-93B7-FBC1982C64D81520151423xgc151520151423xgc15Times New Roman101151821186BD057FA-1CCD-4805-A521-7C358E996E831520151423xgc151520151423xgc1511PDM_TABL_DESCPDMDescription of table %ITEM%Description of table %ITEM%Description of table %ITEM%D98AFD5E-C14A-4B1C-A9B0-9DEC05194E311520151423xgc151520151423xgc15Arial10513531060FD88818A-15E4-422C-98A2-ECA88658E2891520151423xgc151520151423xgc15Times New Roman1010E4D6AD25-6B3B-4822-9877-9ED1589103921520151423xgc151520151423xgc1511PDM_TABL_NOTEPDMAnnotation of table %ITEM%Annotation of table %ITEM%Annotation of table %ITEM%EA280627-BF23-4CCD-9025-0C7AE66B558A1520151423xgc151520151423xgc15Arial105135310606744DEE3-967D-41A3-B440-7D08DE2D2C951520151423xgc151520151423xgc15Times New Roman10100E6B2744-5F0E-4D33-B6D2-79F235C820A71520151423xgc151520151423xgc1511PDM_TABL_CKCNPDMConstraint name of table %ITEM%Constraint name of table %ITEM%Constraint name of table %ITEM%BD4767FF-10D6-4E46-ADF3-8461FA8C5ED21520151423xgc151520151423xgc15Arial105135310601560E36D-AFFB-4AA8-A139-A8363CCAAE441520151423xgc151520151423xgc15Times New Roman1010DCB3AF33-C192-40C9-884A-C1F0A3B79FE91520151423xgc151520151423xgc1511PDM_TABL_OPTSPDMOptions of table %ITEM%Options of table %ITEM%Options of table %ITEM%37D679E2-0739-4CF6-A732-F1FC5331C3961520151423xgc151520151423xgc15Arial10513531060360589A0-5D2C-47A6-8FB3-37E1113367841520151423xgc151520151423xgc15Times New Roman10101A39A2C8-3706-4437-9581-A2C95554EAC71520151423xgc151520151423xgc1511PDM_TABL_CRULPDMClient check expression of table %ITEM%Client check expression of table %ITEM%Client check expression of table %ITEM%70B0C5F6-CE9E-4224-A060-42F4C66316BA1520151423xgc151520151423xgc15Arial10513531060FDB8033F-9135-4A6B-A642-993FA5AB0E491520151423xgc151520151423xgc15Times New Roman1010CFC2EF0D-6ACB-4BEB-91F4-ECF98EBB36AB1520151423xgc151520151423xgc1511PDM_TABL_SRULPDMServer check expression of table %ITEM%Server check expression of table %ITEM%Server check expression of table %ITEM%C68AD6BC-15ED-425D-8CD9-B630ECED41591520151423xgc151520151423xgc15Arial105135310603DE09436-E64C-4556-B89D-D398998C257D1520151423xgc151520151423xgc15Times New Roman10101EC87DE9-4E01-458F-B702-67800720FEE91520151423xgc151520151423xgc1511PDM_TABL_HEADPDMBegin script of table %ITEM%Begin script of table %ITEM%Begin script of table %ITEM%6374D7A8-17FB-47BB-8982-8DD555A095DA1520151423xgc151520151423xgc15Arial10513531060E908E359-C4CD-4D5F-9FA9-CE349B9AB8051520151423xgc151520151423xgc15Times New Roman1010BB7B94F4-234F-40FD-AECC-88D927C6175E1520151423xgc151520151423xgc1511PDM_TABL_FOOTPDMEnd script of table %ITEM%End script of table %ITEM%End script of table %ITEM%FA0B7D8B-4FDB-413D-943C-684F85A949CA1520151423xgc151520151423xgc15Arial1051353106066D24041-9E31-430B-B0F3-AAF04E621D5A1520151423xgc151520151423xgc15Times New Roman10106B2F702F-314C-4749-BE1F-D803FA2D1F531520151423xgc151520151423xgc1511PDM_TABL_PREVPDMCode preview of %ITEM%Code preview of %ITEM%Code preview of %ITEM%15FE6865-32C3-43D4-9E47-3A3ED6814D791520151423xgc151520151423xgc15Arial105135310606A777AC6-5B7B-4736-A27F-824D3C838FF81520151423xgc151520151423xgc15Times New Roman10107A6863FA-A45F-4DC7-8342-127812D612B51520151423xgc151520151423xgc1511PDM_TABL_DIAG_LISTPDMList of diagrams containing table %PARENT%List of diagrams containing table %PARENT%List of diagrams containing table %PARENT%1-50 Name
-50 Code
B8005A5A-CB00-4516-B990-B2F65FAF05971520151423xgc151520151423xgc15Arial1051353106032764BBC-E49E-45EA-A636-BE829116D3C01520151423xgc151520151423xgc15Times New Roman1021415181189462F12E-3FBE-49A8-8DF3-DA4517EFEECE1520151423xgc151520151423xgc15Times New Roman101151811834D1916F-3DD9-4766-840A-A6F1B77630BF1520151423xgc151520151423xgc158C7077CA-C42B-41A8-ABCA-DA6E90BDB7DE1520151423xgc151520151423xgc1511PDM_TABL_OUTREFR_LISTPDMReference from list of the table %PARENT%Reference from list of the table %PARENT%Reference from list of the table %PARENT%1-30 Name
-30 Code
-40 ForeignKeyColumnList
2F36E04A-9584-47B8-9C97-04E5980B91511520151423xgc151520151423xgc15Arial10513531060CC078786-B13A-4A53-8E93-AA9E88EFF3901520151423xgc151520151423xgc15Times New Roman1021415181188E7B65D2-E301-4A2C-B89D-4E6DA437B5271520151423xgc151520151423xgc15Times New Roman10115181183A0B9582-1229-4848-8768-AA68286298491520151423xgc151520151423xgc15E287F408-78CD-4EE6-BC24-727508AB8C031520151423xgc151520151423xgc1511PDM_TABL_INREFR_LISTPDMReference to list of the table %PARENT%Reference to list of the table %PARENT%Reference to list of the table %PARENT%1-50 Name
-50 Code
6B867AD3-2460-4E3A-BBB4-4D92E9E12A001520151423xgc151520151423xgc15Arial10513531060E4E7E306-07B7-41D6-AD7C-D3AB3B7CAC681520151423xgc151520151423xgc15Times New Roman10214151811832C1318C-34ED-4D90-B86C-5C175659E8261520151423xgc151520151423xgc15Times New Roman10115181186D0B7380-F65D-43D5-9398-5E8E1D3A61851520151423xgc151520151423xgc15B56094CB-0C55-4ACE-BA60-FC1C5E215D7E1520151423xgc151520151423xgc1511PDM_TABL_RULE_LISTPDMRule list of the table %PARENT%Rule list of the table %PARENT%Rule list of the table %PARENT%1-50 Name
-50 Code
25D13513-4152-4C3B-9D7D-8971975A748F1520151423xgc151520151423xgc15Arial105135310602A1B714D-770D-4E9F-8554-55E061A004861520151423xgc151520151423xgc15Times New Roman1021415181182154DF6C-B7DB-4B1B-BAD8-8EE9F9F39C2E1520151423xgc151520151423xgc15Times New Roman10115181180E4E0008-A6F7-46F5-9AF7-902DFF9DCE3F1520151423xgc151520151423xgc1530B47B79-3218-4232-BDFC-A7F5182815271520151423xgc151520151423xgc1511PDM_TABL_DEPND_LISTPDMDependent Object list of table %PARENT%Dependent Object list of table %PARENT%Dependent Object list of table %PARENT%1-40 Name
-40 Code
-20 ClassName
10939FE3-8DEB-4FA0-9D24-F0A9D930D0571520151423xgc151520151423xgc15Arial10513531060767E8AC6-0E8F-489F-8AB1-8162175B6E8C1520151423xgc151520151423xgc15Times New Roman102141518118D011AB2E-EC75-4034-9811-2CC25130025B1520151423xgc151520151423xgc15Times New Roman101151811878463A70-88A7-46F3-BD16-C8519A8086F31520151423xgc151520151423xgc15439E9C48-3660-49AC-B8C0-C702005314BA1520151423xgc151520151423xgc1511PDM_TABL_EXA_LISTPDMExtended Attribute list of table %PARENT%Extended Attribute list of table %PARENT%Extended Attribute list of table %PARENT%1-30 Name
-20 DataType
-20 Value
-30 TargetName
0D1A2BEC-12A8-4778-AE61-DCC77CF597A81520151423xgc151520151423xgc15Arial1051353106087430E87-A27F-49AC-AB4B-355137CF34141520151423xgc151520151423xgc15Times New Roman10214151811814AC0EB1-783B-4806-B799-1C5407603A6C1520151423xgc151520151423xgc15Times New Roman101151811839A71DDB-2CFE-4847-B57A-D06120AF742C1520151423xgc151520151423xgc154943C61D-1038-459E-A9E5-D557445E1BD51520151423xgc151520151423xgc1511PDM_TABL_USRDEPD_LISTPDMExtended Dependency list of table %PARENT%Extended Dependency list of table %PARENT%Extended Dependency list of table %PARENT%1-33 Stereotype
-33 InfluentObject
-33 InfluentObjectType
448282B8-745D-41FF-8C1B-B361F8E0707A1520151423xgc151520151423xgc15Arial10513531060F0E1E350-B79E-48EF-A9E6-24435884C3841520151423xgc151520151423xgc15Times New Roman102141518118468AEC13-A15B-43C9-BC53-01B4788D1BF21520151423xgc151520151423xgc15Times New Roman1011518118096C0244-F6D8-4ABB-B6AE-856B2B2C77311520151423xgc151520151423xgc1597BF88B5-BD5F-431B-87B2-4485AE0453F41520151423xgc151520151423xgc1511PDM_TABL_COLN_LISTPDMColumn list of the table %PARENT%Column list of the table %PARENT%Column list of the table %PARENT%1-50 Name
-50 Code
E14DC416-525E-4CF2-8EEC-07CFAF5C1E091520151423xgc151520151423xgc15Arial105135310602DCE9C35-C565-45DF-A3A8-1AE59E4CD4DA1520151423xgc151520151423xgc15Times New Roman1021415181187BD515B9-199A-451B-9E27-940BAD0FC64F1520151423xgc151520151423xgc15Times New Roman1011518118F16F13F5-D973-4B09-96B1-339AC043341D1520151423xgc151520151423xgc1573CE4F57-CF71-4F3F-8AB0-B8D59B6C0DFF1520151423xgc151520151423xgc1511PDM_TABL_COLN_GROUPPDMColumn %ITEM% of table %PARENT%Column %ITEM% of table %PARENT%Column %ITEM% of table %PARENT%38DDF252-D197-4260-B79F-2D686DAD0B1B1520151423xgc151520151423xgc1511PDM_TABL_COLN_CARDPDMCard of the column %ITEM% of the table %PARENT%Card of the column %ITEM% of the table %PARENT%Card of the column %ITEM% of the table %PARENT%Name
Code
DataType
Mandatory
0F2D61F6-C101-4EED-81F7-4AB6326E03C41520151423xgc151520151423xgc15Arial10513531060C1903F8C-83A4-44DA-8061-0A607973F3E11520151423xgc151520151423xgc15Times New Roman1021331518211806B1F8F6-B126-4AAC-BACA-729BC44E60361520151423xgc151520151423xgc15Times New Roman10115182118F9F7E33E-A813-41F1-BC01-AFDAA9E4F16B1520151423xgc151520151423xgc1511PDM_TABL_COLN_DESCPDMDescription of column %ITEM% of table %PARENT%Description of column %ITEM% of table %PARENT%Description of column %ITEM% of table %PARENT%ECBD7CA6-5F05-422B-91E8-30DD30EB49E81520151423xgc151520151423xgc15Arial1051353106026F28148-812F-42E9-81F5-93E51E776E8C1520151423xgc151520151423xgc15Times New Roman10101A730D65-0D77-4A57-9CDA-4177566C60C41520151423xgc151520151423xgc1511PDM_TABL_COLN_NOTEPDMAnnotation of column %ITEM% of table %PARENT%Annotation of column %ITEM% of table %PARENT%Annotation of column %ITEM% of table %PARENT%BE9DE802-A760-4724-8733-C1FB3FE012441520151423xgc151520151423xgc15Arial1051353106059D529FE-0205-4B43-A0F5-63EB483D6FA81520151423xgc151520151423xgc15Times New Roman1010418D3AB0-08A5-4C12-A985-CDB62C4395B41520151423xgc151520151423xgc1511PDM_TABL_COLN_CKCNPDMConstraint name of column %ITEM% of table %PARENT%Constraint name of column %ITEM% of table %PARENT%Constraint name of column %ITEM% of table %PARENT%908051FC-8E2F-48D3-8875-FCFB8464B1CF1520151423xgc151520151423xgc15Arial10513531060B0FD34FF-8C29-4170-BC0D-5C8BF0B8E8091520151423xgc151520151423xgc15Times New Roman1010C94E4499-EF8E-455F-8393-37C5DC8631BA1520151423xgc151520151423xgc1511PDM_TABL_COLN_CHECKPDMStandard check of column %ITEM% of table %PARENT%Standard check of column %ITEM% of table %PARENT%Standard check of column %ITEM% of table %PARENT%LowValue
HighValue
DefaultValue
Unit
Format
Uppercase
Lowercase
CannotModify
ListOfValues
8974D4FD-2AF7-402A-A274-FE0291CA9B5E1520151423xgc151520151423xgc15Arial10513531060D865ECA9-F219-4523-A14E-220F7CF261BC1520151423xgc151520151423xgc15Times New Roman102133151821185F043893-2278-4419-A274-8574229A8C931520151423xgc151520151423xgc15Times New Roman1011518211804728A5F-5F85-4C27-AE5A-AD7F45B3F4D91520151423xgc151520151423xgc1511PDM_TABL_COLN_CRULPDMClient check expression of column %ITEM% of table %PARENT%Client check expression of column %ITEM% of table %PARENT%Client check expression of column %ITEM% of table %PARENT%1776145E-9200-4262-899E-352EBD2A1D861520151423xgc151520151423xgc15Arial10513531060FA6D50CC-68C9-4A8B-964A-B328D97BEC051520151423xgc151520151423xgc15Times New Roman10108B020AF8-D8FE-4446-8480-2A5A240584631520151423xgc151520151423xgc1511PDM_TABL_COLN_SRULPDMServer check expression of column %ITEM% of table %PARENT%Server check expression of column %ITEM% of table %PARENT%Server check expression of column %ITEM% of table %PARENT%01C45634-EB9E-4B38-882E-51E093C0A30E1520151423xgc151520151423xgc15Arial105135310602E10B1EF-8540-4A62-9620-9E396A6B91721520151423xgc151520151423xgc15Times New Roman10103F7EB03E-9CA2-4913-A50A-ACC44B3CD4E31520151423xgc151520151423xgc1511PDM_TABL_COLN_RULE_LISTPDMBusiness rule list for column %PARENT%Business rule list for column %PARENT%Business rule list for column %PARENT%1-40 Name
-40 Code
-20 Type
476AB092-4761-4C52-A54B-166B4C0A6FF81520151423xgc151520151423xgc15Arial105135310601486AD3F-A7A9-4F80-87F8-4CA9CBF8D2631520151423xgc151520151423xgc15Times New Roman10214151811867B41890-CC61-4ACD-8987-AC85FB4ADB061520151423xgc151520151423xgc15Times New Roman10115181180F2D30EA-4A4E-49CF-8594-E5C0677E9D9F1520151423xgc151520151423xgc15E80D7184-D905-4AFB-A147-253113DC198E1520151423xgc151520151423xgc1511PDM_TABL_COLN_DEPND_LISTPDMDependent Object list of column %PARENT%Dependent Object list of column %PARENT%Dependent Object list of column %PARENT%1-40 Name
-40 Code
-20 ClassName
8D9A8577-464C-4B1D-BD0E-3483798C67A81520151423xgc151520151423xgc15Arial105135310609B09B1E6-6A4D-4206-BDBF-1497E748422B1520151423xgc151520151423xgc15Times New Roman10214151811831B31B0B-4615-4C4D-9128-2B56D6DAC78F1520151423xgc151520151423xgc15Times New Roman1011518118AAEC932C-369F-4892-B432-46F24B5916941520151423xgc151520151423xgc1580DDAE43-A2C6-45F8-AF6A-446021B9D9A81520151423xgc151520151423xgc1511PDM_TABL_COLN_EXA_LISTPDMExtended Attribute List of column %PARENT%Extended Attribute List of column %PARENT%Extended Attribute List of column %PARENT%1-30 Name
-20 DataType
-20 Value
-30 TargetName
16C3A8A5-5F7E-49E2-97ED-E8599577877C1520151423xgc151520151423xgc15Arial105135310600F02BEFE-E28D-40B5-87BC-8EC6465579731520151423xgc151520151423xgc15Times New Roman102141518118D05E3E06-5073-4E6A-A32C-804071C99E301520151423xgc151520151423xgc15Times New Roman101151811825B5828B-47B7-4CE3-88D1-304EA99BC30E1520151423xgc151520151423xgc15F381499C-7D84-4735-B4F0-082F7672077D1520151423xgc151520151423xgc15Arial105135310601B4E2B57-57B3-4A4C-BBC1-736E5618D6371520151423xgc151520151423xgc1511PDM_TABL_KEY_LISTPDMKey list of the table %PARENT%Key list of the table %PARENT%Key list of the table %PARENT%1-40 Name
-40 Code
-20 Primary
410E4A57-7163-43B9-9C3E-63011BA112021520151423xgc151520151423xgc15Arial1051353106026A71505-3660-4934-AF4A-FC25BF3E357B1520151423xgc151520151423xgc15Times New Roman10214151811832E730DC-FA85-4FB8-AC06-085E9C6D5B4E1520151423xgc151520151423xgc15Times New Roman10115181181D99F2BA-A77D-4668-A38A-3C63877DBAED1520151423xgc151520151423xgc15E9F9D6C6-6AE4-4EA7-AE12-0348993C29E21520151423xgc151520151423xgc1511PDM_TABL_KEY_GROUPPDMKey %ITEM% of table %PARENT%Key %ITEM% of table %PARENT%Key %ITEM% of table %PARENT%98651B47-0B16-405D-B89D-EAB1AC65F56A1520151423xgc151520151423xgc1511PDM_TABL_KEY_CARDPDMCard of the key %ITEM% of the table %PARENT%Card of the key %ITEM% of the table %PARENT%Card of the key %ITEM% of the table %PARENT%Name
Code
Table
40F20F2B-E5AA-4DD7-9463-F3DAAA06A1E31520151423xgc151520151423xgc15Arial105135310602F80F946-97FF-4AB9-887B-6B7890335C111520151423xgc151520151423xgc15Times New Roman10213315182118EA78C389-97DC-41F0-AD80-6F75B3880D841520151423xgc151520151423xgc15Times New Roman10115182118F2336783-02D8-472E-A1D7-67D28CECA49B1520151423xgc151520151423xgc1511PDM_TABL_KEY_DESCPDMDescription of key %ITEM% of table %PARENT%Description of key %ITEM% of table %PARENT%Description of key %ITEM% of table %PARENT%5985B515-D0B3-4DB1-9F9D-8D427D6EBF611520151423xgc151520151423xgc15Arial10513531060199867FA-F055-4AA8-A066-7930B2A3308C1520151423xgc151520151423xgc15Times New Roman10101A8FAD61-D444-40B5-BFAE-7DC54E106E191520151423xgc151520151423xgc1511PDM_TABL_KEY_NOTEPDMAnnotation of key %ITEM% of table %PARENT%Annotation of key %ITEM% of table %PARENT%Annotation of key %ITEM% of table %PARENT%DF2F5D1C-08C4-4A3F-8FAE-4C8EEA310D0C1520151423xgc151520151423xgc15Arial105135310609FDE70AC-2CCC-4058-8236-EE4D3E705A331520151423xgc151520151423xgc15Times New Roman1010D3763D26-2470-465F-96C8-B847294AE94E1520151423xgc151520151423xgc1511PDM_TABL_KEY_PREVPDMCode preview of %ITEM%Code preview of %ITEM%Code preview of %ITEM%E9994E2B-14FA-4303-8E49-6B4B93B4C20F1520151423xgc151520151423xgc15Arial10513531060EFDA3261-7ACD-4F12-B76A-23FE14D8157A1520151423xgc151520151423xgc15Times New Roman101084DCF1E7-B904-4358-9981-597522DBDCC91520151423xgc151520151423xgc1511PDM_TABL_KEY_COLN_LISTPDMColumn list of the key %PARENT%Column list of the key %PARENT%Column list of the key %PARENT%1-40 Name
-40 Code
69181C1A-A345-45C3-B07D-0236D553AC8B1520151423xgc151520151423xgc15Arial105135310600B800E10-5DBE-4BB5-BEEC-B5C0EF2599FB1520151423xgc151520151423xgc15Times New Roman1021415181182AE8893F-805D-4D1B-B6F2-823CBB6770371520151423xgc151520151423xgc15Times New Roman10115181187B05C1BF-097E-407A-AC3E-56D5E5CB8D3B1520151423xgc151520151423xgc15FE731AE4-72BC-4A20-A08F-DF623758A0D81520151423xgc151520151423xgc1511PDM_TABL_KEY_DEPND_LISTPDMDependent Object list of key %PARENT%Dependent Object list of key %PARENT%Dependent Object list of key %PARENT%1-40 Name
-40 Code
-20 ClassName
37ED9651-450C-4375-A4AC-FF8E24FEE9D71520151423xgc151520151423xgc15Arial10513531060281E9D42-1CBB-4B90-A0E8-AA5E3BDE741E1520151423xgc151520151423xgc15Times New Roman102141518118078FF11E-B0EF-4832-9D76-22D1A953A2FB1520151423xgc151520151423xgc15Times New Roman1011518118A0A6F8A3-B5CC-421E-ABF6-6DDE83FB39A61520151423xgc151520151423xgc155B44AC81-A4BF-45DF-A3A4-8D13FF65231B1520151423xgc151520151423xgc1511PDM_TABL_KEY_EXA_LISTPDMExtended Attribute List of key %PARENT%Extended Attribute List of key %PARENT%Extended Attribute List of key %PARENT%1-30 Name
-20 DataType
-20 Value
-30 TargetName
83B6E42B-EE95-478B-ADEA-F7A8C2D434D91520151423xgc151520151423xgc15Arial10513531060F4051263-8E2F-499A-BDAA-566CF42934D11520151423xgc151520151423xgc15Times New Roman1021415181184CE992BD-164E-4B40-BA38-CC34DD73A1641520151423xgc151520151423xgc15Times New Roman101151811856ECCE5E-311F-4989-90CC-11AE51CCA4131520151423xgc151520151423xgc15CDD6728D-DCCE-4F76-90D2-DAC14AE26FA51520151423xgc151520151423xgc15Arial105135310609457616F-57E6-472E-9803-49E559C5BA751520151423xgc151520151423xgc1511PDM_TABL_INDX_LISTPDMIndex list of the table %PARENT%Index list of the table %PARENT%Index list of the table %PARENT%1-20 Name
-20 Code
-12 Unique
-12 Clustered
-12 Primary
-12 ForeignKey
-12 AlternateKey
335748AB-BE43-4164-8428-A78C368B4E421520151423xgc151520151423xgc15Arial105135310609C05D291-ED7B-4136-B4CE-EF317B6CBE081520151423xgc151520151423xgc15Times New Roman10214151811840763A17-99E4-480B-9230-05F948E72C511520151423xgc151520151423xgc15Times New Roman10115181183C11F301-5523-497D-8F20-753B4A0B7A6A1520151423xgc151520151423xgc1535ADAC64-D05C-4C84-B8E2-A25E599CBC841520151423xgc151520151423xgc1511PDM_TABL_INDX_GROUPPDMIndex %ITEM% of table %PARENT%Index %ITEM% of table %PARENT%Index %ITEM% of table %PARENT%6E88ECB3-4CBC-4C10-A7AE-850B09C638CC1520151423xgc151520151423xgc1511PDM_TABL_INDX_CARDPDMCard of the index %ITEM% of the table %PARENT%Card of the index %ITEM% of the table %PARENT%Card of the index %ITEM% of the table %PARENT%Name
Code
Unique
Clustered
Primary
ForeignKey
AlternateKey
Table
BA77E35E-CA3D-4DE2-8E78-398D42A77BDD1520151423xgc151520151423xgc15Arial1051353106029546158-A916-43B3-BEAE-87C1985FDD641520151423xgc151520151423xgc15Times New Roman10213315182118CEA3AE22-351D-4063-B15B-B6C19F50B8441520151423xgc151520151423xgc15Times New Roman101151821183E3767D7-6680-499C-B567-2E331E408C061520151423xgc151520151423xgc1511PDM_TABL_INDX_DESCPDMDescription of index %ITEM% of table %PARENT%Description of index %ITEM% of table %PARENT%Description of index %ITEM% of table %PARENT%B96D6BF0-0B55-4701-A29F-6A2E63F605CC1520151423xgc151520151423xgc15Arial105135310602A665D1B-A7D3-4812-9265-28D11E686C2F1520151423xgc151520151423xgc15Times New Roman1010F5E1E644-7E1E-4B26-8F95-A7E2C19DF1C51520151423xgc151520151423xgc1511PDM_TABL_INDX_NOTEPDMAnnotation of index %ITEM% of table %PARENT%Annotation of index %ITEM% of table %PARENT%Annotation of index %ITEM% of table %PARENT%CE08C2A5-F523-4632-91D5-4E799B205D511520151423xgc151520151423xgc15Arial10513531060E5D81433-DBEF-4F1C-B8F8-08D8D9E9C9271520151423xgc151520151423xgc15Times New Roman101077DB51E1-F357-4EEB-8218-37AB6F4BCAC11520151423xgc151520151423xgc1511PDM_TABL_INDX_PREVPDMCode preview of %ITEM%Code preview of %ITEM%Code preview of %ITEM%A62C8D37-350C-440C-92AB-2AACC7851DCA1520151423xgc151520151423xgc15Arial10513531060852FF7A7-8AD3-4566-A316-E7391648F6AB1520151423xgc151520151423xgc15Times New Roman1010A9CD7DC5-61F8-4497-9DF9-F84B8149BB9C1520151423xgc151520151423xgc1511PDM_TABL_INDX_COLN_LISTPDMColumn list of the index %PARENT%Column list of the index %PARENT%Column list of the index %PARENT%1-38 Name
-38 Code
-24 Ascending
75534E1D-9F06-48AA-9222-05938ED418CA1520151423xgc151520151423xgc15Arial1051353106038CF7254-1EE6-4C54-BF63-89EC23EA49E11520151423xgc151520151423xgc15Times New Roman10214151811869A26DA8-A697-4B0D-989C-9F7B32D66C481520151423xgc151520151423xgc15Times New Roman10115181181A30006A-79A2-4A8F-AE2D-9E1004B882361520151423xgc151520151423xgc15FA6511AB-278D-4FE8-AECB-0072F8FBDD001520151423xgc151520151423xgc1511PDM_TABL_INDX_DEPND_LISTPDMDependent Object list of index %PARENT%Dependent Object list of index %PARENT%Dependent Object list of index %PARENT%1-40 Name
-40 Code
-20 ClassName
E46A3715-6E0F-4A2C-84C0-DAB8410C8A721520151423xgc151520151423xgc15Arial105135310604470F3A7-C9A7-4827-BAD9-8E5CAEF9E37B1520151423xgc151520151423xgc15Times New Roman102141518118E3ECAEEC-D8F0-4179-A6C6-D1675950B22D1520151423xgc151520151423xgc15Times New Roman1011518118AB7C47B4-6565-4412-9772-DAC03D4EF5A11520151423xgc151520151423xgc15557F8DC1-2F01-4B7D-9814-A0CD4527056B1520151423xgc151520151423xgc1511PDM_TABL_INDX_EXA_LISTPDMExtended Attribute List of index %PARENT%Extended Attribute List of index %PARENT%Extended Attribute List of index %PARENT%1-30 Name
-20 DataType
-20 Value
-30 TargetName
E77AA4C3-BF8F-4479-9D3C-979D1D0C97921520151423xgc151520151423xgc15Arial10513531060B87B643E-9010-4C7D-90CB-898F8EFDC8A51520151423xgc151520151423xgc15Times New Roman102141518118E15B78FE-2025-4BA4-8ABA-1F1BE48279621520151423xgc151520151423xgc15Times New Roman10115181188701773D-0AE0-433A-9BC6-F83394F1815D1520151423xgc151520151423xgc155B0A3B1E-C31E-4701-BE0F-F1B644DFD6A71520151423xgc151520151423xgc15Arial105135310605B9D46E7-D13B-4806-A5E2-1221AE65208F1520151423xgc151520151423xgc1511PDM_TABL_TRGR_LISTPDMTrigger list of the table %PARENT%Trigger list of the table %PARENT%Trigger list of the table %PARENT%1-50 Name
-50 Code
D65AF9A9-B661-4127-8609-47DF042F31E21520151423xgc151520151423xgc15Arial105135310606E70F999-D260-4A3C-BB8D-17DD9B7DAA591520151423xgc151520151423xgc15Times New Roman102141518118BE0CB964-A341-43EA-AE41-53BADB7690D81520151423xgc151520151423xgc15Times New Roman101151811840E8F56E-DFE0-4A82-A962-8D6AD373E77E1520151423xgc151520151423xgc159F469C6B-A681-4702-A215-9B70CD08ABF61520151423xgc151520151423xgc1511PDM_TABL_TRGR_GROUPPDMTrigger %ITEM% of table %PARENT%Trigger %ITEM% of table %PARENT%Trigger %ITEM% of table %PARENT%D8FA9925-8E66-421A-876D-FD17FE287C971520151423xgc151520151423xgc1511PDM_TABL_TRGR_CARDPDMCard of the trigger %ITEM% of the table %PARENT%Card of the trigger %ITEM% of the table %PARENT%Card of the trigger %ITEM% of the table %PARENT%Name
Code
Generated
Table
TriggerTemplate
UserDefinedSQL
99F68958-E62D-4AA6-84A5-8A0EDFF418DA1520151423xgc151520151423xgc15Arial10513531060B754C141-A9A5-4998-8F99-86854546DE661520151423xgc151520151423xgc15Times New Roman1021331518211898E6ABA7-301E-4DEF-8FAE-E582DE65CBAB1520151423xgc151520151423xgc15Times New Roman1011518211841621A8A-3BEB-4DF2-AA81-7BC73A81AC0B1520151423xgc151520151423xgc1511PDM_TABL_TRGR_DESCPDMDescription of trigger %ITEM% of table %PARENT%Description of trigger %ITEM% of table %PARENT%Description of trigger %ITEM% of table %PARENT%690A6F53-1B1B-47C5-BA6F-F8DAA3E4A64C1520151423xgc151520151423xgc15Arial105135310606A2D2B1A-4367-48F6-B61A-A41BD0A313B31520151423xgc151520151423xgc15Times New Roman10102D16167D-E421-4757-BC16-4FF580A215F01520151423xgc151520151423xgc1511PDM_TABL_TRGR_NOTEPDMAnnotation of trigger %ITEM% of table %PARENT%Annotation of trigger %ITEM% of table %PARENT%Annotation of trigger %ITEM% of table %PARENT%FCF0F5BB-972B-4557-AEA1-0E3B8EE43CC21520151423xgc151520151423xgc15Arial10513531060302D187C-F3B6-4A40-978F-C878674F323E1520151423xgc151520151423xgc15Times New Roman1010A0B8853C-942C-416A-A684-DEF87ABCC9FC1520151423xgc151520151423xgc1511PDM_TABL_TRGR_PREVPDMCode preview of %ITEM%Code preview of %ITEM%Code preview of %ITEM%470579C0-2019-4CDB-93B6-CD6E36E2CE001520151423xgc151520151423xgc15Arial1051353106094F627C5-6904-4DD9-BB89-2F26E0C306AA1520151423xgc151520151423xgc15Times New Roman1010AF99A0DA-EEA5-4E28-A99A-DC6D81C88F781520151423xgc151520151423xgc1511PDM_TABL_TRGR_EXA_LISTPDMExtended Attribute List of trigger %PARENT%Extended Attribute List of trigger %PARENT%Extended Attribute List of trigger %PARENT%1-30 Name
-20 DataType
-20 Value
-30 TargetName
4F6E6107-3887-4DA3-8069-0D628396858F1520151423xgc151520151423xgc15Arial10513531060926343E4-40BC-432B-A4F8-4F33EC00CFF31520151423xgc151520151423xgc15Times New Roman10214151811850365574-23D8-48D3-B8BE-BA8C46B424821520151423xgc151520151423xgc15Times New Roman10115181181902E161-90E2-44FE-8157-0497E6B6D5DE1520151423xgc151520151423xgc157FB4B048-636F-4EF1-88C1-294246D4E5DD1520151423xgc151520151423xgc15Arial10513531060352201A2-AC4A-4F63-A712-A5B3E19F51771520151423xgc151520151423xgc1511PDM_TABL_CMAP_LISTPDMMapping list of the table %PARENT%Mapping list of the table %PARENT%Mapping list of the table %PARENT%1-50 Name
-50 Code
47187163-F987-4A23-8E08-CF616C6A72821520151423xgc151520151423xgc15Arial105135310602C309B2A-0349-4287-B4F1-4543B8F6F9DF1520151423xgc151520151423xgc15Times New Roman1021415181183B2AE455-0576-4512-9D99-2E5269945B111520151423xgc151520151423xgc15Times New Roman101151811836337E9E-9130-46DB-AC98-B1D2C4A394861520151423xgc151520151423xgc15833CDA55-4F65-499C-85A4-4A51427996371520151423xgc151520151423xgc1511PDM_TABL_CMAP_GROUPPDMMapping %ITEM% of table %PARENT%Mapping %ITEM% of table %PARENT%Mapping %ITEM% of table %PARENT%BB450E0D-F5C6-4D78-AFD5-E1D6249078D61520151423xgc151520151423xgc1511PDM_TABL_CMAP_CARDPDMCard of the mapping %ITEM% of the table %PARENT%Card of the mapping %ITEM% of the table %PARENT%Card of the mapping %ITEM% of the table %PARENT%Name
Code
9F6B0716-5657-4349-A9AE-518C6F45BB631520151423xgc151520151423xgc15Arial1051353106011502013-F466-4EEA-8246-08D11BACA74D1520151423xgc151520151423xgc15Times New Roman10213315182118447FBE91-DDAD-4491-B626-2E61BAC0A66C1520151423xgc151520151423xgc15Times New Roman10115182118DF91C842-636E-46F4-B829-D20D181E7EB31520151423xgc151520151423xgc1511PDM_TABL_CMAP_CRTRPDMCriteria of mapping %ITEM% of table %PARENT%Criteria of mapping %ITEM% of table %PARENT%Criteria of mapping %ITEM% of table %PARENT%82996C6E-FAE7-4536-9B0C-64FD886775CE1520151423xgc151520151423xgc15Arial105135310603EB593E0-9AF9-4DBA-9C44-F0B7815ED1AC1520151423xgc151520151423xgc15Times New Roman10109E32BC82-CD37-4C45-8DB5-9FBAE3D458681520151423xgc151520151423xgc1511PDM_TABL_CMAP_EXPRPDMSource expression of mapping %ITEM% of table %PARENT%Source expression of mapping %ITEM% of table %PARENT%Source expression of mapping %ITEM% of table %PARENT%66E39B3C-03C8-4371-B516-4ED80BB1A9C91520151423xgc151520151423xgc15Arial105135310606F0E57F8-4A64-4AC2-90DF-873BE14026C51520151423xgc151520151423xgc15Times New Roman101008E100F7-5C91-412F-98EC-86304C3290651520151423xgc151520151423xgc1511PDM_TABL_CMAP_SFEA_LISTPDMColumn mapping list of %PARENT%Column mapping list of %PARENT%Column mapping list of %PARENT%1-50 Column
-50 MappedTo
D7FBC840-629D-4703-A275-0DAAFE403ADB1520151423xgc151520151423xgc15Arial105135310603E013323-4304-4138-BBAB-1BE00AAC583B1520151423xgc151520151423xgc15Times New Roman1021415181188413282E-26AC-47B6-8C91-0590C6C59B901520151423xgc151520151423xgc15Times New Roman1011518118E7C3251D-F469-42E2-9571-6BEEF06BE73E1520151423xgc151520151423xgc1556C46C93-E03F-430E-89FB-5E9450AD4A421520151423xgc151520151423xgc1511PDM_TABL_CMAP_SCRC_LISTPDMTable sources list of mapping %PARENT%Table sources list of mapping %PARENT%Table sources list of mapping %PARENT%1-50 Name
-50 Code
0C8F6C54-FF10-446C-A9C9-28CBF044A4941520151423xgc151520151423xgc15Arial10513531060CFCAE991-8E04-4D9F-9692-37711AD688E11520151423xgc151520151423xgc15Times New Roman1021415181183C80A145-88B5-4F7E-93B3-E72A854A581D1520151423xgc151520151423xgc15Times New Roman1011518118CB33882D-7031-4F15-9F8D-267B73BEA82C1520151423xgc151520151423xgc159F2AB59F-0060-4DA4-854E-54D1ABE254A11520151423xgc151520151423xgc15Arial105135310609DE43765-A738-4F33-9286-175BCB2981A81520151423xgc151520151423xgc15Arial1051353106016F5778A-55E0-4BF6-88F6-BC69C43CAD111520151423xgc151520151423xgc15Arial10513531060391FD16D-58AA-436F-816C-79B4EC09BE6F1520151423xgc151520151423xgc151PAGEBREAKPDMECFF5165-4BED-46E9-A485-85A80B7BC1291520151423xgc151520151423xgc15Arial10514231060BB51EA5C-6882-4553-A2D5-194C90E8BF661520151423xgc151520151423xgc1511TITLEPDMReferencesEFEB9B0B-A243-4406-88FA-6DA9604A8D451520151423xgc151520151423xgc1511TITLEPDMModel level references7A8D1BED-2A21-4D23-BEDA-FA70DDE25BC81520151423xgc151520151423xgc1511PDM_REFR_TITLEPDMReference %ITEM%Reference %ITEM%Reference %ITEM%38C8CE6F-30DF-4400-BF74-DEC455E626AE1520151423xgc151520151423xgc1511PDM_REFR_CARDPDMCard of the reference %ITEM%Card of the reference %ITEM%Card of the reference %ITEM%Name
Code
ParentTable
ChildTable
02AE6789-BCFD-4D2C-A1C7-1D36A1BC4BF41520151423xgc151520151423xgc15Arial105135310606F911372-D3E1-492D-9554-66F524B96C981520151423xgc151520151423xgc15Times New Roman1021331518211818D485DA-2BA6-44A7-8D26-B56CA27C71131520151423xgc151520151423xgc15Times New Roman10115182118A58979B4-E7C6-49A8-80EE-10B0D3C012631520151423xgc151520151423xgc1511PDM_REFR_DESCPDMDescription of reference %ITEM%Description of reference %ITEM%Description of reference %ITEM%559D1F16-2F4D-4E39-BC20-4908BF0561E51520151423xgc151520151423xgc15Arial10513531060642D6723-576C-4369-9291-6454C5CB97C51520151423xgc151520151423xgc15Times New Roman101064CF6423-1DC9-48BA-BB18-754F6A8695961520151423xgc151520151423xgc1511PDM_REFR_NOTEPDMAnnotation of reference %ITEM%Annotation of reference %ITEM%Annotation of reference %ITEM%E322962D-0197-4D41-9D19-0C750E37129E1520151423xgc151520151423xgc15Arial105135310601B82F9AC-F1F2-48AB-872A-E9F5597B622E1520151423xgc151520151423xgc15Times New Roman10107FDE8DF1-C846-4E53-9B6E-3F21510569FA1520151423xgc151520151423xgc1511PDM_REFR_PREVPDMCode preview of %ITEM%Code preview of %ITEM%Code preview of %ITEM%4D6D5D7B-D10F-421E-9483-292D07F9770C1520151423xgc151520151423xgc15Arial1051353106042416A2D-F4EA-43AA-BB15-9D883D18170D1520151423xgc151520151423xgc15Times New Roman1010B7F4FB4F-5D6F-4DEE-8E76-3E3B5C471D2B1520151423xgc151520151423xgc1511PDM_REFR_DIAG_LISTPDMList of diagrams containing reference %PARENT%List of diagrams containing reference %PARENT%List of diagrams containing reference %PARENT%1-50 Name
-50 Code
8A0314F3-00F2-4C81-BFB4-2383FA3D4F281520151423xgc151520151423xgc15Arial105135310606400A73F-6E21-45BB-8741-4409C7624B831520151423xgc151520151423xgc15Times New Roman1021415181187D37E72F-8750-4011-A787-7BF8AD4EED371520151423xgc151520151423xgc15Times New Roman1011518118F283EB3A-C824-4C89-B6A1-A6A20C059EF91520151423xgc151520151423xgc15E4E19779-C871-495F-9E66-EA11E444FBE51520151423xgc151520151423xgc1511PDM_REFR_JOIN_LISTPDMReference join list for reference %PARENT%Reference join list for reference %PARENT%Reference join list for reference %PARENT%1-50 ParentTableColumn
-50 ChildTableColumn
CDFCDEC7-3FC5-45C5-91E1-099F6CD06A641520151423xgc151520151423xgc15Arial105135310600B4EC31E-CE67-450B-8A2C-AD6ABA0141E91520151423xgc151520151423xgc15Times New Roman102141518118528E4696-716B-4E44-8C96-5E9144EBBB3D1520151423xgc151520151423xgc15Times New Roman1011518118B490320F-5E04-4106-A510-07DDD5D714431520151423xgc151520151423xgc15253C4999-6744-42A9-A395-85722F1BC63A1520151423xgc151520151423xgc1511PDM_REFR_RULE_LISTPDMBusiness rule list for reference %PARENT%Business rule list for reference %PARENT%Business rule list for reference %PARENT%140 Name
-40 Code
-20 Type
A48ECEF1-378F-4478-B966-7FE78356D5F81520151423xgc151520151423xgc15Arial10513531060F898E49C-A5FA-4709-9B7D-6C85BD7FEF0E1520151423xgc151520151423xgc15Times New Roman10214151811889ABE3CF-87E0-4775-8042-8EDCF036F8531520151423xgc151520151423xgc15Times New Roman1011518118CB52B5FE-BA75-4773-A304-BBAE340F47E11520151423xgc151520151423xgc15AC953C33-7903-4814-9314-7BEC03CA8CF71520151423xgc151520151423xgc1511PDM_REFR_DEPND_LISTPDMDependent Object list of reference %PARENT%Dependent Object list of reference %PARENT%Dependent Object list of reference %PARENT%1-40 Name
-40 Code
-20 ClassName
4937842E-6BC4-4CEB-A636-697967D0449D1520151423xgc151520151423xgc15Arial10513531060B791F1D1-053D-4C52-B068-A45ECEAFEE531520151423xgc151520151423xgc15Times New Roman1021415181188C81E03B-848D-470D-9942-3CD3628CF7DB1520151423xgc151520151423xgc15Times New Roman1011518118CDE7394D-EE7F-4396-83FF-0A63563720031520151423xgc151520151423xgc15C170B112-3C32-466A-A6C8-6E8989770A081520151423xgc151520151423xgc1511PDM_REFR_EXA_LISTPDMExtended Attribute List of reference %PARENT%Extended Attribute List of reference %PARENT%Extended Attribute List of reference %PARENT%1-30 Name
-20 DataType
-20 Value
-30 TargetName
D388EB44-D041-40EC-99EF-FC1410942F8D1520151423xgc151520151423xgc15Arial1051353106006B73293-8D54-4259-A092-CB48D10666201520151423xgc151520151423xgc15Times New Roman102141518118DF7C42EE-3051-4043-BBAD-0B12A1B62E101520151423xgc151520151423xgc15Times New Roman1011518118BBDFAB28-E963-4238-86AE-C28BA94D84171520151423xgc151520151423xgc15696A6AF0-9BCF-4029-A369-E45C36A78B691520151423xgc151520151423xgc15Arial10513531060A7714C97-5FF9-4C4D-BBFB-F4B0E77B06521520151423xgc151520151423xgc15Arial10514231060F292A491-310D-4C97-9044-85A8543BD3081520151423xgc151520151423xgc1511PDM_PCKG_TITLEPDMPackage %ITEM%Package %ITEM%References from Package %ITEM%10DF10579-ECCD-486E-9E9E-E0963FBAD3CF1520151423xgc151520151423xgc1511PDM_REFR_TITLEPDMReference %ITEM%Reference %ITEM%Reference %ITEM%5CEDD7FC-9B9B-4DC6-9FFB-AEDAB081FF7E1520151423xgc151520151423xgc1511PDM_REFR_CARDPDMCard of the reference %ITEM%Card of the reference %ITEM%Card of the reference %ITEM%Name
Code
ParentTable
ChildTable
EF6DDE3D-8E1B-4C21-A6C2-C7F454FD08981520151423xgc151520151423xgc15Arial10513531060DD314162-2D03-49A2-BD3C-8FED19888A7B1520151423xgc151520151423xgc15Times New Roman10213315182118F2444C3E-CEEF-469E-82F1-1C45FEA27A0A1520151423xgc151520151423xgc15Times New Roman101151821182BC2F91E-EBCE-4212-BD17-543A10358CB11520151423xgc151520151423xgc1511PDM_REFR_DESCPDMDescription of reference %ITEM%Description of reference %ITEM%Description of reference %ITEM%F782FD22-38B9-4696-9F06-EE18B98271D21520151423xgc151520151423xgc15Arial105135310607111173F-C825-4F05-B880-EB64ABB7A0B61520151423xgc151520151423xgc15Times New Roman10104BBF4136-BE8C-43C4-992F-09111F68D4771520151423xgc151520151423xgc1511PDM_REFR_NOTEPDMAnnotation of reference %ITEM%Annotation of reference %ITEM%Annotation of reference %ITEM%1B07231A-399D-49C9-9CDF-23D4A36FEB001520151423xgc151520151423xgc15Arial105135310603E32EFD2-AC62-4328-9349-635EBB5316171520151423xgc151520151423xgc15Times New Roman1010AA756795-E800-4976-B1B7-7540ABBEAADA1520151423xgc151520151423xgc1511PDM_REFR_PREVPDMCode preview of %ITEM%Code preview of %ITEM%Code preview of %ITEM%D28B4CDF-19AB-4987-84E0-7A2949BD57B41520151423xgc151520151423xgc15Arial105135310605670E36B-38AC-4A3E-9F1E-23CA3E939B8D1520151423xgc151520151423xgc15Times New Roman10104D4F8436-3CCE-4ADF-96F4-8B9E8417C6411520151423xgc151520151423xgc1511PDM_REFR_DIAG_LISTPDMList of diagrams containing reference %PARENT%List of diagrams containing reference %PARENT%List of diagrams containing reference %PARENT%1-50 Name
-50 Code
A91004B4-1532-4F9E-AF08-E134D1306D971520151423xgc151520151423xgc15Arial1051353106068087EA3-7D9A-4EEC-9674-5FFBA5ECC5A61520151423xgc151520151423xgc15Times New Roman1021415181184F0E6B78-52E0-4F3B-B312-718631193ED81520151423xgc151520151423xgc15Times New Roman1011518118D94740EC-A00E-45AC-BCC8-86F7208F18591520151423xgc151520151423xgc15EF8F2CDE-FBE8-4D2D-8739-A92CD6A1BFB31520151423xgc151520151423xgc1511PDM_REFR_JOIN_LISTPDMReference join list for reference %PARENT%Reference join list for reference %PARENT%Reference join list for reference %PARENT%1-50 ParentTableColumn
-50 ChildTableColumn
941C5D06-8C3B-478D-A7D5-B84E0B1569CF1520151423xgc151520151423xgc15Arial1051353106004C98474-F413-4CC0-A283-40B0F3D7E9001520151423xgc151520151423xgc15Times New Roman1021415181186FC59BA4-8FC0-488C-967F-D02B3C81737A1520151423xgc151520151423xgc15Times New Roman10115181187101C406-299E-4A30-8315-7294549BF8D61520151423xgc151520151423xgc1506F6A7FB-DD6F-461F-B9B5-D259A89C44E61520151423xgc151520151423xgc1511PDM_REFR_RULE_LISTPDMBusiness rule list for reference %PARENT%Business rule list for reference %PARENT%Business rule list for reference %PARENT%140 Name
-40 Code
-20 Type
8130F6AF-DE4D-4B9C-BD6D-E0BAFB2497291520151423xgc151520151423xgc15Arial105135310600C75AE50-0245-4D8E-993C-860E731772651520151423xgc151520151423xgc15Times New Roman1021415181182ECA95BA-4F3F-4EA6-9F86-75C5FF5518CC1520151423xgc151520151423xgc15Times New Roman10115181181D046632-BCD7-4DAB-B8A3-BF8BC880D1931520151423xgc151520151423xgc15F9B30C00-5188-498B-B502-D6BE0A6CCB901520151423xgc151520151423xgc1511PDM_REFR_DEPND_LISTPDMDependent Object list of reference %PARENT%Dependent Object list of reference %PARENT%Dependent Object list of reference %PARENT%1-40 Name
-40 Code
-20 ClassName
F6D6362E-66C1-4958-A4AB-31E78D71FA981520151423xgc151520151423xgc15Arial105135310604E6C257E-182E-412C-ABF1-810BCB48C06B1520151423xgc151520151423xgc15Times New Roman102141518118635DE5F4-D8BF-479F-9EFD-41D128A2E5CD1520151423xgc151520151423xgc15Times New Roman1011518118E4AD223A-D2D8-488D-89DE-C8F57C7D9ACC1520151423xgc151520151423xgc15078B01C8-D776-4FA0-9BD8-97915C6898261520151423xgc151520151423xgc1511PDM_REFR_EXA_LISTPDMExtended Attribute List of reference %PARENT%Extended Attribute List of reference %PARENT%Extended Attribute List of reference %PARENT%1-30 Name
-20 DataType
-20 Value
-30 TargetName
C0E51D7C-6D02-4F28-8AA6-BA4EF67ED8961520151423xgc151520151423xgc15Arial10513531060C96E0C1B-9C4A-48DE-9DAB-6B841207AC3D1520151423xgc151520151423xgc15Times New Roman10214151811841030F50-AF06-4ED2-B0D0-D07C94D29D861520151423xgc151520151423xgc15Times New Roman1011518118EC901AD3-4B1B-4E5A-BE8F-BD304071C86C1520151423xgc151520151423xgc159A70A753-E7C8-4141-B4B7-D560361243EC1520151423xgc151520151423xgc15Arial10513531060F158C353-4B9D-4FE1-8047-EE205A5A8BA91520151423xgc151520151423xgc15Arial1051353106032ABC4F8-53C0-47E6-B828-27EB606E557A1520151423xgc151520151423xgc151PAGEBREAKPDM14A830F0-00FC-4E62-A49D-011B78A2FF531520151423xgc151520151423xgc15Arial1051423106020C54256-9D05-475C-ABC9-A2099FE2FDAB1520151423xgc151520151423xgc1511TITLEPDMViews8287385C-20D0-4A30-B2CF-671717B18AE71520151423xgc151520151423xgc1511TITLEPDMModel level viewsF50E8AB7-38F3-423E-86DF-24438A15FD7D1520151423xgc151520151423xgc1511PDM_VIEW_TITLEPDMView %ITEM%View %ITEM%View %ITEM%0888E947-3FAD-4D67-819B-99E5DB2EFC1A1520151423xgc151520151423xgc1511PDM_VIEW_CARDPDMCard of the view %ITEM%Card of the view %ITEM%Card of the view %ITEM%Name
Code
14C577D7-B440-4502-9788-699B25BF307D1520151423xgc151520151423xgc15Arial10513531060227BAB61-AA79-4CFB-932D-D4743A5BA9C51520151423xgc151520151423xgc15Times New Roman10213315182118BE051383-4A05-49D4-8D83-2EC768D325BE1520151423xgc151520151423xgc15Times New Roman10115182118BC3D5323-BD33-4FD7-95A6-93CCBF8010E71520151423xgc151520151423xgc1511PDM_VIEW_DESCPDMDescription of view %ITEM%Description of view %ITEM%Description of view %ITEM%6FDF0AC2-B324-4EF9-98E0-F7C3A12D7AA91520151423xgc151520151423xgc15Arial10513531060374E7BBA-3B9D-440B-9934-4883B33C586D1520151423xgc151520151423xgc15Times New Roman10102996CAF0-FBAB-46CF-8254-0DC00BDEF2891520151423xgc151520151423xgc1511PDM_VIEW_NOTEPDMAnnotation of view %ITEM%Annotation of view %ITEM%Annotation of view %ITEM%0BAA26CF-21FD-444A-877A-7C376F49B9A01520151423xgc151520151423xgc15Arial10513531060CABDF744-6C8E-438E-94D1-191A1FF0631C1520151423xgc151520151423xgc15Times New Roman1010F3DF74C3-110B-47CE-8DB8-FE8FB969C80B1520151423xgc151520151423xgc1511PDM_VIEW_SQLPDMSQL Query of view %ITEM%SQL Query of view %ITEM%SQL Query of view %ITEM%0CD16B67-B851-4A8F-B2E3-72EFBD03B3D51520151423xgc151520151423xgc15Arial105135310605A51A841-BF34-43D0-AD0F-8563953A9FA51520151423xgc151520151423xgc15Times New Roman1010A3BFEBFF-8C25-4840-B55A-865B185EB7C31520151423xgc151520151423xgc1511PDM_VIEW_PREVPDMCode preview of %ITEM%Code preview of %ITEM%Code preview of %ITEM%993FD342-741E-49CC-BE35-D047F0150D441520151423xgc151520151423xgc15Arial1051353106017B46450-5BAE-4581-AF47-E8E28F16F7C11520151423xgc151520151423xgc15Times New Roman101059A9D22B-F8FF-47E8-8BE6-06F71A0EAC981520151423xgc151520151423xgc1511PDM_VIEW_DIAG_LISTPDMList of diagrams containing view %PARENT%List of diagrams containing view %PARENT%List of diagrams containing view %PARENT%1-50 Name
-50 Code
EF7B38A0-C0F5-4C93-999F-0ABEE9E053741520151423xgc151520151423xgc15Arial1051353106020BB4DDC-8171-4F90-8F97-C3AA33848DF11520151423xgc151520151423xgc15Times New Roman102141518118B4FC24F5-7B59-4440-B8B0-73F54585D5F51520151423xgc151520151423xgc15Times New Roman1011518118DC32BA57-F325-44E4-BDA1-F0BD34A139F91520151423xgc151520151423xgc15BD1D2678-6969-4045-95A9-7C27D56AC28D1520151423xgc151520151423xgc1511PDM_VIEW_RULE_LISTPDMBusiness rule list for view %PARENT%Business rule list for view %PARENT%Business rule list for view %PARENT%1-40 Name
-40 Code
-20 Type
1C2F0EC5-6A46-47C7-B8B2-02F1B4C29C971520151423xgc151520151423xgc15Arial10513531060E3653676-737A-46B8-BCC4-7C32EC76BF9B1520151423xgc151520151423xgc15Times New Roman1021415181181064ACCF-70E5-44ED-A0EB-DBC790637A951520151423xgc151520151423xgc15Times New Roman10115181186B941A84-5CE5-4523-966D-FCBC8662AA171520151423xgc151520151423xgc15D35CEFF3-0215-49CD-BC1D-F451BAE70FE31520151423xgc151520151423xgc1511PDM_VIEW_DEPND_LISTPDMDependent Object list of view %PARENT%Dependent Object list of view %PARENT%Dependent Object list of view %PARENT%1-40 Name
-40 Code
-20 ClassName
8CEDE8F0-58AE-4AA3-976B-1DC0152F04171520151423xgc151520151423xgc15Arial10513531060AE54ECD1-735A-4A45-8222-377B8B5CAF211520151423xgc151520151423xgc15Times New Roman102141518118725DB5C9-E8E3-4B8E-B9C0-577AFAA765C21520151423xgc151520151423xgc15Times New Roman1011518118F3C778BA-5C21-4D21-8B78-3FDC4151A9231520151423xgc151520151423xgc15B29ED3F2-F9E6-4734-8108-4F474098C3C81520151423xgc151520151423xgc1511PDM_VIEW_EXA_LISTPDMExtended Attribute List of view %PARENT%Extended Attribute List of view %PARENT%Extended Attribute List of view %PARENT%1-30 Name
-20 DataType
-20 Value
-30 TargetName
67EA5543-BF41-4BAA-ACCF-31C7E92B91E41520151423xgc151520151423xgc15Arial10513531060CC1F7A77-0011-41B8-A81F-02E15365234F1520151423xgc151520151423xgc15Times New Roman102141518118F80F6514-E922-4B09-A14B-D080CC8E159C1520151423xgc151520151423xgc15Times New Roman1011518118631AE6CD-904D-491B-8422-7224546110EB1520151423xgc151520151423xgc15EF18F2B5-7CC9-4F48-AC36-9A5EBE5C3A5B1520151423xgc151520151423xgc1511PDM_VIEW_USRDEPD_LISTPDMExtended Dependency list of view %PARENT%Extended Dependency list of view %PARENT%Extended Dependency list of view %PARENT%1-33 Stereotype
-33 InfluentObject
-33 InfluentObjectType
95A5A89D-A246-47B2-BAD8-03FDB87C8C7B1520151423xgc151520151423xgc15Arial10513531060A490C02F-1BFA-477B-BD7C-96C96F56E4A31520151423xgc151520151423xgc15Times New Roman102141518118B0500314-E437-47CD-8FD4-236B0D3A41FE1520151423xgc151520151423xgc15Times New Roman1011518118576A534C-32A7-4BC4-872B-77698D48B9BD1520151423xgc151520151423xgc15A4EE0679-9BDC-438F-AA9E-C64553399B791520151423xgc151520151423xgc15Arial10513531060B596D5CE-F2B0-4BAB-8DD7-2F279D4A1D211520151423xgc151520151423xgc15Arial1051423106037E708D1-2B70-41DE-A1C6-A3A9BC2BBB261520151423xgc151520151423xgc1511PDM_PCKG_TITLEPDMPackage %ITEM%Package %ITEM%Views from Package %ITEM%1838C9721-620C-4E8B-B782-934898C0054B1520151423xgc151520151423xgc1511PDM_VIEW_TITLEPDMView %ITEM%View %ITEM%View %ITEM%3B12AFFB-DC02-4DE9-8904-8E49338249651520151423xgc151520151423xgc1511PDM_VIEW_CARDPDMCard of the view %ITEM%Card of the view %ITEM%Card of the view %ITEM%Name
Code
9D4B6999-549D-4571-B6B8-9D4B825CB7851520151423xgc151520151423xgc15Arial105135310606148D738-8A20-4FE5-B8C0-1FB9D0E7DB361520151423xgc151520151423xgc15Times New Roman102133151821180A6C6D07-7E39-4FBA-895C-A44CFF6C922A1520151423xgc151520151423xgc15Times New Roman10115182118D5B7178A-5F81-491F-B317-5431A85DCBA11520151423xgc151520151423xgc1511PDM_VIEW_DESCPDMDescription of view %ITEM%Description of view %ITEM%Description of view %ITEM%0B88AEAE-86D3-4490-A0D5-74FE9B283F5B1520151423xgc151520151423xgc15Arial10513531060BA995CCD-9DC0-4B61-8761-4EFD518F1A0C1520151423xgc151520151423xgc15Times New Roman10107012DC35-C065-4336-AA2E-1B7CF52CCDE31520151423xgc151520151423xgc1511PDM_VIEW_NOTEPDMAnnotation of view %ITEM%Annotation of view %ITEM%Annotation of view %ITEM%517DE74F-3502-42C1-A91B-2CE5F7E59DE81520151423xgc151520151423xgc15Arial10513531060D38D8C51-EB08-4262-9913-D3C0DF010D3D1520151423xgc151520151423xgc15Times New Roman1010FF72459E-9A0A-4969-848B-F356A2D14CFE1520151423xgc151520151423xgc1511PDM_VIEW_SQLPDMSQL Query of view %ITEM%SQL Query of view %ITEM%SQL Query of view %ITEM%407F9A23-5B9A-4D9F-B9E4-C0548610592E1520151423xgc151520151423xgc15Arial1051353106052CE68A4-A6E2-4A23-85B4-9731CFCBCCCE1520151423xgc151520151423xgc15Times New Roman1010F9EBBC06-489B-4673-959F-3EEC1B72934C1520151423xgc151520151423xgc1511PDM_VIEW_PREVPDMCode preview of %ITEM%Code preview of %ITEM%Code preview of %ITEM%EA79BF02-8088-438D-93D5-32A169E3550E1520151423xgc151520151423xgc15Arial10513531060D642922B-1FD0-4A8A-9483-5BAFF75517B51520151423xgc151520151423xgc15Times New Roman101021456755-CDD3-4BC3-B37D-6F17FA8384641520151423xgc151520151423xgc1511PDM_VIEW_DIAG_LISTPDMList of diagrams containing view %PARENT%List of diagrams containing view %PARENT%List of diagrams containing view %PARENT%1-50 Name
-50 Code
74B77549-A9A7-4D1C-9A55-FF839B7933E11520151423xgc151520151423xgc15Arial105135310609713CA06-C33A-43B4-9DFC-E2BE04F2AA211520151423xgc151520151423xgc15Times New Roman10214151811886011E98-C1A0-48CC-A72B-13AEA8827E6F1520151423xgc151520151423xgc15Times New Roman10115181183CFC5589-B871-443E-968C-89CD7EFD95BF1520151423xgc151520151423xgc15B16D9D99-8332-4F19-89B5-982D699622741520151423xgc151520151423xgc1511PDM_VIEW_RULE_LISTPDMBusiness rule list for view %PARENT%Business rule list for view %PARENT%Business rule list for view %PARENT%1-40 Name
-40 Code
-20 Type
2329B0B3-B111-4B36-9594-A7CAC71BA6A01520151423xgc151520151423xgc15Arial10513531060AECCFDF7-02C4-40AC-BAC4-CFF2040104F11520151423xgc151520151423xgc15Times New Roman1021415181188F1F179B-D634-46FA-BC42-7CF36E36AA261520151423xgc151520151423xgc15Times New Roman1011518118081A10EF-5236-47DD-8494-FD3B8E0319C11520151423xgc151520151423xgc158C201567-5CFA-4E38-9763-BEEED475B55E1520151423xgc151520151423xgc1511PDM_VIEW_DEPND_LISTPDMDependent Object list of view %PARENT%Dependent Object list of view %PARENT%Dependent Object list of view %PARENT%1-40 Name
-40 Code
-20 ClassName
F32638B8-B40D-4E68-BF00-44CF891752381520151423xgc151520151423xgc15Arial105135310607624DA40-2F69-41FC-A5C7-691D2E9B1FEE1520151423xgc151520151423xgc15Times New Roman10214151811890229573-3654-4749-A64F-57F9CCB2A29C1520151423xgc151520151423xgc15Times New Roman10115181187BB7D911-D7CA-4567-8620-6BFDAEC28C051520151423xgc151520151423xgc1586C3F06E-F3BC-4977-BAA4-D1F9A30808101520151423xgc151520151423xgc1511PDM_VIEW_EXA_LISTPDMExtended Attribute List of view %PARENT%Extended Attribute List of view %PARENT%Extended Attribute List of view %PARENT%1-30 Name
-20 DataType
-20 Value
-30 TargetName
50E90A2D-7629-460D-A020-68DBF5AC79B01520151423xgc151520151423xgc15Arial10513531060F72333AA-E71B-4DF7-8CCC-86F852779B331520151423xgc151520151423xgc15Times New Roman102141518118B7D664D0-4897-4368-B27B-ED80075784221520151423xgc151520151423xgc15Times New Roman1011518118F540B7CD-C527-4B2C-9714-A3FEEBDA6E4C1520151423xgc151520151423xgc1577AABB76-2D6A-4466-88DC-DE9632DC495E1520151423xgc151520151423xgc1511PDM_VIEW_USRDEPD_LISTPDMExtended Dependency list of view %PARENT%Extended Dependency list of view %PARENT%Extended Dependency list of view %PARENT%1-33 Stereotype
-33 InfluentObject
-33 InfluentObjectType
7B01922A-DF83-4195-AD39-44F2AE0DA4601520151423xgc151520151423xgc15Arial1051353106074A22FC0-F9E1-4466-B947-45504B76393F1520151423xgc151520151423xgc15Times New Roman102141518118431DB327-B3ED-485D-B68B-6C5E87B85F821520151423xgc151520151423xgc15Times New Roman1011518118F01F3359-2694-4A9F-B1BB-F750093DB9901520151423xgc151520151423xgc15B76F5E34-F71C-4DE6-AA04-CC1DAD07D8411520151423xgc151520151423xgc15Arial105135310608A167BD7-1F31-4C62-A8D5-C0715B20E15B1520151423xgc151520151423xgc15Arial10513531060AF346CFC-2EC4-4447-A394-4893B47F7C231520151423xgc151520151423xgc15Arial10514231060B675E95A-8E70-4D0E-99FE-23FCEEC87C201520151439xgc151520151439xgc1511PDM_TABL_TITLEPDMTable %ITEM%Table %ITEM%Table %ITEM%Tables6D3BACEE-8A90-49D3-B3B8-BF67F72A73C91520151439xgc151520151663xgc1511PDM_TABL_COLN_LISTPDMList of columns of the table %PARENT%List of columns of the table %PARENT%List of columns of the table %PARENT%Columns1-20 Code
-20 DataType
-10 Length
-30 Comment
-10 Mandatory
-10 Primary
307FCD0F-0645-40F5-88EF-2220C80CB84CColumn selection1520151503xgc151520151503xgc1510Code 1 0
Comment 1 0
DataType 1 0
Length 1 0
Mandatory 1 0
Primary 1 0
; Criterion; IncludeShortcuts;5776CBA8-A7AD-465C-A835-BDA92C88F6BA1520151439xgc151520151439xgc15新宋体1053531060286A3D23-97B1-4861-9255-157B9B97CD611520151439xgc151520151439xgc15Microsoft Sans Serif1024111C6C22E7-553C-43A3-9121-3B37851C09F91520151439xgc151520151439xgc15Microsoft Sans Serif101198CEDA8A-0CA6-4955-A6A9-BBC193B1E7BD1520151439xgc151520151439xgc152C23165C-0988-47FD-8C05-AC36021C9A761520151439xgc151520151439xgc15新宋体10535310605BA1038B-7389-47DA-9D3A-F879397A060C1520151423xgc151520151423xgc15Times New Roman101865A67577-904B-40DC-B91A-4E9D193E94E51520151423xgc151520151423xgc1518637340F1F1A5-0625-4783-9AF1-07AA2D943BA71520151423xgc151520151423xgc15Times New Roman10128B898493-CA5F-42E2-B65A-D376184DFEF21520151423xgc151520151423xgc1595492ECB47E73-8A4F-45E7-A8F5-5C969CC4032C1520151423xgc151520151423xgc1519098352D60E79-97A7-4050-9629-831A78E0B748Simplified ChineseZH-CN1520151423xgc151520151423xgc15F3A0BF0F-7536-11D5-A4D6-0008C79B4501585CBB37-C940-11D1-BD0D-00A02478ECC92FFE5D00-4ACE-44D6-AEC9-9CAB11BAD251Base_TableBase_Table1520151423xgc151520151423xgc15file:///.160EB092-2F96-4235-852F-052B990C5A86CDE44E21-9669-11D1-9914-006097355D9B1520152423924E1F4D-7116-4ED8-92CF-E33EB5D643F6dbodbo1536569054xgc151536569233xgc15Schema9C05B61E-6146-47EA-BD6D-6353BF49466ABase_User【系统用户表】Base_User1506739100xgc151536569098xgc15系统用户表C057AEEA-8C81-4255-BA91-A003617E9122自然主键Id1506741663xgc151536568654xgc15自然主键varchar(50)501F24C6FD1-6416-48CC-B6B6-8F89ED36ABBD用户主键UserId1506739587xgc151536568654xgc15用户主键varchar(50)50ECC84CE6-4665-41BA-83E1-20D37BEBDBB0用户名UserName1536568663xgc151536568691xgc15用户名varchar(50)50B555008F-DC95-4D34-9FA7-9AA4132C43EB密码Password1506739811xgc151506740404xgc15密码varchar(50)502C25A539-D7AA-4A30-9D92-F9CB31A6A8E9姓名RelaName1506739964xgc151536568663xgc15姓名nvarchar(50)50628BD730-6D8D-4A64-A9E2-996A9D3DD644性别(1为男,0为女)Sex1506739964xgc151506740404xgc15性别(1为男,0为女)int6986F57C-F948-4439-A1A4-270C110264DD出生日期Birthday1506739964xgc151506740404xgc15出生日期date278C2B8B-FB63-4940-AC54-1E5A1CBA40D6Key_1Key_11506739587xgc151506741767xgc15E75C8AEB-9FB2-44A9-AD81-7733C2323DC3Base_DatabaseLink【数据库连接表】Base_DatabaseLink1507182882xgc151536569085xgc15数据库连接表B626C714-5B93-49A9-93E7-5D8CD2FA33F3自然主键Id1507182882xgc151536569136xgc15自然主键varchar(50)501BE021714-AB12-465C-B45C-AF4E56AD3E86连接名LinkName1507182882xgc151507183219xgc15连接名varchar(50)50C301FB2B-B6B0-4A70-994A-8B17797FBE23连接字符串ConnectionStr1507182882xgc151507183219xgc15连接字符串varchar(50)501EF75F1F-4D0C-4A2B-B4EB-7AEB915E0C46数据库类型DbType1507182882xgc151507183219xgc15数据库类型varchar(50)50D4FB0095-5F13-456F-945C-65EE687853B2排序编号SortNum1507182882xgc151507183219xgc15排序编号varchar(50)50E6A723D8-2ADA-4883-BA08-8E2377F4D8E2Key_1Key_11507182882xgc151507183219xgc15B32CB75F-B20E-4423-89F9-13AD723CC8F7Base_AppSecret【应用秘钥表】Base_AppSecret1507623325xgc151536568994xgc15应用密钥表7053E7B7-D4BC-4836-9BF0-FAF9A11FAE22主键IdId1507623325xgc151536568962xgc15自然主键varchar(50)5018E39DE69-6381-4B49-A589-BA91C2B0C2CA应用IdAppId1507623325xgc151507623537xgc15应用Idvarchar(50)502D8F4608-9EF3-49DC-81C3-9A6913DBC543应用密钥AppSecret1507623325xgc151507623537xgc15应用密钥varchar(50)5048527EF4-BC3F-4188-9383-F74CD0CEDC7D应用名AppName1536568962xgc151536568994xgc15应用名varchar(50)50BDB40063-1B26-4EEE-B97C-708862E36677Key_1Key_11507623325xgc151507623537xgc150A35DB61-FCEE-4C37-BB8C-320C633FD20ABase_SysRole【系统角色表】Base_SysRole1508978602xgc151536569680xgc15系统角色表73BC16E9-48A9-432B-8C24-C8B10F9C82CB自然主键Id1508978602xgc151536568851xgc15自然主键varchar(50)5015D5C0AF9-8482-4207-803C-B51162F548C0角色IdRoleId1508978602xgc151508978806xgc15角色Idvarchar(50)50CD047A9F-4B4C-4FB7-AA06-C2EE86B50129角色名RoleName1508978602xgc151508978806xgc15角色名nvarchar(50)50B793DDC0-17FA-472B-96A6-0968329BB110Key_1Key_11508978602xgc151508978806xgc15BB10EAC2-BA31-421F-8728-3F3B86533203Base_PermissionAppId【AppId权限表】Base_PermissionAppId1508978814xgc151536569233xgc15AppId权限表92FF9AB3-7B2C-4C15-98DB-AD1DBB1B068C自然主键Id1508978814xgc151536569277xgc15自然主键varchar(50)5013E11C482-D287-41EB-859A-81C2C10AF543应用IdAppId1508978814xgc151536569277xgc15应用Idvarchar(50)503F0AE3DF-D979-4015-B446-277B1B817C63权限值PermissionValue1508978814xgc151536569277xgc15权限值varchar(50)501D783F0D-9353-4B3B-BEDB-B146E1703590Key_1Key_11508978814xgc151536569188xgc15143D7E8C-8AB8-4551-A643-3D77678AE86EBase_PermissionRole【角色权限表】Base_PermissionRole1508978814xgc151536569330xgc15角色权限表9B7199F4-49D9-4551-B977-815299541F41自然主键Id1508978814xgc151536569287xgc15自然主键varchar(50)50147F77FFE-206F-47E4-A65B-D727859ECC2A角色IdRoleId1508978814xgc151536569342xgc15角色Idvarchar(50)50F0FC43CC-1D32-4D17-9114-3DE647154213权限值PermissionValue1508978814xgc151536569287xgc15权限值varchar(50)50F08429A1-2A56-4937-9AE2-75041BF76353Key_1Key_11508978814xgc151536569287xgc15F8320650-D90D-4C95-8235-48BF6CC50253Base_PermissionUser【用户权限表】Base_PermissionUser1508978814xgc151536569415xgc15用户权限表844A93D2-6462-4170-89E0-E86DFCAB1727自然主键Id1508978814xgc151536569380xgc15自然主键varchar(50)501EB440F6F-3A38-432A-9C28-EAC4426B2DFC用户IdUserId1508978814xgc151536569426xgc15用户Idvarchar(50)5017467BC4-31AD-4009-A5C5-1A57790F2267权限值PermissionValue1508978814xgc151536569380xgc15权限值varchar(50)5014D60F89-3285-4D08-8E21-586F0A58B407Key_1Key_11508978814xgc151536569380xgc15FEA503C2-B2E2-4A5E-9D3E-F6B5B9455404Base_SysLog【系统日志表】Base_SysLog1508978814xgc151536569633xgc15系统日志表326474CD-27DB-4E6C-AEAE-8856689D6B5F自然主键Id1508978814xgc151536569446xgc15自然主键varchar(50)50129B7B342-CFC8-43F7-9DBD-3D81B23306D3日志类型LogType1536569453xgc151536569529xgc15日志类型varchar(50)505701352D-29DB-4357-A269-7F0D78CDF052日志内容LogContent1536569529xgc151536569560xgc15日志内容varchar(Max)A3E90726-C1D5-4AE6-A672-B584F8337398操作员用户名OpUserName1536569560xgc151536569633xgc15操作员用户名varchar(50)501EA8325D-41E4-4F1A-95F2-662D1ABFB2F3日志记录时间OpTime1536569560xgc151536569633xgc15日志记录时间datetime68C2C9DB-6858-4399-A8A2-0DAF557F8C7EKey_1Key_11508978814xgc151536569446xgc152EBC4054-FB0A-4502-A5B2-E27F21BB412CBase_UserRoleMap【用户角色映射表】Base_UserRoleMap1508978602xgc151536569777xgc15用户角色映射表A07417D2-21BA-4C4A-B0BB-36879B2207B3自然主键Id1508978602xgc151536569712xgc15自然主键varchar(50)5019D7D8746-4DAD-4214-9F66-2DBBD91C2122用户IdUserId1508978602xgc151536569774xgc15用户Idvarchar(50)50FDC849FA-F578-46E7-8E16-CA7D983EC854角色IdRoleId1508978602xgc151536569712xgc15角色Idvarchar(50)508E962F7C-AE7C-4AA7-B1C3-3A76C5411F85Key_1Key_11508978602xgc151536569712xgc155977E6B6-3DFB-435B-8912-54B6868E8324PUBLICPUBLIC1506739078xgc151536569093xgc15E3356D8D-8D14-4545-B082-E0EAF380DFCFMicrosoft SQL Server 2008MSSQLSRV20081506739078xgc151506739078xgc15file:///%_DBMS%/sqlsv2k8.xdbF5C20738-B05A-4F70-BC90-9B5EB94377664BA9F647-DAB1-11D1-9944-006097355D9B1341502043C29FDDE2-8E31-4002-9F46-9ED24D84074CSimplified ChineseZH-CN1520149495xgc151520151423xgc15file:///%_RTPLANG%/Chinese.xrlF3A0BF0F-7536-11D5-A4D6-0008C79B4501585CBB37-C940-11D1-BD0D-00A02478ECC91310116582
================================================
FILE: docs/数据库设计/Base_Table.sws
================================================
================================================
FILE: src/Coldairarrow.Business/00Cache/BaseCache/BaseCache.T.cs
================================================
using Coldairarrow.Util;
using System;
using System.Collections.Generic;
namespace Coldairarrow.Business.Cache
{
public class BaseCache : IBaseCache where T : class
{
#region 构造函数
///
/// 构造函数
///
/// 缓存模块键值
/// 根据主键获取数据的具体方法
public BaseCache(string cacheModuleKey, Func getDataFunc)
{
_moduleKey = cacheModuleKey;
_getDataFunc = getDataFunc;
}
#endregion
#region 私有成员
private Func _getDataFunc { get; set; }
public string _moduleKey { get; set; }
#endregion
#region 外部接口
public string BuildKey(string idKey)
{
return $"{GlobalSwitch.ProjectName}_Cache_{_moduleKey}_{idKey}";
}
public T GetCache(string idKey)
{
if (idKey.IsNullOrEmpty())
return null;
string cacheKey = BuildKey(idKey);
var cache = CacheHelper.Cache.GetCache(cacheKey);
if (cache == null)
{
cache = _getDataFunc(idKey);
if (cache != null)
CacheHelper.Cache.SetCache(cacheKey, cache);
}
return cache;
}
public void UpdateCache(string idKey)
{
CacheHelper.Cache.RemoveCache(BuildKey(idKey));
}
public void UpdateCache(List idKeys)
{
idKeys.ForEach(x => UpdateCache(x));
}
#endregion
}
}
================================================
FILE: src/Coldairarrow.Business/00Cache/BaseCache/IBaseCache.T.cs
================================================
namespace Coldairarrow.Business.Cache
{
public interface IBaseCache where T : class
{
T GetCache(string idKey);
void UpdateCache(string idKey);
}
}
================================================
FILE: src/Coldairarrow.Business/00Cache/Base_UserModelCache.cs
================================================
using Coldairarrow.Business.Base_SysManage;
using Coldairarrow.Util;
using System.Linq;
namespace Coldairarrow.Business.Cache
{
public class Base_UserModelCache : BaseCache
{
public Base_UserModelCache()
: base("Base_UserModel", userId =>
{
if (userId.IsNullOrEmpty())
return null;
return new Base_UserBusiness().GetDataList("UserId", userId, new Pagination()).FirstOrDefault();
})
{
}
}
}
================================================
FILE: src/Coldairarrow.Business/04.Coldairarrow.Business.csproj
================================================
DebugAnyCPU{62858A89-DA3C-4658-8219-580780D435C9}LibraryPropertiesColdairarrow.BusinessColdairarrow.Businessv4.5.2512truefullfalsebin\Debug\DEBUG;TRACEprompt4pdbonlyfalsebin\Release\TRACEprompt4..\packages\AutoMapper.6.2.2\lib\net45\AutoMapper.dll..\packages\Elasticsearch.Net.6.1.0\lib\net45\Elasticsearch.Net.dll..\packages\EntityFramework.6.2.0\lib\net45\EntityFramework.dll..\packages\EntityFramework.6.2.0\lib\net45\EntityFramework.SqlServer.dll..\packages\Google.Protobuf.3.5.1\lib\net45\Google.Protobuf.dll..\packages\Microsoft.Extensions.DependencyInjection.Abstractions.1.1.0\lib\netstandard1.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll..\packages\Microsoft.Extensions.Logging.1.1.1\lib\netstandard1.1\Microsoft.Extensions.Logging.dll..\packages\Microsoft.Extensions.Logging.Abstractions.1.1.1\lib\netstandard1.1\Microsoft.Extensions.Logging.Abstractions.dll..\packages\NEST.6.1.0\lib\net45\Nest.dll..\packages\Newtonsoft.Json.12.0.1\lib\net45\Newtonsoft.Json.dll..\packages\System.Collections.Immutable.1.5.0\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll..\packages\System.Linq.Dynamic.1.0.7\lib\net40\System.Linq.Dynamic.dll..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard1.0\System.Runtime.CompilerServices.Unsafe.dll..\packages\System.Runtime.InteropServices.RuntimeInformation.4.3.0\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll..\packages\System.Threading.Tasks.Extensions.4.5.1\lib\portable-net45+win8+wp8+wpa81\System.Threading.Tasks.Extensions.dll{01c93a6b-76c5-4b10-b8b9-2f173b5f9441}02.Coldairarrow.DataRepository{544fe3ea-46f2-45f7-9574-d4fea111a9c1}03.Coldairarrow.Entity{7095b12b-7ff2-4b6b-8c6c-654197edaa34}01.Coldairarrow.Util
================================================
FILE: src/Coldairarrow.Business/BaseBusiness/BaseBusiness.T.cs
================================================
using Coldairarrow.Business.Common;
using Coldairarrow.DataRepository;
using Coldairarrow.Entity.Base_SysManage;
using Coldairarrow.Util;
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Common;
using System.Data.Entity;
using System.Linq;
using System.Linq.Dynamic;
using System.Linq.Expressions;
namespace Coldairarrow.Business
{
///
/// 描述:业务处理基类
/// 作者:Coldairarrow
///
/// 泛型约束(数据库实体)
public class BaseBusiness : IRepository where T : class, new()
{
#region 构造函数
///
/// 构造函数
///
public BaseBusiness()
{
SetService(null, null, null);
}
///
/// 构造函数
///
/// 连接名或连接字符串
public BaseBusiness(string conStr)
{
SetService(conStr, null, null);
}
///
/// 构造函数
///
/// 连接名或连接字符串
/// 数据库类型
public BaseBusiness(string conStr, DatabaseType dbType)
{
SetService(conStr, dbType, null);
}
///
/// 构造函数
///
/// 数据库连接名或连接字符串
/// 数据库类型
/// 实体命名空间
public BaseBusiness(string conStr, DatabaseType dbType, string entityNamespace)
{
SetService(conStr, dbType, entityNamespace);
}
///
/// 构造函数
///
/// 上下文连接的DbContext
public BaseBusiness(DbContext dbContext)
{
SetService(dbContext, null, null);
}
///
/// 构造函数
///
/// 上下文连接的DbContext
/// 数据库类型
public BaseBusiness(DbContext dbContext, DatabaseType dbType)
{
SetService(dbContext, dbType, null);
}
#endregion
#region 私有成员
///
/// 设置仓储服务
///
/// 参数
/// 数据库类型
/// 命名空间
private void SetService(object param, DatabaseType? dbType, string entityNamespace)
{
Service = DbFactory.GetRepository(param, dbType, entityNamespace);
}
#endregion
#region 外部属性
public IRepository Service { get; set; }
#endregion
#region 事物提交
///
/// 开始事物提交
///
public void BeginTransaction()
{
Service.BeginTransaction();
}
///
/// 结束事物提交
///
public bool EndTransaction()
{
return Service.EndTransaction();
}
#endregion
#region 增加数据
///
/// 插入数据
///
/// 实体类型
/// 实体
public void Insert(T entity)
{
Service.Insert(entity);
}
///
/// 插入数据列表
/// 注:若数据量较大,请使用BulkInsert
///
/// 实体类型
/// 实体列表
public void Insert(List entities)
{
Service.Insert(entities);
}
///
/// 使用Bulk批量插入数据
/// 注:适合大数据量,速度非常快,不支持事务提交(本身是一个事务)
///
/// 数据
public void BulkInsert(List entities)
{
Service.BulkInsert(entities);
}
#endregion
#region 删除数据
///
/// 删除表中所有数据
///
/// 实体
public void DeleteAll()
{
Service.DeleteAll();
}
///
/// 删除一条记录
///
/// 该记录主键
public void Delete(string key)
{
Service.Delete(key);
}
///
/// 删除多条记录
///
/// 主键列表
public void Delete(List keys)
{
Service.Delete(keys);
}
///
/// 删除一条数据
///
/// 实体类型
/// 实体对象
public void Delete(T entity)
{
Service.Delete(entity);
}
///
/// 删除多条数据
///
/// 实体类型
/// 数据列表
public void Delete(List entities)
{
Service.Delete(entities);
}
///
/// 通过条件删除数据
///
/// 实体类型
/// 条件
public void Delete(Expression> condition)
{
Service.Delete_Sql(condition);
}
#endregion
#region 更新数据
///
/// 更新一条数据
///
/// 实体类型
/// 实体对象
public void Update(T entity)
{
Service.Update(entity);
}
///
/// 更新多条数据
///
/// 实体类型
/// 数据列表
public void Update(List entities)
{
Service.Update(entities);
}
///
/// 更新一条数据,某些属性
///
/// 实体对象
/// 需要更新的字段
public void UpdateAny(T entity, List properties)
{
Service.UpdateAny(entity, properties);
}
///
/// 更新多条数据,某些属性
///
/// 数据列表
/// 需要更新的字段
public void UpdateAny(List entities, List properties)
{
Service.UpdateAny(entities, properties);
}
///
/// 指定条件更新
///
/// 实体类型
/// 筛选表达式
/// 更改属性回调
public void UpdateWhere(Expression> whereExpre, Action set)
{
Service.UpdateWhere(whereExpre, set);
}
#endregion
#region 查询数据
///
/// 获取实体
///
/// 实体类型
/// 主键
///
public T GetEntity(params object[] keyValue)
{
return Service.GetEntity(keyValue);
}
///
/// 获取表的所有数据,当数据量很大时不要使用!
///
/// 实体类型
///
public List GetList()
{
return Service.GetList();
}
///
/// 获取实体对应的表,延迟加载,主要用于支持Linq查询操作
///
/// 实体类型
///
public virtual IQueryable GetIQueryable()
{
return Service.GetIQueryable();
}
///
/// 获取分页后的数据
///
/// 实体类型
/// 数据源IQueryable
/// 分页参数
///
public List GetPagination(IQueryable query, Pagination pagination)
{
return query.GetPagination(pagination).ToList();
}
///
/// 获取分页后的数据
///
/// 实体参数
/// IQueryable数据源
/// 当前页
/// 每页行数
/// 排序列
/// 排序类型
/// 总记录数
/// 总页数
///
public List GetPagination(IQueryable query, int pageIndex, int pageRows, string orderColumn, string orderType, ref int count, ref int pages)
{
Pagination pagination = new Pagination
{
page = pageIndex,
rows = pageRows,
sord = orderType,
sidx = orderColumn
};
count = pagination.records = query.Count();
pages = pagination.total;
return query.GetPagination(pagination).ToList();
}
///
/// 通过Sql查询返回DataTable
///
/// sql语句
///
public DataTable GetDataTableWithSql(string sql)
{
return Service.GetDataTableWithSql(sql);
}
///
/// 通过Sql参数查询返回DataTable
///
/// Sql语句
/// 查询参数
///
public DataTable GetDataTableWithSql(string sql, List parameters)
{
return Service.GetDataTableWithSql(sql, parameters);
}
///
/// 通过sql返回List
///
/// 实体类型
/// sql语句
///
public List GetListBySql(string sqlStr) where U : class, new()
{
return Service.GetListBySql(sqlStr);
}
///
/// 通过sql返回list
///
/// 实体类
/// sql语句
/// 参数
///
public List GetListBySql(string sqlStr, List param) where U : class, new()
{
return Service.GetListBySql(sqlStr, param);
}
#endregion
#region 执行Sql语句
///
/// 执行Sql语句
///
/// Sql语句
public void ExecuteSql(string sql)
{
Service.ExecuteSql(sql);
}
///
/// 通过参数执行Sql语句
///
/// Sql语句
public void ExecuteSql(string sql, List parameters)
{
Service.ExecuteSql(sql, parameters);
}
#endregion
#region 业务返回
///
/// 返回成功
///
///
public AjaxResult Success()
{
AjaxResult res = new AjaxResult
{
Success = true,
Msg = "请求成功!",
Data = null
};
return res;
}
///
/// 返回成功
///
/// 消息
///
public AjaxResult Success(string msg)
{
AjaxResult res = new AjaxResult
{
Success = true,
Msg = msg,
Data = null
};
return res;
}
///
/// 返回成功
///
/// 返回的数据
///
public AjaxResult Success(object data)
{
AjaxResult res = new AjaxResult
{
Success = true,
Msg = "请求成功!",
Data = data
};
return res;
}
///
/// 返回成功
///
/// 返回的消息
/// 返回的数据
///
public AjaxResult Success(string msg, object data)
{
AjaxResult res = new AjaxResult
{
Success = true,
Msg = msg,
Data = data
};
return res;
}
///
/// 返回错误
///
///
public AjaxResult Error()
{
AjaxResult res = new AjaxResult
{
Success = false,
Msg = "请求失败!",
Data = null
};
return res;
}
///
/// 返回错误
///
/// 错误提示
///
public AjaxResult Error(string msg)
{
AjaxResult res = new AjaxResult
{
Success = false,
Msg = msg,
Data = null
};
return res;
}
#endregion
#region 其它操作
public virtual EnumType.LogType LogType { get => throw new Exception("请在子类重写"); }
public void WriteSysLog(string logContent)
{
WriteSysLog(logContent, LogType);
}
///
/// 写入日志
///
/// 日志内容
/// 日志类型
public static void WriteSysLog(string logContent, EnumType.LogType logType)
{
BusHelper.WriteSysLog(logContent, logType);
}
///
/// 处理系统异常
///
/// 异常对象
public static void HandleException(Exception ex)
{
BusHelper.HandleException(ex);
}
///
/// 校验重复的数据字段
///
/// 校验的数据
public void CheckRepeatProperty(T data)
{
CheckRepeatProperty(data, CheckRepeatPropertyConfig);
}
///
/// 校验重复的数据字段
///
/// 校验的数据
/// 校验的属性,Key为字段名,Value为重复后的提示信息
public void CheckRepeatProperty(T data, Dictionary properties)
{
foreach (var aProperty in properties)
{
if (!data.GetPropertyValue(aProperty.Key).IsNullOrEmpty())
{
int count = GetIQueryable().Where($"Id!=@0&&{aProperty.Key}==@1", data.GetPropertyValue("Id"), data.GetPropertyValue(aProperty.Key)).Count();
if (count > 0)
throw new Exception(aProperty.Value);
}
}
}
public virtual Dictionary CheckRepeatPropertyConfig { get; } = new Dictionary();
#endregion
}
}
================================================
FILE: src/Coldairarrow.Business/Base_SysManage/Base_AppSecretBusiness.cs
================================================
using Coldairarrow.Entity.Base_SysManage;
using Coldairarrow.Util;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Dynamic;
namespace Coldairarrow.Business.Base_SysManage
{
public class Base_AppSecretBusiness : BaseBusiness
{
#region ⲿӿ
///
/// ȡб
///
/// ѯ
/// ؼ
///
public List GetDataList(string condition, string keyword, Pagination pagination)
{
var q = GetIQueryable();
//ģѯ
if (!condition.IsNullOrEmpty() && !keyword.IsNullOrEmpty())
q = q.Where($@"{condition}.Contains(@0)", keyword);
return q.GetPagination(pagination).ToList();
}
///
/// ȡָĵ
///
///
///
public Base_AppSecret GetTheData(string id)
{
return GetEntity(id);
}
///
///
///
///
public void AddData(Base_AppSecret newData)
{
Insert(newData);
}
///
///
///
public void UpdateData(Base_AppSecret theData)
{
Update(theData);
}
///
/// ɾ
///
/// ɾ
public void DeleteData(List ids)
{
Delete(ids);
}
///
/// Ȩ
///
/// ӦId
/// Ȩֵ
public void SavePermission(string appId, List permissions)
{
Service.Delete_Sql(x => x.AppId == appId);
List insertList = new List();
permissions.ForEach(newPermission =>
{
insertList.Add(new Base_PermissionAppId
{
Id = Guid.NewGuid().ToSequentialGuid(),
AppId = appId,
PermissionValue = newPermission
});
});
Service.Insert(insertList);
}
#endregion
#region ˽гԱ
#endregion
#region ģ
#endregion
}
}
================================================
FILE: src/Coldairarrow.Business/Base_SysManage/Base_DatabaseLinkBusiness.cs
================================================
using Coldairarrow.Entity.Base_SysManage;
using Coldairarrow.Util;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Dynamic;
namespace Coldairarrow.Business.Base_SysManage
{
public class Base_DatabaseLinkBusiness : BaseBusiness
{
#region ⲿӿ
///
/// ȡб
///
/// ѯ
/// ؼ
///
public List GetDataList(string condition, string keyword, Pagination pagination)
{
var q = GetIQueryable();
//ģѯ
if (!condition.IsNullOrEmpty() && !keyword.IsNullOrEmpty())
q = q.Where($@"{condition}.Contains(@0)", keyword);
return q.GetPagination(pagination).ToList();
}
///
/// ȡָĵ
///
///
///
public Base_DatabaseLink GetTheData(string id)
{
return GetEntity(id);
}
///
///
///
///
public void AddData(Base_DatabaseLink newData)
{
Insert(newData);
}
///
///
///
public void UpdateData(Base_DatabaseLink theData)
{
Update(theData);
}
///
/// ɾ
///
/// ɾ
public void DeleteData(List ids)
{
Delete(ids);
}
#endregion
#region ˽гԱ
#endregion
#region ģ
#endregion
}
}
================================================
FILE: src/Coldairarrow.Business/Base_SysManage/Base_SysLogBusiness.cs
================================================
using Coldairarrow.Entity.Base_SysManage;
using Coldairarrow.Util;
using System;
using System.Collections.Generic;
namespace Coldairarrow.Business.Base_SysManage
{
public class Base_SysLogBusiness : BaseBusiness
{
#region ⲿӿ
///
/// ȡ־б
///
/// ־
/// ־
/// û
/// ʼʱ
/// ʱ
/// ҳ
///
public List GetLogList(
string logContent,
string logType,
string opUserName,
DateTime? startTime,
DateTime? endTime,
Pagination pagination)
{
return LoggerFactory.GetLogger().GetLogList(logContent, logType, opUserName, startTime, endTime, pagination);
}
#endregion
#region ˽гԱ
#endregion
#region ģ
#endregion
}
}
================================================
FILE: src/Coldairarrow.Business/Base_SysManage/Base_SysRoleBusiness.cs
================================================
using Coldairarrow.Entity.Base_SysManage;
using Coldairarrow.Util;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Dynamic;
namespace Coldairarrow.Business.Base_SysManage
{
public class Base_SysRoleBusiness : BaseBusiness
{
#region ⲿӿ
///
/// ȡб
///
/// ѯ
/// ؼ
///
public List GetDataList(string condition, string keyword, Pagination pagination)
{
var q = GetIQueryable();
//ģѯ
if (!condition.IsNullOrEmpty() && !keyword.IsNullOrEmpty())
q = q.Where($@"{condition}.Contains(@0)", keyword);
return q.GetPagination(pagination).ToList();
}
///
/// ȡָĵ
///
///
///
public Base_SysRole GetTheData(string id)
{
return GetEntity(id);
}
///
///
///
///
public void AddData(Base_SysRole newData)
{
Insert(newData);
}
///
///
///
public void UpdateData(Base_SysRole theData)
{
Update(theData);
}
///
/// ɾ
///
/// ɾ
public void DeleteData(List ids)
{
//ɾɫ
Delete(ids);
}
///
/// Ȩ
///
/// ɫId
/// Ȩֵ
public void SavePermission(string roleId,List permissions)
{
Service.Delete_Sql(x => x.RoleId == roleId);
List insertList = new List();
permissions.ForEach(newPermission =>
{
insertList.Add(new Base_PermissionRole
{
Id=Guid.NewGuid().ToSequentialGuid(),
RoleId=roleId,
PermissionValue=newPermission
});
});
Service.Insert(insertList);
PermissionManage.ClearUserPermissionCache();
}
#endregion
#region ˽гԱ
#endregion
#region ģ
#endregion
}
}
================================================
FILE: src/Coldairarrow.Business/Base_SysManage/Base_UserBusiness.cs
================================================
using Coldairarrow.Business.Cache;
using Coldairarrow.Business.Common;
using Coldairarrow.Entity.Base_SysManage;
using Coldairarrow.Util;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Dynamic;
using System.Linq.Expressions;
namespace Coldairarrow.Business.Base_SysManage
{
public class Base_UserBusiness : BaseBusiness
{
static Base_UserModelCache _cache { get; } = new Base_UserModelCache();
#region ⲿӿ
///
/// ȡб
///
/// ѯ
/// ؼ
///
public List GetDataList(string condition, string keyword, Pagination pagination)
{
var where = LinqHelper.True();
Expression> selectExpre = a => new Base_UserModel
{
};
selectExpre = selectExpre.BuildExtendSelectExpre();
var q = from a in GetIQueryable().AsExpandable()
select selectExpre.Invoke(a);
//ģѯ
if (!condition.IsNullOrEmpty() && !keyword.IsNullOrEmpty())
q = q.Where($@"{condition}.Contains(@0)", keyword);
var list= q.Where(where).GetPagination(pagination).ToList();
SetProperty(list);
return list;
void SetProperty(List users)
{
//ûɫ
List userIds = users.Select(x => x.UserId).ToList();
var userRoles = (from a in Service.GetIQueryable()
join b in Service.GetIQueryable() on a.RoleId equals b.RoleId
where userIds.Contains(a.UserId)
select new
{
a.UserId,
b.RoleId,
b.RoleName
}).ToList();
users.ForEach(aUser =>
{
aUser.RoleIdList = userRoles.Where(x => x.UserId == aUser.UserId).Select(x => x.RoleId).ToList();
aUser.RoleNameList = userRoles.Where(x => x.UserId == aUser.UserId).Select(x => x.RoleName).ToList();
});
}
}
///
/// ȡָĵ
///
///
///
public Base_User GetTheData(string id)
{
return GetEntity(id);
}
public void AddData(Base_User newData)
{
if (GetIQueryable().Any(x => x.UserName == newData.UserName))
throw new Exception("ûѴڣ");
Insert(newData);
}
///
///
///
public void UpdateData(Base_User theData)
{
if (theData.UserId == "Admin" && Operator.UserId != theData.UserId)
throw new Exception("ֹijԱ");
Update(theData);
_cache.UpdateCache(theData.UserId);
}
public void SetUserRole(string userId, List roleIds)
{
Service.Delete_Sql(x => x.UserId == userId);
var insertList = roleIds.Select(x => new Base_UserRoleMap
{
Id = GuidHelper.GenerateKey(),
UserId = userId,
RoleId = x
}).ToList();
Service.Insert(insertList);
_cache.UpdateCache(userId);
PermissionManage.UpdateUserPermissionCache(userId);
}
///
/// ɾ
///
/// ɾ
public void DeleteData(List ids)
{
var adminUser = GetTheUser("Admin");
if (ids.Contains(adminUser.Id))
throw new Exception("Ա˺,ֹɾ");
var userIds = GetIQueryable().Where(x => ids.Contains(x.UserId)).Select(x => x.UserId).ToList();
Delete(ids);
_cache.UpdateCache(userIds);
}
///
/// ȡǰϢ
///
///
public static Base_UserModel GetCurrentUser()
{
return GetTheUser(Operator.UserId);
}
///
/// ȡûϢ
///
/// ûId
///
public static Base_UserModel GetTheUser(string userId)
{
return _cache.GetCache(userId);
}
public static List GetUserRoleIds(string userId)
{
return GetTheUser(userId).RoleIdList;
}
///
///
///
///
///
public AjaxResult ChangePwd(string oldPwd,string newPwd)
{
AjaxResult res = new AjaxResult() { Success = true };
string userId = Operator.UserId;
oldPwd = oldPwd.ToMD5String();
newPwd = newPwd.ToMD5String();
var theUser = GetIQueryable().Where(x => x.UserId == userId && x.Password == oldPwd).FirstOrDefault();
if (theUser == null)
{
res.Success = false;
res.Msg = "ԭ벻ȷ";
}
else
{
theUser.Password = newPwd;
Update(theUser);
}
_cache.UpdateCache(userId);
return res;
}
///
/// Ȩ
///
/// ûId
/// Ȩֵ
public void SavePermission(string userId, List permissions)
{
Service.Delete_Sql(x => x.UserId == userId);
var roleIdList = Service.GetIQueryable().Where(x => x.UserId == userId).Select(x => x.RoleId).ToList();
var existsPermissions = Service.GetIQueryable()
.Where(x => roleIdList.Contains(x.RoleId) && permissions.Contains(x.PermissionValue))
.GroupBy(x => x.PermissionValue)
.Select(x => x.Key)
.ToList();
permissions.RemoveAll(x => existsPermissions.Contains(x));
List insertList = new List();
permissions.ForEach(newPermission =>
{
insertList.Add(new Base_PermissionUser
{
Id = Guid.NewGuid().ToSequentialGuid(),
UserId = userId,
PermissionValue = newPermission
});
});
Service.Insert(insertList);
}
#endregion
#region ˽гԱ
#endregion
#region ģ
#endregion
}
public class Base_UserModel : Base_User
{
public string RoleNames { get => string.Join(",", RoleNameList); }
public List RoleIdList { get; set; }
public List RoleNameList { get; set; }
public EnumType.RoleType RoleType
{
get
{
int type = 0;
var values = typeof(EnumType.RoleType).GetEnumValues();
foreach (var aValue in values)
{
if (RoleNames.Contains(aValue.ToString()))
type += (int)aValue;
}
return (EnumType.RoleType)type;
}
}
}
}
================================================
FILE: src/Coldairarrow.Business/Base_SysManage/CheckSignBusiness.cs
================================================
using Coldairarrow.Entity.Base_SysManage;
using Coldairarrow.Util;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Web;
namespace Coldairarrow.Business.Base_SysManage
{
public class CheckSignBusiness : BaseBusiness
{
///
/// 判断是否有权限操作接口
///
///
public AjaxResult IsSecurity(HttpContext context)
{
try
{
var request = context.Request;
var allRequestParams = GetAllRequestParams(context);
if (!allRequestParams.ContainsKey("appId"))
return new ErrorResult("签名校验失败:缺少appId参数");
if (!allRequestParams.ContainsKey("sign"))
return new ErrorResult("签名校验失败:缺少sign签名参数");
if (!allRequestParams.ContainsKey("time"))
return new ErrorResult("签名校验失败:缺少time时间参数");
string appId = allRequestParams["appId"]?.ToString();
string appSecret = GetAppSecret(appId);
return CheckSign(allRequestParams, appSecret);
}
catch (Exception ex)
{
WriteSysLog($"签名校验异常:{ExceptionHelper.GetExceptionAllMsg(ex)}", EnumType.LogType.系统异常);
return new ErrorResult("签名校验异常,请查看系统异常日志!");
}
}
///
/// 获取应用密钥
///
/// 应用Id
///
public string GetAppSecret(string appId)
{
return GetIQueryable().Where(x => x.AppId == appId).FirstOrDefault()?.AppSecret;
}
///
/// 获取所有请求的参数(包括get参数和post参数)
///
/// 请求上下文
///
private Dictionary GetAllRequestParams(HttpContext context)
{
Dictionary allParams = new Dictionary();
var request = context.Request;
List paramKeys = new List();
var getParams = request.QueryString.AllKeys.ToList();
var postParams = request.Form.AllKeys.ToList();
paramKeys.AddRange(getParams);
paramKeys.AddRange(postParams);
paramKeys.ForEach(aParam =>
{
allParams.Add(aParam, request[aParam]);
});
string contentType = request.ContentType.ToLower();
//若为POST的application/json
if (contentType.Contains("application/json"))
{
var stream = request.InputStream;
stream.Position = 0;
string str = new StreamReader(stream).ReadToEnd();
var obj = str.ToJObject();
foreach (var aProperty in obj)
{
allParams.Add(aProperty.Key, aProperty.Value);
}
}
return allParams;
}
///
/// 检验签名是否有效
///
/// 所有的请求参数
/// 应用密钥
///
private AjaxResult CheckSign(Dictionary allRequestParames, string appSecret)
{
//检验签名是否过期
DateTime now = DateTime.Now;
DateTime requestTime = Convert.ToDateTime(allRequestParames["time"]?.ToString());
if (requestTime < now.AddMinutes(-5) || requestTime > now.AddMinutes(5))
return new ErrorResult("签名校验失败:time时间参数过期,请校准时间");
//检验签名是否有效
string oldSign = allRequestParames["sign"]?.ToString();
Dictionary parames = new Dictionary();
foreach (var aParam in allRequestParames)
{
parames.Add(aParam.Key, aParam.Value);
}
parames.Remove("sign");
string newSign = BuildSign(parames, appSecret);
if (newSign != oldSign)
return new ErrorResult("签名校验失败:sign签名参数校验失败,请仔细核对签名算法");
return Success();
}
///
/// 构建安全的请求参数(默认签名规则)
///
/// 业务参数(不包含校验参数)
/// 应用Id
/// 应用密钥
public static Dictionary BuildSafeHttpParam(Dictionary businessParams, string appId, string appSecret)
{
Dictionary requestParames = new Dictionary();
if (businessParams != null)
{
foreach (var aParam in businessParams)
{
requestParames.Add(aParam.Key, aParam.Value);
}
}
requestParames.Add("time", DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));
requestParames.Add("appId", appId);
string sign = BuildSign(requestParames, appSecret);
requestParames.Add("sign", sign);
return requestParames;
}
///
/// 构造签名
///
/// 需要的参数(不包括sign)
/// 应用密钥
///
private static string BuildSign(Dictionary needParames, string appSecret)
{
var sortedParams = new SortedDictionary(new AsciiComparer());
foreach (var aParam in needParames)
{
sortedParams.Add(aParam.Key, aParam.Value);
}
StringBuilder signBuilder = new StringBuilder();
foreach (var aParam in sortedParams)
{
var value = aParam.IsNullOrEmpty() ? string.Empty : aParam.Value.ToString();
signBuilder.Append($@"{aParam.Key}{value}");
}
signBuilder.Append(appSecret);
string sign = signBuilder.ToString().ToMD5String().ToUpper();
return sign;
}
///
/// 基于ASCII码排序规则的String比较器
///
class AsciiComparer : IComparer
{
public int Compare(string a, string b)
{
if (a == b)
return 0;
else if (string.IsNullOrEmpty(a))
return -1;
else if (string.IsNullOrEmpty(b))
return 1;
if (a.Length <= b.Length)
{
for (int i = 0; i < a.Length; i++)
{
if (a[i] < b[i])
return -1;
else if (a[i] > b[i])
return 1;
else
continue;
}
return a.Length == b.Length ? 0 : -1;
}
else
{
for (int i = 0; i < b.Length; i++)
{
if (a[i] < b[i])
return -1;
else if (a[i] > b[i])
return 1;
else
continue;
}
return 1;
}
}
}
}
}
================================================
FILE: src/Coldairarrow.Business/Base_SysManage/HomeBusiness.cs
================================================
using Coldairarrow.Business.Common;
using Coldairarrow.Entity.Base_SysManage;
using Coldairarrow.Util;
using System.Linq;
namespace Coldairarrow.Business.Base_SysManage
{
public class HomeBusiness:BaseBusiness
{
public AjaxResult SubmitLogin(string userName, string password)
{
if (userName.IsNullOrEmpty() || password.IsNullOrEmpty())
return Error("账号或密码不能为空!");
password = password.ToMD5String();
var theUser = GetIQueryable().Where(x => x.UserName == userName && x.Password == password).FirstOrDefault();
if (theUser != null)
{
Operator.Login(theUser.UserId);
return Success();
}
else
return Error("账号或密码不正确!");
}
}
}
================================================
FILE: src/Coldairarrow.Business/Base_SysManage/PermissionManage.cs
================================================
using Coldairarrow.Business.Common;
using Coldairarrow.Entity.Base_SysManage;
using Coldairarrow.Util;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Xml.Linq;
namespace Coldairarrow.Business.Base_SysManage
{
///
/// 权限管理静态类
///
public static class PermissionManage
{
#region 构造函数
///
/// 构造函数
///
static PermissionManage()
{
InitAllPermissionModules();
InitAllPermissionValues();
}
#endregion
#region 内部成员
private static string _permissionConfigFile { get; } = "~/Config/Permission.config";
private static List _allPermissionModules { get; set; }
private static List _allPermissionValues { get; set; }
private static void InitAllPermissionModules()
{
List resList = new List();
string filePath = HttpContext.Current.Server.MapPath(_permissionConfigFile);
XElement xe = XElement.Load(filePath);
xe.Elements("module")?.ForEach(aModule =>
{
PermissionModule newModule = new PermissionModule();
resList.Add(newModule);
newModule.Name = aModule.Attribute("name")?.Value;
newModule.Value = aModule.Attribute("value")?.Value;
newModule.Items = new List();
aModule?.Elements("permission")?.ForEach(aItem =>
{
PermissionItem newItem = new PermissionItem();
newModule.Items.Add(newItem);
newItem.Name = aItem?.Attribute("name")?.Value;
newItem.Value = aItem?.Attribute("value")?.Value;
});
});
_allPermissionModules = resList;
}
private static void InitAllPermissionValues()
{
List resList = new List();
GetAllPermissionModules()?.ForEach(aModule =>
{
aModule.Items?.ForEach(aItem =>
{
resList.Add($"{aModule.Value}.{aItem.Value}");
});
});
_allPermissionValues = resList;
}
private static List GetPermissionModules(List hasPermissions)
{
var permissionModules = GetAllPermissionModules();
permissionModules.ForEach(aModule =>
{
aModule.Items?.ForEach(aItem =>
{
aItem.IsChecked = hasPermissions.Contains($"{aModule.Value}.{aItem.Value}");
});
});
return permissionModules;
}
private static string _cacheKey { get; } = "Permission";
private static string BuildCacheKey(string key)
{
return $"{GlobalSwitch.ProjectName}_{_cacheKey}_{key}";
}
#endregion
#region 所有权限
///
/// 获取所有权限模块
///
///
public static List GetAllPermissionModules()
{
return _allPermissionModules.DeepClone();
}
///
/// 获取所有权限值
///
///
public static List GetAllPermissionValues()
{
return _allPermissionValues.DeepClone();
}
#endregion
#region 角色权限
///
/// 获取角色权限模块
///
///
///
public static List GetRolePermissionModules(string roleId)
{
BaseBusiness _db = new BaseBusiness();
var hasPermissions = _db.GetIQueryable().Where(x => x.RoleId == roleId).Select(x => x.PermissionValue).ToList();
return GetPermissionModules(hasPermissions);
}
#endregion
#region AppId权限
///
/// 获取AppId权限模块
///
///
///
public static List GetAppIdPermissionModules(string appId)
{
var hasPermissions = GetAppIdPermissionValues(appId);
return GetPermissionModules(hasPermissions);
}
///
/// 获取AppId权限值
///
///
///
public static List GetAppIdPermissionValues(string appId)
{
string cacheKey = BuildCacheKey(appId);
var permissions = CacheHelper.Cache.GetCache>(cacheKey);
if (permissions == null)
{
BaseBusiness _db = new BaseBusiness();
permissions = _db.GetIQueryable().Where(x => x.AppId == appId).Select(x => x.PermissionValue).ToList();
CacheHelper.Cache.SetCache(cacheKey, permissions);
}
return permissions.DeepClone();
}
///
/// 设置AppId权限
///
/// AppId
/// 权限值列表
public static void SetAppIdPermission(string appId,List permissions)
{
//更新缓存
string cacheKey = BuildCacheKey(appId);
CacheHelper.Cache.SetCache(cacheKey, permissions);
//更新数据库
BaseBusiness _db = new BaseBusiness();
var Service = _db.Service;
Service.Delete_Sql(x => x.AppId == appId);
List insertList = new List();
permissions.ForEach(newPermission =>
{
insertList.Add(new Base_PermissionAppId
{
Id = Guid.NewGuid().ToSequentialGuid(),
AppId = appId,
PermissionValue = newPermission
});
});
Service.Insert(insertList);
}
#endregion
#region 用户权限
///
/// 获取用户权限模块
///
///
///
public static List GetUserPermissionModules(string userId)
{
var hasPermissions = GetUserPermissionValues(userId);
return GetPermissionModules(hasPermissions);
}
///
/// 获取用户拥有的所有权限值
///
/// 用户Id
///
public static List GetUserPermissionValues(string userId)
{
string cacheKey = BuildCacheKey(userId);
var permissions = CacheHelper.Cache.GetCache>(cacheKey)?.DeepClone();
if (permissions == null)
{
UpdateUserPermissionCache(userId);
permissions = CacheHelper.Cache.GetCache>(cacheKey)?.DeepClone();
}
return permissions;
}
///
/// 设置用户权限
///
/// 用户Id
/// 权限值列表
public static void SetUserPermission(string userId,List permissions)
{
//更新数据库
BaseBusiness _db = new BaseBusiness();
var Service = _db.Service;
Service.Delete_Sql(x => x.UserId == userId);
var roleIdList = _db.Service.GetIQueryable().Where(x => x.UserId == userId).Select(x => x.RoleId).ToList();
var existsPermissions = Service.GetIQueryable()
.Where(x => roleIdList.Contains(x.RoleId) && permissions.Contains(x.PermissionValue))
.GroupBy(x => x.PermissionValue)
.Select(x => x.Key)
.ToList();
permissions.RemoveAll(x => existsPermissions.Contains(x));
List insertList = new List();
permissions.ForEach(newPermission =>
{
insertList.Add(new Base_PermissionUser
{
Id = Guid.NewGuid().ToSequentialGuid(),
UserId = userId,
PermissionValue = newPermission
});
});
Service.Insert(insertList);
//更新缓存
UpdateUserPermissionCache(userId);
}
///
/// 清除所有用户权限缓存
///
public static void ClearUserPermissionCache()
{
BaseBusiness _db = new BaseBusiness();
var userIdList = _db.Service.GetIQueryable().Select(x => x.UserId).ToList();
userIdList.ForEach(aUserId =>
{
CacheHelper.Cache.RemoveCache(BuildCacheKey(aUserId));
});
}
///
/// 更新用户权限缓存
///
/// <用户Id/param>
public static void UpdateUserPermissionCache(string userId)
{
string cacheKey = BuildCacheKey(userId);
List permissions = new List();
BaseBusiness _db = new BaseBusiness();
var userPermissions = _db.GetIQueryable().Where(x => x.UserId == userId).Select(x => x.PermissionValue).ToList();
var theUser = _db.Service.GetIQueryable().Where(x => x.UserId == userId).FirstOrDefault();
var roleIdList = Base_UserBusiness.GetUserRoleIds(userId);
var rolePermissions = _db.Service.GetIQueryable().Where(x => roleIdList.Contains(x.RoleId)).GroupBy(x => x.PermissionValue).Select(x => x.Key).ToList();
var existsPermissions = userPermissions.Concat(rolePermissions).Distinct();
permissions = existsPermissions.ToList();
CacheHelper.Cache.SetCache(cacheKey, permissions);
}
#endregion
#region 当前操作用户权限
///
/// 获取当前操作者拥有的所有权限值
///
///
public static List GetOperatorPermissionValues()
{
if (Operator.IsAdmin())
return GetAllPermissionValues();
else
return GetUserPermissionValues(Operator.UserId);
}
///
/// 判断当前操作者是否拥有某项权限值
///
/// 权限值
///
public static bool OperatorHasPermissionValue(string value)
{
return GetOperatorPermissionValues().Exists(x => x.ToLower() == value.ToLower());
}
#endregion
}
#region 数据模型
public class PermissionModule
{
public string Name { get; set; }
public string Value { get; set; }
public List Items { get; set; }
}
public class PermissionItem
{
public string Name { get; set; }
public string Value { get; set; }
public bool IsChecked { get; set; }
}
#endregion
}
================================================
FILE: src/Coldairarrow.Business/Base_SysManage/RapidDevelopmentBusiness.cs
================================================
using Coldairarrow.Entity.Base_SysManage;
using Coldairarrow.Util;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Linq.Dynamic;
using System.Text;
namespace Coldairarrow.Business.Base_SysManage
{
public class RapidDevelopmentBusiness : BaseBusiness
{
#region 外部接口
///
/// 获取所有数据库连接
///
///
public List GetAllDbLink()
{
return GetList();
}
///
/// 获取数据库所有表
///
/// 数据库连接Id
///
public List GetDbTableList(string linkId)
{
if (linkId.IsNullOrEmpty())
return new List();
else
return GetTheDbHelper(linkId).GetDbAllTables();
}
///
/// 生成代码
///
/// 连接Id
/// 区域名
/// 表列表
/// 需要生成类型
public void BuildCode(string linkId, string areaName, string tables, string buildType)
{
//内部成员初始化
_dbHelper = GetTheDbHelper(linkId);
GetDbTableList(linkId).ForEach(aTable =>
{
_dbTableInfoDic.Add(aTable.TableName, aTable);
});
List tableList = tables.ToList();
List buildTypeList = buildType.ToList();
tableList.ForEach(aTable =>
{
var tableFieldInfo = _dbHelper.GetDbTableInfo(aTable);
//实体层
if (buildTypeList.Exists(x => x.ToLower() == "entity"))
{
BuildEntity(tableFieldInfo, areaName, aTable);
}
//业务层
if (buildTypeList.Exists(x => x.ToLower() == "business"))
{
BuildBusiness(areaName, aTable);
}
//控制器
if (buildTypeList.Exists(x => x.ToLower() == "controller"))
{
BuildArea(areaName);
BuildController(areaName, aTable);
}
//视图
if (buildTypeList.Exists(x => x.ToLower() == "view"))
{
BuildArea(areaName);
BuildView(tableFieldInfo, areaName, aTable);
}
});
}
#endregion
#region 私有成员
///
/// 生成实体
///
/// 表字段信息
/// 区域名
/// 表名
private void BuildEntity(List tableInfo, string areaName, string tableName)
{
string rootPath = AppDomain.CurrentDomain.BaseDirectory;
string entityPath = rootPath.Replace("Coldairarrow.Web", "Coldairarrow.Entity") + areaName;
string filePath = $@"{entityPath}\{tableName}.cs";
string nameSpace = $@"Coldairarrow.Entity.{areaName}";
_dbHelper.SaveEntityToFile(tableInfo, tableName, _dbTableInfoDic[tableName].Description, filePath, nameSpace);
}
///
/// 生成业务逻辑代码
///
/// 区域名
/// 实体名
private void BuildBusiness(string areaName, string entityName)
{
string code =
$@"using Coldairarrow.Entity.{areaName};
using Coldairarrow.Util;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Dynamic;
namespace Coldairarrow.Business.{areaName}
{{
public class {entityName}Business : BaseBusiness<{entityName}>
{{
#region 外部接口
///
/// 获取数据列表
///
/// 查询类型
/// 关键字
///
public List<{entityName}> GetDataList(string condition, string keyword, Pagination pagination)
{{
var q = GetIQueryable();
//模糊查询
if (!condition.IsNullOrEmpty() && !keyword.IsNullOrEmpty())
q = q.Where($@""{{condition}}.Contains(@0)"", keyword);
return q.GetPagination(pagination).ToList();
}}
///
/// 获取指定的单条数据
///
/// 主键
///
public {entityName} GetTheData(string id)
{{
return GetEntity(id);
}}
///
/// 添加数据
///
/// 数据
public void AddData({entityName} newData)
{{
Insert(newData);
}}
///
/// 更新数据
///
public void UpdateData({entityName} theData)
{{
Update(theData);
}}
///
/// 删除数据
///
/// 删除的数据
public void DeleteData(List ids)
{{
Delete(ids);
}}
#endregion
#region 私有成员
#endregion
#region 数据模型
#endregion
}}
}}";
string rootPath = AppDomain.CurrentDomain.BaseDirectory;
string areaPath = rootPath.Replace("Coldairarrow.Web", "Coldairarrow.Business") + areaName;
string filePath = $@"{areaPath}\{entityName}Business.cs";
FileHelper.WriteTxt(code, filePath, FileMode.Create);
}
///
/// 生成控制器代码
///
/// 区域名
/// 实体名
private void BuildController(string areaName, string entityName)
{
string varBusiness = $@"_{entityName.ToFirstLowerStr()}Business";
string code =
$@"using Coldairarrow.Business.{areaName};
using Coldairarrow.Entity.{areaName};
using Coldairarrow.Util;
using System;
using System.Web.Mvc;
namespace Coldairarrow.Web
{{
public class {entityName}Controller : BaseMvcController
{{
{entityName}Business {varBusiness} = new {entityName}Business();
#region 视图功能
public ActionResult Index()
{{
return View();
}}
public ActionResult Form(string id)
{{
var theData = id.IsNullOrEmpty() ? new {entityName}() : {varBusiness}.GetTheData(id);
return View(theData);
}}
#endregion
#region 获取数据
///
/// 获取数据列表
///
/// 查询类型
/// 关键字
///
public ActionResult GetDataList(string condition, string keyword, Pagination pagination)
{{
var dataList = {varBusiness}.GetDataList(condition, keyword, pagination);
return Content(pagination.BuildTableResult_DataGrid(dataList).ToJson());
}}
#endregion
#region 提交数据
///
/// 保存
///
/// 保存的数据
public ActionResult SaveData({entityName} theData)
{{
if(theData.Id.IsNullOrEmpty())
{{
theData.Id = Guid.NewGuid().ToSequentialGuid();
{varBusiness}.AddData(theData);
}}
else
{{
{varBusiness}.UpdateData(theData);
}}
return Success();
}}
///
/// 删除数据
///
/// 删除的数据
public ActionResult DeleteData(string ids)
{{
{varBusiness}.DeleteData(ids.ToList());
return Success(""删除成功!"");
}}
#endregion
}}
}}";
string rootPath = AppDomain.CurrentDomain.BaseDirectory;
string filePath = $@"{rootPath}Areas\{areaName}\Controllers\{entityName}Controller.cs";
FileHelper.WriteTxt(code, filePath, FileMode.Create);
}
///
/// 生成视图
///
/// 表字段信息
/// 区域名
/// 实体名
private void BuildView(List tableInfoList, string areaName, string entityName)
{
//生成Index页面
StringBuilder searchConditionSelectHtml = new StringBuilder();
StringBuilder tableColsBuilder = new StringBuilder();
StringBuilder formRowBuilder = new StringBuilder();
tableInfoList.Where(x => x.Name != "Id").ForEach((aField, index) =>
{
//搜索的下拉选项
Type fieldType = _dbHelper.DbTypeStr_To_CsharpType(aField.Type);
if (fieldType == typeof(string))
{
string newOption = $@"
";
searchConditionSelectHtml.Append(newOption);
}
//数据表格列
string end = (index == tableInfoList.Count - 2) ? "" : ",";
string newCol =$@"
{{ title: '{aField.Description}', field: '{aField.Name}', width: 200 }}{end}";
tableColsBuilder.Append(newCol);
//Form页面中的Html
string newFormRow = $@"