Leiste mit Community-Erfolgen erweitern.

Submissions are now open for the 2026 Adobe Experience Maker Awards

Mark Solution

Diese Konversation wurde aufgrund von Inaktivität geschlossen. Bitte erstellen Sie einen neuen Post.

GELÖST

XSL stylesheet modification

Avatar

Level 3

Please find below a section of the nl:dbdToOdt.xsl style sheet

<xsl:for-each select="/sqlSchema/table">

            <xsl:sort select="@name"/>  <----------------------------- is there any possibility to use a check here so that the tables used for the ODT is only my custom tables

            <text:p text:style-name="P2">

              <xsl:element name="text:a">

                <xsl:attribute name="xlink:type">simple</xsl:attribute>

                <xsl:attribute name="xlink:href">#1.<xsl:value-of select="position()"/>.<xsl:value-of select="@label"/>|outline</xsl:attribute>

                <xsl:attribute name="text:style-name">Internet_20_link</xsl:attribute>

                <xsl:attribute name="text:visited-style-name">Internet_20_link</xsl:attribute>

                <xsl:value-of select="@name"/> (<xsl:value-of select="@label"/>)

            </xsl:element>

1 Akzeptierte Lösung

Avatar

Korrekte Antwort von
Level 4

Hi bhaskarc12894474​,

This XSLT is a built-in object and can't be modified.

I think that you will have to use your own XSLT file in order to apply your modifications.

Best Regards,

Geoffrey.

Lösung in ursprünglichem Beitrag anzeigen

2 Antworten

Avatar

Korrekte Antwort von
Level 4

Hi bhaskarc12894474​,

This XSLT is a built-in object and can't be modified.

I think that you will have to use your own XSLT file in order to apply your modifications.

Best Regards,

Geoffrey.

Avatar

Level 3

Thank you geoffreyl24045476

So is it possible to modify ( perform 'write' operation specifically) xsl style sheet from workflow? If yes, can you please suggest me how to go about it

Regards

Bhaskar