How can I create supplier in agile 9.3.2?

Our buyer maintain supplier information in ERP system, I need to catch their data import to PLM system automatically. But now I can’t find any way to do this thing, although Agile API will session.getObject(ISupplier.OBJECT_TYPE,”NAME”) to get their supplier info, but I want to createObject function , it seems to not this function, Can I use other way to solve this issue?

Agile User Asked on January 26, 2016 in Agile PLM (v9),   Product Collaboration.
Add Comment
1 Answer(s)

Sorry It’s my mistake. I find the way to create supplier object. Use
ISupplier supplier = (ISupplier) session.createObject(SupplierConstants.CLASS_DISTRIBUTOR,params); 
It can be create, because the CLASS_DISTRIBUTOR I don’t know this key word so I can’t create it.
The problem it’s solved thanks

Agile User Answered on January 26, 2016.
Add Comment

Your Answer

By posting your answer, you agree to the privacy policy and terms of service.