How do I find out the date and time of creation of rendition of a particular document????
And is there any way to forcibly submit a document for rendition which is in a queue for getting rendered. Please help
If there are Accepted Answers, those will be shown by default. You can switch to 'All Replies' by selecting the tab below.
To get the time the rendition was attached use the following dql
select set_time from dmr_content where full_format ='pdf' and any parent_id ='xxxxxxxxxxxxxxxx'
where xxxxxxxxxxxxxxx is the object id of the object
Hi,
You cannot really force the creation of the rendition (by some of the CTS products like DTS, ADTS, MTS, etc), as it is polled which document should be transformed. The only thing you can do is that you submit your transformation request with a higher priority, which helps it to be processed earlier but it won't be instant if there are more such items with that prioriy. Look up in documentations (CTS SDK) how to create such rendition requests.
How do I submit documents setting the priority to higher one????????
CTS_Product_53_SPx_development.pdf, Using the Content Transformation Services Client API, Page 35.
...
transformRequest.setPriority(1); //the priority by design is going from 1 to 10.
Cheers, Mike
Thanx Mike,
Could you provide me with the link where I can find this document?????????
Thanx once again