XML report shows the parameters instead of the name of the variable

I would like to than the actual variable name to be included in the report XML rather than the "settings."  I tried many things to get there without success.  Any ideas?

Ok. It must be in the stylesheet that I use for the XML report.  I am an accountant on an older version of the horizontal.xsl due to some customizations, and the problem I have described does not occur when I use the latest version of the stylesheet.  Must have been a bug that has been fixed.

Thank you

Kevin

Tags: NI Software

Similar Questions

  • XML report in the Arab connection in Oracle apps

    Hello

    I created an XML report in Oracle applications, data well are English connection.
    But when we Arab connection login then report shows all the data.
    The data is not even after hard coding values.

    No idea for the question...

    This is the main query in the report.

    SELECT
    PAC1. PAYROLL_ID,
    PAC1. PAYROLL_ACTION_ID,
    HR_PAYROLLS. DISPLAY_PERIOD_NAME (PAC1. PERIOD_NAME PAYROLL_ACTION_ID),
    PRO. PAYROLL_NAME
    TO_CHAR(SYSDATE,'DD-MM-YYYY') REPORT_DATE1
    OF pay_payrolls_f pro.
    pac1 pay_payroll_actions
    PER_TIME_PERIODS_V V
    WHERE pac1.payroll_id = pro.payroll_id (+)
    AND pac1.effective_date BETWEEN pro.effective_start_date (+) AND pro.effective_end_date (+)
    AND DECODE (PAC1. ACTION_TYPE, 'H', NVL (pay_payroll_actions_pkg.decode_cheque_type (pac1.business_group_id), HR_GENERAL. DECODE_LOOKUP ('ACTION_TYPE', PAC1. ACTION_TYPE)), ', DECODE (function, instrb (PAC1. LEGISLATIVE_PARAMETERS,'SLA_MODE = Y'), 0, HR_GENERAL. DECODE_LOOKUP ('TRANSFER_TO_LEDGER', 'GL'), NULL, HR_GENERAL. DECODE_LOOKUP ('TRANSFER_TO_LEDGER', 'GL'), HR_GENERAL. DECODE_LOOKUP ('TRANSFER_TO_LEDGER', 'ALS')), HR_GENERAL. DECODE_LOOKUP ('ACTION_TYPE', PAC1. ACTION_TYPE)) = 'run '.
    AND PAC1. Payroll_id = 61-: P_PAYROLL_ID
    AND PAC1.time_period_id = V.time_period_id
    AND to_char(v.start_date,'MM-YYYY') = ' 01-2013' -: P_MONTH

    next time use EBS associated forums - https://forums.oracle.com/forums/category.jspa?categoryID=3

    AT4
    looks like that you do not have some data for the Arabic language

    in your main query that you have PER_TIME_PERIODS_V which inspired by HR_LOOKUPS that depend on the language of session

    CREATE OR REPLACE VIEW HR_LOOKUPS
    ...
     where FLV.LANGUAGE = userenv('LANG')
    ...
    

    in order to verify the data in HR_LOOKUPS to the Arabic language

    You can check in the query without PER_TIME_PERIODS_V

    You can also change your main query as

    select t.PAYROLL_ID,
           t.PAYROLL_ACTION_ID,
           t.PERIOD_NAME,
           t.PAYROLL_NAME,
           t.REPORT_DATE1
      from (SELECT PAC1.PAYROLL_ID,
                   PAC1.PAYROLL_ACTION_ID,
                   HR_PAYROLLS.DISPLAY_PERIOD_NAME(PAC1.PAYROLL_ACTION_ID) PERIOD_NAME,
                   PRO.PAYROLL_NAME,
                   TO_CHAR(SYSDATE, 'DD-MM-YYYY') REPORT_DATE1,
                   PAC1.time_period_id
              FROM pay_payrolls_f pro, pay_payroll_actions pac1
             WHERE pac1.payroll_id = pro.payroll_id(+)
               AND pac1.effective_date BETWEEN pro.effective_start_date(+) AND
                   pro.effective_end_date(+)
               AND DECODE(PAC1.ACTION_TYPE,
                          'H',
                          NVL(pay_payroll_actions_pkg.decode_cheque_type(pac1.business_group_id),
                              HR_GENERAL.DECODE_LOOKUP('ACTION_TYPE',
                                                       PAC1.ACTION_TYPE)),
                          'T',
                          DECODE(instrb(PAC1.LEGISLATIVE_PARAMETERS, 'SLA_MODE=Y'),
                                 0,
                                 HR_GENERAL.DECODE_LOOKUP('TRANSFER_TO_LEDGER',
                                                          'GL'),
                                 NULL,
                                 HR_GENERAL.DECODE_LOOKUP('TRANSFER_TO_LEDGER',
                                                          'GL'),
                                 HR_GENERAL.DECODE_LOOKUP('TRANSFER_TO_LEDGER',
                                                          'SLA')),
                          HR_GENERAL.DECODE_LOOKUP('ACTION_TYPE',
                                                   PAC1.ACTION_TYPE)) = 'Run'
               AND PAC1.Payroll_id = 61 --:P_PAYROLL_ID
    
            ) t
      left outer join PER_TIME_PERIODS_V V
        on (t.time_period_id = V.time_period_id AND
           to_char(v.start_date, 'MM-YYYY') = '01-2013' --:P_MONTH
           )
    
  • UCCX 10.6 history report showing the use of the Port

    Hello

    I'm looking for a report that can show the use of the port by queue/application over a period of time.  What I'm looking for, that's exactly how my CTI ports is used for which at one point.

    We have more channels PRI in what we do the ports and want to make sure that we are not undersubscibing applications, if we are the ones who and when and if we go over our 150 ports are looking to buy licenses of more to come.

    Someone knows something that could do the trick - or this should be a personalized work?

    Thank you

    James

    Hi James,

    Please see the hourly report Utilization license available in your version in cuic which comes with UCCX. Look at the below Guide to historical reports for more detals on this report:

    http://www.Cisco.com/c/en/us/TD/docs/voice_ip_comm/cust_contact/contact _...

    Concerning

    Deepak

    -Note post - useful

  • Creation of XML report using the PL/SQL stored procedure

    Hi friends,

    I'm working on a report xml with the xml source as a PL/SQL stored procedure.

    I mean the fiscal year indicated in the following link to understand the process:

    http://orclapp.blogspot.com/2012/02/developing-xml-publisher-report-using.html

    In the example shown in the link above, I did not understand the following:

    (1) in the following procedure, setting out "retcode" is not used at all.

    What is the importance of this parameter.

    REPORT PROCEDURE (errbuf OUT VARCHAR2, retcode OUT VARCHAR2, p_product_id in NUMBERS)

    (2) after the xml data are prepared and updates 'l_result' variable Clob, what follows

    Loop is executed. I am not able to understand why the following loop is required.

    LOOP

    EXIT WHEN l_length = l_retrieved;

    IF (l_length - l_retrieved) < 32000

    THEN

    SELECT SUBSTR (l_result, l_retrieved + 1) IN l_xmlstr FROM DUAL;

    l_retrieved: = l_length;

    fnd_file.put_line (fnd_file.output, l_xmlstr);

    ON THE OTHER

    SELECT SUBSTR (l_result, l_retrieved + 1, l_offset)

    IN l_xmlstr

    FROM DUAL;

    l_retrieved: = l_retrieved + l_offset.

    fnd_file.put_line (fnd_file.output, l_xmlstr);

    END IF;

    END LOOP;

    (3) in the example it is not explained how the concurrent program gets the xml data?

    I guess that it is written to a file by using the following line of code:

    fnd_file.put_line (fnd_file.output, l_xmlstr);

    I would be grateful if someone can shed some light in my questions above so that I can well understand the process.

    Thanks and greetings

    Hawker

    Hi 32000 in the code is a 'safe' than 32767 available max mesh, loops is intended to get around the entire thing into pieces that can be managed within the limits of the data type.

    BTW; If you are in the following Oracle e-business, you can also use the Oracle reports very simply to create the XML output.

    If you have reports developer all you need to do is put raw sql (create XML without any "Fireworks") in the SQL report and then set reporting in XML format in the definition of program in Oracle e-business.

    Best regards

    Robert.

  • How to create the new Custom XML report without the use of the form builder

    Hello

    What are the steps to create the new Custom XML report without using the Report Builder?

    Thank you and best regards,
    Aerts

    Aerts,
    Can you clarify your question more away!

    -bifacts
    http://www.obinotes.com

  • Print PDF/XML report in the concurrent Manager

    Hi all

    We have an obligation to create a personalized program check Printing XML Publisher and who needs to be integrated with program Format Standard.
    I heard that we cannot print report XML report/PDF directly to the Manager of competitor. If it is true, I would like to know the reason or any pointer where I can get that.

    If there is no work around for this so it will be great and I'll be really happy to know that.

    Thank you for give a thought to my request.

    Thank you
    Aryan

    Aryan salvation;

    Please follow Hussein snoussi larger post on the same question

    Direct pdf print of the concurrent Manager

    Also, you can follow:

    http://www.Oracle.com/technology/products/XML-Publisher/docs/XMLEBSRep.PDF
    http://www.appsbi.com/print-XML-Publisher-PDF-reports-via-the-concurrent-Manager

    I hope that those that are useful for you

    Respect of
    HELIOS

  • Insert a link on the xml report. The link must open a document (PDFS).

    Is it possible to insert a link in the report? The value would come from a sql query. The link when clicked on would open the pdf or doc.

    This is done through a href or by inserting a hyper dynamic link.

    Version 5.6.2 Release documentation reference how to insert a hyperlink. Not sure if this will work for me.
    I tried, but in literature, he States:

    >
    If your input XML data includes an item that contains a hyperlink, or a part of
    one, you can create dynamic hyperlinks when running. In the Type of file or Web page
    domain name of the dialog box insert hyperlink, enter the following syntax:
    {URL_LINK}
    where URL_LINK is the name of incoming data item.
    >

    However the dialog I get when I inserted the hyperlink does not have a place to enter the item name. In other words, there is no "TYPE of file or Web page" area that I see.

    Hi ashalon,

    I made this way in MS Word.
    1. create the placeholder for the value
    2. put highlight and make a hyperlink
    3. Enter the url in the address bar

    So if you have a complete hyperlink in the URL_LINK xml element you just enter {URL_LINK} in the address line. If you have only a part of the link, IE only a product name, you can enter 'http://www.oracle.com?product= {PRODUCT_NAME} ".

    I hope this helps.

    Concerning
    Chrissy

  • Report showing the numbers instead of text.

    Hi all

    We have a planning application. I've created a report for employees, their hiring months smartview justification and man. I tried to create a report through connection to the essbase server. In the report, I had random numbers for the text data (such as 1431 for justification of an employee hiring). Later I discovered that text data has been loaded through smartview to planning server and not to the Essbase server. This is probably the reason why I see (index) numbers of text fields.

    Is there a way to still generate the essbase Server report, or do we have to load these data to essbase app of the planning application?

    Like Michael said, you need to use the connection of planning. The smart lists used in planning are not in Essbase. Essbase stores smartlist not text value identification number.

  • not the substitution of the coherence-cache - config.xml, but showing the error...

    Hello

    I created a file called file tangosol-coherence - override.xml in the specified path which is "C:\Program Files\Oracle\Coherence for.NET"

    and the coherence.jar file is located in the path that is "C:\Program Files\Oracle\Coherence for." NET\lib ".

    but it is not the substitution of the XML... with the default file...


    C:\Program Files\Oracle\Coherence pour.NET\examples\ContactCache.Java > C:\Progra «»
    m Files\Java\jdk1.6.0_11\bin\java"- Server showversion-Xms128m-Xmx128m - Dtang
    STATUS ONLINE. Coherence.TTL = 0 - Dtangosol.coherence.cacheconfig = contact-cache - config.xml.
    CP 'config; lib\custom - types.jar; C:\Program Files\Oracle\Coherence for .NET\lib\c
    OHERENCE.jar' com.tangosol.net.DefaultCacheServer
    Java version "1.6.0_11.
    Java (TM) SE Runtime Environment (build 1.6.0_11 - b03)
    Java hotspot Server VM (build 11, 0 - b16, mixed mode)

    2011-06-20 15:06:57.607/2.366 Oracle coherence 3.7.0.0 < Info > (thread = hand, member)
    ER = n/a): responsible operational configuration of jar:file:/C:/Program%20Files/Ora «»
    cle/Coherence%20for%20.NET/lib/coherence.jar!/tangosol-coherence.xml ".
    2011-06-20 15:06:57.989/2.748 Oracle coherence 3.7.0.0 < Info > (thread = hand, member)
    ER = n/a): operational substitutions of jar:file:/C:/Program%20Files/Oracle/ load «»
    Coherence%20For%20.NET/lib/coherence.jar!/tangosol-coherence-override-dev.xml ".
    2011-06-20 15:06:58.049/2.808 Oracle coherence 3.7.0.0 < D5 > (thread = main Member,
    (= n/a): configuration optional override ' / tangosol-coherence - override.xml ' is not
    specified
    2011-06-20 15:06:58.062/2.821 Oracle coherence 3.7.0.0 < D5 > (thread = main Member,
    (= n/a): configuration optional override "/ custom - mbeans.xml ' is not specified

    Oracle Version 3.7.0.0 Build 23397 consistency
    Grid edition: development Mode

    Thanks in advance

    The classpath is not the same as the path. It is similar, but a classpath is a set of directories or jar Java files use to search for resources and executable code.

    Assuming you are using the sample file of Start-cache - server.cmd which is supplied with the .net examples to start your server you can put the file tangosol-coherence - override.xml in the C:\Program Files\Oracle\Coherence pour.NET\examples\ContactCache.Java\config directory because it's on the class path when using this script.

    JK

  • Report of the year several

    Hi all

    I have a report prompt based on the year. I have 2 sections of report either we should display the prompt value-based report and the other report should show a value larger than that. Ex: If I select the year 2005 in the prompt the first report should display 2005 data and the second report should display reports more than 2005, 2006,2007 data.
    To do this, I created prompt as below.
    Column-> Calendar_Year
    -> Equals Opertaor
    Control-> drop-down list
    Show-> all values
    -> The default server Variable
    Set Variable-> presentation Variable.
    Name of the vAriable-> yr_val

    In the reports, I used the filter year = @{yr_val} for the first report and year > @{yr_val} for the second report.
    I'm getting first report properly but second report shows the same data rather than the selected value years.
    Please let me know how to achieve this.

    Thank you
    Venerable.

    for the second report first convert this filter sql and put > @{PV_VAR}. Take care of the syntax.

    This should solve the problem.

    Kind regards
    Sandeep

  • Report with the sql query area

    Hello

    I have a region in relation to the sql query. There are two regions in the page. Top of page, the user enters data and after that second data enterd to see the region, which is related region
    based on a sql query.

    Now, when this page is opned, because the user has not entered anything, region report shows the message "no data found". Is it possible to remove this message or
    may I have conditionally disaply region report IE if data are inserted only region report is dispalyed.

    Thank you

    Hello

    You can use conditions for example "Exists (SQL query returns at least one row).

    Kind regards
    Jari

  • quick question on the reporting of the script

    Hello

    any difference between these 2 formats of declaration?

    to connect-viserver vc

    Get-VMHost | % {

    $vmhost = $_

    $Report = "" | Select the host name, version, powerstate, OSVersion

    $Report.Hostname = $vmhost. Name

    $Report.version = $vmhost. Config.Product.version

    $Report.powerstate = $vmhost. Runtime.PowerState

    $Report.OSversion = $vmhost. Config.Product.FullName

    }

    $HostReport

    ----------------------------------------------------------------------------------------

    to connect-viserver vc

    $HostReport = @)

    Get-vmhost | Get - views | %{

    $vmhost = $_

    $Report = "" | Select the host name, version, powerstate, OSVersion

    $Report.Hostname = $vmhost. Name

    $Report.version = $vmhost. Config.Product.version

    $Report.powerstate = $vmhost. Runtime.PowerState

    $Report.OSversion = $vmhost. Config.Product.FullName

    $HostReport += $Report

    }

    $HostReport

    Why set a table empty on the second for?

    I think I have answered as before.

    See "because you want to use the addition (+=)" a line in the report table.".

    If you don't declare the table, adding the object $Report to the variable $HostReport would not work.

    Define $HostReport as a [table] includes the addition of an object in the table.

  • Value of the variable presentation does not appear does not correctly in the dashboard column

    Hello

    I have a report that has a view of pivot, in which I want to display the average age (date-obtained variable presentation) for example. Average age of the 31.12.12.

    I used 'average Age of staff |  ' @{Reporting_Date} [dd.mm.yy] {31.12.12}' as the formula column and compound eyes, the report shows the desired result.

    But when the report is on the dashboard, it shows the average age to 31.00.12.

    Is this a bug or is there other settings I need to do? I use OBIEE 11.1.1.7.0.

    Thank you.

    Jeby

    Worked by changing just the text format.

    "Average age of staff |  ' @{Reporting_Date} [JJ. MM.yy] {31.12.12}'

  • You should have seen the date using the variable of presentation

    Hi all

    I am facing a problem in the display of the selected date of the guest in the report using the variable of presentation. I have a guest of data (calendar prompt), where the user selects the value. I take this value in the variable RBAP of presentation and report when I try to display this value using the same presentation variable, I get my date in the following format

    "TIMESTAMP 2010-10-22 00:00:00 '.

    I'm just using ' @{RBAP}' in the formula in the column.

    I want to show my date in the format DD/MM/YYYY. How to do this?

    I have used CAST (' @{RBAP} {' as DATE} and tried to change the data to dd/mm/yyyy format, but it does not work.)

    Please suggest

    Thank you
    Ronny

    in the default section to write the SQL...

    Select the OPTION case SENSITIVE WHEN 1 = 0 THEN AnyExistedDateColumn CURRENT_DATE of OTHER END OF SubjectArea

  • XML report (with report.xsl stylesheet) print shows the font colors, but not highlight table colors

    I try to print the XML report generated by TestStand as a PDF for archive.  When the XML report in Internet Explorer, everything seems fine - sequence names are highlighted in blue-green, the neck is green, in case of failure is highlighted in red.

    However, when I print this page as a PDF (with BullZip PDF printer, or even the XPS printer), went to all the light of table layout.  The result of the object to be measured in the header is colored red or green depending on the State of pass/fail, but sequence and setting names in the form applied to the tables in the body of the report have no highlighting.

    The stylesheet modifies what is returned when the XML file is printed?

    It is the output seen in Internet Explorer

    It is the output seen as a PDF printed from the same file read in Internet Explorer.

    Thank you

    Matt

    Hey Matt,

    It is in fact due to a default setting in Internet Explorer to not print the colors of background on Web pages. To change it, simply go to the configuration Page screen (on IE9, you click on the gear icon, then print > Page Setup) and select the option to print background images and colors. After doing this, the printed report must contain the colors you see on your screen.

Maybe you are looking for