PowerDesigner显示Common注释列并自动赋值

PowerDesigner中默认不显示Common注释列,可根据以下步骤显示并紫东填充Name列内容。

1、显示Common注释列

2、运行VB Script脚本自动赋值

使用Shift+Ctrl+X快捷键打开脚本运行窗口,粘贴以下代码执行即可。

注:若Common列为空,则填充Name列内容;不为空则必不变。

‘如果comment为空,则填入name;如果不为空,则保留不变,避免已有的注释丢失.

Option Explicit 

ValidationMode = True

InteractiveMode = im_Batch 

Dim mdl 

Set mdl = ActiveModel 

If (mdl Is Nothing) Then

MsgBox "There is no current Model "

ElseIf Not mdl.IsKindOf(PdPDM.cls_Model) Then

MsgBox "The current model is not an Physical Data model. "

Else

ProcessFolder mdl 

End If

Private sub ProcessFolder(folder) 

Dim Tab 

for each Tab in folder.tables 

if not tab.isShortcut then 

if trim(tab.comment)="" then ‘如果有表的注释,则不改变它.如果没有表注释.则把name添加到注释里面. 

tab.comment = tab.name 

end if 

Dim col 

for each col in tab.columns 

if trim(col.comment)="" then ‘如果col的comment为空,则填入name,如果已有注释,则不添加;这样可以避免已有注释丢失.

col.comment= col.name 

end if 

next 

end if 

next 

Dim view 

for each view in folder.Views 

if not view.isShortcut and trim(view.comment)="" then 

view.comment = view.name 

end if 

next 

Dim f 

For Each f In folder.Packages 

if not f.IsShortcut then 

ProcessFolder f 

end if 

Next 

end sub

显示以下内容说明执行完成。

原文地址:https://www.cnblogs.com/gaozejie/p/9328229.html

时间: 2024-10-05 16:49:28

PowerDesigner显示Common注释列并自动赋值的相关文章

powerdesigner设置表主键列为自动增长

powerdesigner 版本12.5 创建表就不说了.下面开始介绍设置自动增长列. 1 在表视图的列上创建.双击表视图,打开table properties ———>columens ,双击要设置的列(显示列的序号的那个按钮,单击后,会显示横向的黑色箭头).打开column properties 对话框. 在 ‘general’ 项中 的最下面,找到 sequence下拉框 ,后面有三个按钮就 ‘create’,‘select’,‘properties’. 新建的话就点击‘create' 打

添加一列,自动求序号

1.点击加号 2.点击要求行数的地点,在打开的窗口中输入代码 getrow() 3.点击OK,就可以实现显示该行的行数 添加一列,自动求序号,布布扣,bubuko.com

ext:grid分页,列宽度自动填满grid宽度

var cm = new Ext.grid.ColumnModel([{      header : '编号',      dataIndex : 'id'     }, {      header : '名称',      dataIndex : 'name'     }, {      header : '描述',      dataIndex : 'descn'     }]);   var store = new Ext.data.Store({      proxy : new Ext

Eclipse+pydev解决中文显示和注释问题的方法大全

Eclipse+pydev解决中文显示和注释问题的方法大全 Eclipse的设置 window->preferences->general->editors->texteditors->spelling->encoding->UTF-8,编辑器的编码格式 window->preferences->workspace->textfile encoding->UTF-8 打开eclipse安装目录->eclipse.ini,末行加上&qu

powerdesigner 字段添加注释和默认值

powerdesigner 字段添加注释和默认值 2017年01月06日 10:59:02 qingzhuoran 阅读数:27161更多 个人分类: powerdesigner 1.选中表,右键  (或者快捷键 ctrul+U.在弹出窗找到comment) 2. 选中“comment”, 这个就是列的注释 3.还是这个页面 ,往下有个“default value”, 这个就是你设置的默认值. 4. 这个是怎么设置默认值. 原文地址:https://www.cnblogs.com/libin65

[Easyui - Grid]为easyui的datagrid、treegrid增加表头菜单,用于显示或隐藏列

为easyui的datagrid.treegrid增加表头菜单,用于显示或隐藏列 /** * @author 孙宇 * * @requires jQuery,EasyUI * * 为datagrid.treegrid增加表头菜单,用于显示或隐藏列,注意:冻结列不在此菜单中 */ var createGridHeaderContextMenu = function(e, field) { e.preventDefault(); var grid = $(this);/* grid本身 */ var

freemarker导出word——让表格数据行数 列数自动变化

行数.列数变化只需定义一个List<List<T>> freemarker遍历的话,只需要使用freemarker的标记性语言<#list report.qc_third_agentTable as  table2_tr>遍历即可,如图 实现的效果 freemarker导出word--让表格数据行数 列数自动变化,布布扣,bubuko.com

android 从源码分析为什么Listview初次显示时没滚动却自动调用onScroll方法的原因

我们做Listview的分批加载时,需要为Listview调用setOnScrollListener(具体代码可见我上一篇博客) 可是,我们会发现,当运行程序时,listview明明没有滚动,那为什么系统会调用onScroll方法呢?(补充:此时onScrollStateChanged并不会调用) 我们先看setOnScrollListener源码: public void setOnScrollListener(OnScrollListener l) { mOnScrollListener =

[html]三列居中自动伸缩的结构

html三列居中自动伸缩的结构 <div style="width:100%;height:80px;border:1px solid #DDD;margin-bottom:10px;">Header</div> <div> <div style="width:200px;height:300px;border:1px solid #DDD;float:left;">Left</div> <div s