Can you post a trimmed down version of your source XML
and the style sheet which demonstrates the problem?

I attached the XML source and the FO file as it is dumped for debugging purpose from my code. The stylesheet is still a bit lengthy (main style sheet is allInOne2FO_short). The link should be created in the template named "toc".

Thanks!
Ralf
<?xml version="1.0" encoding="UTF-8"?>
<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 name="newAddress">
		<fo:table width="100%" table-layout="fixed">
			<fo:table-column column-width="150pt" column-number="1"/>
			<fo:table-column column-number="2"/>
			<fo:table-body start-indent="0pt" text-align="start">
				<fo:table-row keep-with-next="always">
					<fo:table-cell number-columns-spanned="2" background-color="gray"
						border-collapse="collapse" border-color="gray" border-style="solid" border-width="1pt"
						border-start-color="white">
						<fo:block font-family="serif" font-style="italic" font-size="12pt" text-align="start" 
							space-before="10pt" space-after="5pt" start-indent="5pt">
							<xsl:variable name="type">
								<xsl:value-of select="./ADDRESS_TYPE_CODE"/>
							</xsl:variable>
							<xsl:value-of select="../[EMAIL PROTECTED]'ADDRESS_TYPE_CODE']/[EMAIL PROTECTED]"/>
						</fo:block>
					</fo:table-cell>
				</fo:table-row>
				<xsl:apply-templates select="DEPARTMENT" mode="address_list"/>
				<xsl:apply-templates select="ADDRESS_LINE_1" mode="address_list"/>
				<xsl:apply-templates select="ADDRESS_LINE_2" mode="address_list"/>
				<xsl:apply-templates select="ZIP_CODE_CITY" mode="address_list"/>
				<xsl:apply-templates select="ZIP_CODE_PO_BOX" mode="address_list"/>
				<xsl:apply-templates select="COUNTRY" mode="address_list"/>
				<xsl:apply-templates select="STATE" mode="address_list"/>
				<xsl:apply-templates select="DESCRIPTION" mode="address_list"/>
			</fo:table-body>
		</fo:table>
	</xsl:template>			

	<xsl:template match="address_list/row/*" mode="address_list">
		<xsl:choose> 
			<xsl:when test="local-name()='ZIP_CODE_CITY'">
				<xsl:call-template name="plzOrtRow">
					<xsl:with-param name="borderColor">white</xsl:with-param>
					<xsl:with-param name="fillColor">silver</xsl:with-param>
					<xsl:with-param name="node1">ZIP_CODE_CITY</xsl:with-param>
					<xsl:with-param name="node2">CITY</xsl:with-param>
				</xsl:call-template>
			</xsl:when>
			<xsl:when test="local-name()='ZIP_CODE_PO_BOX'">
				<xsl:call-template name="plzOrtRow">
					<xsl:with-param name="borderColor">white</xsl:with-param>
					<xsl:with-param name="fillColor">silver</xsl:with-param>
					<xsl:with-param name="node1">ZIP_CODE_PO_BOX</xsl:with-param>
					<xsl:with-param name="node2">PO_BOX</xsl:with-param>
				</xsl:call-template>
			</xsl:when>
			<xsl:otherwise>
				<xsl:call-template name="keyValueRow">
					<xsl:with-param name="borderColor">white</xsl:with-param>
					<xsl:with-param name="fillColor">silver</xsl:with-param>
				</xsl:call-template>
			</xsl:otherwise>
		</xsl:choose>
	</xsl:template>


</xsl:stylesheet>
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; xmlns:fo="http://www.w3.org/1999/XSL/Format";>
	
	<xsl:decimal-format decimal-separator="," grouping-separator="." name="de"/>
	<xsl:decimal-format decimal-separator="." grouping-separator="," name="us"/>

	<!-- Creates a two column row and evaluates the current context node. -->
	<xsl:template name="keyValueRow">
		<xsl:param name="borderColor">gray</xsl:param>
		<xsl:param name="fillColor">white</xsl:param>
		<xsl:param name="keep">always</xsl:param>
		<xsl:param name="left"/>
		<xsl:param name="right"/>
		<xsl:variable name="node">
			<xsl:value-of select="local-name()"/>
		</xsl:variable>
		<xsl:variable name="key">
			<xsl:choose>
				<xsl:when test="string-length($left) &gt; 0">
					<xsl:value-of select="$left"/>
				</xsl:when>
				<xsl:otherwise>
					<xsl:value-of select="../../[EMAIL PROTECTED]/@title"/>
				</xsl:otherwise>
			</xsl:choose>
		</xsl:variable>
		<xsl:variable name="value">
			<xsl:choose>
				<xsl:when test="string-length($right) &gt; 0">
					<xsl:value-of select="$right"/>
				</xsl:when>
				<xsl:otherwise>
					<xsl:value-of select="."/>
				</xsl:otherwise>
			</xsl:choose>
		</xsl:variable>
		<!-- Test if there is content available to fill the row. -->
		<xsl:if test="string-length($value) &gt; 0">
			<fo:table-row>
				<xsl:attribute name="keep-with-next"><xsl:value-of select="$keep"/></xsl:attribute>
				<xsl:call-template name="createCell">
					<xsl:with-param name="borderColor"><xsl:value-of select="$borderColor"/></xsl:with-param>
					<xsl:with-param name="fillColor"><xsl:value-of select="$fillColor"/></xsl:with-param>
					<xsl:with-param name="fillWith"><xsl:value-of select="$key"/></xsl:with-param>
				</xsl:call-template>
				<xsl:call-template name="createCell">
					<xsl:with-param name="fillWith"><xsl:value-of select="$value"/></xsl:with-param>
				</xsl:call-template>
			</fo:table-row>
		</xsl:if>
	</xsl:template>

	
	<!-- Template for Postal Code/City row. -->
	<xsl:template name="plzOrtRow">
		<xsl:param name="borderColor">gray</xsl:param>
		<xsl:param name="fillColor">white</xsl:param>
		<xsl:param name="node1"/>
		<xsl:param name="node2"/>
		<xsl:param name="keep">always</xsl:param>
		<xsl:param name="calcKey">1</xsl:param>
		<xsl:variable name="content">
			<xsl:value-of select="."/>
		</xsl:variable>
		<xsl:variable name="key">
			<xsl:choose>
				<xsl:when test="$calcKey='1'">
					<xsl:value-of select="../../[EMAIL PROTECTED]/@title"/> /	<xsl:value-of select="../../[EMAIL PROTECTED]/@title"/>
				</xsl:when>
				<xsl:otherwise>
					<xsl:value-of select="$node1"/>
				</xsl:otherwise>
			</xsl:choose>
		</xsl:variable>
		
		<xsl:if test="string-length($content) &gt; 0">
			<xsl:variable name="value">
				<xsl:value-of select="$content"/> / <xsl:value-of select="../*[name()=$node2]"/>
			</xsl:variable>
			<fo:table-row>
				<xsl:attribute name="keep-with-next"><xsl:value-of select="$keep"/></xsl:attribute>
				<xsl:call-template name="createCell">
					<xsl:with-param name="borderColor"><xsl:value-of select="$borderColor"/></xsl:with-param>
					<xsl:with-param name="fillColor"><xsl:value-of select="$fillColor"/></xsl:with-param>
					<xsl:with-param name="fillWith"><xsl:value-of select="$key"/></xsl:with-param>
				</xsl:call-template>
				<xsl:call-template name="createCell">
					<xsl:with-param name="fillWith"><xsl:value-of select="$value"/></xsl:with-param>
				</xsl:call-template>
			</fo:table-row>
		</xsl:if>
	</xsl:template>



	<!-- General templates -->
	<xsl:template name="createCell">
		<xsl:param name="fillWith">[NOT SPECIFIED]</xsl:param>
		<xsl:param name="borderColor">gray</xsl:param>
		<xsl:param name="borderStartStyle">solid</xsl:param>
		<xsl:param name="borderEndStyle">solid</xsl:param>
		<xsl:param name="borderStartColor"><xsl:value-of select="$borderColor"/></xsl:param>
		<xsl:param name="fillColor">white</xsl:param>
		<xsl:param name="horizontalAlign">before</xsl:param>
		<xsl:param name="isImage">0</xsl:param>
		<xsl:param name="padding">3pt</xsl:param>
		<xsl:param name="textAlign">start</xsl:param>
		<fo:table-cell border-collapse="collapse" border-width="1pt" border-style="solid">
			<xsl:attribute name="padding"><xsl:value-of select="$padding"/></xsl:attribute>
			<xsl:attribute name="border-color"><xsl:value-of select="$borderColor"/></xsl:attribute>
			<xsl:attribute name="border-start-style"><xsl:value-of select="$borderStartStyle"/></xsl:attribute>
			<xsl:attribute name="border-end-style"><xsl:value-of select="$borderEndStyle"/></xsl:attribute>
			<xsl:attribute name="border-start-color"><xsl:value-of select="$borderStartColor"/></xsl:attribute>
			<xsl:attribute name="background-color"><xsl:value-of select="$fillColor"/></xsl:attribute>
			<xsl:attribute name="display-align"><xsl:value-of select="$horizontalAlign"/></xsl:attribute>
			<fo:block font-family="sans-serif" font-style="normal" font-size="8pt">
				<xsl:attribute name="text-align"><xsl:value-of select="$textAlign"/></xsl:attribute>
				<xsl:choose>
					<xsl:when test="$isImage!=0">
						<fo:external-graphic>
							<xsl:attribute name="src"><xsl:value-of select="$fillWith"/></xsl:attribute>
						</fo:external-graphic>
					</xsl:when>
					<xsl:otherwise>
						<xsl:value-of select="$fillWith"/>
					</xsl:otherwise>
				</xsl:choose>
			</fo:block>
		</fo:table-cell>
	</xsl:template>
		
	
	<xsl:template match="text()" />

</xsl:stylesheet>
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; xmlns:fo="http://www.w3.org/1999/XSL/Format";>
<xsl:import href="./allInOne2FO_Adressen_short.xsl"/>
<xsl:import href="./allInOne2FO_Common_short.xsl"/>
<xsl:output method="xml" encoding="UTF-8" indent="yes" omit-xml-declaration="no"/>

	<!--  Match root element -->
	<xsl:template match="all_mighty_master_tag">
		<fo:root>
			<!-- Layout definition -->
			<fo:layout-master-set>
				<!-- Layout #1 for page 1 of the table of contents -->
				<fo:simple-page-master
					page-height="297mm" page-width="210mm"
					margin-top="40mm" margin-bottom="10mm"
					margin-left="25mm" margin-right="25mm" 
					master-name="PageMasterOneOne">
					<fo:region-body margin-top="40mm" margin-bottom="45mm"/>
					<fo:region-before extent="40mm" display-align="after" region-name="headerTOC1"/>
					<fo:region-after extent="40mm" display-align="after" region-name="footerTOC1"/>
				</fo:simple-page-master>
				<!-- Layout for all other pages of the TOC -->
				<fo:simple-page-master
					page-height="297mm" page-width="210mm"
					margin-top="25mm" margin-bottom="10mm"
					margin-left="25mm" margin-right="25mm" 
					master-name="PageMasterOneTwo">
					<fo:region-body margin-top="30mm" margin-bottom="25mm"/>
					<fo:region-before extent="20mm" region-name="headerTOC2"/>
					<fo:region-after extent="20mm" display-align="after" region-name="footerTOC2"/>
				</fo:simple-page-master>

				<!-- Layout #2 for document content -->
				<fo:simple-page-master 
					page-height="297mm" page-width="210mm"
					margin-top="10mm" margin-bottom="10mm"
					margin-left="25mm" margin-right="25mm" 
					master-name="PageMasterTwoOne">
					<fo:region-body margin-top="25mm" margin-bottom="20mm"/>
					<fo:region-before extent="10mm" region-name="myHeader"/>
					<fo:region-after extent="10mm" region-name="myFooter" display-align="after"/>
				</fo:simple-page-master>
				<!-- Layout for blank page-->
				<fo:simple-page-master
					page-height="297mm" page-width="210mm"
					master-name="PageMasterTwoTwo">
					<fo:region-before extent="120mm" display-align="after" region-name="blankHeader"/>
				</fo:simple-page-master>
				
				<!-- Sequenz Master for TOC -->
				<fo:page-sequence-master master-name="PageMasterOne">
					<fo:repeatable-page-master-alternatives>
						<fo:conditional-page-master-reference
							master-reference="PageMasterOneOne"
							page-position="first"/>
						<fo:conditional-page-master-reference
							master-reference="PageMasterOneTwo"
							page-position="rest"/>
					</fo:repeatable-page-master-alternatives>
				</fo:page-sequence-master>
				
				<!-- Sequenz Master for content. -->
				<fo:page-sequence-master master-name="PageMasterTwo">
					<fo:repeatable-page-master-alternatives>
						<fo:conditional-page-master-reference
							master-reference="PageMasterTwoOne"
							blank-or-not-blank="not-blank"/>
						<fo:conditional-page-master-reference
							master-reference="PageMasterTwoTwo"
							blank-or-not-blank="blank"/>
					</fo:repeatable-page-master-alternatives>
				</fo:page-sequence-master>
			</fo:layout-master-set>
			
			<!-- Cover sheet (TOC page #1)-->
			<fo:page-sequence master-reference="PageMasterOne">
				<!-- Static Content for page 1. -->
				<fo:static-content flow-name="headerTOC1">
					<fo:block font-family="serif" font-style="normal" >
						<fo:block font-size="24pt" text-align="start">
							Lieferantenübersicht
						</fo:block>
						<fo:block text-indent="30pt" space-before="20pt" font-size="18pt">
							<xsl:value-of select="./prolog/company_name"/>
						</fo:block>
					</fo:block>
				</fo:static-content>
				<fo:static-content flow-name="footerTOC1">
					<fo:block font-family="serif" font-style="normal">
						<fo:block>
							Angefordert am
						</fo:block>
						<fo:block text-indent="30pt" space-before="10pt">
							<xsl:value-of select="./prolog/today"/>
						</fo:block>
						<fo:block space-before="20pt">
							Für Benutzer
						</fo:block>
						<fo:block text-indent="30pt" space-before="10pt">
							<xsl:value-of select="./prolog/user"/>
						</fo:block>
					</fo:block>
				</fo:static-content>"
				<!-- Static Content for all other TOC pages. -->
				<fo:static-content flow-name="headerTOC2">
					<fo:block font-family="serif" font-size="16pt" font-style="normal" text-align="justify">
						Inhalt Fortsetzung "<xsl:value-of select="./prolog/company_name"/>"
					</fo:block>
				</fo:static-content>
				<fo:static-content flow-name="footerTOC2">
					<fo:table width="100%" table-layout="fixed">
						<fo:table-column column-number="1"/>
						<fo:table-column column-number="2"/>
						<fo:table-body font-family="serif" font-size="14pt" font-style="normal">
							<fo:table-row>
								<fo:table-cell text-align="start">
									<fo:block>Angefordert am <xsl:value-of select="./prolog/today"/></fo:block>
								</fo:table-cell>
								<fo:table-cell text-align="end">
									<fo:block>Für Benutzer "<xsl:value-of select="./prolog/user"/>"</fo:block>
								</fo:table-cell>
							</fo:table-row>
						</fo:table-body>
					</fo:table>
				</fo:static-content>
				<!-- Create TOC -->
				<fo:flow flow-name="xsl-region-body">
					<fo:block space-after="20pt" font-family="serif" space-before.conditionality="retain">
						Ausgewählte Details:
						<xsl:call-template name="toc"/>
					</fo:block>
				</fo:flow>
			</fo:page-sequence>
			
			<!-- Content... -->
			<fo:page-sequence master-reference="PageMasterTwo">
				<!-- Header for empty pages. -->
				<fo:static-content flow-name="blankHeader">
					<fo:block text-align="center">Diese Seite wurde absichtlich leer gelassen.</fo:block>
				</fo:static-content>
				<!-- Header -->
				<fo:static-content flow-name="myHeader">
					<fo:list-block font-family="sans-serif" font-size="10pt">
						<fo:list-item>
							<fo:list-item-label>
								<fo:block text-align="start">Lieferantenübersicht - 
									<xsl:value-of select="./prolog/company_name"/>
								</fo:block>
							</fo:list-item-label>
							<fo:list-item-body>
								<fo:block text-align="end">Erstelldatum: 
									<xsl:value-of select="./prolog/today"/>
								</fo:block>
							</fo:list-item-body>
						</fo:list-item>
					</fo:list-block>
				</fo:static-content>
				<!-- Footer -->
				<fo:static-content flow-name="myFooter">
					<fo:block font-family="sans-serif" font-size="10pt" font-weight="bold" text-align="center" padding-before="5pt"
						border-collapse="collapse" border-before-color="black" border-before-style="solid" border-before-width="0.5pt">
						- <fo:page-number/> -
					</fo:block>
				</fo:static-content>
				<!-- Page content -->
				<fo:flow flow-name="xsl-region-body">
					<!-- Use templates -->
					<xsl:apply-templates select="address_list"/>			<!-- Weitere Anschriften -->
				</fo:flow>
			</fo:page-sequence>
		</fo:root>
	</xsl:template>
	
	
	<!-- ________________ TOC _________________ -->
	<xsl:template name="toc">
		<xsl:param name="level">1</xsl:param>
		<xsl:for-each select="./[EMAIL PROTECTED]">
			<fo:block end-indent="30pt" text-align="justify">
				<!--Increase indent for every sub-chapter. -->
				<xsl:attribute name="start-indent"><xsl:value-of select="$level * 30"/>pt</xsl:attribute>
				<xsl:choose>
					<xsl:when test="$level = 1">
						<xsl:attribute name="space-before">10pt</xsl:attribute>
						<xsl:number  count="//[EMAIL PROTECTED]" format="1.1.1 "/>
					</xsl:when>
					<xsl:otherwise>
						<xsl:attribute name="space-before">5pt</xsl:attribute>
						<xsl:number  count="//[EMAIL PROTECTED]" format="1.1.1 " level="multiple"/>
					</xsl:otherwise>
				</xsl:choose>
				<fo:inline space-start="15pt">
					<xsl:value-of select="./prolog/title"/>
					<fo:leader leader-length="100%" leader-pattern="dots"/>
					<fo:basic-link internal-destination="[EMAIL PROTECTED]"> 
						<fo:page-number-citation color="blue" ref-id="[EMAIL PROTECTED]"/>
					</fo:basic-link>
				</fo:inline>
			</fo:block>
			<!-- Search sub-chapters -->
			<xsl:call-template name="toc">
				<xsl:with-param name="level" select="$level + 1"/>
			</xsl:call-template>
		</xsl:for-each>
	</xsl:template>
	
	
	<!-- _______________ Templates für weitere Adressen: _________________ -->
	<!-- Templates in allInOne2FO_Adressen_short.xsl -->
	<xsl:template match="address_list">
		<fo:block font-family="serif" font-style="normal" font-weight="bold" font-size="16pt" 
			space-before="50pt" space-after="20pt" id="[EMAIL PROTECTED]">
			<xsl:number count="//[EMAIL PROTECTED]" format="1 "/><xsl:value-of select="./prolog/title"/>
		</fo:block>
		<xsl:for-each select="./row">
			<xsl:call-template name="newAddress"/>
		</xsl:for-each>
	</xsl:template>

</xsl:stylesheet>
<?xml version="1.0" encoding="UTF-8"?>
<?xml:stylesheet name="text/xsl" href="../allInOne_1xslt"?>
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format";>
	<fo:layout-master-set>
		<fo:simple-page-master margin-bottom="10mm" margin-left="25mm" margin-right="25mm" margin-top="40mm" master-name="PageMasterOneOne" page-height="297mm" page-width="210mm">
			<fo:region-body margin-bottom="45mm" margin-top="40mm"/>
			<fo:region-before display-align="after" extent="40mm" region-name="headerTOC1"/>
			<fo:region-after display-align="after" extent="40mm" region-name="footerTOC1"/>
		</fo:simple-page-master>
		<fo:simple-page-master margin-bottom="10mm" margin-left="25mm" margin-right="25mm" margin-top="25mm" master-name="PageMasterOneTwo" page-height="297mm" page-width="210mm">
			<fo:region-body margin-bottom="25mm" margin-top="30mm"/>
			<fo:region-before extent="20mm" region-name="headerTOC2"/>
			<fo:region-after display-align="after" extent="20mm" region-name="footerTOC2"/>
		</fo:simple-page-master>
		<fo:simple-page-master margin-bottom="10mm" margin-left="25mm" margin-right="25mm" margin-top="10mm" master-name="PageMasterTwoOne" page-height="297mm" page-width="210mm">
			<fo:region-body margin-bottom="20mm" margin-top="25mm"/>
			<fo:region-before extent="10mm" region-name="myHeader"/>
			<fo:region-after display-align="after" extent="10mm" region-name="myFooter"/>
		</fo:simple-page-master>
		<fo:simple-page-master master-name="PageMasterTwoTwo" page-height="297mm" page-width="210mm">
			<fo:region-before display-align="after" extent="120mm" region-name="blankHeader"/>
		</fo:simple-page-master>
		<fo:page-sequence-master master-name="PageMasterOne">
			<fo:repeatable-page-master-alternatives>
				<fo:conditional-page-master-reference master-reference="PageMasterOneOne" page-position="first"/>
				<fo:conditional-page-master-reference master-reference="PageMasterOneTwo" page-position="rest"/>
			</fo:repeatable-page-master-alternatives>
		</fo:page-sequence-master>
		<fo:page-sequence-master master-name="PageMasterTwo">
			<fo:repeatable-page-master-alternatives>
				<fo:conditional-page-master-reference blank-or-not-blank="not-blank" master-reference="PageMasterTwoOne"/>
				<fo:conditional-page-master-reference blank-or-not-blank="blank" master-reference="PageMasterTwoTwo"/>
			</fo:repeatable-page-master-alternatives>
		</fo:page-sequence-master>
	</fo:layout-master-set>
	<fo:page-sequence master-reference="PageMasterOne">
		<fo:static-content flow-name="headerTOC1">
			<fo:block font-family="serif" font-style="normal">
				<fo:block font-size="24pt" text-align="start">
							Lieferantenübersicht
						</fo:block>
				<fo:block font-size="18pt" space-before="20pt" text-indent="30pt"/>
			</fo:block>
		</fo:static-content>
		<fo:static-content flow-name="footerTOC1">
			<fo:block font-family="serif" font-style="normal">
				<fo:block>
							Angefordert am
						</fo:block>
				<fo:block space-before="10pt" text-indent="30pt">06.05.2002</fo:block>
				<fo:block space-before="20pt">
							Für Benutzer
						</fo:block>
				<fo:block space-before="10pt" text-indent="30pt">Matthew Bond</fo:block>
			</fo:block>
		</fo:static-content>
 &quot;
				
				 <fo:static-content flow-name="headerTOC2">
			<fo:block font-family="serif" font-size="16pt" font-style="normal" text-align="justify">
						Inhalt Fortsetzung &quot;   &quot;
					</fo:block>
		</fo:static-content>
		<fo:static-content flow-name="footerTOC2">
			<fo:table table-layout="fixed" width="100%">
				<fo:table-column column-number="1"/>
				<fo:table-column column-number="2"/>
				<fo:table-body font-family="serif" font-size="14pt" font-style="normal">
					<fo:table-row>
						<fo:table-cell text-align="start">
							<fo:block>Angefordert am        06.05.2002</fo:block>
						</fo:table-cell>
						<fo:table-cell text-align="end">
							<fo:block>Für Benutzer &quot;       Matthew Bond       &quot;</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-family="serif" space-after="20pt" space-before.conditionality="retain">
						Ausgewählte Details:
						   <fo:block end-indent="30pt" space-before="10pt" start-indent="30pt" text-align="justify">1     <fo:inline space-start="15pt">Weitere Anschriften     <fo:leader leader-length="100%" leader-pattern="dots"/>
						<fo:basic-link internal-destination="addressListHeading">
							<fo:page-number-citation color="blue" ref-id="addressListHeading"/>
						</fo:basic-link>
					</fo:inline>
				</fo:block>
			</fo:block>
		</fo:flow>
	</fo:page-sequence>
	<fo:page-sequence master-reference="PageMasterTwo">
		<fo:static-content flow-name="blankHeader">
			<fo:block text-align="center">Diese Seite ist leer.</fo:block>
		</fo:static-content>
		<fo:static-content flow-name="myHeader">
			<fo:list-block font-family="sans-serif" font-size="10pt">
				<fo:list-item>
					<fo:list-item-label>
						<fo:block text-align="start">Lieferantenübersicht - 
									</fo:block>
					</fo:list-item-label>
					<fo:list-item-body>
						<fo:block text-align="end">Erstelldatum: 
									      06.05.2002</fo:block>
					</fo:list-item-body>
				</fo:list-item>
			</fo:list-block>
		</fo:static-content>
		<fo:static-content flow-name="myFooter">
			<fo:block border-before-color="black" border-before-style="solid" border-before-width="0.5pt" border-collapse="collapse" font-family="sans-serif" font-size="10pt" font-weight="bold" padding-before="5pt" text-align="center">
						-    <fo:page-number/>
    -
					</fo:block>
		</fo:static-content>
		<fo:flow flow-name="xsl-region-body">
			<fo:block font-family="serif" font-size="16pt" font-style="normal" font-weight="bold" id="addressListHeading" space-after="20pt" space-before="50pt">1    Weitere Anschriften</fo:block>
			<fo:table table-layout="fixed" width="100%">
				<fo:table-column column-number="1" column-width="150pt"/>
				<fo:table-column column-number="2"/>
				<fo:table-body start-indent="0pt" text-align="start">
					<fo:table-row keep-with-next="always">
						<fo:table-cell background-color="gray" border-collapse="collapse" border-color="gray" border-start-color="white" border-style="solid" border-width="1pt" number-columns-spanned="2">
							<fo:block font-family="serif" font-size="12pt" font-style="italic" space-after="5pt" space-before="10pt" start-indent="5pt" text-align="start">Entwicklungsstätte</fo:block>
						</fo:table-cell>
					</fo:table-row>
					<fo:table-row keep-with-next="always">
						<fo:table-cell background-color="silver" border-collapse="collapse" border-color="white" border-end-style="solid" border-start-color="white" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">Abteilung</fo:block>
						</fo:table-cell>
						<fo:table-cell background-color="white" border-collapse="collapse" border-color="gray" border-end-style="solid" border-start-color="gray" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">F&amp;E</fo:block>
						</fo:table-cell>
					</fo:table-row>
					<fo:table-row keep-with-next="always">
						<fo:table-cell background-color="silver" border-collapse="collapse" border-color="white" border-end-style="solid" border-start-color="white" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">Strasse 1</fo:block>
						</fo:table-cell>
						<fo:table-cell background-color="white" border-collapse="collapse" border-color="gray" border-end-style="solid" border-start-color="gray" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">Wilhelmstrasse 78</fo:block>
						</fo:table-cell>
					</fo:table-row>
					<fo:table-row keep-with-next="always">
						<fo:table-cell background-color="silver" border-collapse="collapse" border-color="white" border-end-style="solid" border-start-color="white" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">Strasse 2</fo:block>
						</fo:table-cell>
						<fo:table-cell background-color="white" border-collapse="collapse" border-color="gray" border-end-style="solid" border-start-color="gray" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">Tor 7-2</fo:block>
						</fo:table-cell>
					</fo:table-row>
					<fo:table-row keep-with-next="always">
						<fo:table-cell background-color="silver" border-collapse="collapse" border-color="white" border-end-style="solid" border-start-color="white" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">PLZ /	Ort</fo:block>
						</fo:table-cell>
						<fo:table-cell background-color="white" border-collapse="collapse" border-color="gray" border-end-style="solid" border-start-color="gray" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">76263 / Tuttlingen</fo:block>
						</fo:table-cell>
					</fo:table-row>
					<fo:table-row keep-with-next="always">
						<fo:table-cell background-color="silver" border-collapse="collapse" border-color="white" border-end-style="solid" border-start-color="white" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">Land</fo:block>
						</fo:table-cell>
						<fo:table-cell background-color="white" border-collapse="collapse" border-color="gray" border-end-style="solid" border-start-color="gray" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">Deutschland</fo:block>
						</fo:table-cell>
					</fo:table-row>
				</fo:table-body>
			</fo:table>
			<fo:table table-layout="fixed" width="100%">
				<fo:table-column column-number="1" column-width="150pt"/>
				<fo:table-column column-number="2"/>
				<fo:table-body start-indent="0pt" text-align="start">
					<fo:table-row keep-with-next="always">
						<fo:table-cell background-color="gray" border-collapse="collapse" border-color="gray" border-start-color="white" border-style="solid" border-width="1pt" number-columns-spanned="2">
							<fo:block font-family="serif" font-size="12pt" font-style="italic" space-after="5pt" space-before="10pt" start-indent="5pt" text-align="start">Fertigungsstätte</fo:block>
						</fo:table-cell>
					</fo:table-row>
					<fo:table-row keep-with-next="always">
						<fo:table-cell background-color="silver" border-collapse="collapse" border-color="white" border-end-style="solid" border-start-color="white" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">Abteilung</fo:block>
						</fo:table-cell>
						<fo:table-cell background-color="white" border-collapse="collapse" border-color="gray" border-end-style="solid" border-start-color="gray" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">Abteilung 1</fo:block>
						</fo:table-cell>
					</fo:table-row>
					<fo:table-row keep-with-next="always">
						<fo:table-cell background-color="silver" border-collapse="collapse" border-color="white" border-end-style="solid" border-start-color="white" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">Strasse 1</fo:block>
						</fo:table-cell>
						<fo:table-cell background-color="white" border-collapse="collapse" border-color="gray" border-end-style="solid" border-start-color="gray" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">Finkenstrasse 34</fo:block>
						</fo:table-cell>
					</fo:table-row>
					<fo:table-row keep-with-next="always">
						<fo:table-cell background-color="silver" border-collapse="collapse" border-color="white" border-end-style="solid" border-start-color="white" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">PLZ /	Ort</fo:block>
						</fo:table-cell>
						<fo:table-cell background-color="white" border-collapse="collapse" border-color="gray" border-end-style="solid" border-start-color="gray" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">78247 / Hilzingen</fo:block>
						</fo:table-cell>
					</fo:table-row>
					<fo:table-row keep-with-next="always">
						<fo:table-cell background-color="silver" border-collapse="collapse" border-color="white" border-end-style="solid" border-start-color="white" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">Land</fo:block>
						</fo:table-cell>
						<fo:table-cell background-color="white" border-collapse="collapse" border-color="gray" border-end-style="solid" border-start-color="gray" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">Deutschland</fo:block>
						</fo:table-cell>
					</fo:table-row>
					<fo:table-row keep-with-next="always">
						<fo:table-cell background-color="silver" border-collapse="collapse" border-color="white" border-end-style="solid" border-start-color="white" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">Bundesland</fo:block>
						</fo:table-cell>
						<fo:table-cell background-color="white" border-collapse="collapse" border-color="gray" border-end-style="solid" border-start-color="gray" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">a</fo:block>
						</fo:table-cell>
					</fo:table-row>
					<fo:table-row keep-with-next="always">
						<fo:table-cell background-color="silver" border-collapse="collapse" border-color="white" border-end-style="solid" border-start-color="white" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">Beschreibung</fo:block>
						</fo:table-cell>
						<fo:table-cell background-color="white" border-collapse="collapse" border-color="gray" border-end-style="solid" border-start-color="gray" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">testbeschreibung</fo:block>
						</fo:table-cell>
					</fo:table-row>
				</fo:table-body>
			</fo:table>
			<fo:table table-layout="fixed" width="100%">
				<fo:table-column column-number="1" column-width="150pt"/>
				<fo:table-column column-number="2"/>
				<fo:table-body start-indent="0pt" text-align="start">
					<fo:table-row keep-with-next="always">
						<fo:table-cell background-color="gray" border-collapse="collapse" border-color="gray" border-start-color="white" border-style="solid" border-width="1pt" number-columns-spanned="2">
							<fo:block font-family="serif" font-size="12pt" font-style="italic" space-after="5pt" space-before="10pt" start-indent="5pt" text-align="start">Lieferanschrift</fo:block>
						</fo:table-cell>
					</fo:table-row>
					<fo:table-row keep-with-next="always">
						<fo:table-cell background-color="silver" border-collapse="collapse" border-color="white" border-end-style="solid" border-start-color="white" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">Abteilung</fo:block>
						</fo:table-cell>
						<fo:table-cell background-color="white" border-collapse="collapse" border-color="gray" border-end-style="solid" border-start-color="gray" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">Endabnahme 2</fo:block>
						</fo:table-cell>
					</fo:table-row>
					<fo:table-row keep-with-next="always">
						<fo:table-cell background-color="silver" border-collapse="collapse" border-color="white" border-end-style="solid" border-start-color="white" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">Strasse 1</fo:block>
						</fo:table-cell>
						<fo:table-cell background-color="white" border-collapse="collapse" border-color="gray" border-end-style="solid" border-start-color="gray" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">Abnahmestrasse</fo:block>
						</fo:table-cell>
					</fo:table-row>
					<fo:table-row keep-with-next="always">
						<fo:table-cell background-color="silver" border-collapse="collapse" border-color="white" border-end-style="solid" border-start-color="white" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">PLZ /	Ort</fo:block>
						</fo:table-cell>
						<fo:table-cell background-color="white" border-collapse="collapse" border-color="gray" border-end-style="solid" border-start-color="gray" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">45334 / Wolfsburg</fo:block>
						</fo:table-cell>
					</fo:table-row>
					<fo:table-row keep-with-next="always">
						<fo:table-cell background-color="silver" border-collapse="collapse" border-color="white" border-end-style="solid" border-start-color="white" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">Land</fo:block>
						</fo:table-cell>
						<fo:table-cell background-color="white" border-collapse="collapse" border-color="gray" border-end-style="solid" border-start-color="gray" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">Deutschland</fo:block>
						</fo:table-cell>
					</fo:table-row>
				</fo:table-body>
			</fo:table>
			<fo:table table-layout="fixed" width="100%">
				<fo:table-column column-number="1" column-width="150pt"/>
				<fo:table-column column-number="2"/>
				<fo:table-body start-indent="0pt" text-align="start">
					<fo:table-row keep-with-next="always">
						<fo:table-cell background-color="gray" border-collapse="collapse" border-color="gray" border-start-color="white" border-style="solid" border-width="1pt" number-columns-spanned="2">
							<fo:block font-family="serif" font-size="12pt" font-style="italic" space-after="5pt" space-before="10pt" start-indent="5pt" text-align="start">Postanschrift</fo:block>
						</fo:table-cell>
					</fo:table-row>
					<fo:table-row keep-with-next="always">
						<fo:table-cell background-color="silver" border-collapse="collapse" border-color="white" border-end-style="solid" border-start-color="white" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">Abteilung</fo:block>
						</fo:table-cell>
						<fo:table-cell background-color="white" border-collapse="collapse" border-color="gray" border-end-style="solid" border-start-color="gray" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">Endabnahme</fo:block>
						</fo:table-cell>
					</fo:table-row>
					<fo:table-row keep-with-next="always">
						<fo:table-cell background-color="silver" border-collapse="collapse" border-color="white" border-end-style="solid" border-start-color="white" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">Strasse 1</fo:block>
						</fo:table-cell>
						<fo:table-cell background-color="white" border-collapse="collapse" border-color="gray" border-end-style="solid" border-start-color="gray" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">Abnahmestrasse</fo:block>
						</fo:table-cell>
					</fo:table-row>
					<fo:table-row keep-with-next="always">
						<fo:table-cell background-color="silver" border-collapse="collapse" border-color="white" border-end-style="solid" border-start-color="white" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">PLZ /	Ort</fo:block>
						</fo:table-cell>
						<fo:table-cell background-color="white" border-collapse="collapse" border-color="gray" border-end-style="solid" border-start-color="gray" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">45334 / Wolfsburg</fo:block>
						</fo:table-cell>
					</fo:table-row>
					<fo:table-row keep-with-next="always">
						<fo:table-cell background-color="silver" border-collapse="collapse" border-color="white" border-end-style="solid" border-start-color="white" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">Land</fo:block>
						</fo:table-cell>
						<fo:table-cell background-color="white" border-collapse="collapse" border-color="gray" border-end-style="solid" border-start-color="gray" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">Deutschland</fo:block>
						</fo:table-cell>
					</fo:table-row>
				</fo:table-body>
			</fo:table>
			<fo:table table-layout="fixed" width="100%">
				<fo:table-column column-number="1" column-width="150pt"/>
				<fo:table-column column-number="2"/>
				<fo:table-body start-indent="0pt" text-align="start">
					<fo:table-row keep-with-next="always">
						<fo:table-cell background-color="gray" border-collapse="collapse" border-color="gray" border-start-color="white" border-style="solid" border-width="1pt" number-columns-spanned="2">
							<fo:block font-family="serif" font-size="12pt" font-style="italic" space-after="5pt" space-before="10pt" start-indent="5pt" text-align="start">Rechnungsanschrift</fo:block>
						</fo:table-cell>
					</fo:table-row>
					<fo:table-row keep-with-next="always">
						<fo:table-cell background-color="silver" border-collapse="collapse" border-color="white" border-end-style="solid" border-start-color="white" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">Strasse 1</fo:block>
						</fo:table-cell>
						<fo:table-cell background-color="white" border-collapse="collapse" border-color="gray" border-end-style="solid" border-start-color="gray" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">Musterstrasse 4</fo:block>
						</fo:table-cell>
					</fo:table-row>
					<fo:table-row keep-with-next="always">
						<fo:table-cell background-color="silver" border-collapse="collapse" border-color="white" border-end-style="solid" border-start-color="white" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">PLZ /	Ort</fo:block>
						</fo:table-cell>
						<fo:table-cell background-color="white" border-collapse="collapse" border-color="gray" border-end-style="solid" border-start-color="gray" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">71065 / Sindelfingen</fo:block>
						</fo:table-cell>
					</fo:table-row>
					<fo:table-row keep-with-next="always">
						<fo:table-cell background-color="silver" border-collapse="collapse" border-color="white" border-end-style="solid" border-start-color="white" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">Land</fo:block>
						</fo:table-cell>
						<fo:table-cell background-color="white" border-collapse="collapse" border-color="gray" border-end-style="solid" border-start-color="gray" border-start-style="solid" border-style="solid" border-width="1pt" display-align="before" padding="3pt">
							<fo:block font-family="sans-serif" font-size="8pt" font-style="normal" text-align="start">Deutschland</fo:block>
						</fo:table-cell>
					</fo:table-row>
				</fo:table-body>
			</fo:table>
		</fo:flow>
	</fo:page-sequence>
</fo:root>

Attachment: FOPComLine.pdf
Description: Adobe PDF document

Attachment: FOPEmbed.pdf
Description: Adobe PDF document

Reply via email to