Change datatype in xml output

Hi all !
Is it possible to force the display of data type in another format in the xml output :
<G_TP>
     <YTD_IND>4.1976983*E7*</YTD_IND> ==> 41976983
     <YTD_PREC_IND>3.909673*E7*</YTD_PREC_IND> ==> 39096730
</G_TP>
This format causes an error when using the function choose.
Best regards,
Ben

No idea ?

Similar Messages

  • XML Datatype as transaction output property

    Hello everyone,
    I'm having some problems while using the XML datatype as an output for a transaction and would like your input on this.
    I've created a transaction that has one output property set as a XML. This transaction reads information from a SAP BAPI call and I assigns the response XML to the output parameter. I've checked the output value with a trace block and it is ok.
    This transaction is called from within another transaction, but when I read the output parameter after the transaction block is executed, the output parameter is empty...
    The only work-around this problem that I have found it to encode the XML as a string and then decode it in the outer transaction, but that just doesn't seem like the right thing to do... There must be a reason to have a XML datatype!
    Thanks in advance,
    Marcelo

    Marcelo,
    I too tried this on 12.1.8 build 20 and this seems to be working for me.
    Here's what I did, I am calling BAPI_ALM_ORDER_DETAIL in the "called" transaction. This has an output property called "outXML" of type XML.
    I assign the response of the BAPI to outXML after the BAPI is executed.
    I tried a tracer here and all's well.
    In the "calling" transaction I have a tracer after the Transaction call where  am able to see the respose from the called transaction.
    Thanks
    Udayan

  • XML output changed after tools release

    Enterprise One 812. XML output to print invoices is now missing two fields. Layout of xml is now different in DV/PY compared to PD.
    * E1 Tools Release 8.98.32 installed in DV/PY - problem started after this.
    * The problem does not exist in PD but it does exist in DV and PY.
    * The source for the xml template and report definition is a custom UBE for invoice printing and has not been changed in any environment.
    * The xml template and report definitions have not been changed.
    * No processing options have changed.
    * Downloaded the PD RTF and ran it locally against xml data from PD and PY. The PD xml displays the fields and DV/PY do not. This proves the RTF is not different between environments.
    To try and solve, ran ER compare of custom base object between PD and DV/PY and found no diffs. Also tried a new RTF template and report definition, still doesn't work. Ran a package build to push the PD custom base object into DV/PY, still didn't solve.
    Is it possible the Tools Release in DV/PY caused this XML problem? Any help is greatly appreciated, running out of ideas.
    Thanks in advance...

    Hi
    Sorry, I dont know enough about the JDE patching and environment. If you suspect a regression issue, I would log a service request with JDE support and get them to ping development for some help on confirming the issue
    Regards
    Tim

  • XML Elements Ordering in Generated XML Output

    I have a requirement where I need the xml element tags to appear in the generated xml output in the same order as in data template definition but in my case this is not happening. I have one master group - Customer and two subgroups - BillingAddress and ShipToAddress. The subgroups appear below some master elements eg. Contact but above other master elements eg. Telephone . However when the xml output is finally generated all the Master Elements appear first followed by the subgroup elements. Does anyone know how I can rectify this?
    See below:
    my data template structure is as follows:
    - <group name="Customer" dataType="varchar2" source="Q_MASTER_FILE_CUST">
    <element name="CustomerID" datatype="varchar2" value="CUSTOMER_NUM" />
    <element name="CustomerTaxID" datatype="varchar2" value="TAXPAYER_ID" />
    <element name="CompanyName" datatype="varchar2" value="COMPANY_NAME1" />
    <element name="Contact" datatype="varchar2" value="CONTACT_NAME" />
    - <group name="BillingAddress" dataType="varchar2" source="Q_MF_CUST_BILLTO">
    <element name="BuildingNumber" datatype="varchar2" value="BUILD_NUM1" />
    <element name="StreetName" datatype="varchar2" value="STREET_NAME1" />
    <element name="AddressDetail" datatype="varchar2" value="ADDRESS_STYLE1" />
    <element name="City" datatype="varchar2" value="CITY1" />
    <element name="PostalCode" datatype="varchar2" value="POSTAL_CODE1" />
    <element name="Region" datatype="varchar2" value="COUNTY1" />
    <element name="Country" datatype="varchar2" value="COUNTRY1" />
    </group>
    - <group name="ShipToAddress" dataType="varchar2" source="Q_MF_CUST_SHIPTO">
    <element name="BuildingNumber" datatype="varchar2" value="BUILD_NUM2" />
    <element name="StreetName" datatype="varchar2" value="STREET_NAME2" />
    <element name="AddressDetail" datatype="varchar2" value="ADDRESS_STYLE2" />
    <element name="City" datatype="varchar2" value="CITY2" />
    <element name="PostalCode" datatype="varchar2" value="POSTAL_CODE2" />
    <element name="Region" datatype="varchar2" value="COUNTY2" />
    <element name="Country" datatype="varchar2" value="COUNTRY2" />
    </group>
    <element name="Telephone" datatype="varchar2" value="PHONE_NUMBER" />
    <element name="Fax" datatype="varchar2" value="FAX1" />
    <element name="Email" datatype="varchar2" value="EMAIL_ADDRESS" />
    <element name="WebSite" datatype="varchar2" value="URL" />
    </group>
    </group>
    My XML Output is as follows:
    <Customer>
    <CustomerID>1000</CustomerID>
    <CustomerTaxID>65-94238654</CustomerTaxID>
    <CompanyName>World of Business</CompanyName>
    <Contact>MS. Jolene Smith-Kelly</Contact>
    <Telephone>8441212</Telephone>
    <Fax />
    <Email />
    <WebSite />
    - <BillingAddress>
    <BuildingNumber />
    <StreetName />
    <AddressDetail />
    <City>San Jose</City>
    <PostalCode>95053</PostalCode>
    <Region>Santa Clara</Region>
    <Country>US</Country>
    </BillingAddress>
    - <ShipToAddress>
    <BuildingNumber />
    <StreetName />
    <AddressDetail />
    <City>San Jose</City>
    <PostalCode>95053</PostalCode>
    <Region>Santa Clara</Region>
    <Country>US</Country>
    </ShipToAddress>
    </Customer>
    It should be as follows:
    <Customer>
    <CustomerID>1000</CustomerID>
    <CustomerTaxID>65-94238654</CustomerTaxID>
    <CompanyName>World of Business</CompanyName>
    <Contact>MS. Jolene Smith-Kelly</Contact>
    - <BillingAddress>
    <BuildingNumber />
    <StreetName />
    <AddressDetail />
    <City>San Jose</City>
    <PostalCode>95053</PostalCode>
    <Region>Santa Clara</Region>
    <Country>US</Country>
    </BillingAddress>
    - <ShipToAddress>
    <BuildingNumber />
    <StreetName />
    <AddressDetail />
    <City>San Jose</City>
    <PostalCode>95053</PostalCode>
    <Region>Santa Clara</Region>
    <Country>US</Country>
    </ShipToAddress>
    <Telephone>8441212</Telephone>
    <Fax />
    <Email />
    <WebSite />
    </Customer>
    is anyone able to advise?
    Rani

    If you know the changes necessary then you could write an XSL transformation to do them. But a generalized piece of code that examined an XML document and a schema, then produced a corrected document, would be quite difficult to write.

  • How to create a xml output in report 2.5

    Hi
    Please Anyone using reports 2.5 and trying to
    implement XML outputsolutions ?? I have some
    oracle reports that need to produce XML output
    I know that 6i supports XML output. i dont know
    how to do in 2.5. If anyone has done anything similar
    to this, I'd be interested in hearing different solutions?
    Thanks,
    Parthi

    [ajayubbott],
    I am not sure if you should create another folder to house all your servlets when using Java Web Server 2.0.
    The servlet invoker of Java Web Server 2.0 looks at the <server_root directory>/servlets/ directory as the root servlet directory by default and any servlets that is housed under this directory is monitored by the custom class loader provided by Java Web Server 2.0.
    This custom class loader will automatically reload any serlvet class files that are modified i.e. a newer version of the servlet that is newly compiled e.g. change in functionality. What this means is that you don't have restart the web server to reload any new version of the existing servlets on the web server.
    HTH.
    Allen Lai
    Developer Technical Support
    SUN Microsystems
    http://www.sun.com/developers/support/

  • Report XML output fail to load into .RTF layout [EBS r12]

    Hi,
    In EBS r12, we have requirement to have a standard report output in excel.
    I got the report's xml output to create the xml template (.RTF layout) using BI Publisher.
    I created the .RTF layout and it works fine on my laptop using Bi Publisher.. the xml loads into it and i can preview xml data on layout with all format (Excel, PDF...)
    I uploaded the layout to EBS, and assigned it to the standard report.
    I changed standard report out put to XML
    When i go to submit report request, the template is assigned with report and everything seems correct.
    [See screen shot: http://img35.imageshack.us/i/xmlt.jpg/]
    But after i run the report.
    The report is Completed with Warning status.. and output is only XML with Error message :
    This XML file does not appear to have any style information associated with it. The document tree is shown below.
    The Log file says :
    Executing request completion options...
    ------------- 1) PUBLISH -------------
    Beginning post-processing of request 2350601 on node CLONE at 13-APR-2011 09:03:47.
    Post-processing of request 2350601 failed at 13-APR-2011 09:03:48 with the error message:
    One or more post-processing actions failed. Consult the OPP service log for details.
    ------------- 2) PRINT   -------------
    Not printing the output of this request because post-processing failed.
    Finished executing request completion options.
    Why this is happening ? i have done this many times with other standard reports and it worked fine.
    Please advise.
    Standard Report: Supplier Aging Report
    EBS : 12.1.1

    please check the log file and post the output here
    How to find OPP log file?
    To investigate on XML issues or other publishing problems, often the OPP logfile is needed.
    OPP stands for Output Post Processor. Below are the steps to find log file
    1. Login to the application as SYSADMIN
    2. Responsibility: System Administrator
    3. Function: Concurrent --> Manager --> Administration
    4. Select the Output Post Processor
    5. Click on the Processes button
    6. Select the Concurrent Process which was active during the time that the request ran
    7. Click on the Manager Log button to open the Output Post Processor log file

  • In XML Output the values of Number column tags are not displayed properly

    Hi,
    Our Client have been using AR Invoice Print Program for a long time and it is heavily customized. Also they are using an old version of the RDF. So we have taken the latest version of the RDF (RAXINV.rdf) for Oracle Apps 11.5.10.2 by raising a SR and implement Client's old RAXINV.rdf into it.
    All was ok, but when we are running the program, the XML Output did not generate properly. For the Q_INVOICE query (G_ORDER_BY, G_INVOICE and G_INV_TERM group), the value of some of the scaler number columns are not appeared properly. The tags are coming correctly, but the value is appearing as '*', instead of the correct value. We have checked in the RDF Level (By putting srw.message and check in the log file) that those columns are having proper value. So there is no issue with the RDF.
    But because of the above mentioned problem, the some of the PDF output field values also is not generated correctly.
    I think that because of the lexical parameters which was implementing the Q_INVOICE query (&COMMON_QUERY) this issue is coming. Because the issue is only in the Q_INVOICE query group (G_ORDER_BY, G_INVOICE and in G_INV_TERM group) not in any other query group.
    There is no problem with the scaler character columns. The issue is only with the number columns.
    Also we have checked that if we hardcode the value of the number columns in the above mentioned lexical parameter, this problem doesn't appear.
    If we put TO_CHAR function to those number columns in the lexical parameter (COMMON_QUERY), then this issue get solved. But we can't do it because of performance issue and also Client won't approve it.
    Please help.
    With Thanks and Regards

    I don't know how to read the code you pasted or I would have checked this myself.
    Do your fields in the internal table reference dictionary objects or elementary types? If not using dictionary types, the column names will be blank by default. If you can't change your fields to be dictionary types, you can try this to change the column names:
    I made a method inside my local class to add the names:
            call method set_colname
              EXPORTING iv_tab = alv_tab
                        iv_colid = 'xxxx'  "fieldname from the table
                        iv_stxt = text-t54
                        iv_mtxt = text-t55
                        iv_ltxt = text-t55.
    METHOD set_colname .
      data:
              alv_cols type REF TO cl_salv_columns_table,
              alv_col type REF TO cl_salv_column.
      TRY .
    *... Change fieldnames
            call METHOD iv_tab->get_columns RECEIVING value = alv_cols.
            call method alv_cols->get_column EXPORTING columnname = iv_colid RECEIVING value = alv_col.
            IF iv_stxt <> ''.
              CALL METHOD alv_col->set_short_text EXPORTING value = iv_stxt.
            ENDIF.
            IF iv_mtxt <> ''.
              CALL METHOD alv_col->set_medium_text EXPORTING value = iv_mtxt.
            ENDIF.
            IF iv_ltxt <> ''.
              CALL METHOD alv_col->set_long_text EXPORTING value = iv_ltxt.
            ENDIF.
       CATCH cx_salv_not_found.
      ENDTRY.
    ENDMETHOD. "set_colname

  • How to remove default comment from XML output

    Hi,
    I have a requirement to generate the XML report with XML output(Not PDF). Everything is working fine except I am getting one comment line "<!--Generated by Oracle Reports version 6.0.8.28.0--> which is not required and I want to remove this line. This report will be run through Oracle Apps 11i.
    Thanks.

    Hi,
    There is option to change the "Prolog Value" but nothing is there to remove the comment.
    Thanks

  • Adding namespace to XML output

    Hi,
    I have a requirement to generate a XML document for columns in the table. I am using DBMS_XMLgen.getXML inside my procedure to get the XML document.
    The output which i get after executing my procedure is:
    <?xml version="1.0"?>
    <EMP>
    <EMPLOYEE_NO>000017</EMPLOYEE_NO>
    <EMPLOYEE_STATUS>ACTIVE</EMPLOYEE_STATUS>
    <NAME_LAST>Mini</NAME_LAST>
    <NAME_FIRST/>
    </EMP>
    But I also need namespace prefix and namespace uri in this xml output. Is there a way to add namespace prefix and namespace uri to this xml output.
    So what i need is something like below one:
    <?xml version="1.0"?>
    <xs:EMP>xmlns:out="http://xmlns:out="http:/example.org/ver1.0/ThisISTest#">
    <xs:EMPLOYEE_NO>000017</xs:EMPLOYEE_NO>
    <xs:EMPLOYEE_STATUS>ACTIVE</xs:EMPLOYEE_STATUS>
    <xs:NAME_LAST>Mini</xs:NAME_LAST>
    <xs:NAME_FIRST/>
    </xs:EMP>
    Any solutions or sample code on this would be of great help.
    Thanks in Advance.

    Hi,
    IMO, the best option is to use an XSL transformation "on the fly" with DBMS_XMLGEN.
    Here's a stylesheet that should work (change namespace and prefix to yours) :
    <?xml version="1.0"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ns0="http://test">
    <xsl:template match="*">
    <xsl:element name="ns0:{local-name()}">
      <xsl:apply-templates/>
    </xsl:element>
    </xsl:template>
    </xsl:stylesheet>Right now, I only have a 10gR1 at my disposal and the transformation doesn't give expected results (there are a few known issues with XSLT on 10g).
    However, I could test it with an external processor (saxon9he) and it should work OK in 11g too.
    So, in your procedure, all you have to do is declare the XSLT document :
    xsldoc    xmltype := xmltype(
    '<?xml version="1.0"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ns0="http://test">
    <xsl:template match="*">
    <xsl:element name="ns0:{local-name()}">
      <xsl:apply-templates/>
    </xsl:element>
    </xsl:template>
    </xsl:stylesheet>'
    );and bind the stylesheet to the context :
    DBMS_XMLGEN.setrowsettag (messagehandle_xml, 'EMP');
    DBMS_XMLGEN.setrowtag (messagehandle_xml, NULL);
    DBMS_XMLGEN.setmaxrows (messagehandle_xml, 2);
    DBMS_XMLGEN.setNullHandling(messagehandle_xml, DBMS_XMLGEN.EMPTY_TAG);
    DBMS_XMLGEN.setXSLT(messagehandle_xml, xsldoc); -- < here
    ...Let me know if it works :)

  • Oracle Reports with XML output showing data as asterik character

    Hello,
    I'm trying to create an Oracle report with xml output. Here is the issue I'm having some of the columns in my report are of datatype number. When I run the report and generate xml file the values for those columns(datatype number) are showing as (*) character, other columns are showing fine. But when I run the report as text output then data is fine. I don't understand why this is happening.
    The property of column is Column Type - Database Scalar, Datatype - Number , width 0,-127.
    Does the width has to do anything with this?
    I'm using Report Builder 6.0.8.11.3, DB version 10g.
    Can anyone please help me with the issue I'm having.
    Thanks

    If the links in your example report1 and report2
    follow my format stated earlier
    http://machine:port/reports/rwservlet/report=reportnam
    e.rdf&destype=cache& paramform=htmlcss&server=<YourReportSe
    rverName>&userid=scott/tiger@hrdb&desformat=pdf
    This is what I believe
    >
    so http://machine:port/ is the port where
    JBoss is running and
    This should be the port that the report server is listening on
    >
    server=<YourReportServerName> is the name of
    my oracle report server
    so I call the above link in my current application
    and the report would show up
    Yes
    >
    that means (correct me if I am wrong) that my reports
    would have to be deployed in OracleAS
    Yes
    >
    I have to try all this yet as till this point I was
    trying to run Oracle reports deployed in JBoss...
    This may be possible, I am not sure.
    >
    Oracle J2EE Thin Client?
    I am not sure what this is used for in your setup.

  • XML output in Apps instead of PDF

    Hi All,
    I have converted several Oracle reports to XML Publisher and working fine in EBS. The problem I have is that I am getting the XML instead of a PDF output when running a report under Release Sales Orders form(Pick Slip). I am able to preview the PDF output in the XML Admin page using similar XML file.
    I have the concurrent program definition changed to XML from text and XMLP template/data definition configured. Any idea on the issue?
    Best regards,
    MM

    Hi MM,
    Are you still in 11i? Check if the report(Pick Slip) is being submitted thru document set (OM(R)> Setup> Shipping> Documents> Document Sets)… if yes, then you probably need to apply a patch... or have you tried Gareth's solution explicitly calling from report AfterReport trigger?
    Metalink note:
    NEW FUNCTIONALITY: Ability to Execute Document Sets in XML Output Format - Patch 5688014
    Doc ID: 413108.1
    regards,...

  • Characterset definition in XML output

    Hello,
    my issue is the following.
    I have R12 instance with UTF8 database.
    I have defined a data template which looks something like this:
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    - <dataTemplate name="BEGIN" description="Purchase_Orders_Printouts" version="1.0">
    - <parameters>
    <parameter name="PONumber" dataType="character" />
    </parameters>
    - <dataQuery>
    <sqlStatement name="Q1">SELECT poh.creation_date AS po_ord_date, poh.segment1 AS po_nbr, poh.created_by, ppf.full_name AS created_by, povc.first_name || ' ' || povc.last_name AS po_contact, 'VMI-tilaus' AS po_rmks, vnd.segment1 AS po_vend, vnd.vendor_name AS v_ad_name, vnds.address_line1 AS v_ad_line1, vnds.address_line2 AS v_ad_line2, vnds.address_line3 AS v_ad_line3, vnds.state || '-' || vnds.zip || ' ' || vnds.city AS v_ad_line4, fndt1.territory_short_name AS v_ad_country, vnd.segment1 AS po_bill, vnd.vendor_name AS i_ad_name, loc.address_line_1 AS i_ad_line1, loc.address_line_2 AS i_ad_line2, loc.address_line_3 AS i_ad_line3, loc.postal_code || ' ' || loc.town_or_city AS i_ad_line4, fndt.territory_short_name AS i_ad_country, vnd.segment1 AS po_ship, vnd.vendor_name AS d_ad_name, loc.address_line_1 AS D_ad_line1, loc.address_line_2 AS D_ad_line2, loc.address_line_3 AS D_ad_line3, loc.postal_code || ' ' || loc.town_or_city AS D_ad_line4, fndt.territory_short_name AS D_ad_country, FNDT.territory_short_name AS orig_country, --FNDT.territory_short_name AS d_ad_country, POH.ship_via_lookup_code AS po_shipvia, FNDL.meaning AS po_fob, TRMS.name AS ct_desc FROM po_headers_all poh, per_all_people_f ppf, fnd_user fnd, po_vendor_contacts povc, po_vendors vnd, po_vendor_sites_all vnds, hr_locations_all loc, fnd_territories_tl fndt, fnd_territories_tl fndt1, FND_LOOKUPS FNDL, AP_TERMS TRMS WHERE ppf.person_id = fnd.employee_id AND fnd.user_id = poh.created_by AND poh.vendor_site_id = povc.vendor_site_id AND poh.vendor_id = vnd.vendor_id AND poh.vendor_site_id = vnds.vendor_site_id AND loc.location_id = poh.bill_to_location_id AND fndt.territory_code = loc.country AND fndt1.territory_code = vnds.country AND FNDL.lookup_code(+) = POH.fob_lookup_code AND TRMS.term_id = POH.terms_id AND poh.segment1 = :PONumber</sqlStatement>
    </dataQuery>
    - <dataStructure>
    - <group name="PURCHASE_HEADER" source="Q1">
    <element name="sls_language" value="sls_language" />
    <element name="paper_size" value="paper_size" />
    <element name="australian" value="australian" />
    <element name="tcp_ip" value="tcp_ip" />
    <element name="fax_nbr" value="fax_nbr" />
    <element name="fax_dir" value="fax_dir" />
    <element name="email_from" value="email_from" />
    <element name="email" value="email" />
    <element name="arc_dir" value="arc_dir" />
    <element name="arc_file" value="arc_file" />
    <element name="arc_file_type" value="arc_file_type" />
    <element name="data_output" value="data_output" />
    <element name="deljit" value="deljit" />
    <element name="entity" value="entity" />
    <element name="po_buyer" value="po_buyer" />
    <element name="forwarding_agent" value="forwarding_agent" />
    <element name="po_vend" value="po_vend" />
    <element name="v_ad_name" value="v_ad_name" />
    <element name="v_ad_line1" value="v_ad_line1" />
    <element name="v_ad_line2" value="v_ad_line2" />
    <element name="v_ad_line3" value="v_ad_line3" />
    <element name="v_ad_line4" value="v_ad_line4" />
    <element name="v_ad_country" value="v_ad_country" />
    <element name="po_ship" value="po_ship" />
    <element name="d_ad_name" value="d_ad_name" />
    <element name="d_ad_line1" value="d_ad_line1" />
    <element name="d_ad_line2" value="d_ad_line2" />
    <element name="d_ad_line3" value="d_ad_line3" />
    <element name="d_ad_line4" value="d_ad_line4" />
    <element name="d_ad_country" value="d_ad_country" />
    <element name="po_ord_date" value="po_ord_date" />
    <element name="po_nbr" value="po_nbr" />
    <element name="po_contact" value="po_contact" />
    <element name="po_rmks" value="po_rmks" />
    <element name="po_bill" value="po_bill" />
    <element name="i_ad_name" value="i_ad_name" />
    <element name="i_ad_line1" value="i_ad_line1" />
    <element name="i_ad_line2" value="i_ad_line2" />
    <element name="i_ad_line3" value="i_ad_line3" />
    <element name="i_ad_line4" value="i_ad_line3" />
    <element name="i_ad_country" value="i_ad_country" />
    <element name="orig_country" value="orig_country" />
    <element name="d_ad_country" value="d_ad_country" />
    <element name="po_shipvia" value="po_shipvia" />
    <element name="po_fob" value="po_fob" />
    <element name="ct_desc" value="ct_desc" />
    <element name="po_curr" value="po_curr" />
    </group>
    </dataStructure>
    </dataTemplate>
    Now the problem is, that the concurrent request generates XML with UTF-8 specified. And as soon as there are language specific characters the XML fails to parse.
    Is there any way how to force XML publisher to put ISO-8859-1 in the xml specification?
    Thanks,
    Martins

    Hi,
    My Source BLS output is an XML file. In the ValueMap.vmap (in the Meta-Inf when defining the rule) when I click on "Browse Document" it doesn't give me the option to select the source bls's xml output. Please see the sceenshot below. Is there way to sepecify the BLS XMl output here?
    Thanks,
    Latha.

  • Table name in XML output

    Hello Experts,
    My XML output from XI looks like:
      <?xml version="1.0" encoding="UTF-8" ?>
    - <ns0:MT_UPDATE_STATUS xmlns:ns0="http://test.test.ca">
    - <STATEMENTNAME>
    - <dbTableName action="UPDATE">
      <TABLE>stfx.job_copy</TABLE>
    - <access>
      <status1>DONE</status1>
      <status2>DONE</status2>
      </access>
    - <key>
      <jobId>00595593</jobId>
      <status1>NEW</status1>
      <messagenm>d3e98e294bfcd2d5d3e98e29</messagenm>
      </key>
      </dbTableName>
      </STATEMENTNAME>
      </ns0:MT_UPDATE_STATUS>
    However, I need to change the table name being output from stfx.job_copy to stfx.job_history .  How do I do this??? Where is it configured?
    Thanks
    null

    Hi Ahmad,
    That worked - although I see what you mean.  It shouldn't be left like this.
    Back to the original problem.  I currently have XML being generated as follows:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <ns0:MT_UPDATE_STATUS xmlns:ns0="http://test.test.ca">
    - <STATEMENTNAME>
    - <dbTableName action="UPDATE">
    <TABLE>stfx.job_copy</TABLE>
    - <access>
    <status1>DONE</status1>
    <status2>DONE</status2>
    </access>
    - <key>
    <jobId>00595593</jobId>
    <status1>NEW</status1>
    <messagenm>d3e98e294bfcd2d5d3e98e29</messagenm>
    </key>
    </dbTableName>
    </STATEMENTNAME>
    </ns0:MT_UPDATE_STATUS>
    I need to change stfx.job_copy to stfx.job_history.  Now that I am able to edit the IR, I still don't see where stfx.job_copy is hard-coded.  I know it is in message mapping, but when I click on TABLE, I do not see anywhere to change stfx.job_copy.  Any ideas?
    Thanks

  • Xml output for non-built-in types generated by autotype

    Hi,
    I created a wsdl and used the autotype and wsdl2service ant tasks to generate
    java files.
    As part of my service, I want to log output in xml format of the data received.
    I can write my own serialization, or use the code that was generated by autotype.
    I would rather not write my own. I want to use the code generated by wsdl2service.
    Trouble is I can not find a javadoc nor a sample code segment that shows how!
    Call me dense, but I've spent several hours on BEA web pages looking for answers.
    This is what I found, but I could not get to work for various reasons:
    XML streaming: I have a codec (generated by autotype ant task), but it requires
    a SerializationContext. Where do I get a Serialization Context? I think serialize
    is a callout from WS and not for applicaiton code to call.
    javax.xml.rpc.encoding.Serializer: An object of this type is made available by
    AbstractCodec (base class of generated code, but how is this class used?
    [Sorry if you've seen this posting a couple of days ago on interest.xml newsgroup.
    I didn't intend to repost but due to lack of response there, I thought this newsgroup
    was more appropriate and read more.]
    Thanks,
    John

    manoj,
    Thanks for the help.
    Sample 4 tells me that there is no code generated that I can use to write out
    my non-built-in datatype to xml. For each of my non-built-in datatypes, I will
    have to hand write such code, or use a handler.
    John
    "manojc" <[email protected]> wrote:
    Here is an example of start form WSDL usecase:
    http://www.manojc.com/?sample11
    If you want to log the xml input/output to the web service
    you can use a handler. You need to edit the web-services.xml
    dd file to add handler.
    Here is a example of using handler. But this use source2wsdd
    instead of wsdl2service:
    http://www.manojc.com/?sample4
    Regards,
    -manoj
    "John Franey" <[email protected]> wrote in message
    news:3ef30db2$[email protected]..
    Hi,
    I created a wsdl and used the autotype and wsdl2service ant tasks togenerate
    java files.
    As part of my service, I want to log output in xml format of the datareceived.
    I can write my own serialization, or use the code that was generatedby
    autotype.
    I would rather not write my own. I want to use the code generated bywsdl2service.
    Trouble is I can not find a javadoc nor a sample code segment thatshows
    how!
    Call me dense, but I've spent several hours on BEA web pages lookingfor
    answers.
    This is what I found, but I could not get to work for various reasons:
    XML streaming: I have a codec (generated by autotype ant task), butit
    requires
    a SerializationContext. Where do I get a Serialization Context? I thinkserialize
    is a callout from WS and not for applicaiton code to call.
    javax.xml.rpc.encoding.Serializer: An object of this type is madeavailable by
    AbstractCodec (base class of generated code, but how is this classused?
    [Sorry if you've seen this posting a couple of days ago on interest.xml
    newsgroup.>>  I didn't intend to repost but due to lack of response there, I thought>this newsgroup>> was more appropriate and read more.
    Thanks,
    John

  • Payables Account Analysis report takes long time to produce xml output

    Hi,
    I am trying to get xml data for the Payables Account Analysis report. I have changed the output format of the concurrent program to XML.
    The report takes long time to produce the xml data irrespective of the number of rows fetched. But the same report with Text output runs very fast.
    Any reason why the xml output takes long time?
    thanks in advance
    Malathi.

    Hi,
    Thanks for the reply.
    As mentioned above, i deleted the Q_FLEXDATA and ran the report. it takes less time.
    But Will the report data not affected when we delete Q_FLEXDATA Group? and Why this flexdata group affects the running time?
    Thanks,
    Malathi.

Maybe you are looking for

  • How do I get to a menu where I can name each of my kids' iPhones when I use iCloud for 'find my iPhone'?

    My kids each have an iPhone.  I just pay the bill. I set up 'find my iPhone' on my computer so I can use the app as more of a tracking device to locate my kids (they know this).  I must have figured out how to lable the first phone I set up this way,

  • Sorting on Artist

    In iTunes 7.0.2.16 running on Windows XP, if you sort on artist ( in order to keep all there album's together ) and have a soundtrack CD with each track by a different artist it breaks them all up. I have checked "Part of a compilation" in Get Info a

  • Can't open Youtube videos with a left click. Have to open in new tab/window to view.

    When on Youtube, I can't open videos by clicking on them when in the search result page. I have to open them in a new tab or window. All other elements work on the page. Once the video is open in the new tab I am able to play it. Embeded links work.

  • Panther 10.3.9 to Tiger 10.4.7 bought from ebay

    I just took delivery of two 'grey' Apple DVD Tiger 10.4.7 disks (disk 1 and disk 2) bought from a London dealer on Ebay to upgrade our emac 1 GHz PowerPC G4, 512 MB SDRAM. In the 'about this mac' under Hardware ATA it says: Pioneer DVD - RW DVR - 106

  • Rename files and retain portions of the original filename

    I posted a thread about this a while ago, but no solution was given: http://discussions.info.apple.com/thread.jspa?threadID=2564646 The issue is this: I can't figure out how to rename imported files while also retaining part of the original filename.