[ 
https://issues.apache.org/jira/browse/FOP-700?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Glenn Adams reopened FOP-700:
-----------------------------

> java.lang.ArrayIndexOutOfBoundsException when running FOP
> ---------------------------------------------------------
>
>                 Key: FOP-700
>                 URL: https://issues.apache.org/jira/browse/FOP-700
>             Project: FOP
>          Issue Type: Bug
>          Components: renderer/pdf
>    Affects Versions: 0.20.5
>         Environment: Operating System: All
> Platform: PC
>            Reporter: Louise
>            Assignee: fop-dev
>         Attachments: Approval.xsl, UMV-Example.xsl, approval.fo, 
> approval.xml, umv-example.xml, umv.fo
>
>
> I am running the folowing command from the command line and get the 
> ArrayOutoFBoundsException at the bottom.
> Please find below my example xml, and my example stylesheet ( I have also 
> used 
> xalan to produce my fo which looks ok and is also found below. )
> If I change my XPath to just create Page 1 from example xml it runs ok, Page 
> 2 
> seems to cause the problems - I wonder if it is something to do with it havng 
> many nodes although I decreased these and it still didnt work. Please help!
> """""""""""""""""""""""""""" CMD and ERROR 
> """"""""""""""""""""""""""""""""""""
> C:\fop-0.20.5>fop -xml umv-example.xml -xsl Example1.xsl -pdf LC1
> [INFO] Using org.apache.xerces.parsers.SAXParser as SAX2 Parser
> [INFO] FOP 0.20.5
> [INFO] Using org.apache.xerces.parsers.SAXParser as SAX2 Parser
> [INFO] building formatting object tree
> [INFO] setting up fonts
> [INFO] [1]
> [ERROR] At least one of minimum, optimum, or maximum IPD must be specified on 
> table.
> [ERROR] At least one of minimum, optimum, or maximum IPD must be specified on 
> table.
> [ERROR] At least one of minimum, optimum, or maximum IPD must be specified on 
> table.
> [ERROR] At least one of minimum, optimum, or maximum IPD must be specified on 
> table.
> [ERROR] java.lang.ArrayIndexOutOfBoundsException
> """"""""""""""""""""""""""""Example1.xsl""""""""""""""""""""""""""""""""""""""""
>   <?xml version="1.0" encoding="UTF-8" ?> 
> - <!-- 
>       Author : Louise Clayton
>               Date: 22/7/2003
>               Intended Use:   This stylesheet should be used to convert the 
> umv XMLs
>                                               in to an XML-FO format ready 
> for use by FOP to provide
>                                               PDF generated reports
>   --> 
> - <!--  Defining the stylesheet 
>   --> 
> - <xsl:stylesheet version="1.0" 
> xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; 
> xmlns:fo="http://www.w3.org/1999/XSL/Format";>
> - <xsl:template match="/">
> - <!--  The following lines create the root element of the FO XML
>   --> 
> - <xsl:element name="fo:root">
> - <xsl:attribute name="text-align">
>   <xsl:value-of select="'left'" /> 
>   </xsl:attribute>
> - <xsl:attribute name="font-size">
>   <xsl:value-of select="//Report/FontSize" /> 
>   </xsl:attribute>
> - <xsl:attribute name="font-family">
>   <xsl:value-of select="//Report/Font" /> 
>   </xsl:attribute>
> - <!--  This is the general driver of the document, it calls constructs to 
> build one Master set followed by a group of pages 
>   --> 
>   <xsl:call-template name="constructLayoutMasterSet" /> 
> - <xsl:for-each select="//Report/Pages/Page[2]">
>   <xsl:call-template name="constructPageSequence" /> 
>   </xsl:for-each>
>   </xsl:element>
>   </xsl:template>
> - <!-- 
> fo:layout-master-set defines in its children the page layout: 
>        the pagination and layout specifications
>       - page-masters: have the role of describing the intended subdivisions 
>                        of a page and the geometry of these subdivisions 
>                       In this case there is only a simple-page-master which 
> defines the 
>                       layout for all pages of the text
>   --> 
> - <xsl:template name="constructLayoutMasterSet">
> - <fo:layout-master-set>
> - <xsl:element name="fo:simple-page-master">
> - <xsl:attribute name="margin-right">
>   <xsl:value-of select="concat(Report/MarginRight,Report/Unit)" /> 
>   </xsl:attribute>
> - <xsl:attribute name="margin-left">
>   <xsl:value-of select="concat(Report/MarginLeft, Report/Unit)" /> 
>   </xsl:attribute>
> - <xsl:attribute name="margin-bottom">
>   <xsl:value-of select="concat(Report/MarginBottom, Report/Unit)" /> 
>   </xsl:attribute>
> - <xsl:attribute name="margin-top">
>   <xsl:value-of select="concat(Report/MarginTop, Report/Unit)" /> 
>   </xsl:attribute>
> - <!-- xsl:attribute name="master-reference"><xsl:value-of 
> select=""/></xsl:attribute
>   --> 
> - <xsl:attribute name="page-width">
>   <xsl:value-of select="'29.7cm'" /> 
>   </xsl:attribute>
> - <xsl:attribute name="page-height">
>   <xsl:value-of select="'21cm'" /> 
>   </xsl:attribute>
>   <fo:region-before extent="1cm" /> 
>   <fo:region-body margin-top="1cm" /> 
>   <fo:region-after extent="1.5cm" /> 
>   </xsl:element>
>   </fo:layout-master-set>
>   </xsl:template>
> - <!--  The page sequence for all pages 
>   --> 
> - <xsl:template name="constructPageSequence">
> - <!-- fo:page-sequence master-reference=""
>   --> 
> - <fo:page-sequence>
> - <!--  The Header 
>   --> 
> - <fo:static-content flow-name="xsl-region-before">
> - <xsl:for-each select="PageHeader/Table">
> - <xsl:element name="fo:table">
> - <xsl:attribute name="table-layout">
>   <xsl:value-of select="'fixed'" /> 
>   </xsl:attribute>
> - <xsl:attribute name="border-width">
>   <xsl:value-of select="concat(BorderHeight, //Unit)" /> 
>   </xsl:attribute>
> - <xsl:for-each select="ColumnHeaders/ColumnHeader">
> - <xsl:element name="fo:table-column">
> - <xsl:attribute name="column-width">
>   <xsl:value-of select="concat(Width, //Unit)" /> 
>   </xsl:attribute>
>   </xsl:element>
>   </xsl:for-each>
> - <fo:table-body>
> - <fo:table-row>
> - <xsl:for-each select="ColumnHeaders/ColumnHeader">
> - <fo:table-cell>
> - <fo:block>
>   <xsl:value-of select="Text/Text/Value" /> 
>   </fo:block>
>   </fo:table-cell>
>   </xsl:for-each>
>   </fo:table-row>
> - <xsl:for-each select="Rows/Row">
> - <fo:table-row>
> - <xsl:for-each select="Cells/Cell">
> - <fo:table-cell>
> - <fo:block>
>   <xsl:value-of select="Text/Text/Value" /> 
>   <fo:inline text-decoration="underline">underline</fo:inline> 
>   </fo:block>
>   </fo:table-cell>
>   </xsl:for-each>
>   </fo:table-row>
>   </xsl:for-each>
>   </fo:table-body>
>   </xsl:element>
>   </xsl:for-each>
>   <fo:block border-style="solid" /> 
>   </fo:static-content>
> - <!--  Building the Footer 
>   --> 
> - <fo:static-content flow-name="xsl-region-after">
>   <fo:block border-style="solid" /> 
> - <xsl:for-each select="PageFooter/Table">
> - <xsl:element name="fo:table">
> - <xsl:attribute name="table-layout">
>   <xsl:value-of select="'fixed'" /> 
>   </xsl:attribute>
> - <xsl:attribute name="border-width">
>   <xsl:value-of select="concat(BorderHeight, //Unit)" /> 
>   </xsl:attribute>
> - <xsl:for-each select="ColumnHeaders/ColumnHeader">
> - <xsl:element name="fo:table-column">
> - <xsl:attribute name="column-width">
>   <xsl:value-of select="concat(Width, //Unit)" /> 
>   </xsl:attribute>
>   </xsl:element>
>   </xsl:for-each>
> - <fo:table-body>
> - <fo:table-row>
> - <xsl:for-each select="ColumnHeaders/ColumnHeader">
> - <fo:table-cell>
> - <fo:block>
>   <xsl:value-of select="Text/Text/Value" /> 
>   </fo:block>
>   </fo:table-cell>
>   </xsl:for-each>
>   </fo:table-row>
> - <xsl:for-each select="Rows/Row">
> - <fo:table-row>
> - <xsl:for-each select="Cells/Cell">
> - <fo:table-cell>
> - <fo:block>
>   <xsl:value-of select="Text/Text/Value" /> 
>   </fo:block>
>   </fo:table-cell>
>   </xsl:for-each>
>   </fo:table-row>
>   </xsl:for-each>
>   </fo:table-body>
>   </xsl:element>
>   </xsl:for-each>
>   </fo:static-content>
> - <!--  Building The Body 
>   --> 
> - <fo:flow flow-name="xsl-region-body">
> - <xsl:for-each select="PageDetails/Table">
> - <!--  this defines a title for each table in the body
>   --> 
> - <xsl:element name="fo:block">
> - <xsl:attribute name="font-size">
>   <xsl:value-of select="TableHeader/Text/FontSize" /> 
>   </xsl:attribute>
> - <xsl:attribute name="font-weight">
>   <xsl:value-of select="'bold'" /> 
>   </xsl:attribute>
> - <!-- xsl:attribute name="text-align"><xsl:value-of 
> select="TableHeader/Text/Alignment"/></xsl:attribute
>   --> 
>   <xsl:value-of select="TableHeader/Text/Value" /> 
>   </xsl:element>
> - <xsl:element name="fo:table">
> - <xsl:attribute name="table-layout">
>   <xsl:value-of select="'fixed'" /> 
>   </xsl:attribute>
> - <xsl:attribute name="border-width">
>   <xsl:value-of select="concat(BorderHeight, //Unit)" /> 
>   </xsl:attribute>
> - <xsl:attribute name="border-style">
>   <xsl:value-of select="'solid'" /> 
>   </xsl:attribute>
> - <xsl:attribute name="border-color">
>   <xsl:value-of select="'black'" /> 
>   </xsl:attribute>
> - <xsl:attribute name="border-width">
>   <xsl:value-of select="'0.25pt'" /> 
>   </xsl:attribute>
> - <xsl:for-each select="ColumnHeaders/ColumnHeader">
> - <xsl:element name="fo:table-column">
> - <!-- xsl:attribute name="column-width"><xsl:value-of select="concat
> (Width, //Unit)"/></xsl:attribute
>   --> 
>   </xsl:element>
>   </xsl:for-each>
> - <fo:table-body>
> - <fo:table-row>
> - <xsl:for-each select="ColumnHeaders/ColumnHeader">
> - <fo:table-cell>
> - <fo:block>
>   <xsl:value-of select="Text/Text/Value" /> 
>   </fo:block>
>   </fo:table-cell>
>   </xsl:for-each>
>   </fo:table-row>
> - <xsl:for-each select="Rows/Row">
> - <fo:table-row>
> - <xsl:for-each select="Cells/Cell">
> - <fo:table-cell>
> - <fo:block>
>   <xsl:value-of select="Text/Text/Value" /> 
>   </fo:block>
>   </fo:table-cell>
>   </xsl:for-each>
>   </fo:table-row>
>   </xsl:for-each>
>   </fo:table-body>
>   </xsl:element>
>   </xsl:for-each>
>   </fo:flow>
>   </fo:page-sequence>
>   </xsl:template>
>   </xsl:stylesheet>
> - <!-- 
>  Stylus Studio meta-information - (c)1998-2003 Copyright Sonic Software 
> Corporation. All rights reserved.
> <metaInformation>
> <scenarios ><scenario default="yes" name="Scenario2" userelativepaths="yes" 
> externalpreview="no" url="xln://gbk53822/LouisesFO/umv&#x2D;example.xml" 
> htmlbaseurl="" outputurl="" processortype="internal" commandline="" 
> additionalpath="" additionalclasspath="" postprocessortype="none" 
> postprocesscommandline="" postprocessadditionalpath="" 
> postprocessgeneratedext=""/></scenarios><MapperInfo srcSchemaPath="" 
> srcSchemaRoot="" srcSchemaPathIsRelative="yes" srcSchemaInterpretAsXML="no" 
> destSchemaPath="" destSchemaRoot="" destSchemaPathIsRelative="yes" 
> destSchemaInterpretAsXML="no"/>
> </metaInformation>
>   --> 
> - <!-- 
>  Stylus Studio meta-information - (c)1998-2003 Copyright Sonic Software 
> Corporation. All rights reserved.
> <metaInformation>
> <scenarios ><scenario default="no" name="Scenario2" userelativepaths="yes" 
> externalpreview="no" url="xln://gbk53822/LouisesFO/umv&#x2D;example.xml" 
> htmlbaseurl="" outputurl="" processortype="internal" commandline="" 
> additionalpath="" additionalclasspath="" postprocessortype="none" 
> postprocesscommandline="" postprocessadditionalpath="" 
> postprocessgeneratedext=""/><scenario default="yes" name="Scenario1" 
> userelativepaths="yes" externalpreview="no" 
> url="xln://gbk53822/LouisesFO/umv&#x2D;example&#x2D;approval&#x2D;matrix.xml" 
> htmlbaseurl="" outputurl="" processortype="internal" commandline="" 
> additionalpath="" additionalclasspath="" postprocessortype="none" 
> postprocesscommandline="" postprocessadditionalpath="" 
> postprocessgeneratedext=""/></scenarios><MapperInfo srcSchemaPath="" 
> srcSchemaRoot="" srcSchemaPathIsRelative="yes" srcSchemaInterpretAsXML="no" 
> destSchemaPath="" destSchemaRoot="" destSchemaPathIsRelative="yes" 
> destSchemaInterpretAsXML="no"/>
> </metaInformation>
>   --> 
> """"""""""""""""""""""""""""""""" umv_example xml 
> """""""""""""""""""""""""""""
> <?xml version="1.0" encoding="UTF-8"?><Report type="Report" 
> context="usermaintenancereport">
>   <Font>sans-serif</Font>
>   <FontSize>9</FontSize>
>   <MarginBottom>1</MarginBottom>
>   <MarginLeft>1</MarginLeft>
>   <MarginRight>1</MarginRight>
>   <MarginTop>1</MarginTop>
>   <Orientation>landscape</Orientation>
>   <PageSize>A4</PageSize>
>   <Pages>
>     <Page type="Page" context="usermaintenancereport">
>       <PageDetails>
>         <Table type="Table" context="usermaintenancereport">
>           <BorderHeight>8</BorderHeight>
>           <ColumnHeaderRowLineHeight>3</ColumnHeaderRowLineHeight>
>           <ColumnHeaders>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>Property</Value>
>                 </Text>
>               </Text>
>               <Width>10.0</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>Value</Value>
>                 </Text>
>               </Text>
>               <Width>16.0</Width>
>             </ColumnHeader>
>           </ColumnHeaders>
>           <ColumnLineHeight>0</ColumnLineHeight>
>           <RowLineHeight>0</RowLineHeight>
>           <Rows>
>             <Row type="Row" context="usermaintenancereport">
>               <Cells>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>$REPORTTYPE$</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>DataReportUsers</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>               </Cells>
>             </Row>
>             <Row type="Row" context="usermaintenancereport">
>               <Cells>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>ReportLocale</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>en_GB</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>               </Cells>
>             </Row>
>           </Rows>
>           <TableHeader>
>             <Text type="Text" context="usermaintenancereport">
>               <Alignment/>
>               <FontSize>11</FontSize>
>               <FontStyle/>
>               <Value>Report Generator v0.3 (15/07/2003 08:10)</Value>
>             </Text>
>           </TableHeader>
>         </Table>
>         <Table type="Table" context="usermaintenancereport">
>           <BorderHeight>8</BorderHeight>
>           <ColumnHeaderRowLineHeight>3</ColumnHeaderRowLineHeight>
>           <ColumnHeaders>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>Property</Value>
>                 </Text>
>               </Text>
>               <Width>10.0</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>Value</Value>
>                 </Text>
>               </Text>
>               <Width>16.0</Width>
>             </ColumnHeader>
>           </ColumnHeaders>
>           <ColumnLineHeight>0</ColumnLineHeight>
>           <RowLineHeight>0</RowLineHeight>
>           <Rows>
>             <Row type="Row" context="usermaintenancereport">
>               <Cells>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>driver</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>oracle.jdbc.driver.OracleDriver</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>               </Cells>
>             </Row>
>             <Row type="Row" context="usermaintenancereport">
>               <Cells>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>ReportLocale</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>en_GB</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>               </Cells>
>             </Row>
>           </Rows>
>           <TableHeader>
>             <Text type="Text" context="usermaintenancereport">
>               <Alignment/>
>               <FontSize>11</FontSize>
>               <FontStyle/>
>               <Value>Database</Value>
>             </Text>
>           </TableHeader>
>         </Table>
>       </PageDetails>
>       <PageFooter>
>         <Table type="Table" context="usermaintenancereport">
>           <BorderHeight>8</BorderHeight>
>           <ColumnHeaderRowLineHeight>3</ColumnHeaderRowLineHeight>
>           <ColumnHeaders>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>User Report</Value>
>                 </Text>
>               </Text>
>               <Width>21.8</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>Page</Value>
>                 </Text>
>               </Text>
>               <Width>1.64</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>&lt;pagenumber&gt;</Value>
>                 </Text>
>               </Text>
>               <Width>1.14</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>of</Value>
>                 </Text>
>               </Text>
>               <Width>0.77</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>&lt;totalpagenumber&gt;</Value>
>                 </Text>
>               </Text>
>               <Width>1.14</Width>
>             </ColumnHeader>
>           </ColumnHeaders>
>           <ColumnLineHeight>0</ColumnLineHeight>
>           <RowLineHeight>0</RowLineHeight>
>           <Rows/>
>           <TableHeader/>
>         </Table>
>       </PageFooter>
>       <PageHeader>
>         <Table type="Table" context="usermaintenancereport">
>           <BorderHeight>8</BorderHeight>
>           <ColumnHeaderRowLineHeight>3</ColumnHeaderRowLineHeight>
>           <ColumnHeaders>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>User Report</Value>
>                 </Text>
>               </Text>
>               <Width>26.0</Width>
>             </ColumnHeader>
>           </ColumnHeaders>
>           <ColumnLineHeight>0</ColumnLineHeight>
>           <RowLineHeight>0</RowLineHeight>
>           <Rows/>
>           <TableHeader/>
>         </Table>
>       </PageHeader>
>     </Page>
>     <Page type="Page" context="usermaintenancereport">
>       <PageDetails>
>         <Text type="Text" context="usermaintenancereport">
>           <Alignment/>
>           <FontSize>11</FontSize>
>           <FontStyle>bold</FontStyle>
>           <Value>Wensveen, Micha</Value>
>         </Text>
>         <Table type="Table" context="usermaintenancereport">
>           <BorderHeight>8</BorderHeight>
>           <ColumnHeaderRowLineHeight>3</ColumnHeaderRowLineHeight>
>           <ColumnHeaders>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>0</FontSize>
>                   <FontStyle/>
>                   <Value/>
>                 </Text>
>               </Text>
>               <Width>2.0</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>0</FontSize>
>                   <FontStyle/>
>                   <Value/>
>                 </Text>
>               </Text>
>               <Width>6.7</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>0</FontSize>
>                   <FontStyle/>
>                   <Value/>
>                 </Text>
>               </Text>
>               <Width>9.2</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>0</FontSize>
>                   <FontStyle/>
>                   <Value/>
>                 </Text>
>               </Text>
>               <Width>12.2</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>0</FontSize>
>                   <FontStyle/>
>                   <Value/>
>                 </Text>
>               </Text>
>               <Width>2.0</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>0</FontSize>
>                   <FontStyle/>
>                   <Value/>
>                 </Text>
>               </Text>
>               <Width>1.8</Width>
>             </ColumnHeader>
>           </ColumnHeaders>
>           <ColumnLineHeight>0</ColumnLineHeight>
>           <RowLineHeight>0</RowLineHeight>
>           <Rows>
>             <Row type="Row" context="usermaintenancereport">
>               <Cells>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle>bold</FontStyle>
>                       <Value>User-ID:</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>NLAWEM</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle>bold</FontStyle>
>                       <Value>Locale:</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>en_GB</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle>bold</FontStyle>
>                       <Value>Last Update</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>09/07/2003</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>               </Cells>
>             </Row>
>             <Row type="Row" context="usermaintenancereport">
>               <Cells>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle>bold</FontStyle>
>                       <Value>UpId:</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>50GZ394NGI5P</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle>bold</FontStyle>
>                       <Value>Default Org Unit:</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>UNITED KINGDOM</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>0</FontSize>
>                       <FontStyle/>
>                       <Value/>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>0</FontSize>
>                       <FontStyle/>
>                       <Value/>
>                     </Text>
>                   </Text>
>                 </Cell>
>               </Cells>
>             </Row>
>             <Row type="Row" context="usermaintenancereport">
>               <Cells>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle>bold</FontStyle>
>                       <Value>Department:</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>External</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle>bold</FontStyle>
>                       <Value>Default Currency:</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>GBP</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>0</FontSize>
>                       <FontStyle/>
>                       <Value/>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>0</FontSize>
>                       <FontStyle/>
>                       <Value/>
>                     </Text>
>                   </Text>
>                 </Cell>
>               </Cells>
>             </Row>
>           </Rows>
>           <TableHeader>
>             <Text type="Text" context="usermaintenancereport">
>               <Alignment/>
>               <FontSize>11</FontSize>
>               <FontStyle/>
>               <Value>User Details</Value>
>             </Text>
>           </TableHeader>
>         </Table>
>         <Table type="Table" context="usermaintenancereport">
>           <BorderHeight>8</BorderHeight>
>           <ColumnHeaderRowLineHeight>3</ColumnHeaderRowLineHeight>
>           <ColumnHeaders>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>Code</Value>
>                 </Text>
>               </Text>
>               <Width>1.5</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>Description</Value>
>                 </Text>
>               </Text>
>               <Width>19.8</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>Default</Value>
>                 </Text>
>               </Text>
>               <Width>2.7</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>Last Update</Value>
>                 </Text>
>               </Text>
>               <Width>2.0</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>Status</Value>
>                 </Text>
>               </Text>
>               <Width>1.5</Width>
>             </ColumnHeader>
>           </ColumnHeaders>
>           <ColumnLineHeight>0</ColumnLineHeight>
>           <RowLineHeight>0</RowLineHeight>
>           <Rows>
>             <Row type="Row" context="usermaintenancereport">
>               <Cells>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>GB</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>United Kingdom</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>Yes</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>09/07/2003</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>Active</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>               </Cells>
>             </Row>
>           </Rows>
>           <TableHeader>
>             <Text type="Text" context="usermaintenancereport">
>               <Alignment/>
>               <FontSize>11</FontSize>
>               <FontStyle/>
>               <Value>Business Units</Value>
>             </Text>
>           </TableHeader>
>         </Table>
>         <Table type="Table" context="usermaintenancereport">
>           <BorderHeight>8</BorderHeight>
>           <ColumnHeaderRowLineHeight>3</ColumnHeaderRowLineHeight>
>           <ColumnHeaders>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>Role</Value>
>                 </Text>
>               </Text>
>               <Width>8.0</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>Organisational Unit</Value>
>                 </Text>
>               </Text>
>               <Width>4.3</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>Business Unit</Value>
>                 </Text>
>               </Text>
>               <Width>12.4</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>Status</Value>
>                 </Text>
>               </Text>
>               <Width>1.5</Width>
>             </ColumnHeader>
>           </ColumnHeaders>
>           <ColumnLineHeight>0</ColumnLineHeight>
>           <RowLineHeight>0</RowLineHeight>
>           <Rows>
>             <Row type="Row" context="usermaintenancereport">
>               <Cells>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>DDC Test Role Jeroen van der Sman</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>UNITED KINGDOM</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>0</FontSize>
>                       <FontStyle/>
>                       <Value/>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>Active</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>               </Cells>
>             </Row>
>             <Row type="Row" context="usermaintenancereport">
>               <Cells>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>Description Administrator</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>UNITED KINGDOM</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>0</FontSize>
>                       <FontStyle/>
>                       <Value/>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>Active</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>               </Cells>
>             </Row>
>             <Row type="Row" context="usermaintenancereport">
>               <Cells>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>Approval Profile Administrator</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>UNITED KINGDOM</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>United Kingdom</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>Active</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>               </Cells>
>             </Row>
>           </Rows>
>           <TableHeader>
>             <Text type="Text" context="usermaintenancereport">
>               <Alignment/>
>               <FontSize>11</FontSize>
>               <FontStyle/>
>               <Value>User Access Roles</Value>
>             </Text>
>           </TableHeader>
>         </Table>
>         <Text type="Text" context="usermaintenancereport">
>           <Alignment/>
>           <FontSize>11</FontSize>
>           <FontStyle/>
>           <Value>Permissions</Value>
>         </Text>
>         <Table type="Table" context="usermaintenancereport">
>           <BorderHeight>8</BorderHeight>
>           <ColumnHeaderRowLineHeight>3</ColumnHeaderRowLineHeight>
>           <ColumnHeaders>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>Role</Value>
>                 </Text>
>               </Text>
>               <Width>5.0</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>R/U</Value>
>                 </Text>
>               </Text>
>               <Width>1.1</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>Name</Value>
>                 </Text>
>               </Text>
>               <Width>4.7</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>Acc.Grp.</Value>
>                 </Text>
>               </Text>
>               <Width>3.7</Width>
>             </ColumnHeader>
>           </ColumnHeaders>
>           <ColumnLineHeight>0</ColumnLineHeight>
>           <RowLineHeight>0</RowLineHeight>
>           <Rows>
>             <Row type="Row" context="usermaintenancereport">
>               <Cells>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>DDC Test Role Jeroen van der Sman</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>Role</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>GB JVDS Limited Only 1</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>DDC Test Access Group Limited Only 1</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment>right</Alignment>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>100</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>UNITED KINGDOM</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>09/07/2003</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>Active</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>               </Cells>
>             </Row>
>             <Row type="Row" context="usermaintenancereport">
>               <Cells>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>DDC Test Role Jeroen van der Sman</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>Role</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>GB JVDS Limited Only 2</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>DDC Test Access Group Limited Only 2</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment>right</Alignment>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>1000</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>UNITED KINGDOM</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>09/07/2003</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>Active</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>               </Cells>
>             </Row>
>           </Rows>
>           <TableHeader>
>             <Text type="Text" context="usermaintenancereport">
>               <Alignment/>
>               <FontSize>11</FontSize>
>               <FontStyle/>
>               <Value>Limit Only Permissions</Value>
>             </Text>
>           </TableHeader>
>         </Table>
>         <MultipleTable type="MultipleTable" context="usermaintenancereport">
>           <BorderHeight>8</BorderHeight>
>           <ColumnHeaderRowLineHeight>5</ColumnHeaderRowLineHeight>
>           <ColumnHeaders>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>Role</Value>
>                 </Text>
>               </Text>
>               <Width>5.7</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>R/U</Value>
>                 </Text>
>               </Text>
>               <Width>1.1</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>Name</Value>
>                 </Text>
>               </Text>
>               <Width>4.7</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>Acc.Grp.</Value>
>                 </Text>
>               </Text>
>               <Width>1.5</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>OU/BU</Value>
>                 </Text>
>               </Text>
>               <Width>4.7</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>Last Update</Value>
>                 </Text>
>               </Text>
>               <Width>1.8</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>Status</Value>
>                 </Text>
>               </Text>
>               <Width>1.5</Width>
>             </ColumnHeader>
>           </ColumnHeaders>
>           <ColumnLineHeight>0</ColumnLineHeight>
>           <RowLineHeight>0</RowLineHeight>
>           <Rows>
>             <Row type="Row" context="usermaintenancereport">
>               <Cells>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>DDC Test Role Jeroen van der Sman</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>Role</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>GB JVDS Qualified only 1</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>DDC Test Access Grooup Qualified 1</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>UNITED KINGDOM</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>09/07/2003</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>Active</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>               </Cells>
>             </Row>
>           </Rows>
>           <SubsequentTables>
>             <Table type="Table" context="usermaintenancereport">
>               <BorderHeight>8</BorderHeight>
>               <ColumnHeaderRowLineHeight>3</ColumnHeaderRowLineHeight>
>               <ColumnHeaders>
>                 <ColumnHeader type="ColumnHeader" 
> context="usermaintenancereport">
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle>bold</FontStyle>
>                       <Value>Type Description</Value>
>                     </Text>
>                   </Text>
>                   <Width>11.1</Width>
>                 </ColumnHeader>
>                 <ColumnHeader type="ColumnHeader" 
> context="usermaintenancereport">
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle>bold</FontStyle>
>                       <Value>Code Description</Value>
>                     </Text>
>                   </Text>
>                   <Width>11.5</Width>
>                 </ColumnHeader>
>                 <ColumnHeader type="ColumnHeader" 
> context="usermaintenancereport">
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle>bold</FontStyle>
>                       <Value>Last Update</Value>
>                     </Text>
>                   </Text>
>                   <Width>1.8</Width>
>                 </ColumnHeader>
>                 <ColumnHeader type="ColumnHeader" 
> context="usermaintenancereport">
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle>bold</FontStyle>
>                       <Value>Status</Value>
>                     </Text>
>                   </Text>
>                   <Width>1.5</Width>
>                 </ColumnHeader>
>               </ColumnHeaders>
>               <ColumnLineHeight>0</ColumnLineHeight>
>               <RowLineHeight>0</RowLineHeight>
>               <Rows>
>                 <Row type="Row" context="usermaintenancereport">
>                   <Cells>
>                     <Cell type="Cell" context="usermaintenancereport">
>                       <ColSpan>1</ColSpan>
>                       <Text>
>                         <Text type="Text" context="usermaintenancereport">
>                           <Alignment/>
>                           <FontSize>9</FontSize>
>                           <FontStyle/>
>                           <Value>The valid set of Currency Codes</Value>
>                         </Text>
>                       </Text>
>                     </Cell>
>                     <Cell type="Cell" context="usermaintenancereport">
>                       <ColSpan>1</ColSpan>
>                       <Text>
>                         <Text type="Text" context="usermaintenancereport">
>                           <Alignment/>
>                           <FontSize>9</FontSize>
>                           <FontStyle/>
>                           <Value>Pound Sterling</Value>
>                         </Text>
>                       </Text>
>                     </Cell>
>                     <Cell type="Cell" context="usermaintenancereport">
>                       <ColSpan>1</ColSpan>
>                       <Text>
>                         <Text type="Text" context="usermaintenancereport">
>                           <Alignment/>
>                           <FontSize>9</FontSize>
>                           <FontStyle/>
>                           <Value>09/07/2003</Value>
>                         </Text>
>                       </Text>
>                     </Cell>
>                     <Cell type="Cell" context="usermaintenancereport">
>                       <ColSpan>1</ColSpan>
>                       <Text>
>                         <Text type="Text" context="usermaintenancereport">
>                           <Alignment/>
>                           <FontSize>9</FontSize>
>                           <FontStyle/>
>                           <Value>Active</Value>
>                         </Text>
>                       </Text>
>                     </Cell>
>                   </Cells>
>                 </Row>
>               </Rows>
>               <TableHeader>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment>center</Alignment>
>                   <FontSize>11</FontSize>
>                   <FontStyle/>
>                   <Value>Qualified Limits</Value>
>                 </Text>
>               </TableHeader>
>             </Table>
>           </SubsequentTables>
>           <TableHeader>
>             <Text type="Text" context="usermaintenancereport">
>               <Alignment/>
>               <FontSize>11</FontSize>
>               <FontStyle/>
>               <Value>Limit Only Permissions</Value>
>             </Text>
>           </TableHeader>
>         </MultipleTable>
>         <MultipleTable type="MultipleTable" context="usermaintenancereport">
>           <BorderHeight>8</BorderHeight>
>           <ColumnHeaderRowLineHeight>5</ColumnHeaderRowLineHeight>
>           <ColumnHeaders>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>Role</Value>
>                 </Text>
>               </Text>
>               <Width>5.7</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>R/U</Value>
>                 </Text>
>               </Text>
>               <Width>1.1</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>Name</Value>
>                 </Text>
>               </Text>
>               <Width>4.7</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>Acc.Grp.</Value>
>                 </Text>
>               </Text>
>               <Width>1.5</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>OU/BU</Value>
>                 </Text>
>               </Text>
>               <Width>4.7</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>Last Update</Value>
>                 </Text>
>               </Text>
>               <Width>1.8</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>Status</Value>
>                 </Text>
>               </Text>
>               <Width>1.5</Width>
>             </ColumnHeader>
>           </ColumnHeaders>
>           <ColumnLineHeight>0</ColumnLineHeight>
>           <RowLineHeight>0</RowLineHeight>
>           <Rows>
>             <Row type="Row" context="usermaintenancereport">
>               <Cells>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>DDC Test Role Jeroen van der Sman</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>Role</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>GB JVDS Qualified only 2</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>DDC Test Access Group Qualified 2</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>UNITED KINGDOM</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>09/07/2003</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>Active</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>               </Cells>
>             </Row>
>           </Rows>
>           <SubsequentTables>
>             <Table type="Table" context="usermaintenancereport">
>               <BorderHeight>8</BorderHeight>
>               <ColumnHeaderRowLineHeight>3</ColumnHeaderRowLineHeight>
>               <ColumnHeaders>
>                 <ColumnHeader type="ColumnHeader" 
> context="usermaintenancereport">
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle>bold</FontStyle>
>                       <Value>Type Description</Value>
>                     </Text>
>                   </Text>
>                   <Width>11.1</Width>
>                 </ColumnHeader>
>                 <ColumnHeader type="ColumnHeader" 
> context="usermaintenancereport">
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle>bold</FontStyle>
>                       <Value>Code Description</Value>
>                     </Text>
>                   </Text>
>                   <Width>11.5</Width>
>                 </ColumnHeader>
>                 <ColumnHeader type="ColumnHeader" 
> context="usermaintenancereport">
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle>bold</FontStyle>
>                       <Value>Last Update</Value>
>                     </Text>
>                   </Text>
>                   <Width>1.8</Width>
>                 </ColumnHeader>
>                 <ColumnHeader type="ColumnHeader" 
> context="usermaintenancereport">
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle>bold</FontStyle>
>                       <Value>Status</Value>
>                     </Text>
>                   </Text>
>                   <Width>1.5</Width>
>                 </ColumnHeader>
>               </ColumnHeaders>
>               <ColumnLineHeight>0</ColumnLineHeight>
>               <RowLineHeight>0</RowLineHeight>
>               <Rows>
>                 <Row type="Row" context="usermaintenancereport">
>                   <Cells>
>                     <Cell type="Cell" context="usermaintenancereport">
>                       <ColSpan>1</ColSpan>
>                       <Text>
>                         <Text type="Text" context="usermaintenancereport">
>                           <Alignment/>
>                           <FontSize>9</FontSize>
>                           <FontStyle/>
>                           <Value>Assessment note Filter Code</Value>
>                         </Text>
>                       </Text>
>                     </Cell>
>                     <Cell type="Cell" context="usermaintenancereport">
>                       <ColSpan>1</ColSpan>
>                       <Text>
>                         <Text type="Text" context="usermaintenancereport">
>                           <Alignment/>
>                           <FontSize>9</FontSize>
>                           <FontStyle/>
>                           <Value>Assessment Notes</Value>
>                         </Text>
>                       </Text>
>                     </Cell>
>                     <Cell type="Cell" context="usermaintenancereport">
>                       <ColSpan>1</ColSpan>
>                       <Text>
>                         <Text type="Text" context="usermaintenancereport">
>                           <Alignment/>
>                           <FontSize>9</FontSize>
>                           <FontStyle/>
>                           <Value>09/07/2003</Value>
>                         </Text>
>                       </Text>
>                     </Cell>
>                     <Cell type="Cell" context="usermaintenancereport">
>                       <ColSpan>1</ColSpan>
>                       <Text>
>                         <Text type="Text" context="usermaintenancereport">
>                           <Alignment/>
>                           <FontSize>9</FontSize>
>                           <FontStyle/>
>                           <Value>Active</Value>
>                         </Text>
>                       </Text>
>                     </Cell>
>                   </Cells>
>                 </Row>
>               </Rows>
>               <TableHeader>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment>center</Alignment>
>                   <FontSize>11</FontSize>
>                   <FontStyle/>
>                   <Value>Qualified Limits</Value>
>                 </Text>
>               </TableHeader>
>             </Table>
>           </SubsequentTables>
>           <TableHeader/>
>         </MultipleTable>
>       </PageDetails>
>       <PageFooter>
>         <Table type="Table" context="usermaintenancereport">
>           <BorderHeight>8</BorderHeight>
>           <ColumnHeaderRowLineHeight>3</ColumnHeaderRowLineHeight>
>           <ColumnHeaders>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>User Report</Value>
>                 </Text>
>               </Text>
>               <Width>21.8</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>Page</Value>
>                 </Text>
>               </Text>
>               <Width>1.64</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>&lt;pagenumber&gt;</Value>
>                 </Text>
>               </Text>
>               <Width>1.14</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>of</Value>
>                 </Text>
>               </Text>
>               <Width>0.77</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>9</FontSize>
>                   <FontStyle>bold</FontStyle>
>                   <Value>&lt;totalpagenumber&gt;</Value>
>                 </Text>
>               </Text>
>               <Width>1.14</Width>
>             </ColumnHeader>
>           </ColumnHeaders>
>           <ColumnLineHeight>0</ColumnLineHeight>
>           <RowLineHeight>0</RowLineHeight>
>           <Rows/>
>           <TableHeader/>
>         </Table>
>       </PageFooter>
>       <PageHeader>
>         <Table type="Table" context="usermaintenancereport">
>           <BorderHeight>8</BorderHeight>
>           <ColumnHeaderRowLineHeight>3</ColumnHeaderRowLineHeight>
>           <ColumnHeaders>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>0</FontSize>
>                   <FontStyle/>
>                   <Value/>
>                 </Text>
>               </Text>
>               <Width>9.0</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>0</FontSize>
>                   <FontStyle/>
>                   <Value/>
>                 </Text>
>               </Text>
>               <Width>1.6</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>0</FontSize>
>                   <FontStyle/>
>                   <Value/>
>                 </Text>
>               </Text>
>               <Width>6.8</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>0</FontSize>
>                   <FontStyle/>
>                   <Value/>
>                 </Text>
>               </Text>
>               <Width>1.6</Width>
>             </ColumnHeader>
>             <ColumnHeader type="ColumnHeader" context="usermaintenancereport">
>               <Text>
>                 <Text type="Text" context="usermaintenancereport">
>                   <Alignment/>
>                   <FontSize>0</FontSize>
>                   <FontStyle/>
>                   <Value/>
>                 </Text>
>               </Text>
>               <Width>7.4</Width>
>             </ColumnHeader>
>           </ColumnHeaders>
>           <ColumnLineHeight>0</ColumnLineHeight>
>           <RowLineHeight>0</RowLineHeight>
>           <Rows>
>             <Row type="Row" context="usermaintenancereport">
>               <Cells>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle>bold</FontStyle>
>                       <Value>User Report</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle>bold</FontStyle>
>                       <Value>Status:</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>Active</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle>bold</FontStyle>
>                       <Value>Org.Unit:</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>UNITED KINGDOM</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>               </Cells>
>             </Row>
>             <Row type="Row" context="usermaintenancereport">
>               <Cells>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>0</FontSize>
>                       <FontStyle/>
>                       <Value/>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle>bold</FontStyle>
>                       <Value>user:</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>9</FontSize>
>                       <FontStyle/>
>                       <Value>Wensveen, Micha</Value>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>0</FontSize>
>                       <FontStyle/>
>                       <Value/>
>                     </Text>
>                   </Text>
>                 </Cell>
>                 <Cell type="Cell" context="usermaintenancereport">
>                   <ColSpan>1</ColSpan>
>                   <Text>
>                     <Text type="Text" context="usermaintenancereport">
>                       <Alignment/>
>                       <FontSize>0</FontSize>
>                       <FontStyle/>
>                       <Value/>
>                     </Text>
>                   </Text>
>                 </Cell>
>               </Cells>
>             </Row>
>           </Rows>
>           <TableHeader/>
>         </Table>
>       </PageHeader>
>     </Page>
>   </Pages>
>   <Unit>cm</Unit>
> </Report>
> """""""""""""""""""""""""""""" FO FILE 
> """"""""""""""""""""""""""""""""""""""""
> <?xml version="1.0" encoding="UTF-8"?>
> <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"; text-align="left" font-
> size="9" 
> font-family="sans-serif"><fo:layout-master-set><fo:simple-page-master 
> margin-right="1cm" margin-left="1cm" margin-bottom="1cm" margin-top="1cm" 
> page-
> width="29.7cm" page-height="21cm"><fo:region-before extent="1cm"/><fo:region-
> body margin-top="1cm"/><fo:region-after extent="1.5cm"/></fo:simple-page-
> master></fo:layout-master-set><fo:page-sequence><fo:static-content flow-
> name="xsl-region-before"><fo:table table-layout="fixed" border-
> width="8cm"><fo:table-column column-width="9.0cm"/><fo:table-column column-
> width="1.6cm"/><fo:table-column column-width="6.8cm"/><fo:table-column column-
> width="1.6cm"/><fo:table-column 
> column-width="7.4cm"/><fo:table-body><fo:table-
> row><fo:table-cell><fo:block/></fo:table-cell><fo:table-
> cell><fo:block/></fo:table-cell><fo:table-cell><fo:block/></fo:table-
> cell><fo:table-cell><fo:block/></fo:table-cell><fo:table-
> cell><fo:block/></fo:table-cell></fo:table-row><fo:table-row><fo:table-
> cell><fo:block>User Report<fo:inline text-
> decoration="underline">underline</fo:inline></fo:block></fo:table-
> cell><fo:table-cell><fo:block>Status:<fo:inline text-
> decoration="underline">underline</fo:inline></fo:block></fo:table-
> cell><fo:table-cell><fo:block>Active<fo:inline text-
> decoration="underline">underline</fo:inline></fo:block></fo:table-
> cell><fo:table-cell><fo:block>Org.Unit:<fo:inline text-
> decoration="underline">underline</fo:inline></fo:block></fo:table-
> cell><fo:table-cell><fo:block>UNITED KINGDOM<fo:inline text-
> decoration="underline">underline</fo:inline></fo:block></fo:table-
> cell></fo:table-row><fo:table-row><fo:table-cell><fo:block><fo:inline text-
> decoration="underline">underline</fo:inline></fo:block></fo:table-
> cell><fo:table-cell><fo:block>user:<fo:inline text-
> decoration="underline">underline</fo:inline></fo:block></fo:table-
> cell><fo:table-cell><fo:block>Wensveen, Micha<fo:inline text-
> decoration="underline">underline</fo:inline></fo:block></fo:table-
> cell><fo:table-cell><fo:block><fo:inline text-
> decoration="underline">underline</fo:inline></fo:block></fo:table-
> cell><fo:table-cell><fo:block><fo:inline text-
> decoration="underline">underline</fo:inline></fo:block></fo:table-
> cell></fo:table-row></fo:table-body></fo:table><fo:block border-
> style="solid"/></fo:static-content><fo:static-content flow-name="xsl-region-
> after"><fo:block border-style="solid"/><fo:table table-layout="fixed" border-
> width="8cm"><fo:table-column column-width="21.8cm"/><fo:table-column column-
> width="1.64cm"/><fo:table-column column-width="1.14cm"/><fo:table-column 
> column-
> width="0.77cm"/><fo:table-column column-width="1.14cm"/><fo:table-
> body><fo:table-row><fo:table-cell><fo:block>User Report</fo:block></fo:table-
> cell><fo:table-cell><fo:block>Page</fo:block></fo:table-cell><fo:table-
> cell><fo:block>&lt;pagenumber&gt;</fo:block></fo:table-cell><fo:table-
> cell><fo:block>of</fo:block></fo:table-cell><fo:table-
> cell><fo:block>&lt;totalpagenumber&gt;</fo:block></fo:table-cell></fo:table-
> row></fo:table-body></fo:table></fo:static-content><fo:flow flow-name="xsl-
> region-body"><fo:block font-size="11" font-weight="bold">User 
> Details</fo:block><fo:table table-layout="fixed" border-width="0.25pt" border-
> style="solid" border-color="black"><fo:table-column/><fo:table-
> column/><fo:table-column/><fo:table-column/><fo:table-column/><fo:table-
> column/><fo:table-body><fo:table-row><fo:table-cell><fo:block/></fo:table-
> cell><fo:table-cell><fo:block/></fo:table-cell><fo:table-
> cell><fo:block/></fo:table-cell><fo:table-cell><fo:block/></fo:table-
> cell><fo:table-cell><fo:block/></fo:table-cell><fo:table-
> cell><fo:block/></fo:table-cell></fo:table-row><fo:table-row><fo:table-
> cell><fo:block>User-ID:</fo:block></fo:table-cell><fo:table-
> cell><fo:block>NLAWEM</fo:block></fo:table-cell><fo:table-
> cell><fo:block>Locale:</fo:block></fo:table-cell><fo:table-
> cell><fo:block>en_GB</fo:block></fo:table-cell><fo:table-cell><fo:block>Last 
> Update</fo:block></fo:table-cell><fo:table-
> cell><fo:block>09/07/2003</fo:block></fo:table-cell></fo:table-row><fo:table-
> row><fo:table-cell><fo:block>UpId:</fo:block></fo:table-cell><fo:table-
> cell><fo:block>50GZ394NGI5P</fo:block></fo:table-cell><fo:table-
> cell><fo:block>Default Org Unit:</fo:block></fo:table-cell><fo:table-
> cell><fo:block>UNITED KINGDOM</fo:block></fo:table-cell><fo:table-
> cell><fo:block/></fo:table-cell><fo:table-cell><fo:block/></fo:table-
> cell></fo:table-row><fo:table-row><fo:table-
> cell><fo:block>Department:</fo:block></fo:table-cell><fo:table-
> cell><fo:block>External</fo:block></fo:table-cell><fo:table-
> cell><fo:block>Default Currency:</fo:block></fo:table-cell><fo:table-
> cell><fo:block>GBP</fo:block></fo:table-cell><fo:table-
> cell><fo:block/></fo:table-cell><fo:table-cell><fo:block/></fo:table-
> cell></fo:table-row></fo:table-body></fo:table><fo:block font-size="11" font-
> weight="bold">Business Units</fo:block><fo:table table-layout="fixed" border-
> width="0.25pt" border-style="solid" border-color="black"><fo:table-
> column/><fo:table-column/><fo:table-column/><fo:table-column/><fo:table-
> column/><fo:table-body><fo:table-row><fo:table-
> cell><fo:block>Code</fo:block></fo:table-cell><fo:table-
> cell><fo:block>Description</fo:block></fo:table-cell><fo:table-
> cell><fo:block>Default</fo:block></fo:table-cell><fo:table-cell><fo:block>Last
>  
> Update</fo:block></fo:table-cell><fo:table-
> cell><fo:block>Status</fo:block></fo:table-cell></fo:table-row><fo:table-
> row><fo:table-cell><fo:block>GB</fo:block></fo:table-cell><fo:table-
> cell><fo:block>United Kingdom</fo:block></fo:table-cell><fo:table-
> cell><fo:block>Yes</fo:block></fo:table-cell><fo:table-
> cell><fo:block>09/07/2003</fo:block></fo:table-cell><fo:table-
> cell><fo:block>Active</fo:block></fo:table-cell></fo:table-row></fo:table-
> body></fo:table><fo:block font-size="11" font-weight="bold">User Access 
> Roles</fo:block><fo:table table-layout="fixed" border-width="0.25pt" border-
> style="solid" border-color="black"><fo:table-column/><fo:table-
> column/><fo:table-column/><fo:table-column/><fo:table-body><fo:table-
> row><fo:table-cell><fo:block>Role</fo:block></fo:table-cell><fo:table-
> cell><fo:block>Organisational Unit</fo:block></fo:table-cell><fo:table-
> cell><fo:block>Business Unit</fo:block></fo:table-cell><fo:table-
> cell><fo:block>Status</fo:block></fo:table-cell></fo:table-row><fo:table-
> row><fo:table-cell><fo:block>DDC Test Role Jeroen van der 
> Sman</fo:block></fo:table-cell><fo:table-cell><fo:block>UNITED 
> KINGDOM</fo:block></fo:table-cell><fo:table-cell><fo:block/></fo:table-
> cell><fo:table-cell><fo:block>Active</fo:block></fo:table-cell></fo:table-
> row><fo:table-row><fo:table-cell><fo:block>Description 
> Administrator</fo:block></fo:table-cell><fo:table-cell><fo:block>UNITED 
> KINGDOM</fo:block></fo:table-cell><fo:table-cell><fo:block/></fo:table-
> cell><fo:table-cell><fo:block>Active</fo:block></fo:table-cell></fo:table-
> row><fo:table-row><fo:table-cell><fo:block>Approval Profile 
> Administrator</fo:block></fo:table-cell><fo:table-cell><fo:block>UNITED 
> KINGDOM</fo:block></fo:table-cell><fo:table-cell><fo:block>United 
> Kingdom</fo:block></fo:table-cell><fo:table-
> cell><fo:block>Active</fo:block></fo:table-cell></fo:table-row></fo:table-
> body></fo:table><fo:block font-size="11" font-weight="bold">Limit Only 
> Permissions</fo:block><fo:table table-layout="fixed" border-width="0.25pt" 
> border-style="solid" border-color="black"><fo:table-column/><fo:table-
> column/><fo:table-column/><fo:table-column/><fo:table-body><fo:table-
> row><fo:table-cell><fo:block>Role</fo:block></fo:table-cell><fo:table-
> cell><fo:block>R/U</fo:block></fo:table-cell><fo:table-
> cell><fo:block>Name</fo:block></fo:table-cell><fo:table-
> cell><fo:block>Acc.Grp.</fo:block></fo:table-cell></fo:table-row><fo:table-
> row><fo:table-cell><fo:block>DDC Test Role Jeroen van der 
> Sman</fo:block></fo:table-cell><fo:table-
> cell><fo:block>Role</fo:block></fo:table-cell><fo:table-cell><fo:block>GB 
> JVDS 
> Limited Only 1</fo:block></fo:table-cell><fo:table-cell><fo:block>DDC Test 
> Access Group Limited Only 1</fo:block></fo:table-cell><fo:table-
> cell><fo:block>100</fo:block></fo:table-cell><fo:table-cell><fo:block>UNITED 
> KINGDOM</fo:block></fo:table-cell><fo:table-
> cell><fo:block>09/07/2003</fo:block></fo:table-cell><fo:table-
> cell><fo:block>Active</fo:block></fo:table-cell></fo:table-row><fo:table-
> row><fo:table-cell><fo:block>DDC Test Role Jeroen van der 
> Sman</fo:block></fo:table-cell><fo:table-
> cell><fo:block>Role</fo:block></fo:table-cell><fo:table-cell><fo:block>GB 
> JVDS 
> Limited Only 2</fo:block></fo:table-cell><fo:table-cell><fo:block>DDC Test 
> Access Group Limited Only 2</fo:block></fo:table-cell><fo:table-
> cell><fo:block>1000</fo:block></fo:table-cell><fo:table-cell><fo:block>UNITED 
> KINGDOM</fo:block></fo:table-cell><fo:table-
> cell><fo:block>09/07/2003</fo:block></fo:table-cell><fo:table-
> cell><fo:block>Active</fo:block></fo:table-cell></fo:table-row></fo:table-
> body></fo:table></fo:flow></fo:page-sequence></fo:root>



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

Reply via email to