Report Builder Actions Expression

I'm trying to link the returned values in one report to another but need to add a wildcard to the expression.  I've tried a bunch of options but so far it just keeps displaying errors.
My thoughts would be something like =Fields!Site_Code.Value Like Site_Code% but so far no luck.
If I leave it at the default (=Fields!Site_Code.Value) it does bring up the report, but returns no data because the code I'm passing is the first two characters of a computer name.
Can this be done?

Try:
=Fields!Site_Code.Value+"*"
But you'll need to compare it to the other value, rather than itself.
Don't forget to mark helpful posts, and answers. It helps others to find relevant posts to the same question.

Similar Messages

  • Report Builder Action Go to URL Duplicates Query String

    I'm trying to create a link back to SharePoint list item's dispform from a text box action within a report builder report. The report's datasource/set is the same SharePoint list I'm trying to link back to.  I'm using the following
    "Select URL" expression.
    ="http://site/subsite/DispForm.aspx?ID=" & cstr(Fields!ID.Value)
    The result when clicked is http://site/subsite/DispForm.aspx?ID=7&ID=7 (it should be http://site/subsite/DispForm.aspx?ID=7)
    I also tried creating the link by changing the markup to HTML and stringing the HTML in the field's value by this expression.
    ="<a href='http://site/subsite/DispForm.aspx?ID=" & cstr(Fields!ID.Value) & "'>" & cstr(Fields!AccountID.Value)& " | " &cstr(Fields!HAN.Value) & "</a>"
    I get the same result when clicked, http://site/subsite/DispForm.aspx?ID=7&ID=7 (it should be http://site/subsite/DispForm.aspx?ID=7)
    I'm really not sure what's going on.  Has anyone experienced this behavior before?
    Thanks in advance!

    Hi kofg,
    From your description, I tried to reproduce this issue on my test environment. However, the drillthrough function is work normal in my report. In your case, please post more information about the versions of the Reporting Services and SharePoint.
    You can try to use the following expressions for the drillthrough function:
    ="http://site/subsite/DispForm.aspx?ID=" & CInt(Fields!ID.Value)
    Or
    ="http://site/subsite/DispForm.aspx?ID=" & Fields!ID.Value
    Regards,
    Bin Long
    TechNet Subscriber Support
    If you are TechNet Subscription user and have
    any feedback on our support quality, please send your feedback here.
    Bin Long
    TechNet Community Support

  • In the report builder 6i when I choose the query  type as Express Query .....

    In the report builder 6i when I choose the query type as Express Query and go to next step where on pressing the connect button I am getting the following error.
    REP-6029 : Express error.
    How can I solve this problem ?
    Thanks
    Nanda Kishore

    DiId you download Oracle Reports Developer/Server Release 6i for Express, Files for Oracle8i for Windows NT from OTN?
    If so, could you provide me wih more information?
    Thanks
    Elaine

  • Report Builder 3.0 Expression i am not able to make it work on Oracle DB Table

    Hi,
    I am newbie to SSRS Report Builder 3.0 so please be patient with me. I am trying to create a report to query Remedy Ticketing System and it uses Oracle Database installed on a Unix OS...My end objective is to do some calculation on the ticket metrics (i.e.
    percentage of tickets closed within SLA, etc) however i am stuck from the very beginning where i am not able to make my expression work...
    To begin with. my query statement...
    Select Distinct TICKET_NUMBER, Assigned_Group, Category, REGION, TICKET_STATUS,EXCEEDED_SLA, TO_CHAR(date '1970-01-01' + (TICKET_CREATION_DATE/60/60/24), 'DD/MON/YYYY HH:MI:SS AM')TICKET_CREATION_DATE
    from ARADMIN.Request
    where (Assigned_Group like 'HOTS' OR Assigned_Group like 'PAID' OR Category like 'HVD%') and TICKET_CREATION_DATE > (TO_DATE('31/DEC/2014 11:59:59 PM','DD/MON/YYYY HH:MI:SS PM', 'NLS_DATE_LANGUAGE=AMERICAN') - DATE '1970-01-01')*60*60*24
    order by ticket_creation_date
    the data type of the oracle table:
    Here is the Query Result of the DataSet:
    Basically Ticket_Status has values from 0 to 4 although from the screenshot above you only see 2 and 4...
    Ticket_Status 0 - Means Open Ticket
    Ticket_Status 1 - Means Work In Progress Ticket
    Ticket_Status 2 - Means Pending Ticket
    Ticket_Status 3 - Means Awaiting Closure Ticket
    Ticket_Status 4 - Means Closed Ticket
    I created a chart column using the expression below but it did not work...what i mean by it does not work is that the chart column output shows all Ticket_Status total count including 0, 1, 2, 3, & 4 (i.e. total count of tickets are 206)...using
    the expression i was only expecting the total count for Ticket_Status 4  (i.e. 180 tickets) but i guess i am doing something wrong with the expression syntax...
    =Count(Fields!TICKET_STATUS.Value=4) 
    i also used the expression below but it did not work...
    =Count(Fields!TICKET_STATUS.Value="4")
    i converted the Ticket_Status to CHAR on the dataset using the TO_CHAR(Ticket_Status) AS Ticket_Status then i tried the expression below but did not work...
    =Count(Fields!TICKET_STATUS.Value="4")
    i tried again the expression below but did not work'
    =Count(Fields!TICKET_STATUS.Value=4) 
    i cannot proceed to the arithmetic calculation if i cannot filter my dataset with the correct value...again i am a newbie with SSRS & report builder and i would appreciate it very much if you can guide/help me :-)

    Hi Danny,
    Per my understanding that you can't get the expect result by using the expression "=Count(Fields!TICKET_STATUS.Value=4) " to count the the TICKET_STATUS which value is 4, the result will returns the count of all the TICKET_STATUS values(206)
    but not 180, right?
    I have tested on my local environment and can reproduce the issue, the issue caused by you are using the count() function in the incorrect way, please modify the expression as below and have a test:
    =COUNT(IIF(Fields!TICKET_STATUS.Value=4 ,1,Nothing))
    or
    =SUM(IIF(Fields!TICKET_STATUS=4,1,0))
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Can not connect Oracle 10g express edition from report builder.

    I have newly installed report builder . Different home was selected for Report builder and oracle. Oracle database server is also in the same machine. But i am not able to connect my oracle 10g express edition database. It throws error ORA-12154 : TNS could not resolve service name.( same error displayed while trying to connect from SQL Plus).But from toad i am able to access the database. May be because here I am able to select the proper home.
    Here i am adding my tns entry
    XE =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 1ECA66A679AB494)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = XE)
    can any one suggest what the actual problem is?
    Thanks ..........

    Hello,
    Oracle 10g XE is rather specific and, I'm not sure that you can upgrade it to 10.2.0.4 .
    However, Oracle published an Upgrade Guide for Oracle Express Edition but, it's limited to *10.2.0.3*:
    http://download.oracle.com/docs/cd/B25329_01/doc/server.102/b32391/toc.htm
    But be careful:
    Once you have upgraded to Oracle Database 10g, you cannot downgrade back to Oracle Database Express Edition.Hope this help.
    Best regards,
    Jean-Valentin
    Edited by: Lubiez Jean-Valentin on May 22, 2010 12:06 AM

  • SSRS 2013 Native Mode - Cannot See Report Builder Button after Installing on my Desktop Computer - SQL Server Express

    I have installed SQL Server Express 2013 on my home PC, which runs Windows 7.  I used the advanced installation, which includes Reporting Services.  The install seemed to go okay but when I open SSRS, I cannot see the Report Builder button on the
    screen.  I have spent a lot of time trying to figure this out, including installing and reinstalling the program.  I am not sure what I am doing wrong.  Also, I cannot connect to the report server through SQL Server Management Studio.
    If anyone has any straightforward assistance, it would be greatly appreciated.  I have spent a lot of time looking for answers.  In the meanwhile I'll continue seeing if I can get this to work.

    Hello,
    See
    Features Supported by Reporting Services in SQL Server Express => Unsupported Features:
    Ad hoc reporting through semantic models and Report Builder is not supported.
    But you can try to install & use the Report Builder as stand-alone Installation; you can get it here:
    Microsoft® SQL Server® 2012 Report Builder
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Second max/min in ssrs report builder expression

    I need to do conditional formatting on second max/min in an ssrs report builder table.
    Can i get it in an expression ?

    Hi AshishSinghal84,
    Based on my understanding, you want to perform conditional formatting on the second maximum or minimum value in Report Builder.
    In Reporting Services, there is no built-in function which can return second maximum value. So in this scenario, we can’t directly use expression to perform conditional formatting. However, we can get the second maximum or minimum on query level. Then insert
    a column into tablix and use Lookup function to return a specific value so that we can do the conditional formatting based on this value. As we test in our local environment, to perform conditional formatting such as change the color for second maximum value
    in Report Builder, we can follow the steps below:
    1.Add Dataset2, apply the query below:
    select max(sales)
    From test
    where sales < (select max(sales)
    from test)
    2.On report, add an Expression “=lookup(Fields!sales.Value,Fields!secondmax.Value,1,"DataSet2")”, looks like below:
    3.Click [month], Properties appears on the right panel. Find Color under Font tab, click Expression, then type “=IIF(ReportItems!Textbox6.Value=1,"red","black")”.
    4.Right click the third column, choose Column Visibility\Hide, click Ok.
    5.Final result looks like below:
    To perform conditional formatting on second minimum value, the steps are a little different from getting second maximum value. You should change the query at first step, then apply the query below:
    select min(sales)
    From test
    where sales > (select min(sales)
    from test)
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu

  • Median function in report builder 3.0

    I need to perform median calculation in MS Report Builder 3.0, could anyone explain how I could achieve it considering my original value are
    Region - Etab - Value
    Abc - Def - 10
    Abc - Def - 12
    Ged - Tae - 1
    I need to group by Region and Etab.
    I've already built a SQL query to get the Median, but I would like to be able to use Report Builder grouping for usability.

    I've managed to get the proper values using hashtable the following way :
    Dim theHashTable As New System.Collections.Hashtable
    Function AddValue(theRapport As String, theRegion As String, theEtab As String, theRow As String, theValue As String) As Integer
    Dim num As Integer
    num = 0
    If (theHashTable Is Nothing) Then
    theHashTable = New System.Collections.Hashtable
    End If
    If Integer.TryParse(theValue, num) Then
    If (num >= 0) Then
    If (theHashTable.ContainsKey(theRapport)) Then
    Dim regionHT As New System.Collections.Hashtable
    regionHT = theHashTable(theRapport)
    If (regionHT.ContainsKey(theRegion)) Then
    Dim etabHT As New System.Collections.Hashtable
    etabHT = regionHT(theRegion)
    If (etabHT.ContainsKey(theEtab)) Then
    Dim valueHT As New System.Collections.Hashtable
    valueHT = etabHT(theEtab)
    If (Not valueHT.ContainsKey(theRow)) Then
    valueHT.Add(theRow, theValue)
    End If
    etabHT(theEtab) = valueHT
    Else
    Dim valueHT As New System.Collections.Hashtable
    valueHT.Add(theRow, theValue)
    etabHT.Add(theEtab, valueHT)
    End If
    regionHT(theRegion) = etabHT
    Else
    Dim etabHT As New System.Collections.Hashtable
    Dim valueHT As New System.Collections.Hashtable
    valueHT.Add(theRow, theValue)
    etabHT.Add(theEtab, valueHT)
    regionHT.Add(theRegion, etabHT)
    End If
    theHashTable(theRapport) = regionHT
    Else
    Dim regionHT As New System.Collections.Hashtable
    Dim etabHT As New System.Collections.Hashtable
    Dim valueHT As New System.Collections.Hashtable
    valueHT.Add(theRow, theValue)
    etabHT.Add(theEtab, valueHT)
    regionHT.Add(theRegion, etabHT)
    theHashTable.Add(theRapport, regionHT)
    End If
    End If
    End If
    Return num
    End Function
    Function GetMedian(theRapport As String, theRegion As String, theEtab As String) As String
    Dim arrayInt As New System.Collections.ArrayList
    arrayInt = GetArray(theRapport, theRegion, theEtab)
    arrayInt.Sort()
    Dim mid As Double = (arrayInt.Count - 1) / 2.0
    Dim midInt As Integer = mid
    Dim mid2Int As Integer = mid + 0.5
    If arrayInt.Count >= 2 Then
    Return ((arrayInt(midInt) + arrayInt(mid2Int)) / 2).ToString()
    ElseIf arrayInt.Count = 1 Then
    Return arrayInt(0)
    Else
    Return ""
    End If
    End Function
    Function GetQ1(theRapport As String, theRegion As String, theEtab As String) As String
    Dim arrayInt As New System.Collections.ArrayList
    arrayInt = GetArray(theRapport, theRegion, theEtab)
    arrayInt.Sort()
    Dim taille As Integer = arrayInt.Count
    If (taille = 1) Then
    Return arrayInt(0)
    ElseIf ((taille Mod 2) = 0 And taille > 0) Then
    Dim mid1 As Integer = taille / 2
    Dim midmid As Integer = mid1 / 2
    If (mid1 Mod 2 = 0) Then
    Return ((arrayInt(midmid - 1) + arrayInt(midmid)) / 2).ToString()
    Else
    Return (arrayInt(midmid)).ToString()
    End If
    ElseIf (taille = 1) Then
    Return arrayInt(1)
    ElseIf ((taille - 1) Mod 4 = 0) Then
    Dim n As Integer = (taille - 1) / 4
    Return ((arrayInt(n - 1) * 0.25 + arrayInt(n) * 0.75)).ToString()
    ElseIf ((taille - 3) Mod 4 = 0) Then
    Dim n As Integer = (taille - 3) / 4
    Return ((arrayInt(n) * 0.75 + arrayInt(n + 1) * 0.25)).ToString()
    Else
    Return ""
    End If
    End Function
    Function GetQ3(theRapport As String, theRegion As String, theEtab As String) As String
    Dim arrayInt As New System.Collections.ArrayList
    arrayInt = GetArray(theRapport, theRegion, theEtab)
    arrayInt.Sort()
    Dim taille As Integer = arrayInt.Count
    If (taille = 1) Then
    Return arrayInt(0)
    ElseIf ((taille Mod 2) = 0 And taille > 0) Then
    Dim mid1 As Integer = taille / 2
    Dim midmid As Integer = mid1 / 2
    If (mid1 Mod 2 = 0) Then
    Return ((arrayInt(mid1 + midmid - 1) + arrayInt(mid1 + midmid)) / 2).ToString()
    Else
    Return (arrayInt(mid1 + midmid)).ToString()
    End If
    ElseIf (taille = 1) Then
    Return arrayInt(1)
    ElseIf ((taille - 1) Mod 4 = 0) Then
    Dim n As Integer = (taille - 1) / 4
    Return ((arrayInt(3 * n) * 0.75 + arrayInt(3 * n + 1) * 0.25)).ToString()
    ElseIf ((taille - 3) Mod 4 = 0) Then
    Dim n As Integer = (taille - 3) / 4
    Return ((arrayInt(3 * n + 1) * 0.25 + arrayInt(3 * n + 2) * 0.75)).ToString()
    Else
    Return ""
    End If
    End Function
    Function GetArray(theRapport As String, theRegion As String, theEtab As String) As System.Collections.ArrayList
    Dim arrayInt As New System.Collections.ArrayList
    If (theHashTable Is Nothing Or theHashTable.Count = 0) Then
    Return arrayInt
    Else
    If (theHashTable.ContainsKey(theRapport)) Then
    Dim regionHT As System.Collections.Hashtable
    regionHT = theHashTable(theRapport)
    If (theRegion = "" And theEtab = "") Then
    For Each value As System.Collections.Hashtable In regionHT.Values
    For Each value2 As System.Collections.Hashtable In value.Values
    For Each valeur As Integer In value2.Values
    arrayInt.Add(valeur)
    Next
    Next
    Next
    ElseIf (regionHT.ContainsKey(theRegion) And theEtab = "") Then
    Dim etabHT As System.Collections.Hashtable
    etabHT = regionHT(theRegion)
    For Each value As System.Collections.Hashtable In etabHT.Values
    For Each valeur As Integer In value.Values
    arrayInt.Add(valeur)
    Next
    Next
    ElseIf (regionHT.ContainsKey(theRegion) And theEtab <> "") Then
    Dim etabHT As System.Collections.Hashtable
    etabHT = regionHT(theRegion)
    If Not (etabHT Is Nothing Or etabHT.Count = 0) Then
    If (etabHT.ContainsKey(theEtab)) Then
    Dim valuesHT As System.Collections.Hashtable
    valuesHT = etabHT(theEtab)
    For Each value As Integer In valuesHT.Values
    arrayInt.Add(value)
    Next
    End If
    End If
    End If
    End If
    Return arrayInt
    End If
    End Function
    Function PrintArray(theRapport As String, theRegion As String, theEtab As String) As String
    Dim arrayInt As New System.Collections.ArrayList
    arrayInt = GetArray(theRapport, theRegion, theEtab)
    Dim str As String = ""
    If (arrayInt.Count > 0) Then
    str = String.Join(" | ", arrayInt.ToArray)
    Else
    str = " "
    End If
    Return str
    End Function
    The first hashtable is for different tables of the report needing the median.
    I then use the following command to add value
    Code.AddValue("3_2",Fields!Region.Value,Fields!Etablissement.Value,Fields!rowNumber.Value,Fields!Value.Value)
    Then I get the median using the expressions
    =Code.GetMedian("3_2", Fields!Region.Value,Fields!Etablissement.Value)
    =Code.GetMedian("3_2", Fields!Region.Value,"")
    =Code.GetMedian("3_2", "","")
    I've tried placing the AddValue fonction on a hidden table and in the summary row of the tables.
    I get the proper value but as soon as I expand or collapse a row everything is change to blank. How can I keep the value or where could I put the AddValue function to make sure it is called on every action, for every table in the report ?
    Thanks

  • SQL Server Report Builder Hyperlink Column Not Click-able?

    I have a report with a hyperlink column that works in SQL Report Builder 3.0 desktop, but not on the website where it's shown.
    1. 'Website_Domain' field is the shortened URL (domain) is the
    text seen in the Report column
         (technet.microsoft.com)
    2. 'Website_Url' field is the full length URL which is used in the
    'Go to URL' properties
         (http://technet.microsoft.com/en-us/library/ms159106.aspx)
    ['Website Link' Expression]
    =Fields!Website_Domain.Value
    ['Website Link' Column Properties]
    Action = Go to URL
    Selected URL: [Website_Url]

    Hi pointeman,
    I have tried your scenario on my test environment, but the issue was not reproduced. Please take the following steps as a reference:
    Insert Website_Domain field in the detail row, then type the table header with “Website Link”.
    Right-click the cell which contains [Website_Domain] to open Text Box Properties dialog box.
    Click “Action” in the left pane, select “Go to URL” option with [Website_Url] as “Select URL”. 
    The following screenshot is for your reference:
    If the issue still persists, could you please supply more information about the issue? Such as steps you have taken to add the URL or other else. If there are any misunderstanding, please elaborate the issue for further investigation.
    Thanks,
    Katherine Xiong
    If you have any feedback on our support, please click
    here.
    Katherine Xiong
    TechNet Community Support

  • Print a report from Application Express direct to a CUPS Printer

    Hi all, I'm new to this technology, is it possible to print a report from Application Express directly to a CUPS Printer? Can someone tell me in laymans terms how to do it? I find the terminology and documentation less than helpful.

    Jeremy,
    BI Publisher handles submitting reports directly to a CUPS printer. However, the APEX integration doesn't currently integrate with that portion of BI Publisher.
    Here's an options:
    Use the Java API of BI Publisher to build a custom Java program that would do this for you. Delivering to CUPS is part of the Java API.
    Bryan

  • Report Builder 2.0 loses parameter Null default value when deployed

    When a parameter is set to a default value of (Null) and the report is saved to the sever, the default is lost when the report is re-opened in RB2.  This problem doesn't seem to occur in BIDS.  I've tried to use an expression to set the value to System.DBNull but this can no longer be done.
    Any ideas for a work-around?
    Is there a bug report open for this?  I couldn't find an open bug on the Connections site and there's an issue on that site right now when submitting feedback.Paul Turley [Hitachi Consulting]
    SQLServerBIBlog.com

    Hi All,
    I just had an almost identical issue using report builder 3.0 so I don't believe it is fixed. I had 4 parameters set to default to (Null) and I added a new one with identical settings but it would continually come up blank and not check the null box automatically
    when going into my sub report.
    To make matters worse I experimented changing one of the old parameters and it then started exhibiting the same behaviour. Using Luke's post above solved the issue (though it was Manage in my version not Administrate).
    Using System.DBNull.Value resulted in it being treated as a literal string "System.DBNull.Value" and putting that in the filter for me.
    Hope it helps.

  • Need help understanding MS SQL Server 2008R2 and Report Builder 3.0 and user access / priviledges.

    Having Problems with connections and access.  I have spent the last 2 days reading various threads regarding SQL Reporting Services pertaining to access and connections.
    First, let me explain what I have done to date.
    1)  I am using Windows 7 - Home Premium.
    2)  I downloaded and installed MS SQL Server 2008 R2 Express.  This was successful.
    3)  I downloaded Report Server 3.0 - This was successful.
    4)  In IE, I tried logging onto http://servername/reports, but this failed.  After logging into IE
    via ' Run Administrator', I was able to access URL.  
           Next, I updated the security / trust sites as explained in the
    threads
    Next, I went to Folder Setting and added my user name and granted all roles (Browser,
    Content Manager, My
    Reports, Publisher and Report Builder).
    5)  Now, I can log into Http://servername/reports using my normal windows 7 user account.
    6)  Next, I opened Report Builder 3.0.  However, I am having trouble connecting to report  
    server.  I tried connecting with
    http://servername/reports, but this failed. 
           However, If I change URL to http://servername/reportserver, it works.  BUT NOW, I have
    another problem.  When I
    execute the RUN button to create report, I get a  permission
    error.  "PERMISSION GRANTED TO USER ARE
    INSUFFICIENT FOR  PERFORMING THIS OPERATION".
    7)  Finally, I can not save reports to http://servername/reportserver when I select "Recent
    Site and Servers".  ERROR
    MESSAGE:  UNABLE TO OPEN OR SAVE REPORT
    8)  In my Reporting Services Configuration Manager:
    Web URL = http://servername:80/ReportServer
    Report Manager URL = http://servername:80/reports.
                What is strange, the Report Manager URL works for IE URL and WEB URL works for
    Report Builder connect (Even though it really does not work). 
    THREE QUESTIONS:
    1)  What URL should I use to connect in Report Builder.  
    2)  How do I update my normal Windows 7 user so I can run reports when I connect to report
    builder.        
    3)  How can I save my reports so they are displayed in IE Reporting services.  Note:  I was
    able to save report to
    documents folder and import into IE Reporting Services.
    4)  And finally, is it possible to add report builder 3.0 as a tab in my IE Reporting Services.  I
    save seen samples of Reporting Services screens where the instructor has Report Builder
    tab.
    Thanks
    Dan

    To answer question 1... it should connect through /ReportServer
    http://bretstateham.com/reporting-services-architecture-diagram%E2%80%A6/
    Report Builder 3.0 is not a web application, it is a client side application can be used using the click-once or downloaded from Microsoft's website.  If you are having issues, you might download and install it and try running it as an administrator.

  • Issue is TEXT_IO application API is not working in report builder 10g.

    Issue is TEXT_IO application API is not working in report builder 10g.
    TEXT_IO application api is working in report builder 6i. (Not working in upgrade from Oracle EBiz 11i to Oracle Ebiz R12)
    I saw that details in some forums, client_text_io is available for form builder 10g.
    Is any other api available for report builder 10g?
    If it is available what steps we need to do?

    All the CLIENT_% procedures are part of webutil in Forms. Forms uses the Java applet on the client PC to perform actions on the local PC via webutil. This is not possible for Reports.
    You can still use text_io on the server, but you need some other way to copy the files to/from the client PC.
    I wonder how you used the functionality in EBS R11. Even R11 uses web reports, so text_io already worked on the server, not the client PC.

  • Create report in report builder and now want to convert to XML and move EBS

    Tryed to run several different java scripts from web articles and keep getting the same error. I have EBS r12. I've created a report in the report builder then used the rwconverter.exe to convert it to xml I want to get in into EBS as XML but need help to seperate the data. Any help would be great.
    [Loaded java.util.Comparator from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.lang.String$CaseInsensitiveComparator from C:\oracle\BIToolsHome_1\
    jdk\jre\lib\rt.jar]
    [Loaded java.security.AccessController from C:\oracle\BIToolsHome_1\jdk\jre\lib\
    rt.jar]
    [Loaded java.security.Guard from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.security.Permission from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar
    [Loaded java.security.BasicPermission from C:\oracle\BIToolsHome_1\jdk\jre\lib\r
    t.jar]
    [Loaded java.lang.reflect.ReflectPermission from C:\oracle\BIToolsHome_1\jdk\jre
    \lib\rt.jar]
    [Loaded java.security.PrivilegedAction from C:\oracle\BIToolsHome_1\jdk\jre\lib\
    rt.jar]
    [Loaded sun.reflect.ReflectionFactory$GetReflectionFactoryAction from C:\oracle\
    BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.util.Stack from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded sun.reflect.ReflectionFactory from C:\oracle\BIToolsHome_1\jdk\jre\lib\r
    t.jar]
    [Loaded java.lang.RuntimePermission from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.
    jar]
    [Loaded java.lang.ref.Reference$Lock from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt
    .jar]
    [Loaded java.lang.ref.Reference$ReferenceHandler from C:\oracle\BIToolsHome_1\jd
    k\jre\lib\rt.jar]
    [Loaded java.lang.ref.ReferenceQueue from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt
    .jar]
    [Loaded java.lang.ref.ReferenceQueue$Null from C:\oracle\BIToolsHome_1\jdk\jre\l
    ib\rt.jar]
    [Loaded java.lang.ref.ReferenceQueue$Lock from C:\oracle\BIToolsHome_1\jdk\jre\l
    ib\rt.jar]
    [Loaded java.lang.ref.Finalizer$FinalizerThread from C:\oracle\BIToolsHome_1\jdk
    \jre\lib\rt.jar]
    [Loaded java.util.Enumeration from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.util.Hashtable$EmptyEnumerator from C:\oracle\BIToolsHome_1\jdk\jre
    \lib\rt.jar]
    [Loaded java.util.Iterator from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.util.Hashtable$EmptyIterator from C:\oracle\BIToolsHome_1\jdk\jre\l
    ib\rt.jar]
    [Loaded java.io.ObjectStreamClass from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.ja
    r]
    [Loaded java.util.AbstractMap from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded sun.misc.SoftCache from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.util.HashMap from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.util.Map$Entry from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.util.HashMap$Entry from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.lang.IncompatibleClassChangeError from C:\oracle\BIToolsHome_1\jdk\
    jre\lib\rt.jar]
    [Loaded java.lang.NoSuchMethodError from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.
    jar]
    [Loaded java.util.Hashtable$Entry from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.ja
    r]
    [Loaded sun.misc.Version from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.io.InputStream from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.io.FileInputStream from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.io.FileDescriptor from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.io.OutputStream from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.io.FileOutputStream from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar
    [Loaded java.io.FilterInputStream from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.ja
    r]
    [Loaded java.io.BufferedInputStream from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.
    jar]
    [Loaded java.io.FilterOutputStream from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.j
    ar]
    [Loaded java.io.PrintStream from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.io.BufferedOutputStream from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt
    .jar]
    [Loaded java.io.Writer from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.io.OutputStreamWriter from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.j
    ar]
    [Loaded sun.nio.cs.StreamEncoder from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar
    [Loaded sun.io.Converters from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded sun.reflect.Reflection from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded sun.security.action.GetPropertyAction from C:\oracle\BIToolsHome_1\jdk\j
    re\lib\rt.jar]
    [Loaded java.nio.charset.Charset from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar
    [Loaded java.nio.charset.spi.CharsetProvider from C:\oracle\BIToolsHome_1\jdk\jr
    e\lib\rt.jar]
    [Loaded sun.nio.cs.AbstractCharsetProvider from C:\oracle\BIToolsHome_1\jdk\jre\
    lib\rt.jar]
    [Loaded sun.nio.cs.StandardCharsets from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.
    jar]
    [Loaded java.util.SortedMap from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.util.TreeMap from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded sun.misc.ASCIICaseInsensitiveComparator from C:\oracle\BIToolsHome_1\jdk
    \jre\lib\rt.jar]
    [Loaded java.util.TreeMap$Entry from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.lang.CharacterDataLatin1 from C:\oracle\BIToolsHome_1\jdk\jre\lib\r
    t.jar]
    [Loaded java.lang.ThreadLocal from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded sun.nio.cs.HistoricallyNamedCharset from C:\oracle\BIToolsHome_1\jdk\jre
    \lib\rt.jar]
    [Loaded sun.nio.cs.MS1252 from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.lang.Class$3 from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.lang.reflect.Modifier from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.j
    ar]
    [Loaded sun.reflect.LangReflectAccess from C:\oracle\BIToolsHome_1\jdk\jre\lib\r
    t.jar]
    [Loaded java.lang.reflect.ReflectAccess from C:\oracle\BIToolsHome_1\jdk\jre\lib
    \rt.jar]
    [Loaded java.lang.Class$1 from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded sun.reflect.ReflectionFactory$1 from C:\oracle\BIToolsHome_1\jdk\jre\lib
    \rt.jar]
    [Loaded sun.reflect.NativeConstructorAccessorImpl from C:\oracle\BIToolsHome_1\j
    dk\jre\lib\rt.jar]
    [Loaded sun.reflect.DelegatingConstructorAccessorImpl from C:\oracle\BIToolsHome
    _1\jdk\jre\lib\rt.jar]
    [Loaded sun.nio.cs.StreamEncoder$CharsetSE from C:\oracle\BIToolsHome_1\jdk\jre\
    lib\rt.jar]
    [Loaded java.nio.charset.CharsetEncoder from C:\oracle\BIToolsHome_1\jdk\jre\lib
    \rt.jar]
    [Loaded sun.nio.cs.SingleByteEncoder from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt
    .jar]
    [Loaded sun.nio.cs.MS1252$Encoder from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.ja
    r]
    [Loaded java.nio.charset.CodingErrorAction from C:\oracle\BIToolsHome_1\jdk\jre\
    lib\rt.jar]
    [Loaded java.nio.charset.CharsetDecoder from C:\oracle\BIToolsHome_1\jdk\jre\lib
    \rt.jar]
    [Loaded sun.nio.cs.SingleByteDecoder from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt
    .jar]
    [Loaded sun.nio.cs.MS1252$Decoder from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.ja
    r]
    [Loaded java.nio.ByteBuffer from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.nio.HeapByteBuffer from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.nio.Bits from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded sun.misc.Unsafe from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded sun.misc.VM from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.lang.Runtime from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.nio.ByteOrder from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.nio.CharBuffer from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.nio.HeapCharBuffer from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.nio.charset.CoderResult from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt
    .jar]
    [Loaded java.nio.charset.CoderResult$Cache from C:\oracle\BIToolsHome_1\jdk\jre\
    lib\rt.jar]
    [Loaded java.nio.charset.CoderResult$1 from C:\oracle\BIToolsHome_1\jdk\jre\lib\
    rt.jar]
    [Loaded java.nio.charset.CoderResult$2 from C:\oracle\BIToolsHome_1\jdk\jre\lib\
    rt.jar]
    [Loaded sun.nio.cs.Surrogate$Parser from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.
    jar]
    [Loaded sun.nio.cs.Surrogate from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.io.BufferedWriter from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.io.File from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.io.FileSystem from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.io.Win32FileSystem from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.io.WinNTFileSystem from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.io.ExpiringCache from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.lang.ClassLoader$3 from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.io.ExpiringCache$Entry from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.
    jar]
    [Loaded java.lang.ClassLoader$NativeLibrary from C:\oracle\BIToolsHome_1\jdk\jre
    \lib\rt.jar]
    [Loaded java.lang.Terminator from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded sun.misc.SignalHandler from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.lang.Terminator$1 from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded sun.misc.Signal from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded sun.misc.NativeSignalHandler from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt
    .jar]
    [Loaded java.lang.Integer$1 from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.lang.Compiler from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.lang.Compiler$1 from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded sun.misc.Launcher from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.net.URLStreamHandlerFactory from C:\oracle\BIToolsHome_1\jdk\jre\li
    b\rt.jar]
    [Loaded sun.misc.Launcher$Factory from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.ja
    r]
    [Loaded java.security.SecureClassLoader from C:\oracle\BIToolsHome_1\jdk\jre\lib
    \rt.jar]
    [Loaded java.net.URLClassLoader from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded sun.misc.Launcher$ExtClassLoader from C:\oracle\BIToolsHome_1\jdk\jre\li
    b\rt.jar]
    [Loaded sun.security.util.Debug from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.util.StringTokenizer from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.ja
    r]
    [Loaded java.security.PrivilegedExceptionAction from C:\oracle\BIToolsHome_1\jdk
    \jre\lib\rt.jar]
    [Loaded sun.misc.Launcher$1 from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded sun.net.www.ParseUtil from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.util.BitSet from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.net.URL from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.util.Locale from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.net.Parts from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.net.URLStreamHandler from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.ja
    r]
    [Loaded sun.net.www.protocol.file.Handler from C:\oracle\BIToolsHome_1\jdk\jre\l
    ib\rt.jar]
    [Loaded java.util.Set from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.util.AbstractSet from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.util.HashSet from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded sun.misc.URLClassPath from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.util.ArrayList from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded sun.net.www.protocol.jar.Handler from C:\oracle\BIToolsHome_1\jdk\jre\li
    b\rt.jar]
    [Loaded sun.misc.Launcher$AppClassLoader from C:\oracle\BIToolsHome_1\jdk\jre\li
    b\rt.jar]
    [Loaded sun.misc.Launcher$2 from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.lang.SystemClassLoaderAction from C:\oracle\BIToolsHome_1\jdk\jre\l
    ib\rt.jar]
    [Loaded java.lang.StringCoding from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.lang.ThreadLocal$ThreadLocalMap from C:\oracle\BIToolsHome_1\jdk\jr
    e\lib\rt.jar]
    [Loaded java.lang.ThreadLocal$ThreadLocalMap$Entry from C:\oracle\BIToolsHome_1\
    jdk\jre\lib\rt.jar]
    [Loaded java.lang.StringCoding$StringDecoder from C:\oracle\BIToolsHome_1\jdk\jr
    e\lib\rt.jar]
    [Loaded java.lang.StringCoding$CharsetSD from C:\oracle\BIToolsHome_1\jdk\jre\li
    b\rt.jar]
    [Loaded java.net.URLClassLoader$1 from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.ja
    r]
    [Loaded sun.misc.URLClassPath$3 from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded sun.misc.URLClassPath$Loader from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt
    .jar]
    [Loaded sun.misc.URLClassPath$JarLoader from C:\oracle\BIToolsHome_1\jdk\jre\lib
    \rt.jar]
    [Loaded sun.misc.FileURLMapper from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.util.zip.ZipConstants from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.j
    ar]
    [Loaded java.util.zip.ZipFile from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.util.jar.JarFile from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded sun.security.action.LoadLibraryAction from C:\oracle\BIToolsHome_1\jdk\j
    re\lib\rt.jar]
    [Loaded sun.misc.JavaUtilJarAccess from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.j
    ar]
    [Loaded java.util.jar.JavaUtilJarAccessImpl from C:\oracle\BIToolsHome_1\jdk\jre
    \lib\rt.jar]
    [Loaded sun.misc.SharedSecrets from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded sun.misc.JarIndex from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded sun.misc.ExtensionDependency from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt
    .jar]
    [Loaded java.util.zip.ZipEntry from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.util.jar.JarEntry from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.util.jar.JarFile$JarFileEntry from C:\oracle\BIToolsHome_1\jdk\jre\
    lib\rt.jar]
    [Loaded java.io.DataInput from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.io.DataInputStream from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.util.zip.ZipFile$ZipFileInputStream from C:\oracle\BIToolsHome_1\jd
    k\jre\lib\rt.jar]
    [Loaded java.util.zip.InflaterInputStream from C:\oracle\BIToolsHome_1\jdk\jre\l
    ib\rt.jar]
    [Loaded java.util.zip.ZipFile$1 from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.util.zip.Inflater from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.lang.Math from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.security.PrivilegedActionException from C:\oracle\BIToolsHome_1\jdk
    \jre\lib\rt.jar]
    [Loaded java.util.jar.Manifest from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.io.ByteArrayInputStream from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt
    .jar]
    [Loaded java.util.jar.Attributes from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar
    [Loaded java.util.jar.Manifest$FastInputStream from C:\oracle\BIToolsHome_1\jdk\
    jre\lib\rt.jar]
    [Loaded sun.nio.cs.UTF_8 from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded sun.nio.cs.UTF_8$Decoder from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar
    [Loaded sun.nio.cs.Surrogate$Generator from C:\oracle\BIToolsHome_1\jdk\jre\lib\
    rt.jar]
    [Loaded java.util.jar.Attributes$Name from C:\oracle\BIToolsHome_1\jdk\jre\lib\r
    t.jar]
    [Loaded java.util.jar.JarVerifier from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.ja
    r]
    [Loaded java.io.ByteArrayOutputStream from C:\oracle\BIToolsHome_1\jdk\jre\lib\r
    t.jar]
    [Loaded java.io.IOException from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.io.FileNotFoundException from C:\oracle\BIToolsHome_1\jdk\jre\lib\r
    t.jar]
    Exception in thread "main" java.lang.NoClassDefFoundError: oracle/apps/xdo/rdfpa
    rser/rtftemplategenerator
    [Loaded java.lang.StackTraceElement from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.
    jar]
    [Loaded java.lang.Shutdown from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    [Loaded java.lang.Shutdown$Lock from C:\oracle\BIToolsHome_1\jdk\jre\lib\rt.jar]
    C:\>java.exe -verbose -cp C:\OraHome_1\j2ee\home\applications\xmlpserver\xmlpser
    ver\WEB-INF\lib\xdocore.jar;C:\OraHome_1\j2ee\home\applications\xmlpserver\xmlps
    erver\WEB-INF\lib\collections.jar;C:\OraHome_1\j2ee\home\applications\xmlpserver
    \xmlpserver\WEB-INF\lib\versioninfo.jar;C:\OraHome_1\j2ee\home\applications\xmlp
    server\xmlpserver\WEB-INF\lib\xdoparser.jar;C:\OraHome_1\j2ee\home\applications\
    xmlpserver\xmlpserver\WEB-INF\lib\xmlparserv2-904.jar;C:\OraHome_1\j2ee\home\app
    lications\xmlpserver\WEB-INF\lib\aolj.jarC:\OraHome_1\j2ee\home\applications\xml
    pserver\WEB-INF\lib\j5472959_xdo.zip oracle.apps.xdo.rdfparser.rtftemplategenera
    tor -source C:\otest -target c:\otest

    I am not sure what exactly you are looking for , but these 2 article may help.If not can you just give more detail about what exactly you need.
    http://eoracleapps.blogspot.com/2009/04/how-to-convert-oracle-reports-in-bi.html
    http://eoracleapps.blogspot.com/2009/05/reports-with-bi-publisher-enterprise.html
    [email protected]

  • Dynamic Order By on Report Builder 10g

    Hi,
    How can I do a dynamic order by clause using user parameters on Report Builder 10g? I need to set dynamically the column and the direction on the clause.
    Thanks.
    Bruno Galletti
    Brazil.

    Hi Bruno / Rainer,
    I am implementing the same solution, and after adding the lexical parameter reference in the SQL statement and calling the report from Oracle Forms the report failed with the following error on the report server:
    Terminated with error: <br>REP-300: missing expression select wcsr_no , wcsr_date , wcsr_rec_week_zone , wcsr_loc_house_num || ' ' || wcsr_loc_pre_dir || ' ' || wcsr_loc_street_name || ' ' || wcsr_loc_street_type || ' ' || wcsr_loc_post_dir || ' ' || wcsr_loc_unit || ' ' || wcsr_loc_city || ' ' || wcsr ==>
    No change has been done to the SQL statement except adding the &p_orderby parameter at the end of the query.
    Any suggestions? Are all parameters defined as "bind" parameters on the Repotr Object Navigator.?
    Thanks
    Gabriel Aguirre
    [email protected]

Maybe you are looking for

  • Customer open items upload

    Dear All,    I am in data migration process, i uploaded customer open items upto 31.12.2007, and these balances are matching with sundry debitors GL Account balance in FBL3N. But when i see in FS10N sundry debitors GL account is showing some differen

  • Inspire 5200 5.1

    Hi I was wondering if anyone has ever had problems with these speakers.... I dont know what the problem is...it was working fine for about a month and the connection to the right rear speaker on the sub died. I cant explain it. The speaker works fine

  • [Solved] GeForce FX 5200 @ 1024x768 :(

    I installed drivers as https://wiki.archlinux.org/index.php/Nouveau $ xrandr -q Screen 0: minimum 320 x 200, current 1024 x 768, maximum 4096 x 4096 VGA-1 connected 1024x768+0+0 (normal left inverted right x axis y axis) 0mm x 0mm    1024x768       6

  • HELP!!! Not even the 133MAC crew know what to do.

    Hey, I have had a search all over the net, looked at a few similar problems, but nothing quite matches my issues, and I haven't wanted to try anything too radical, as I haven't been able to backup my iPhone in a while, due to the problem below... Whe

  • BAPI_CUSTOMER_CHANGEFROMDATA1 error: Specify a URI type.

    I am getting the following message on some of the customers I try to udpate using BAPI_CUSTOMER_CHANGEFROMDATA1: Specify a URI type.  I assume this has something to do with the URI communication method.  I am, however, NOT updating the URI as part of