XSL stylesheet modification | Community
Skip to main content
bhaskarc1289447
New Participant
August 12, 2019
Solved

XSL stylesheet modification

  • August 12, 2019
  • 2 replies
  • 3071 views

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>

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by geoffreyl240454

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.

2 replies

bhaskarc1289447
New Participant
November 19, 2019

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

geoffreyl240454
geoffreyl240454Accepted solution
New Participant
August 12, 2019

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.