The uploaded file XX001.xml is invalid. The file should be in XSD form

Hi all,
i have developed rdf and registered as output xml and
when i am uploading xml file in data defination.
The uploaded file SCCCFA001.xml is invalid. The file should be in XSD format.
i have removed the comments and as well as same error i am geeting.
why xsd format.
oracle apps version r12 1.1.1
word 2007
bipuglisher 10g
Edited by: 979449 on Jan 27, 2013 3:13 AM

>
i have developed rdf and registered as output xml and
when i am uploading xml file in data defination.
>
try:
- create executable as oracle report (your rdf file)
- create concurrent based on above executable and set output as xml
- create data definition (without any file)
- create template (layout of result report) as example in rtf
as example of concurrent based on rdf look at GLWACCTR
use appropriate forum in the next time
E-Business Suite - https://forums.oracle.com/forums/category.jspa?categoryID=3

Similar Messages

  • The uploaded file CPSIDRPT.xml is invalid. The file should be in XML-DATA-T

    can someone explain me why am I getting following error message when I'm trying to upload a data defination file?
    The uploaded file CPSIDRPT.xml is invalid. The file should be in XML-DATA-TEMPLATE format.
    thanks........
    ketki----

    Based on the detail (or lack of) that you have provided, your file is not in the right format.
    Can you open the file in a internet browser? Is it well-formed XML?
    Edited by: SIyer on Dec 1, 2009 4:33 PM

  • Has anyone been able to upload an ibooks file with audio only files (m4a) in it? I keep getting the following error message during the upload in iTunes Producer: ERROR ITMS-9000: "Files of type audio/x-m4a are not allowed outside of widgets.

    Has anyone been able to upload an ibooks file with audio only files (m4a) in it? I keep getting the following error message during the upload in iTunes Producer: ERROR ITMS-9000: "Files of type audio/x-m4a are not allowed outside of widgets. then it names the file as an m4p file. Everything works beautifully on the iPad through Preview, and validates through iTunes Producer up until the attempted upload. If you've been able to accomplish this, please let me know how you prepared your audio files. Many thanks.

    Hello Fellow iBook Authors!
    Today I received the same error that you all have been discussing.  I tried selecting the DRM
    and this did not work for me, though I'm glad it did for some.  Here's what I did as a work-around. . .
    Since iBooks Author did not have a problem with Videos, I simply used one of my video programs, ScreenFlow to turn the audio into a video file m4v.  I added an image and extended the length or timing of the image to span the length of the audio file.  Then exported as an .mov.  I then opened QuickTime and opened the file and exported the file to iTunes. 
    You can use iMovie, Camtasia or any other progam that will allow you to export the audio as a movie file.  Does this make sense?  I hope this helps, at least in the short-term.
    Michael Williams

  • I am trying to install Adobe Premiere Elements 9 without success. I successfully installed Photoshop Elements 9 without a problem. The message I am getting is 'Invalid Unicode file - .\Autoplay\LangData\en_US\lang.dat'. Anyone out there who can help pleas

    I am trying to install Adobe Premiere Elements 9 without success. I successfully installed Photoshop Elements 9 without a problem. The message I am getting is 'Invalid Unicode file - .\Autoplay\LangData\en_US\lang.dat'. Anyone out there who can help please?

    click setup, not autoplay.

  • A friend of mine downloaded an app from the internet onto my iPod Touch 4 so I could play pokemon on my iPod, I deleted the app but now iTunes and the App Store won't open, they say that the certificate for this server is invalid. What should I do?

    A friend of mine downloaded an app from the internet onto my iPod Touch 4 so I could play pokemon on my iPod, I deleted the app but now iTunes and the App Store won't open, they say that the certificate for this server is invalid. What should I do?

    Try:
    Why does my iPod 4th generation say the certificate for this server is invalid when trying to access iTunes? I've never had an issue until this recently.

  • Getting error The uploaded file BSDM_FROZEN_WORKBENCH.xml is invalid. The file should be in XML-DATA-TEMPLATE format.

    the file looks to be in the correct format and I have created similar data definitions--can anyone see something that I am missing?
    any help is very appreciated

    Via a XML Editor the following is signalled...
    <element name="supply_qty_37                    
    dataType="NUMBER" 
    value="supply_qty_37"/>
    Required white space was missing.
    You are missing the double quote after supply_qty_37
    Correct it into
    <element name="supply_qty_37"                    
    dataType="NUMBER" 
    value="supply_qty_37"/>
    ...and your XML file is wellformed.

  • IDOC to Flat File and XML ( Need both the Output)

    Hi ,
    My Scenario is IDOC to File .
    I need o/p in 2 format . ie,    1) Flat File 2 ) XML file
    I have a plan to go with Interface determination , 2 IM and what shd be the condition ?
    or Else  2 Receiver detmination  but condition ?
    How to slove this ?
    Need the Output from Idoc in 2 format ( Flat file and XML file )
    Any Blog , Thread ...Tips...etc
    Regards,
    Jude

    Hi Jude,
    Do like this:
    1. Create two inbound Service Interface (with the same target Message Type)
    2. Create separate Operation mapping with the above service interfaces as target (with the same source service interface)
    3. Create Interface Determination and include these two operation mapping (without any condition)
    4. Create 2 receiver agreement (with two separate communication channel) for each of the target service Inetrface. In one channel use content conversion and the other one will give you normal XML output
    Regards
    Suraj

  • I am not getting the upload poin and recipient feilds in the PO.

    Hi Friends,
    When i am converting a  Purchase Order with reference to Purchase Requisition with account assignment cat = network  and uploading point field data and recipient data  and the item type D ,we are not getting uploading point data and recipient data.
    for this i used BADI ME_PROCESS_PO
    and the INTERFACE    IF_EX_ME_PROCESS_REQ
    I REALLY DONT NO HOW TO USE METHODS AND HOW TO WRITE A CODE IN THAT PLEASE HELP ME TO GET THE VALUES OF UPLOADING POINT AND RECIPIENT FIELDS DATA SHOULD POPULATE IN PURCHASE ORDER WITH RESPECT TO THA PURCHASE REQUISITION.
    HELP ME WITH SUITABLE CODE FOR THE METHOD...
    THANKS IN ADVANCE ........
    UPENDAR G

    I would just like to add to Billy's remarks: PL/SQL exception management is not just a language function, it also affects the database itself.
    If you "swallow" exceptions, you have defeated the language and you have probably also corrupted data.
    Why do I say this? Because PL/SQL exceptions cause changes in the data to roll back. If you "swallow" the exception, whatever changes you made before the error happened will not be rolled back. This is a huge threat to transactional integrity.
    Here is a demonstration:SQL> create table t(k number);
    table T created.
    SQL> begin
    insert into t values(1);
    insert into t values('a');
    end;
    Error starting at line 6 in command:
    begin
    insert into t values(1);
    insert into t values('a');
    end;
    Error report:
    ORA-01722: invalid number
    ORA-06512: at line 3
    01722. 00000 -  "invalid number"
    *Cause:   
    *Action:
    SQL> select * from t;
    NO ROWS SELECTEDYou see, the "correct" insert into table t was rolled back automatically. This ensures the "all or nothing" property of transactions called "atomicity".
    Now look what happens if you "swallow" the exception:SQL> begin
    insert into t values(1);
    insert into t values('a');
    EXCEPTION WHEN OTHERS THEN NULL;
    end;
    anonymous block completed
    SQL> select * from t;
    K
    1The first insert is not rolled back, so if the calling program commits you will have changed data without respecting transaction boundaries.

  • Not overriding the coherence-cache-config.xml but showing the error...

    Hi,
    I have created a file called tangosol-coherence-override.xml file in the specified path which is " C:\Program Files\Oracle\Coherence for .NET"
    and the coherence.jar file is located in path which is "C:\Program Files\Oracle\Coherence for .NET\lib"
    but it is not overriding the xml file.. with the default file...
    C:\Program Files\Oracle\Coherence for .NET\examples\ContactCache.Java>"C:\Progra
    m Files\Java\jdk1.6.0_11\bin\java" -server -showversion -Xms128m -Xmx128m -Dtang
    osol.coherence.ttl=0 -Dtangosol.coherence.cacheconfig=contact-cache-config.xml -
    cp "config;lib\custom-types.jar;C:\Program Files\Oracle\Coherence for .NET\lib\c
    oherence.jar" com.tangosol.net.DefaultCacheServer
    java version "1.6.0_11"
    Java(TM) SE Runtime Environment (build 1.6.0_11-b03)
    Java HotSpot(TM) Server VM (build 11.0-b16, mixed mode)
    2011-06-20 15:06:57.607/2.366 Oracle Coherence 3.7.0.0 <Info> (thread=main, memb
    er=n/a): Loaded operational configuration from "jar:file:/C:/Program%20Files/Ora
    cle/Coherence%20for%20.NET/lib/coherence.jar!/tangosol-coherence.xml"
    2011-06-20 15:06:57.989/2.748 Oracle Coherence 3.7.0.0 <Info> (thread=main, memb
    er=n/a): Loaded operational overrides from "jar:file:/C:/Program%20Files/Oracle/
    Coherence%20for%20.NET/lib/coherence.jar!/tangosol-coherence-override-dev.xml"
    2011-06-20 15:06:58.049/2.808 Oracle Coherence 3.7.0.0 <D5> (thread=main, member
    =n/a): Optional configuration override "/tangosol-coherence-override.xml" is not
    specified
    2011-06-20 15:06:58.062/2.821 Oracle Coherence 3.7.0.0 <D5> (thread=main, member
    =n/a): Optional configuration override "/custom-mbeans.xml" is not specified
    Oracle Coherence Version 3.7.0.0 Build 23397
    Grid Edition: Development mode
    Thanks in Advance

    The CLASSPATH is not the same as the PATH. It is similar but a classpath is a set of directories or jar files that Java uses to look for executable code and resources.
    Assuming you are using the example start-cache-server.cmd file that comes with the .Net examples to start your server you can put the tangosol-coherence-override.xml file into the C:\Program Files\Oracle\Coherence for .NET\examples\ContactCache.Java\config directory as this is on the classpath when using that script.
    JK

  • Dynamically rename the root node of XML based on the child elements

    Hi Gurus,
    Is there any way to rename the root node of the resultant XML after a mapping based on the child elements.
    For ex:
    consider the following resultant XML after mapping
    <result>
    <element1> </element1>
    <result>
    if the element1 is <type> then the output should be
    <category>
    <type> </type>
    </category>
    elseif the element1 is <character> then the output should be
    <property>
    <character> </character>
    </property>
    Let me know how to do this, either in XSLT or in Graphical mapping.
    Thanks,
    Prabu

    Hi, Prabu:
    In this case, I am suggest you have Src and Tar Message.
    I am suggesting you create another type of message using key / value pair as I suggested, e.g. called Mid Message.
    My solution for you is to have two message mappings:
    1. Src -> Mid
    2. Mid -> Tar.
    In first mapping, you have no control of the structure, but you can map it to Mid structure:
    e.g.
      if Type node Exist, then map 'Type' to Key, as Key/Value can be creatd under a parent node with 0:1 Occurrence.
      saying item.
       in this case, a new item created.
    If you think of this way, any xml file can be represted in this way:
       <Employee>
          <Fname>David</Fname>
          <Lname>Miller</Lname>
       </Employee>  
       <Employee>
          <Fname>Steve</Fname>
          <Lname>Mai</Lname>
       </Employee>   
    Can be interpretd as this way:
       <Employee>
          <Element>
             <key>Fname</Key>
             <value>David</Value>
          </Element>
          <Element>
             <key>Lname</Key>
             <value>Miller</Value>
          </Element>
       </Employee>  
       <Employee>
          <Element>
             <key>Fname</Key>
             <value>Steve</Value>
          </Element>
          <Element>
             <key>Lname</Key>
             <value>Mai</Value>
          </Element>
       </Employee> 
    Now you should understand what I mean.
    In your case target structure have to desgined as following way:
    You need to put Category and Property together with their sub-structure in parallel, make occurence to 0:1
    In your second mapping, you can check the key value is "Type" or "Character", based on which one is true,
    you create corresponding structure: either Categary or Property.
    Regards
    Liang
    Edited by: Liang Ji on Oct 22, 2010 8:31 PM
    Edited by: Liang Ji on Oct 22, 2010 8:35 PM

  • Auotmate the upload of HTS xml file in GTS?

    Hello Every one
    We receive weekly update of new HTS code files from Customs Info to upload in GTS system. Currently we go to Customs Info FTP and then download the HTS xml file and then  Manually upload through transaction /SAPSLL/LLNS_UPL102.
    Can we automate this process through batch job. Kindly suggest.
    Thanks in Advance
    Best Regards
    Kiran Thakkar

    Hi Kiran,
    I think this is possible and I have seen similar solutions in the past.
    I suppose it depends on how much of the process you would like to automate.
    For the whole process to be automated I think you would need some non-ABAP programs and also some input from the Customs Info. website.
    But if we had a user download the file then it would be easier to trigger automatic upload from that point on wards.
    User could always make sure to download the file to a certain folder on the application server.
    You would then need to write a modification or custom program that checks that folder for new files. If it finds a new file then it triggers the background job.
    Or you could set the background job to run every hour, day, week or however you like.
    First step of that job is your custom program to check the application folder
    Second step is to run /SAPSLL/LLNS_UPL102 in background with the new file
    If the first step fails then no upload occurs and the batch job finishes.
    But overall I think you should ask yourself how often you think you will need to upload files from Customs Info?
    Is an automated process really necessary?
    Please keep in mind that any modifications or customs programs will not be supported by SAP.
    If there is a problem with the new process, SAP will ask you to run the process in the standard way. If the standard way works correctly then SAP Support would no longer be able to help.
    Best Regards,
    Eoin

  • How to get back all the uploaded iphotos from icloud after resting the macbook to its original settings

    Hi Team,
    I have reinstalled my Operating system  and prior to that ihave  uploaded my all the photos and videos to icloud from iphoto and now ,my mac book air is reinstalled and installed iphoto as well.. i could not see any photos in it,,
    is there a way to retrive them back
    Please help me out if there is a way.
    Thanks & Regards,
    Srinivas Talasila

    and prior to that ihave  uploaded my all the photos and videos to icloud from iphoto
    Which part of iCloud are you referring to? iCloud Drive? iCloud Photo Library Beta? My Photo Stream? Shared Photo Stream?

  • The uploaded file .xml is invalid. The file should be in XSD format.

    hi ,
    when i am trying to upload a data definition file .ie salesinvoice.xml through oracle XML Publisher , i get the error message "The uploaded file salesinvoice.xml is invalid. The file should be in XSD format."
    i tried attaching other xml files also and i get the same error message. don't know how to fix this . the rtf files i can attach without and problem.
    thanks in advance
    manohar

    This totally worked for me. Strange enough, any heads-up on whether this has been patched or not for versions 12.0 + ?
    Edited by: user8961526 on Nov 22, 2010 12:24 PM

  • Hello Anybody, I have a question. Can any of you please suggest me how to make an xml file from the database table with all the rows? Note:- I am having the XSD Schema file and the resulted XML file should be in that XSD format only.

    Hello Anybody, I have a question. Can any of you please suggest me how to make an xml file from the database table with all the records?
    Note:- I am having the XSD Schema file and the resulted XML file should be in that XSD format only.

    The Oracle documentation has a good overview of the options available
    Generating XML Data from the Database
    Without knowing your version, I just picked 11.2, so you made need to look for that chapter in the documentation for your version to find applicable information.
    You can also find some information in XML DB FAQ

  • Convert the flat file to xml format.

    hi,
    I need to write a interface program in the R/3  to pull the flat file data from the unix application server and do some manipulation and place back into the unix application server in XML format, From the unix box XML file taken by the XI server.
    pls give me some idea to convert the flat file to XML format, through any function module or any other logic is there...
    with regards,
    Thambee.

    Hi Thambe
    in addition to the above posts
    Program to convert flat file to XML file.
    please download tool from this link:
    http://www.download.com/Stylus-Studio-2008-XML-Enterprise-Suite/3000-7241_4-10399885.html?part=dl-StylusStu&subj=dl&tag=button&cdlpid=10399885
    how to use:
    http://www.stylusstudio.com/learn_convert_to_xml.html
    http://www.sap-img.com/abap/sample-xml-source-code-for-sap.htm
    Flat file to XML
    CONVERTION OF FLAT FILE TO XML : NO OUT PUT FOUND
    Converting Idoc flat file representation to XML
    how to convert flat file into IDOC-XML
    Thanks
    sandeep sharma
    PS ; if helpful kindly reward points

Maybe you are looking for

  • How can I change my email address in Apple Discussions?

    I need help with another question about confusing, obtuse Apple programing, specifically the Apple Website Discusion Forum itself. For one thing – I didn't see a forum set up to ask questions about the Apple Support Discusion Forum. I'd say it's an i

  • Error in run oracle form

    hi all:- i have an error when i run a simple form this return an error in oc4j configuration when i run the form , it open the explorer(firefox) for one second and close and return the following error in oc4j:- 09/09/13 11:37:04 FormsServlet init():

  • Can't see my phone number on iMessages anymore

    cant see phone number on ipod imessages any more

  • Commission Agent in COPA

    Hi, 1. How do we bring the field Commission Agent from Sales Order to COPA. 2. How would this be populated against the billing document? I have identified the table VBPA and the field PARVW. However, there are 4-5 values available in that table (bill

  • Brightness controller missing in nokia asha 311

    Still after update to 7.36 1:brightness controller missing. 2:un-neccesary apps added. 3:no features improved except camera 4:touch-OK