Hi
I am trying to create an Excel Migration Job that will delete User’s Sites. I would like to use the method USER_ALLOWED_SITE_API.Remove_User_Allowed_Site. It requires only COMPANY and USERID and removes all Sites associated with the given COMPANY for the given USERID.
I would like it in Excel so that we can load the specific Users and Companies we need to target.
If I run this PL/SQL, it completes successfully…
begin
USER_ALLOWED_SITE_API.Remove_User_Allowed_Site('USERID','COMPANY');
end;
I have tried various configs in the Excel Migration job and it either errors, says it has processed it (but hasn’t) or churns for a while and returns a blank.
Any pointers?