Changing standard output from Text to XML customization?

Hi Team,
We wanted to get an excel output for a standard reports Accounts Payables Trial Balance, we changed the output from Text to XML. We did not attach a data definition or template definition ..we just wanted to see the XML output.. We got an error in the process ."Caused by: oracle.xdo.parser.v2.XMLParseException: '=' missing in attribute" .. for which we raised a TAR..
We were told in the TAR that changing the standard output from Text to XML is customization!!!!... can you please clarify if this is the case..

Hi
Is this issue get resolved ???
Thanks
Shivdeep Singh

Similar Messages

  • Changing the seeded rdf report output from text to PDF

    Hi All,
    I am trying to change the seeded report "Print Requisition Report" output from text to PDF. I changed the output format in the concurrent program definition from text to pdf. The report is now getting displayed in pdf format, but the alignment of the fields are changed. The output is not printing as it was printing while in the text output format. The output looks very sloppy, with uneven fonts and too much of text wrapping.
    I tried some formatting and fields are somehow getting displayed but doesnt look in proper format. I am not able to change the font style in the report builder 6i, even if i change it is printing in the same font style with uneven font size. I think reducing the font size might help, but i am unable to change.We are on 11.5.10.2. Please provide your valuable suggestions on how to go about.
    Thanks
    Sarvesh

    Hi Hussein,
    Thanks for the information. After the adjustments in the layout and the font change the report is now getting displayed without any clipping when clicked on view output. But when the same report is printed some characters on the left and and right side is getting clipped. Please help on how to solve this issue.
    Thanks,
    Sarvesh

  • How to change the output as text format in Apps R12.1.3

    Hi All,
    Currently iam trying to modify the Java Concurrent Program (FDExtractAndFormatting) in Batch Payment Process. This Program is generated in text format in 11i APPS. Now we are upgrading to R12.1.3. In R12.1.3 output is coming as PDF format. Here my requirement is how to change the output as text format in R12.1.3 also.
    Please do the needful and suggest me.
    Regards,
    Jagadeesh

    1. It is seeded java concurrent program. Some attributes are missing from 11i to R12. In 11i it is a text format.So i have to investgate on how to retrive those attributes in R12. What is the concurrent program name?
    Have you tried to change the output and submit the request?
    2. Once all are attributes are coming in PDF format. Client wants to open same output in text format as it is 11i (In R12 it is generated in PDF format).If the above does not help, please log a SR.
    Thanks,
    Hussein

  • Reading connection parameters from text or XML file

    Hello,
    Rather than hard coding my connection data into the source, I would like to be able to read it from a configuration file in either text or XML format.
    Does anyone have a configuration file and source code example for doing this? Or have any suggestions on how it might be done?
    Many Thanks and Happy New Year!

    Thanks for the pointer. A review of the utils Java doc gave me the framework of what I needed. I also found a good example of the config file and code in the Core Java 2, Vol 2 book.
    As to the password, a concept I have is to create a small UI for users to manage the config params. When I write the password to the text file it would be encrypted. When used in the app, it would be un-encrypted. Granted not the most secure method, but a nice compromise on convenience and security.

  • How to change column "Date" from "Text" to "Date-Time" in Document Library.

    How to change column name "Date" from "Single line of Text" to "Date and Time" in Document Library.

    Hi,
    If you would change column type, you might need to re-create column.
    If you would like a text column to display in date format, you could refer to the links below:
    http://sharepoint.stackexchange.com/questions/45774/how-to-convert-date-field-in-single-line-of-text-using-calculated-columns
    http://yasuanantha.blogspot.com/2008/06/to-convert-text-column-to-date-column.html
    Regards,
    Rebecca Tu
    TechNet Community Support

  • 4650dn printer changing document output from print preview

    recently installed 4650dn printer set up was a breeze, then suddenly the printer started changing the document output like there was an internal setting overriding the software settings.  almost as if it was confused about the orientation of the paper.  i am running vista with the print driver PCL 5.  i have tried restoring factory settings, tried different software, finally got it to work in MS word but prefer to use MS publisher, adobe illustrator etc.

    Hi Narasimhan,
    Yes, your guess is correct. We have tried out the possibility of controlling the print from the user status configuration side of things, but as the user status is at an Operation level, the system status at the header level still gets set, confusing the user that a print was created.
    Any other ideas / alternates ?
    Cheers,
    Ashok.

  • Intercompany billing , standard billing from same delivery possible - customization

    Dear Gurus,
    I have a query  where i couldn't manage to get a proper reply from my peers, hence pondering this to the forum kindly help out.
    In a normal O2C cycle , when  standard billing gets created from delivery  then the cycle is tend to be complete and  if we try to create another billing  document we get an error " The document has already been fully invoiced"  which is appropriate.
    But in case of an intercompany billing document if we try to create another billing document from the same delivery type then we get the billing document  "IV"  created .
    Can you please let me know where does this setting exist ?  An earlier reply is of great help.
    Br
    Krishna.K

    To my knowledge the below are the two settings are important along with other inter company sales settings.
    1. in VOV8( for order type OR you assign inter company billing IV)
    2. In VTFL we maintain copy control between LF and IV
    thanks,
    Srinu.

  • Change output from 4 lines to 1.

    ANyone know how I can change the output from this query so that it outputs a single row instead of 4? I need to be able to make the 4 decode select statements into a single one, this I know, but I have problems with the part where I want to take the col, find a row, then put in that value. Here is they query, and below the output.
    select distinct(bt.Account_Obj_Id0),
    decode( TO_CHAR( End_Dt, 'MM/DD/YYYY'), '09/01/2002', NVL( dt.Current_total ,0) ,0) as "over 120",
    decode( TO_CHAR( End_Dt, 'MM/DD/YYYY'), '10/01/2002', NVL( dt.Current_total ,0) ,0) as "90-120",
    decode( TO_CHAR( End_Dt, 'MM/DD/YYYY'), '11/01/2002', NVL( dt.Current_total ,0) ,0) as "60-90",
    decode( TO_CHAR( End_Dt, 'MM/DD/YYYY'), '12/01/2002', NVL( dt.Current_total ,0) ,0) as "current"
    from (select convert_t_time (end_t) End_DT,
    total_due,
    account_obj_id0,
    current_total
    -- convert_t_time (start_t) Start_DT
    from bill_t
    where account_obj_id0 = '9760259'
    and convert_t_time (end_t) > trunc (sysdate - 120, 'MM') ) dt,
    bill_t bt
    where bt.account_obj_id0=dt.account_obj_id0
    --GROUP BY bt.Account_Obj_Id0
    ACCOUNT_OBJ_ID0 over 120 90-120 60-90 current
    9760259 0 0 0 79.53
    9760259 0 0 206.29 0
    9760259 0 93.85 0 0
    9760259 127.17 0 0 0

    select bt.Account_Obj_Id0,
              MAX(decode( TO_CHAR( End_Dt, 'MM/DD/YYYY'), '09/01/2002', NVL( dt.Current_total ,0) ,0))  as "over 120",
              MAX( decode( TO_CHAR( End_Dt, 'MM/DD/YYYY'), '10/01/2002', NVL( dt.Current_total ,0) ,0)) as "90-120",
              MAX(decode( TO_CHAR( End_Dt, 'MM/DD/YYYY'), '11/01/2002', NVL( dt.Current_total ,0) ,0))  as "60-90",
              MAX(decode( TO_CHAR( End_Dt, 'MM/DD/YYYY'), '12/01/2002', NVL( dt.Current_total ,0) ,0))  as "current"
      from (select convert_t_time (end_t) End_DT,
                        total_due,
                        account_obj_id0,
                        current_total
                        -- convert_t_time (start_t) Start_DT
                 from bill_t
                  where account_obj_id0 = '9760259'
                      and convert_t_time (end_t) > trunc (sysdate - 120, 'MM') ) dt,
             bill_t bt
       where bt.account_obj_id0=dt.account_obj_id0
    GROUP BY bt.Account_Obj_Id0

  • Standard output when calling a method from a jar

    I have a question about obtaining standard output from a call to a method in a jar. I understand that a) and b) below are equivalent, but how do I get the output that the java call produces when I call SugarMain.decode in a java program? In other words, where does the output from SugarMain.decode go and is that equivalent to the standard output from the java SugarMain -decode call? I obtained the jar from http://bach.istc.kobe-u.ac.jp/sugar/ which has no user support.
    Thank you,
    Richard Becraft
    a) SugarMain.decode("sugar5400.out", "sugar5400.map");
    b) java SugarMain -decode sugar5400.out sugar5400.map
    java SugarMain -decode sugar5400.out sugar5400.map
    s SATISFIABLE
    a creditHours 10
    a id11672 true
    a id11673 false
    a id11674 false
    a id11675 false
    a id11676 false
    a id12385 false
    a id13043 false
    a id13044 false
    a id14032 false
    a id13046 true
    a id11852 true
    a id11921 false
    a id12832 false
    a id12833 false
    a id13355 false
    a id14311 false
    a

    Without knowing anything about SugarMain it is difficult to answer your question.
    It may help to know that there is nothing inherently different about classes referenced from jar files then classes referenced from loose class files. The specifies on how to get the output of SugarMain.decode() is dependent on SugarMain.decode().
    You say that there is no user support but is there any documentation or source files or samples. If the answer is "No" to all of those, it may be that you lose.

  • Report Output in text giving junk characters

    Hi All
    I have created custom report in rdf file format. When running the report set output as PDF means its come good. Incase i will change report output as text means its shows lot of junk characters in output time .
    How can i will solve the issue
    Sample Text Output :
    (s7BTAN CHONG MOTOR ASSEMBLIES S(s0B
    <-(s7BNo: 249, Jalan Segambut, 51200 Kuala <-(s0B
    <-(s7BSTATEMENT OF ACC(s0B
    <-(s7BAS ON(s0B (s7B16-APR-13<-(s0B
    <-(s7BSupplier (s0BAFM MART SDN BHD <-(s7BSupplier Account N<-(s0B
    NO 6 JALAN SS 4C/5
    TAMAN RASA SAYANG
    TAMAN RASA SAYANG
    PETALING JAYA
    PETALING JAYA
    SELANGOR
    Malaysia-47301
    03-78048099 Document Cur Base Curr
    Docume Curre --------- ---------------
    nt Ref Num Doc T Tranx Due D !CurRa Deb Cred Deb Cred Balan
    (s7BOpen I(s0B
    *****TESTINGABC STD INV ***********MYR 456 456 456
    *****TESTING123 STD INV ***********MYR 1000 1000 1000
    (s7BTotal Pa<-(s0B (s7B0(s0B (s7B1456(s0B (s7B1456(s0B
    (s7BTotal Outstandin(s0B (s7BCurrent(s0B (s7B31 - 60 Days(s0B (s7B61 - 90 Days(s0B (s7BAbove 90 D(s0B
    (s7B1456(s0B (s7B0(s0B (s7B0(s0B (s7B0(s0B (s7B0(s0B
    Edited by: 993525 on Apr 16, 2013 10:25 AM

    Hi
    What is your database/application characterset? - AL32UTF8
    NLS_LANG : AMERICAN_AMERICA.WE8ISO8859P1
    concurrent request log file
    -------------------+
    XXTC Custom: Version : UNKNOWN
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    XXTCM_SUPPLIER_SOA module: XXTC Supplier Statement
    Current system time is 16-APR-2013 10:40:18
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    Arguments
    P_VENDOR_NUM_FROM='2'
    P_VENDOR_NUM_TO='2'
    P_INVOICE_DATE_TO='2013/04/16 00:00:00'
    APPLLCSP Environment Variable set to :
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    AMERICAN_MALAYSIA.AL32UTF8
    Enter Password:
    Report Builder: Release 10.1.2.3.0 - Production on Tue Apr 16 10:40:19 2013
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Executing request completion options...
    Output file size:
    446
    ------------- 1) PRINT   -------------
    Printing output file.
    Request ID : 607096      
    Number of copies : 0      
    Printer : noprint
    Finished executing request completion options.
    Concurrent request completed successfully
    Current system time is 16-APR-2013 10:40:20
    Thanks Sanjay
    Edited by: 993525 on Apr 16, 2013 11:38 AM

  • Changing audio output device for currently running program

    I'm not sure where to put this question, but all my searching hasn't seemed to find an answer...
    If I have a program running, iTunes, VLC, a game, whatever, and want to change audio output from say Line Out to Headphones, I have to restart the program for the change to take effect. Is this by design/normal or am I missing something somewhere?

    this is actually a quiet significant issue. There is no way in Flash to select the audio output device.
    Today  people have regular speakers and a separate headset. They all use the  speakers for music and the headset for voice. Skype i.e. has the option  to choose audio output device and its really handy, because
    you dont  have to bother to set the default device to the headset everytime you  want to use it.
    If you set the default device to the headset all other apps will send their audio  output to the headset - which is not what you want either.
    So people  really want to leave the default device set to the speakers and not to  the headset.
    Nokia did this for Java
    JRT 2.1 / Nokia UI API updated to version 1.4:
                AudioOutputControl extension for controlling which audio output device, for example the device loudspeaker or earpiece, is used to play back audio
    This really is an issue.

  • Reprints output from concurrent requests

    Hi, I copied the above Concurrent Program to a custom one and added 'XML Report Publisher' in the list of incompatible programs, because my custom program (Custom Reprints output from concurrent requests) should run only after XML Report Publisher completes. But the custom program ends in 'Inactive' Phase and 'NO Manager' Status. We tried bouncing the CM, but no luck. Any help is highly appreciated.
    P.S: When I add XML Report Publisher to the list of incompatible programs for the seeded program - Reprints output from concurrent requests, everything works fine.
    Thanks, Naveen Gagadam.

    Hi Hussein, we are on: Oracle Applications : 11.5.10.2, Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi on LINUX.
    I am submitting my Custom Reprints output from concurrent requests, XML Report Publisher from FND_REQUEST.SUBMIT_REQUEST. I cannot print the XML report without adding it to the list of incompatible programs because even though I submit the Custom Reprints output from concurrent requests after XML Report Publisher, it starts off before the XML Report Publisher completes and eventually it ends up in a warning. Please see below 1/2 of the log file (Will post the Other half immediately) from $FND_TOP/log. The name of the file is five_0908.mgr, 'five' being the name of the instance
    Thanks, Naveen Gagadam.

  • Change loops output-channel

    Where in Logic 7 do you change the output from the loops-library. Default is channel 1-2 and my soundcard is not working right now on those channels. I,ve been searching for hous and hours!

    Thanks Charlie,
    I managed it.
    Yet, do you know how to manage this one:
    Zum Objekt RF_BELEG 1001 ist das Nummernkreisintervall 00 nicht vorhanden FBN1
    Meldungsnr. NR751
    Diagnose
    Die Datenbanktabelle NRIV hat Auslieferungsklasse 'C', d.h. die von SAP ausgelieferten Voreinstellungen befinden sich ausschließlich im Mandant 000.
    Vorgehen
    Legen Sie über das Customizing das fehlende Nummernkreisintervall an.
    Transaktionscode: FBN1

  • How to remove actual XML content from Weather Web Service Client's standard output?

    Hi,
    I tried web service example examples.webservices.rpc.weatherEJB.Weather with WLS6.1,
    it works fine, but on client side, ( either Client or DClient ), I always see
    the actual XML content being sent and received from standard output, like
    "------------- RECEIVING XML -------------", and I can't find any related System.out.println
    statement in client source code, Please explain how to remove it, may there is
    a configurable parameter for this? any help will be highly appreciated.
    Thanks
    Naichen

    Hi Naichen,
    To suppress showing the actual SOAP request and response going to standard out,
    change the following line in the Client.java:
    h.put("weblogic.soap.verbose", "true" );
    to read:
    h.put("weblogic.soap.verbose", "false" );
    Regards,
    Mike Wooten
    "Naichen Liu" <[email protected]> wrote:
    >
    Hi,
    I tried web service example examples.webservices.rpc.weatherEJB.Weather
    with WLS6.1,
    it works fine, but on client side, ( either Client or DClient ), I always
    see
    the actual XML content being sent and received from standard output,
    like
    "------------- RECEIVING XML -------------", and I can't find any related
    System.out.println
    statement in client source code, Please explain how to remove it, may
    there is
    a configurable parameter for this? any help will be highly appreciated.
    Thanks
    Naichen

  • How to output full-text document from BDB-XML

    I put a XML document(test.xml) into BDB-XML; Edit and modify use BDB-XML API.
    After, if I want to output(roll out) my XML document(test.xml) which was storage in BDB-XML.
    Are there any support in BDB-XML API or Shell to output full-text document from DB??
    Thank you very much :)

    In the shell:
    dbxml> getDocument "document name"
    dbxml> print ["output_file_name"]
    In a (Java) program:
    XmlDocument doc = container.getDocument("document name");
    String output = doc.getContentAsString();
    Regards,
    George

Maybe you are looking for

  • Re: help: can not regist application in HP-UX 11.0

    Hi, this the test.xml and ias-test.xml: test.xml: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE web-app PUBLIC '-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN' 'http://java.sun.com/j2ee/dtds/web-app_2_2.dtd'> <web-app> <distributable></dis

  • Need to generate a report for Event collection rules created in SCOM

    Hi All, Can any one let me know where can i get a report of the Event based collection rules created in SCOM (For default and custom made). I used the below report but it gives the collection rules which are performance counter based not event collec

  • Web app with ms ajax occur error in win2003+iis6 Access manager

    my web app in win2003 + iis6 +Microsoft dot Net Framework 3.5 all web pages using ajax scriptmanager object When the iis6 have Policy Agent (amiis6.dll include in IIS) Problems : Every page have error message <script type="text/javascript"> //<![CDAT

  • Adding pictures from iPhoto to iMovie ?

    I have recently updated to iLife 11. I am a little new to imovie and get on with it quite well but i don't seem to be able to add stills. I am clicking on the photo icon and opening iphoto but then nothing...... what do I do? I have tried dragging an

  • How can i locate the IMEI number.

    I lost my iphone 4 and i do not have the box. Is there a way Apple can help the customers get it.