Hi,
I am trying to to generate the PDF rendition with document attributes in the header block.
we are using ADTS server to generate pdf rendition.
I have tried in below manner but no luck:
ADTS configurations should be done to generate the PDF rendition with document attributes in the header block.
During the development design will be finalized and below are two options
1. Creating a custom profile in ADTS to generate header block
2. Write the custom code to add header block in the PDF rendition
Process to create own Custom profile:
Create custom profile like obj_headers_footers_adts.xml profile with --
<Transcodings>
<Transcode name="gbpd_headers_footers_adts" label="Generate PDF with header/footer">
</Transcodings>
Adding Parameter tags in the custom profile to display document number in the header block and similarly other attributes.
<Parameter name="doc_token_f_cus_obj" label="Document Number" description="Document Number" controltype="text" datatype="string" dql="SELECT object_name from business_process_document WHERE r_object_id = [sysobject_id_token]" isRequired="true">
<Value label="text"/>
<depends-on-param param-name="doc_token_footers" action="hide">
<Value label="No">No</Value>
</depends-on-param>
</Parameter>
Correct me if iam following wrong approach.
Any one help on this, please asap....