I am currently running a sql script to upload metadata to our AS portal. I am having trouble passing the parameters to the SetAtribute API... here's that piece of code
------------------------------------
BEGIN
wwsbr_api.set_attribute(
p_site_id => 153,
p_thing_id => 51352,
p_attribute_site_id => portal.wwsbr_api.SHARED_OBJECTS,
p_attribute_id => portal.wwsbr_api.ATTRIBUTE_PERSPECTIVES,
p_attribute_value => '153_41237');
-- Process cache invalidation messages.
wwpro_api_invalidation.execute_cache_invalidation;
END;
Now where p_thing_id is i need to pass several different numbers through applying the shown value to all of their perspectives.