Hello,
How do you retrieve a reference to the imported object when you click ok in the import component in webtop 6.5 so that I can update some attributes?
Thanks!
If there are Accepted Answers, those will be shown by default. You can switch to 'All Replies' by selecting the tab below.
Solved this by extending the import container UcfImportContainer and retrieving the object id of the imported object in the handleOnReturnFromProgressSuccess function
using:
ImportService importService = (ImportService)arg2.getService();java.util.List ids = importService.getNewObjectIds();
This is easily done by writing a TBO. You can also extend the importdocument component behavior class if you want to do this in WDK code.