Creating New Version for the assets updated through BulkLoader Utility
Hi Team,
We would like to know how to create new versions for assets updated through Bulk Loader. The one common option we can think of is below. This option takes more time and the number of assets that gets updated through bulk loader utility is more.
<asset:checkout type='<%=assetType%>' objectid='<%=assetID[i]%>' />
<ics:if condition='<%=ics.GetVar("errno").equals("0")%>'>
<ics:then>
<asset:load name="assetToEdit" type='<%=assetType%>' objectid='<%=assetID[i]%>' editable="true" />
<asset:save name="assetToEdit" />
<asset:checkin name="assetToEdit" annotation="Updated through Bulk Loader Utility" />
</ics:then>
0