I would like to access the the source type of a catalog given it's id (weather it is static, data source ect...).
Something like the following.
If (ExistsBusinessObject('Catalog', $catalogID)) Then
CATALOGTYPE $catalog:= CAST(CATALOGTYPE, GETBUSINESSOBJECT('Catalog', $catalogID).deepClone());
Return $catalog.getSourceType();
End
What is the CATALOGTYPE I need, something like com.nm.sdk.catalog?
Can I access source type (weather it is static, data source ect...) using this type?
Something like the following.
If (ExistsBusinessObject('Catalog', $catalogID)) Then
CATALOGTYPE $catalog:= CAST(CATALOGTYPE, GETBUSINESSOBJECT('Catalog', $catalogID).deepClone());
Return $catalog.getSourceType();
End
What is the CATALOGTYPE I need, something like com.nm.sdk.catalog?
Can I access source type (weather it is static, data source ect...) using this type?
Thanks in advance,
Simon Verhoeven