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?
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