AXForum  
Вернуться   AXForum > Microsoft Dynamics AX > DAX Blogs
All
Забыли пароль?
Зарегистрироваться Правила Справка Пользователи Сообщения за день Поиск

 
 
Опции темы Поиск в этой теме Опции просмотра
Старый 15.12.2007, 01:11   #1  
Blog bot is offline
Blog bot
Участник
 
25,626 / 848 (80) +++++++
Регистрация: 28.10.2006
axStart: Mass update on table properties
Источник: http://axstart.spaces.live.com/Blog/...C0A0!204.entry
==============


We all have run in trouble in the past when for a lot of tables the same update needs to be done:
Below script can help you out. It will look in all tables that are in the database (SQLDictionary)
Next it will find the related AOT Tree node.

X++:
static void ChangeTableProperties(Args _args)
{
    SQLDictionary   dictionary;
    TreeNode        treeNode;
    str             properties;
    ;
    while select dictionary
    where dictionary.fieldId == 0 &&  dictionary.name like("Proj*")
    {
        treeNode     = TreeNode::findNode('\\data dictionary\\tables\\'+dictionary.name);
        if (treeNode)
        {
            properties = treeNode.AOTgetProperties();
            properties = setProperty(properties, 'CreatedDate', 'Yes');
            properties = setProperty(properties, 'CreatedTime', 'Yes');
            properties = setProperty(properties, 'CreatedBy', 'Yes');
            treeNode.AOTsetProperties(properties);
            treeNode.AOTsave();
        }
    }
}



Источник: http://axstart.spaces.live.com/Blog/...C0A0!204.entry
__________________
Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору.
 

Похожие темы
Тема Автор Раздел Ответов Посл. сообщение
axStart: Check if the table field is mapped. Blog bot DAX Blogs 0 07.03.2009 00:05
axStart: table & field ID conflicts Blog bot DAX Blogs 0 29.05.2008 17:05
gatesasbait: Table caching and record delete()/update()/next Blog bot DAX Blogs 3 24.04.2008 22:55
axStart: How to convert a column in a table to a different type with the same name without losing data. Blog bot DAX Blogs 0 01.02.2008 21:21
Harish Mohanbabu: Table set / get properties Blog bot DAX Blogs 2 17.04.2007 15:28

Ваши права в разделе
Вы не можете создавать новые темы
Вы не можете отвечать в темах
Вы не можете прикреплять вложения
Вы не можете редактировать свои сообщения

BB коды Вкл.
Смайлы Вкл.
[IMG] код Вкл.
HTML код Выкл.
Быстрый переход

Рейтинг@Mail.ru
Часовой пояс GMT +3, время: 02:50.