xuni

导航

TC pdm与oracle erp 接口开发的一些问题记录1

1.搜索出来的物料结果,要获取最后版本,再取得相关属性。

TCComponentItem tci = (TCComponentItem) tcComponentDoc[i];
        TCComponentItemRevision tciRevision = tci
          .getLatestItemRevision();

 

2.获取TCComponentItem的属性,有getProperty和getTCProperty两个方法。

应该是有一点区别,但没时间详细测试,下面是用法:

1 String ItemRevId = tciRevision
2           .getProperty("item_revision_id");
3 String O = tciRevision.getTCProperty(
4           "object_type").getStringValue();

 

posted on 2012-10-16 15:44  xuni  阅读(295)  评论(0编辑  收藏  举报