Expand my Community achievements bar.

Radically easy to access on brand approved content for distribution and omnichannel performant delivery. AEM Assets Content Hub and Dynamic Media with OpenAPI capabilities is now GA.

how can i add a dynamic header value in to the pdf

Avatar

Level 2

I am using a AssemblerService (Invoke DDX) to modify a Pdf file. How can i enter a dynamic value into the header using ddx ?

DDX used

<DDX xmlns="http://ns.adobe.com/DDX/1.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

xsi:schemaLocation="http://ns.adobe.com/DDX/1.0/ coldfusion_ddx.xsd">

    <PDF result="Out1">       

        <PDF source="Doc2">

            <Header>

                <Right>

                    <StyledText>

                        <p>"here i need to add a dynamic data from the process"</p>

                    </StyledText>

                </Right>

            </Header>

        </PDF>

    </PDF>

</DDX>

Thank You.

1 Reply

Avatar

Level 10

Insertion Point is a placeholder Object which is used to dynamically replace while assembling. Search through the assmber guide to get any hints.

Nith