Excel output format in the xml editor question field

Hi all

I have a problem with the release of excel as below.

I developed a report to xml editor having exit excel, I designed the layout to the rtf model.

one of the parameters in the report as 11000048,11000050

so when I check the output excel the above setting is displayed as below.

1,100,004,811,000,050

But I need the parameter will be displayed in the format 11000048,11000050 , as written, please help me.

Thank you

Please try this

Tags: Business Intelligence

Similar Questions

  • Questions of EXCEL output in the XML editor logo

    Hello

    We use the Publisher XML API to generate PDFS, EXCEL returns by using the template. When adding image for the model of its display in the output pdf file. But not in Excel output projection. Then I added url: {/ Image} in the text of the image in the template and submitted the report again now able to see the image output to excel. Can you please tell me why his does not display not not the picture in excel by default which is the line that goes in the case of PDF. IAM getting the same question for HTML output generation also. Please tell me what I can do to get the image by default identical to the way I'm in PDF format.

    Thank you
    Satya

    for the xml editor:
    How to determine the Version of the Publisher Oracle XML to Oracle E-Business Suite 11i and Release 12 [362496.1 ID]

    >
    To resolve this problem, we need to make manual configuration image as menioned in the document 736897.1?
    >
    It is based on your report and your needs

    It's may be:
    -OA_MEDIA and url as the url: {' ${OA_MEDIA} / your_image'}
    -URLs as interface http as url: {'http://www.servernews.ru/assets/images/articles/594131/OracleLogo.jpg'}
    -logo by submodel

    then you can try the logo by OA_MEDIA

  • Forum for the XML editor

    Hello

    Is there a forum for XML publisher? :)

    I got this white paper:
    Check Printing Using XML Publisher in Oracle Applications Release 12
    An Oracle White Paper
    January 2007
    
    Oracle XML Publisher offers integrated functionality that allows customers to 
    design their own check format using familiar desktop tools that can then be 
    applied to a check print data source, whether that is the seeded Oracle Report 
    or a custom solution. This format is easily maintainable and can include all the 
    necessary components required in the final output to be printed onto blank check stock.
    Taking this approach reduces the complexity of the systems surrounding the check 
    generation and thereby reducing the total cost of ownership of the E-Business Suite.
    Prerequisites
    This solution will work with XML Publisher 4.5 and forward. This paper has been revised 
    for use with Oracle Applications Release 12. This white paper assumes the following:
    Check Printing Using XML Publisher in Oracle Applications Release 12 Page 3
    
    1. XML Publisher has been successfully set up with PDF printing enabled.
    Is the sine qua non refers to the configuration of EBS R12?
    How will I know if my R12 EBS has been implemented with the XML editor? I thought it was included default?


    Thank you very much

    Ms. K

    Hi again;

    Is the sine qua non refers to the configuration of EBS R12?

    XML editor comes as part of Oracle E-Business Suite.

    Please check Hussein snoussi more large previous post on the same topic

    http://forums.Oracle.com/forums/thread.jspa?MessageID=3834445� *.< posted="" by="" hussen="">

    You can find many many good article on this topic

    Respect of
    HELIOS

  • Dynamic Image in the XML editor problem

    Hi all

    I was working with a dynamic image in the Xml editor with the reference of this link, step-3

    http://www.erpschools.com/articles/display-and-change-images-dynamically-in-XML-Publisher

    I have three Logo saved in OA_MEDIA with the name as 80.gif, 81.gif, 82.gif.

    I created a formula column outside the Group of data and given the link in the RTF, inside the url of the Image Alt text: {//CF_LOGO1} and his works fine.

    But when I created the formula column in the dataset, how do I give the path inside the image.

    I tried with this url: {...} CF_LOGO1} but his does not work. Could all help with that.

    Thanks and greetings

    Srikkanth M

    Please check if you placed the logo with the Group and the image is called correctly.

  • Format mask number in the XML editor reports

    Hi all

    I have a requirement in the format mask in xml publisher reports.

    I have a field in my report that the quantity,

    1 > if the value is 1234 I need to show as 1 234

    2 > if the value 1234.56 I need to show 1,234.56

    so I tried with properties of form with number format mask ' #, # 0.00' decimal so that's good, but for like number for 1234 also he 1,234.00 impression so I need 1 234, how I can do this, please help me.

    Thank you

    Thank you Deb to clarify. Yes just check the decimal (.) will work.

    I tried with my example of xml data, and it worked.

    Try this now...

  • Using the XML editor

    Hi all

    I'm a newbie to XML Publisher and very much intertested learning.
    Can anyone provide me with the best link where I get to start with him.

    I also have a fact a simple report with XML Publisher but he had a lot of troble to find tags. For example. For formatting numbers and dates.
    Is there a document or a link where I can get all this kind of in shape as well as the syntax.

    Any help will be really appreciated.

    Thanks in advance.

    Kind regards
    Shruti

    Hi Shruti,

    You can start with the page editor of BI on OTN http://www.oracle.com/technology/products/xml-publisher/index.html.

    Check out the tutorials (Oracle, for example). There are a lot of good information out there. Discover the guide editor of BI here: http://www.oracle.com/technology/products/xml-publisher/xmlpdocs.html

    Search the Forum or ask questions about specific questions you might have about putting shaped numbers and dates.

    I hope this helps.

    Thank you!

  • No output for report of XML editor using CASE/DECODE in a Where Clause

    Hello

    I have a requirement of the company to modify an existing report that has two input parameters,
    -> p_statcode (closed status) which may have values "Y" or "n".
    -> p_overdue (flag late), which can have values of "Y" or "n".

    The flag late is a column evaluated with O/N values and it is evaluated as follows,
    ONTF_MOD_VAL(NVL (
                                         (TRUNC (SYSDATE)
                                          - (TO_DATE (oe_order_lines.attribute18,
                                                      'DD-MON-RRRR')
                                             + TO_NUMBER (fnd_lookup_values.meaning))),
                                         0
                                      ))
                            overdue_flag
    The requirement of user now is that they must be a third option for setting called p_overdue ALL,
    which by the way the output should include records with
    p_statcode is p_statcode ELSE is N AND Y OR p_overdue p_overdue is N

    In other words records with raising the Y and N for flag late must be returned regardless of the value given to the closed state.

    Original where clause contained in the data definition file is as follows,
    WHERE Closed_Status = nvl(:p_statcode,Closed_Status)
                       AND overdue_flag = nvl(:p_overdue,overdue_flag)
    My modified code is the following,
    WHERE   Closed_Status = NVL (:p_statcode, Closed_Status)
             AND overdue_flag = (CASE
             WHEN :p_overdue = 'Y' THEN 'Y'
             WHEN :p_overdue = 'N' THEN 'N'
             ELSE overdue_flag
             END)
    OR
    WHERE   Closed_Status = NVL (:p_statcode, Closed_Status)
             AND overdue_flag = DECODE (:p_overdue, 'Y', 'Y', 'N', 'N',overdue_flag)
    Both approaches have the same problem.
    The output is in EXCEL format. The modified query works very well for p_overdue as Y or N but when p_overdue is passed as ALL he returned a blank EXCEL sheet with just exit report column headings.
    Any help regarding, why is this the case? What's not in my approach?

    Kind regards
    Vishal

    unclear on p_overdue = ALL
    P_overdue = ALL on what necessary values?

    try sth like

    WHERE   Closed_Status = NVL (:p_statcode, Closed_Status)
    AND (
       overdue_flag = DECODE (:p_overdue, 'Y', 'Y', 'N', 'N',overdue_flag) and :p_overdue != 'ALL'
       or
      :p_overdue = 'ALL' and (overdue_flag = 'Y' or overdue_flag = 'N')
    )
    

    for overdue_flag, which has more then 'Y' values of "n".
    If overdue_flag that in ('Y', ' don't) then

    WHERE   Closed_Status = NVL (:p_statcode, Closed_Status)
    AND (
       overdue_flag = DECODE (:p_overdue, 'Y', 'Y', 'N', 'N',overdue_flag) and :p_overdue != 'ALL'
       or
      :p_overdue = 'ALL'
    )
    
  • Referencing of the values of the parent in the XML editor group

    Hello
    I have a report of EBS, who is out of the XML as follows:
    <xmldata>
      <group1>
        <value1>Hello World</value1>
        <group2>
          <value2>Oracle</value2>
          <value3>Stuff</value3>
        <group2>
      </group1>
      <group1>
      <value1>Hello World</value1>
        <group2>
          <value2>Publisher</value2>
          <value3>More Stuff</value3>
        <group2>
      </group1>
    </xmldata>
    But in my model, I actually want to 'flatten' the above so I can push in excel in the following format:
    Hello World | Oracle | Stuff 
    Hello World | Publisher | More Stuff
    The problem I have is that I have one for each course group2 to print these values, but then the values in Group 1 are not visible. So I just get white instead of value1. value2 and value3 work fine however.

    I tried things like
    <?value1?><?value2?><?value3?>
    but it does not work - I have to do reference what parent level somehow, I'm looking at? I am using fields by the way, just used above for example.

    Any pointers in the right direction would be really apreciated.

    Concerning
    John

    Use this:



    Thank you
    Bipuser

  • Repeat the header in the xml editor

    Dear Experts,

    I have a model where I need to repeat the header information of the next page, I tried with <? beginning: body? > <?: body end? > and in the property of the table, I check the Repeat property as a header and I tried <? for-each@section:Group_Name? >. but it does not work.

    His task.your emergency assistance is much appreciated.

    Could you please help me on this.

    Best regards

    Amar

    Hi Amar,

    It's almost over. Now, the first lines of the 3 table are repeated on several pages.

    Please find attached the output model and example.

    You need to spend some effort on the formatting of the table if necessary (probably rebuild the base tables that I see some formatting issues already exists on your model)

    But it's the approach that you can follow to meet the needs of your business.

    Thank you...

  • Convert report seeded Oracle custom in the XML editor

    Hello
    We have customized any report oracle planted, now we have to convert in XML Publisher.

    any body can me say what steps should I follow?

    Patch installed

    OPE. H, 3263588
    4.5.0, 3554613
    5.0.0 3822219
    5.5.0, 4206181
    4236958 5.0.1
    5.6.0, 4561451
    5.6.1 4905678
    5.6.2, 5097966
    5.6.3, 5472959

    5.6 XML editor build 45

    Thank you
    Ed.

    Hello

    Please follow the steps in the below url.
    http://apps2fusion.com/at/64-KR/346-bi-Publisher-report-migration-utility
    later the following url will also be useful.
    http://bipublisher.blogspot.com/2009/05/bi-Publisher-reports6i-to-BIP.html

    This will of course help you.

    Thank you
    Zakari

  • In the xml editor how to change table as below

    Hi all

    My requirement is how can I change the table from the OLD to the new

    OLD Table

    Topic Max marks Grades
    subj153
    subj152
    subj354

    NEW Table

    Topic Max marks Obtained trademarks
    subj1

    15

    9

    subj2
    subj3

    I thank in advance

    Hello

    Try the following, hope it will help you.

    XML file like this

    1

    Sub1

    10

    1

    Sub2

    20

    1

    Sub3

    30

    Model

    ID

    Name

    Brands of

    G V IF RS ID

    F NAME

    BRANDS E IF RS E

    Explanation of the tag

    G

    V

    IF

    ID

    RS

    F

    NAME

    BRANDS OF

    E

    IF

    RS

    E

    Output like this

    ID

    Name

    Brands of

    1

    Sub1

    60

    Sub2

    Sub3

    Please check the issue as resolved, if that answers your question. Thank you

    Post edited by: sfr.farhan.fani

  • Nested for loops EACH in the XML editor

    I have a xml like this.

    <?xml version="1.0" encoding="UTF-8"?>
    <DATA_DS>
         <Line_Approver>
              <getLineNumberAssigneesResponse>
              <result>
                    <LineNumber>1</LineNumber>
                    <Assignees>One</Assignees>
               </result>
              <results>
    
                   <LineNumber>2</LineNumber>
                   <Assignees>Two</Assignees>
              </result>
    
              </getLineNumberAssigneesResponse>
         </Line_Approver>
    <DATA_DS>
         <HEADER>
         <INVOICE_ID>300100071480733</INVOICE_ID>
         <AMOUNT>1111</AMOUNT>
         <INVOICE_CURRENCY_CODE>USD</INVOICE_CURRENCY_CODE>
         <INVOICE_NUM>100</INVOICE_NUM>
         <INVOICE_DATE>2015-11-13T00:00:00.000+05:30</INVOICE_DATE>
         <PAYMENT_CURRENCY_CODE>USD</PAYMENT_CURRENCY_CODE>
         <ORG_ID>204</ORG_ID>
         
         <INVOICELINES>
                  <LINE_NUMBER>1</LINE_NUMBER><LINE_TYPE>Item</LINE_TYPE><AMOUNT>1000</AMOUNT><INVOICE_ID>zzz</INVOICE_ID><EXPENDITURE_ITEM_DATE></EXPENDITURE_ITEM_DATE>
         </INVOICELINES>
         <INVOICELINES>
              <LINE_NUMBER>2</LINE_NUMBER><LINE_TYPE>Item</LINE_TYPE><AMOUNT>111</AMOUNT><INVOICE_ID>300100071480733</INVOICE_ID><EXPENDITURE_ITEM_DATE></EXPENDITURE_ITEM_DATE>
         </INVOICELINES>
         </HEADER>
    
    <some more xml/>
    </DATA_DS>
    
    </DATA_DS>
    

    As you can see there are two results and and two invoice lines.

    I want to create a table of invoice lines for which the line number is present in the result.

    So my psudo code is as follows

    for each in result:
         assign result.linenumber to variable
         for each in InvoiceLines:
              compare the InvoiceLines.Line_number to variable:
                   if match print row.
    

    I know I won't have access to the LineNumber result with in second forloop because of the determination of the lexical scope.

    Far from assignment, I am unable to get the value of the number of the line itself.

    I tried two methods of application for with in what work force. The underside of work that uses the absolute path.

    What xpath Miss. Can I do better?

    FOR1: <?for-each:/DATA_DS/Line_Approver/getLineNumberAssigneesResponse/result?>
    
    FOR2: <?for-each:/DATA_DS/DATA_DS/HEADER/INVOICELINES?>
    

    LINE_NUMBER

    LINE_TYPE

    AMOUNT

    For 1 <? LineNumber? > 2 LINE_NUMBER

    LINE_TYPE

    AMOUNT ENDFOR1 ENDFOR2

    I think I gave enough information. Answer just in case I did not say anything clearly.

    You can do this via a simple foreach loop and the code would be

    Please see the data XML and RTF attached for your reference.

    I changed the data in XML format (I added 10 instead of 1) just to make sure that its works or not, and it works very well.

  • How to limit the 3 files per page in the XML editor

    Hi all

    I have this definition of XML data that output XML in the following structure

    < dataStructure >

    < name of group = 'WIRE' source = 'Q2' >

    < element name = "DATE" value = "CHECK_DATE" / >

    < name of group = "Bills" source = "Q2" >

    < feature name = 'Bill' value = 'INVOICE_ID' / >

    < / Group >

    < element name = "Check_Number" value = "CHECK_NUMBER" / >

    < element name = "Recipient" value = "$vendor_name" / >

    < element name = "Payee_Bank_Account_Name" value = "BANK_ACCOUNT_NAME" / >

    < element name = "Payee_Account" value = "BANK_ACCOUNT_NUM" / >

    < element name = "Debit_Account" value = "DEBIT_ACCOUNT" / >

    < feature name = 'Amount' value = 'AMOUNT' / >

    < / Group >

    < / dataStructure >

    Can someone guide me on how to limit 3 records per page template RTF? I mean what is the code I should use in RTF?

    use the tag

    Declare the variable and get the number if count reaches 3, then use this tag

  • output format of the index

    Hi dev

    I am currently using below version
    BANNER                                                                         
    --------------------------------------------------------------------------------
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production           
    PL/SQL Release 11.2.0.1.0 - Production                                           
    CORE     11.2.0.1.0     Production                                                         
    TNS for 32-bit Windows: Version 11.2.0.1.0 - Production                          
    NLSRTL Version 11.2.0.1.0 - Production                                           
    {CODE}
    
    
    here is my query to find out the list of indexes and positions in a single schema.
    SELECT
    USER_INDEXES. TABLE_NAME | CHR (9) |
    USER_INDEXES. INDEX_NAME | CHR (9) |
    TRIM (user_ind_columns. COLUMN_NAME) | CHR (9) |
    user_ind_columns.Column_Position | CHR (9) |
    trim (user_ind_columns. DOWN) ORDERTYPE
    From user_indexes, user_ind_columns
    WHERE user_indexes. Table_name = user_ind_columns. TABLE-NAME
    AND user_indexes. Index_name = user_ind_columns. INDEX_NAME
    AND user_indexes.index_name NOT IN (select index_name FROM user_constraints where index_name is not null);
    The output is like :
    Table_name column_name position OrderType index_name
    ----------------- ------------------ ------------------- ----------- ---------------
    ACS_TEST ACS_TEST_IDX COL2 CSA 2
    ACS_TEST ACS_TEST_IDX COL1 1 CSA
    C_COLLEGE INX_COLL DEPT_ID 4 CSA
    C_COLLEG LAST_NAME INX_COLL 3 ASC
    C_COLLEGE INX_COLL FIRST_NAME 2 CSA
    C_COLLEGE INX_COLL STUDENT_ID 1 CSA
     i am trying to spool the output to .txt file. in textfile the output should be in below format :
    Table_name Index_name column_names
    ---------------- ---------------- ------------------
    ACS_TEST ACS_TEST_IDX COL1, COL2
    C_COLLEGE INX_COLL STUDENT_ID, FIRST_NAME, LAST_NAME, DEPT_ID
    Note : Based on the position value the column name have to be  placed.
    
    
    Please help me to get such ouput format.
    
    
    Thanks,                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        

    Hello

    Please edit and reformat your message it's horrible.

    A way to get what you need using the LISTAGG:

    SELECT ui.table_name
         , ui.index_name
         , LISTAGG (uic.column_name, ',')
              WITHIN GROUP (ORDER BY uic.column_position) cols
      FROM user_indexes ui, user_ind_columns uic
     WHERE     ui.table_name = uic.table_name
           AND ui.index_name = uic.index_name
           AND NOT EXISTS
                  (SELECT 1
                     FROM user_constraints
                    WHERE index_name = ui.index_name)
     GROUP BY ui.table_name, ui.index_name;
    

    Kind regards.
    Al

  • How to get the break control file in the xml editor

    Hi all

    I use oracle Apps r12 and Bi publisher 10g.

    I followed these steps to burst Xml reports

    http://apps2fusion.com/apps/21-technical/251-xmlp-concurrent-program-revisited-with-bursting.

    I created the definition of data and now I need to reach the break control file.

    If the system will generate burst control file after the creation of data definition, or to create a control file.

    Thanks and greetings
    Srikkanth.M

    You must create a control file and upload it.
    You can also check this blog for detailed steps http://garethroberts.blogspot.com/2008/03/bi-publisher-ebs-bursting-101.html

Maybe you are looking for

  • A question

    Hey,. I buy a new Mac. What is the diffrence between Mac Vs the new Macbook air? Is what I want from the computer to surf the Web, watch movies and TV shows and download things like movies and music. The type will be the best for me? Thank you!

  • Mini Mac OS 10.8.5 - all settings, modules, etc. completely disappear to reopen after closing firefox (seems completely reset)

    I tried as much as I could find to fix - firefox is not set to reset the story with each new reboot, and I was by the audit of the my file is not locked in the profiles. I do not have a lot of folders and files - prefs is this normal to have several

  • Missing files - notes

    My 6 Iphone turns off suddenly, and when I turned it back on all my notes files had disappeared. I tried to use several extractors file via my computer, but none of them worked. I also asked a guy at the apple store had no idea of how to help. Anyone

  • How to view the data collected in vi main indicators in an another vi

    Hello I data collection to aid NI 6251 USB DAQ in vi but as I have too many controls and indicators on the main façade of vi. So I want to display the indicators (graphs) in an another vi. I want also the vi with graphs automatically opens. Anyone kn

  • What is 192.168.1.1:domain in the command NETSTAT?

    Hello, I was using the command prompt and typed in netstat - see open ports on my XP computer.  Then I found a bizarre result that I have never seen this. It was the Proto local address foreign address StateTCP myXP computername:port # 192.168.1.1:do