Junk after document element

"Junk after document element"—what does that error message mean.
InCopy (.icml-file) size is 4 MB. We do some minimal text-corrections in InCopy and after check-in the .icml-file-size is 8 MB and the file is defect.
No help from Adobe support available ! ?
Thanks Andy

add, where you want apex to stop generating code,
apex_application.g_unrecoverable_error := true;example:
htp.init;
wwv_flow.g_page_text_generated := true;
INV_INVOICES_BLOB_DISPLAY(p_image=>:REQUEST);
apex_application.g_unrecoverable_error := true;had most problems when displaying pure XML, apex added junk in the end of file.

Similar Messages

  • Junk after document element error message

    I have one production team that gets this message about 2 to 3 times per month when they try to update an Incopy story. I have figured out how to fix the file (deleting some bad XML code), but does anyone know why this keeps happening? I have other teams that get this once in a while, but this team gets it all the time. Thanks.

    I think that xml is not well formed.
    Add tag at start to begin and to the end of xml string like "<a>" +xmlstring +"</a>"
    bye

  • "The stylesheet does not contain a document element" error

    Hi,
    I'm using Hyperion Financial Management 11.1.1.3
    I successfully created intercompany transactions but when I select the "auto match" to perform the matching process, the running task page ensure that the process is completed successfully. However, when I press "log" I found the following error:
    Error Number:-2147467259
    Error Description:The stylesheet does not contain a document element. The stylesheet may be empty, or it may not be a well-formed XML document.
    Error Source:msxml6.dll
    Page On which Error Occurred:/hfm/Administration/ShowRunningTaskLog.asp
    My environment is win server 2003 on a VM and EPM 11.1.1.3
    Thank you and best regards,
    Ahmed.

    Hi taku,
    Yes I've solved my issue.
    Firstly, make sure that the entities and accounts used in the Intercompany Transaction are allowed for ICP in the metadata file by setting the attribute "IsICP=Y" to yes.
    Then, after you press the "Match" button, wait until the process finished and don't open the log. Just close the running task page, after the status showed that it is completed, and open the "process IC transactions" page again you will find the square sign becomes green which means that the transactions are matched.
    I followed the following example on Oracle by Example [http://www.oracle.com/technetwork/middleware/financial-management/tutorials/mictrans-094190.html?ssSourceSiteId=otncn]
    It's about "Managing Intercompany Transactions in Financial Management".
    I wish you can solve your issue soon.
    Best wishes,
    Ahmed.

  • 925685 - Approval process is not triggered after documents are added

    Hi there,
    I was wondering if anyone found already a solution for the following problem.
    According to SAP Note: 925685 - Approval process is not triggered after documents are added.
    Within our SAP application, we want to approve purchase orders for departments based upon the document total.
    I was very astonished that employees are able to add a PO which will not trigger an approval stage and after the document is added, they have the possibility to change the document and at the update moment no approval will be started even if the document meets the approval requirements.
    Therefore I really want the flexibility to give users the possibility to change their PO.
    Meanwhile, documents which are added under approval, are also locked for changes, although this is another question it is also pretty annoying!
    I hope anyone has already found a method or work around for the stated problems above.
    (We are using SAP 8.8 PL 20)
    Thanks in advance.
    Kind regards,
    Marcel

    Hi Kambadasan,
    Thank you for your reply
    I'm sorry but I know how the approval templates work and they are configured correctly, however as SAP also mentioned in their own Note, this is due to the lack of SBO that SAP has such behaviour.
    Hi Gordon,
    Thanks for your reply.
    Unfortunately I have not found the post you mentioned...
    I will post my issue alson on the topic you mentioned.
    Hopefully they found a solution or maybe version 8.81 will solve the problem.
    Thanks a lot!!
    Kind regards,
    Marcel

  • Performance of extracting document elements

    I have a container with about 100,000 documents, of which several elements are indexed. When I run a query like this:
    for $lead in doc('dbxml:leads.dbxml/31308')/als:auto-lead-service
    return <lead attempts="{$lead/@processing-attempts}"/>
    the query returns in about 260ms.
    If I change the query to include many more document elements, like this:
    for $lead in doc('dbxml:leads.dbxml/31308')/als:auto-lead-service
    return
    <lead attempts="{$lead/@processing-attempts}"
         lead-date="{$lead/@created}"
         first-name="{$lead/star:SalesLead[1]/star:Header[1]/star:IndividualProspect[1]/star:PersonName[1]/star:GivenName[1]}"
         last-name="{$lead/star:SalesLead[1]/star:Header[1]/star:IndividualProspect[1]/star:PersonName[1]/star:FamilyName[1]}"
         address="{$lead/star:SalesLead[1]/star:Header[1]/star:IndividualProspect[1]/star:Address[1]/star:AddressLine[1]}"
         lead-city="{$lead/star:SalesLead[1]/star:Header[1]/star:IndividualProspect[1]/star:Address[1]/star:City[1]}"
         lead-state="{$lead/star:SalesLead[1]/star:Header[1]/star:IndividualProspect[1]/star:Address[1]/star:StateOrProvince[1]}"
         lead-zip="{$lead/star:SalesLead[1]/star:Header[1]/star:IndividualProspect[1]/star:Address[1]/star:PostalCode[1]}"
         lead-email="{$lead/star:SalesLead[1]/star:Header[1]/star:IndividualProspect[1]/star:Contact[1]/star:EMailAddress[1]}"
         lead-phone="{$lead/star:SalesLead[1]/star:Header[1]/star:IndividualProspect[1]/star:Contact[1]/star:Telephone[1]}"
         lead-source="{$lead/als:id[@source eq 'autoleadservice.com:source']}"
         lead-type="{$lead/als:meta[@key eq 'com.autoleadservice.LeadType']}"
         lead-subtype="{$lead/als:meta[@key eq 'com.autoleadservice.LeadSubType']}"/>
    the query takes about 8 seconds to run.
    Some of these elements are indexed. If I change the query to return only elements that are not indexed, like this:
    for $lead in doc('dbxml:leads.dbxml/31308')/als:auto-lead-service
    return <lead
         first-name="{$lead/star:SalesLead[1]/star:Header[1]/star:IndividualProspect[1]/star:PersonName[1]/star:GivenName[1]}"
         last-name="{$lead/star:SalesLead[1]/star:Header[1]/star:IndividualProspect[1]/star:PersonName[1]/star:FamilyName[1]}"
         address="{$lead/star:SalesLead[1]/star:Header[1]/star:IndividualProspect[1]/star:Address[1]/star:AddressLine[1]}"
         lead-city="{$lead/star:SalesLead[1]/star:Header[1]/star:IndividualProspect[1]/star:Address[1]/star:City[1]}"
         lead-state="{$lead/star:SalesLead[1]/star:Header[1]/star:IndividualProspect[1]/star:Address[1]/star:StateOrProvince[1]}"
         lead-zip="{$lead/star:SalesLead[1]/star:Header[1]/star:IndividualProspect[1]/star:Address[1]/star:PostalCode[1]}"
         lead-email="{$lead/star:SalesLead[1]/star:Header[1]/star:IndividualProspect[1]/star:Contact[1]/star:EMailAddress[1]}"
         lead-phone="{$lead/star:SalesLead[1]/star:Header[1]/star:IndividualProspect[1]/star:Contact[1]/star:Telephone[1]}"
         />
    The query returns in about 260ms again.
    From the query plan when indexed elements are included, it looks like BDB is performing a full index lookup for each indexed element, does that sound correct? Is there a way to force BDB to not use the index?

    Hi Raghu,
    This issue is being handled through Metalink.
    Regards,
    Andrei Costache

  • Can't output text before document element?

    Hello,
    When I try to run my template, which is programmed in Java and which is supposed to extract information from XML-File, I use a XSLTInputSource interface. But the compiler send the following message:
    org.xml.sax.SAXException: Warning: can't output text before document element! Ignoring...
    Can anyone explain me, what this Exception means?
    Thanks
    RudiRatte

    The XML-File is in a database, which I can't access.

  • Parse file without xml specification or document element

    I have a large (600mb) log file that is in xml format but it does not have an xml specification and has no document element.
    file looks like this:
    <message>...</message>
    <message>...</message>
    <!-- ... many many many more <message> elements -->
    <message>...</message>
    <message>...</message>
    I have written a class that overrides the SAX DefaultHandler but now want to be able to parse the document without having to add the xml spec and document element manually.
    I've thought about writing a subclass of FileReader that adds the xml specification and document element before reading physical file but would also need to add closing document element at end of file.
    Is there a simpler way?

    Hi,
    There is another way around the problem of adding a missing root node. This involves adding an extra DTD file and a xml file, like this one:
    <?xml version='1.0' encoding='UTF-8' standalone="no"?>
    <!DOCTYPE messageSet SYSTEM "logfile.dtd"
    [<!ENTITY data SYSTEM "logfile.xml">]
    >
    <messageSet>
    &data;
    </messageSet>
    This file "includes" the logfie.xml, as an external entity, with your messages as child nodes of element messageSet.
    In your program you refer to this xml file when parsing the messages.

  • After installing elements 11 and using the editor, it will not reopen

    after installing elements 11 and using the editor, it will not reopen

    You know that you lost the layers when you saved it as a jpeg, right? But you're saying you can't add layers to the jpeg now when it's open in the editor? Go to Image>mode and be sure it's RGB, for starters. Are all the commands in the Layer menu grayed out?

  • After Photoshop Elements quit working for the second time in three months, I uninstalled it and now cannot get it to reinstall from the disc. Nothing happens when I insert the disc. All I can do is look at the folders and files and see nothing that tells

    After Photoshop Elements quit working for the second time in three months, I uninstalled it and now cannot get it to reinstall from the disc. Nothing happens when I insert the disc. All I can do is look at the folders and files and see nothing that tells me how to start the installation. Clicking "open with Auto play" gives me irrelevant options, view photos, share, etc. I'm running Windows 8. This program has worked, although buggy, for the past year.

    reinstall by clicking setup on your disk or downloading and installing,
    Downloads available:
    Suites and Programs:  CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • Using Lightroom 3.2 After installing Elements 12

    After installing Elements V12 I am no longer able to activate Lightroom V 3.2.
    Message comes up: Application error and gives this (0xc000007b) in the text.
    Is there a solution?

    AlteKocker wrote:
    I suspect that these files were originally in a Windows folder. How did they get removed?
    Some software called iLivid was a common theme in many of the cases of that error.  Other than that, who knows!

  • PE 9 will not load after installing Elements 10

    Installed Elements 10 on Vista 64-bit.  Did not uninstall Elements 9.  Now PE 9 will not load; get window Adobe Premiere Elements.exe - No Disk.  There is no disk in the drive. Please insert a disk into drive\Harddisk2\DR2.  Tried disk 2 of 3 from package, nothing happens.

    Tried twice, PE9 still locked up both times - I think the intent is to have me try PE10, because that did work!!!
      From: Steve Grisetti
      Sent: Monday, January 02, 2012 7:09 PM
      To: cptiger
      Subject: PE 9 will not load after installing Elements 10
            Re: PE 9 will not load after installing Elements 10
            created by Steve Grisetti in Premiere Elements - View the full discussion

  • After installing elements 11 will the plug-in i use in elements 10 still work

    After installing Elements 11 will I still be able to use the plug-ins i used in 10?

    You can review this post on how you can load plugins by default on launch time
    http://blogs.adobe.com/pselements/load-plug-ins-at-launch-of-photoshop-elements/
    Thanks,
    Garry

  • Should I uninstall Elements 11 after installing Elements 12?

    Should I uninstall Elements 11 after installing Elements 12?

    You don't have to and if you use any of the features removed in v12 (http://forums.adobe.com/thread/1302663?tstart=0) you might want to keep it.
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct and/or helpful accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

  • User Exit  with call up after document splitting in New GL.

    Hello,
    I am looking for a user exit which is called up after document splitting and before final posting to FI. We are implementing Ecc 6.0 and wish to change functional area on gl line item based on values in cost center.  However, this change/redetermination of functional area also needs to be done on documents which have been split.  Splitting is at profit center level.
    Regards
    Jayesh.

    Hi Gordon,
    Yes, by a little piece of ABAP.
    I have created a Z table and configured by co.code and document type. Add a little bit of code in the badi FAGL_3KEH_DEFPRCTR.
    Hope it helps.
    Thanks,
    Srini

  • After downloadong Elements 11 from Staples, where is the serial number?

    After downloadong Elements 11 from Staples, where is the serial number?

    Have you tried going to http://www.adobe.com/go/getserial/ and entering your redemption code?  You can find more details regarding the redemption code process at Serial number retrieval process FAQ | Point-of-sale activation products - http://helpx.adobe.com/x-productkb/policy-pricing/serial-number-retrieval-process-faq.html.

Maybe you are looking for