Oracle Analytics Publisher

Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture

RTF XDO_METADATA setup not working despite mirroring other setup that is working

Accepted answer
31
Views
10
Comments
Alex Glose
Alex Glose Rank 3 - Community Apprentice

Summary:

We have customized an RTF to where the results are broken out into different tabs. We used the same for each loop as the other tabs, but the new tab is putting all results in a single row instead of one row per record.

Content (please ensure you mask any confidential information):

Why is this happening? How do we fix it?

Version (include the version you are using, if applicable):

24C

Code Snippet (add any code snippets that support your topic, if applicable):

Putting all records on one row:

<xsl:for-each select=".//G_1"><xsl:if test="./REPORT_TYPE='G'">

</xsl:if></xsl:for-each>

<?TIN?>

<?VENDOR_NAME?>

<?NAME2?>

<?ADDRESS?>

<?CITY?>

<?STATE?>

<?ZIP?>

<?SUPPLIER_NUMBER?>

<?GOV6?>

putting records in one record per row:

<xsl:for-each select=".//G_1"><xsl:if test="./REPORT_TYPE='N'">

</xsl:if></xsl:for-each>

<?TIN?>

<?VENDOR_NAME?>

<?NAME2?>

<?ADDRESS?>

<?CITY?>

<?STATE?>

<?ZIP?>

<?SUPPLIER_NUMBER?>

<?MISC7?>

Best Answer

Answers