admin 发表于 2013-12-3 21:05:56

Teamcenter ITK 开发有关常用的函数集合



Teamcenter ITK 开发有关Item 和 Item revision的函数集合




ITEM :和Item相关的函数:


ITEM_create_item
ITEM_find_item
ITEM_attach_object
ITEM_ask_latest_rev
ITEM_list_all_revs
ITEM_list_attachs_of_type
ITEM_list_all_attachments
ITEM_ask_id

Item Revision : 和Item版本相关的函数


ITEM_create_rev
ITEM_ask_rev_id
ITEM_ask_item_of_rev
ITEM_attach_rev_object
ITEM_list_rev_attachs_of_type
ITEM_list_all_rev_attachments
ITEM_rev_list_all_bom_view_revs


admin 发表于 2013-12-3 21:12:42


和Form相关的函数


FORM_create
FORM_describe


和文件夹Folder创建相关函数

FL_create
(const char name, const char description, tag_t *pfolder_tag)

FL_insert
(tag_t folder_tag, tag_t workspaceobject_tag, int position)

FL_remove
(tag_t folder_tag, tag_t workspaceobject_tag)

FL_copy
(tag_t folder_tag, const char new_folder_name, tag_t *new_folder_tag)

FL_ask_size
(tag_t folder_tag, int *number_of_entries)

FL_user_update_newstuff_folder
(tag_t folder_tag)



和AOM相关的函数

修改一个AOM数据对象
1. get the object                AOM_load()       
2. lock the object                AOM_lock()
3. change the object        AOM_set_xxx()
4. save the object        AOM_save()
5. unlock the object        AOM_unlock()


创建一个AOM数据对象
1. create the object
2. save the object        AOM_save()
3. unlock the object        AOM_unlock()


删除一个AOM数据对象
1. get the object                AOM_load()
2. lock for delete         AOM_lock_for_delete()
3. delete the object        AOM_delete()



页: [1]
查看完整版本: Teamcenter ITK 开发有关常用的函数集合