cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X

Watermarking and Configurable Cover Sheets

ari.browne
1-Newbie

Watermarking and Configurable Cover Sheets

Using creo view and livecycle publishing software, can I have different watermarks based on document type? Or can watermarking only differ based on document “state”?


Ex: If I want procedures specifically to have different watermarks at “new”, “in work”, “released”, is that possible while also having part/product documents having different watermarks for those states?


For the new WC configurable cover sheets, when are they generated (if there are multiple options, what are they)? And once they are generated, how does the user find it? Is it under the details page, content tab, etc.




1 REPLY 1
StevenKo
5-Regular Member
(To:ari.browne)

You can define object type and their attribute in liveclcyeservertempalte.ddx. Here's sample:



<ddx xmlns="http://ns.adobe.com/DDX/1.0/">
<pdf result="tmp0" return="false">
<pdf source="inDoc"/>
</pdf>
<pdf result="tmp1" return="false">
<pdf source="tmp0">
<watermark replaceexisting="false" horizontalanchor="Left" verticalanchor="Bottom" horizontaloffset="10.8pt" verticaloffset="6pt">
<styledtext color="#808080" font-size="10pt" font="Arial">

<useproperty name="doc_docType"/"><useproperty name="part_businessType"/"><useproperty name="epmdoc_businessType"/"> = <useproperty name="doc_number"/"> <useproperty name="doc_qualifiedidentifier"/"><useproperty name="epmdoc_number"/"> <useproperty name="epmdoc_qualifiedidentifier"/"><useproperty name="part_number"/"> <useproperty name="part_qualifiedidentifier"/">


</styledtext>
</watermark>
</pdf>
</pdf>
<pdf result="outDoc">
<pdf source="tmp1"/>
</pdf>
</ddx>
Top Tags