Hi All.
There must be a DFS API call to detemine if a user has rights to access a given Object Id for a document. What would that call be? Where would I find documentation on it and other similar calls?
Thanks!
Is there a DFS document where I can research these commands more completely?
(By the way, thanks for your quick response!)
Hi,
You could do it with QueryService:
select r_object_id,_permit,_xpermit,_xpermit_names from dm_sysobject where r_object_id='your_object_id'
Look at object reference manual for these computed columns.
Mike
No. You can't use computed attributes in DQL. Computed attributes (starting with _) are computed by DFC when requested.
You can try to include the attribute _permit when you request the object using ObjectService. Whether it will work or not will depend on how the ObjectService is implemented.
Hicham