새로운 또는 업데이트된 글로벌 자산 속성 오브젝트에 대한 변경사항을 커미트하려면 RAMSession.put(IRAMSessionObject, IProgressMonitor)을 사용하십시오. 저장소 관리자만 글로벌 자산 속성을 작성할 수 있습니다.
//Update Name, Description and valid values
newAssetAttribute.setName("Updated Asset Attribute Name");
newAssetAttribute.setDescription("Updated Asset Attribute Description");
newAssetAttribute.setValidValues(new String[]{"value 3", "new value"});
newAssetAttribute.setSingleSetting(true);
session.put(newAssetAttribute, new NullProgressMonitor());