I am trying to import BPM Project.zip file into Oracle enterpriserepository

I am trying to import BPM Project.zip file into Oracle enterpriserepository from admin tab.
I am getting the following exception. please help if any one know the solution.
Performing import...
Import Failed: Error [100]: An unknown server-side error occurred. Please record stack trace (if available) and contact technical support.
com.flashline.exception.LoggableException: trouble parsing file in import bundle: SampleWScall/activityGuide.agdl
     at com.flashline.cmee.openapi.service.subsystem.impexp.XMLTranslator.decode(XMLTranslator.java:157)
     at com.flashline.cmee.openapi.service.subsystem.impexp.ImportJob.doJob(ImportJob.java:74)
     at com.flashline.cmee.openapi.service.subsystem.impexp.AbstractJob.perform(AbstractJob.java:75)
     at com.flashline.cmee.openapi.service.subsystem.impexp.JobThread.run(JobThread.java:41)
Audit results stored in:
C:\Users\AVINAS~1.YEL\AppData\Local\Temp\import-4705112223687937017.log
Audit for [Import job.] created on [2012-09-24 11:53:59 IST].
2012-09-24 11:53:59 IST - Adding Import job with ID=[50403] to job queue.
Thanks in Advance.

Hi
Why are you trying to import BPM zip file are you trying to configure the out of the box workflows?
They are something that need to be deployed from the process admin on BPM.
There would be the .exp file you would need as its BPM 10g that you would need to use.

Similar Messages

  • Trying to import VMDK and VMX files into Oracle VM

    I was given a copy of a VM built in VMWare with the files in VMDK and VMX formats. I've tried various methods of importing these into OVM x86 with no luck.
    According to this 2009 blog post from Oracle it should be possible (at least with that older release):
    https://blogs.oracle.com/virtualization/entry/converting_linux_and_windows_p
    "Oracle VM Manager allows you to import virtual machines in the VMDK format. When you import VMware virtual machines, Oracle VM Manager converts them to Oracle VM virtual machines automatically."
    I'm runninng OVM server/manager 3.1.1. Is this no longer possible with the new version?

    That is correct, that blog post pre-dates OVM 3.1.1 which is a completely different management interface than OVM 2.x used. To my knowledge VMDKs are not supported automatically, and OVM is now expecting OVF/As.

  • I am trying to import an mp3 audio file into garage band for editing.  drag and drop doesn't work. What now?

    I am trying to import an mp3 audio file into garage band for editing.  Drag and drop does not work. any ideas?

    Try reposting in the Garageband forums. You can find it at:
    https://discussions.apple.com/community/ilife/garageband

  • How to import a BPEL project zip file into jdeveloper?

    This worked for me before, but I seem to be doing something wrong this time.
    I tried the File -> Import ->BPEL process option and navigated to the location of the .bpel file (after I extracted the .zip file contents). But this didn't seem to work as the entire project wasn't imported.

    You'll probably have better luck posting this in the BPEL forum
    John

  • How to Import Garageband projects and files into Cubase for Windows?

    Hi
    I've recently started using Garageband to record my ideas and compositions. I had 2 main questions:
    1. How do I transfer the audio files created in Garageband in a format which will allow me to edit them in Music Software for a Windows based Operating system? Tranferring them to iTunes and then converting them to MP3 doesn't help because then my friends can't edit my guitar parts and other backing tracks.
    Mainly I need to know how to save and import Garageband projects and individual tracks into Cubase/ Cakewalk for Windows so that my band guys can edit the tracks and send me their ideas.
    I'm the only one out of my friends who has an Apple Macbook and most of my band guys still use Windows based Operating systems.
    2. I record my guitars and other instruments using the Digitech GNX4 guitar effects processor as the sound source through USB. While I can record clean guitar without any problem, the moment I switch on the distortions on the GNX 4, there is a loud and constant hum from the speakers. I am therefore not being able to record distorted guitar sounds.
    Please help on this.
    Thanks and hope to hear from you all.
    Cheers
    Prash

    Tranferring them to iTunes and then converting them to MP3
    same as the protools procedure:
    http://www.bulletsandbones.com/GB/GBFAQ.html#openinprotools
    there is a loud and constant hum from the speakers.
    Could be a ground loop problem. Test it using the MacBook on battery power only.

  • Import data from a file into oracle db

    Hello!
    The problem is the following: data within a file must be placed
    into several tables in a oracle server. For that a program has
    to be written. It4s not done with executing a program cause the
    data in the file can vary and depending on different flags the
    import into oracle must be done. Now we tried the classes of
    oo4o to access the db, but this only works for integer values,
    the samples from oracle also only work for integer. We don4t
    need to use oo40, is there a better / other way to write the
    programm ? Has anybody a free sample ?
    Thanx

    ur problem is to import the data from file with different conditions which needs to be taken care programitically
    Pls mail me your file and ur logic
    my id is [email protected]

  • "The importer reported a generic error" when trying to import an After Effects file into Premiere.

    Currently quite new to using both pieces of software - I'm trying to grab a file, either a save or an export, from After effects into Premiere. I've googled around, but I can't find anyone with a similar problem with it being an AE file.
    Just looking for some advice on what to do.

    Okay so I've searched around most of this forum and as much of Google as I could find - I have found similar problems, but nothing exactly the same; and none of the solutions I've found have worked for me. I've seen a lot of people having trouble connecting to the DL server on the file-selection window, but I don't even get that far - an error message just pops up in the middle of my screen - and my error doesn't mention a server, just that it can't connect to AE DL.
    I changed firewall software (which I've wanted to do for months, anyway) and still to no avail.
    As for the "The importer reported a generic error" problem also, I can't find any problems or solutions with After Effects files not being able to be imported.

  • Trying to import from different csv files into multiple JTables

    This might seem like something that isn't commonly done, but I'll see if anyone has done this before anyways.
    I currently have a JTable (tab #1) and it successfully reads in the data from a CSV file to populate the cells. Now, I am looking into making 3 more JTables. I can tab between the four different tables, but I can't seem to figure out how to get the data to go to the correct JTable. Tab #1 = table, Tab #2 = table2, Tab #3 = table3, Tab #4 = table4.
    Thanks.
            try
                FileInputStream fileInput = new FileInputStream ("upcoming.csv");
                BufferedReader InputCSV = new BufferedReader (new InputStreamReader (fileInput));
                line = InputCSV.readLine(); //start reading into the records.
                    //Create data for the table.
                    //the row variable = starting row
                int row = 0;
                while(line != null)
                    tmp = line.split(",");
                    for (int col = 0; col < columnNames.length; ++col)
                        data[row][col] = tmp[col]; //store cells' data to the 2-dimensional array.
                    row++;
                    line = InputCSV.readLine();
                }//end of WHILE-statement.
            } //END of TRY-statement.
            catch(Exception e)
                System.out.println(e);
            }

    I have been successful in my quest to get 4 different datasets into 4 different JTables. The previous posters suggestion to use the Table model led me to this page:
    http://java.sun.com/j2se/1.5.0/docs/api/javax/swing/table/TableModel.html
            TableModel myData = new MyTableModel();
            JTable table = new JTable(myData);I had some very similar code in my program. I use the DefaultTableModel and the SortFilterModel before having 4 different JTables.
            DefaultTableModel model = new DefaultTableModel(data, columnNames);
            DefaultTableModel model2 = new DefaultTableModel(data2, columnNames);
            DefaultTableModel model3 = new DefaultTableModel(data3, columnNames);
            DefaultTableModel model4 = new DefaultTableModel(data4, columnNames);I use the code in the first post 4 times, and only change the filename and the data#.
    I also have some code that counts the number of lines that will be needed.
    Thanks.

  • How do I import a SPSS .sav file into SQL 2008 r2 using SSIS

    Hi there,
    Like the title says, I'm trying to import an SPSS .SAV file into an SQL 2008 R2 database using SSIS.
    I've tried a few things, but i cant seem to get it to work properly. I'm hoping there's someone out there who could point me in the right direction.
    I've tried the following:
    Tried the IBM step by step manual (http://pic.dhe.ibm.com/infocenter/spssdc/v6r0m1/index.jsp?topic=%2Fcom.spss.ddl%2Faccess_odbc.htm)
    --Couldnt folow this guide because I didnt have the SPSS MR DM-2 OLE DB Provider.
    Tried installing the provider using (http://pic.dhe.ibm.com/infocenter/spssdc/v7r0m0/index.jsp?topic=%2Fcom.spss.ddl%2Fdts_troubleshooting.htm) as a guide to download the provider listed (www-03.ibm.com/software/products/nl/spss-data-model).
    --This didnt work, I still could not see the provider listed after install and rebooting the server.
    Tried to get the file as CSV (Company couldnt provide it in CSV or another format)
    The server is a Windows Server 2008 R2 Enterprise 64-bit, has the Data Collection Data Model installed on it with SQL Server 2008 R2.
    If anyone could point me in the right direction they could make my day!
    Thanks in advance!
    Ronny

    Hi Ronny,
    According to your description, you want to import a SPSS .sav file to SQL Server 2008 R2 database. If that is the case, we can achieve this requirement with SPSS or SQL query. For more details, please refer to the following methods:
    http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=93346
    http://ilovespss.blogspot.com/2007/10/migrating-data-from-spss-to-sql-server.html
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Can you still import a 3D photoshop file into After Effects to edit in 3D? (not getting the Live Photoshop 3D choice?)

    trying to import a 3d photoshop file into ae, but it is not coming through as a 3D file despite the hundreds of videos that I have watched on it. I am not getting the live photoshop 3d tick box as an option on import...help!!!

    No, these features have been removed since CS6.
    Mylenium

  • I am trying to import cr2files from the camera into lightroom 5 and keep getting an error message saying Lightroom can not read the files and therefore will not import them.  Has anyone had a similar problem-.thanks

    I am trying to import cr2files from the camera into lightroom 5 and keep getting an error message saying Lightroom can not read the files and therefore will not import them.  Has anyone had a similar problem….thanks

    If you are having the same problem, i.e. a disk permission problem, open your favorite search engine and search on, "change disk permissions", and I think you'll find plenty of information on how to fix the problem. This is a Lightroom forum. Your problem is with your operating system. There is no sense in rewriting instructions that are already available if you do a simple search.

  • How can I import an project .imoviemobile file to imovie 10.0.6 on my mac book for further processing

    How can I import an project .imoviemobile file to imovie 10.0.6 on my mac book for further processing?

    You can't.  (http://www.macworld.com/article/2057972/imovie-for-ios-projects-no-longer-work-o n-the-mac.html)
    Geoff.

  • Error while trying to import a repository data file in the B2Bconsole

    I am trying to import a repository data file with the delivery-channel element
    and attributes as below. <delivery-channel name="GM_DC" syncReplyMode="none" nonrepudiation-of-origin="false"
    nonrepudiation-of-receipt="false" secure-transport="true" confidentiality="false"
    routing-proxy="false" document-exchange-name="GM_DE" transport-name="GM"/> I have
    modified the WLC.dtd present in the lib\dtd subdirectory of the WebLogic Integration
    installation directory to add the syncReplyMode attribute. When i import the xml
    file,i get the following error com.bea.b2b.B2BException: ERROR: Invalid document,
    file 'C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\B2B_COV_Export.xml'. at com.bea.b2b.bulkloader.BulkLoader.processDataFile(Unknown
    Source) at com.bea.b2b.bulkloader.BulkLoader.processDataFile(Unknown Source) at
    com.bea.b2b.bulkloader.BulkLoader.load(Unknown Source)
    Please advise,
    Thanks in advance

    Hello Esther,
    the problem seems to be that the temp folder of the target Integration Builder system can't be found:
    'The system cannot find the path specified
    at [..] FileAccess.getTempDirectory([..])'.
    You'll experience the same problem if you try a file based import or export within the Integration Builder directly.
    I would recommend to continue the search there. You could check if the environment variables (for Windows: TEMP and TMP) of the OS of the system with the target Integration Builder to an existing path. Check also if the WebAs can access this path.
    Good luck
    Frank

  • My original computer that has my itunes account on it no longer works.  I am trying to import my phones itunes settings into my new computer and it is not letting me and I don't want to loose all my photos and music, what do I do?

    My original computer that has my itunes account on it no longer works.  I am trying to import my phones itunes settings into my new computer and it is not letting me and I don't want to loose all my photos and music, what do I do?

    It does not magically appear in a new place.  It will only be where you put it.
    Copy everything from your old computer, or your backup copy of your old computer, to your new one.

  • Error parsing ERwin 7.x File when I  tried to IMPORT repository format xml file in SQl Data Modeller

    This is what i got in the log file when i tried to import a relatively large file 1.7 GB xml file
    Import Finished
    Errors:   1
    Warnings: 0
    <<<<< ERRORS >>>>>
    Error parsing ERwin 7.x File:<File path>
    Please help.

    The error information in the External log file is
    ERROR ERwinHandler - ERwinHandler - Unable to parse ERwin 7.x file: <file path>
    java.lang.OutOfMemoryError: Java heap space
      at oracle.dbtools.crest.model.ModelIDObject.<init>(ModelIDObject.java:46)
      at oracle.dbtools.crest.model.design.DesignObject.<init>(DesignObject.java:111)
      at oracle.dbtools.crest.model.design.ContainedObject.<init>(ContainedObject.java:82)
      at oracle.dbtools.crest.model.design.ContainedObjectWithDomain.<init>(ContainedObjectWithDomain.java:76)
      at oracle.dbtools.crest.model.design.relational.FKElement.<init>(FKElement.java:14)
      at oracle.dbtools.crest.model.design.relational.Column.<init>(Column.java:148)
      at oracle.dbtools.crest.model.design.relational.Table.createColumn(Table.java:432)
      at oracle.dbtools.crest.imports.erwin.ERSAXParserv7x.parseColumns(ERSAXParserv7x.java:1681)
      at oracle.dbtools.crest.imports.erwin.ERSAXParserv7x.parseEntity(ERSAXParserv7x.java:1364)
      at oracle.dbtools.crest.imports.erwin.ERSAXParserv7x.endEntitiesAndAttributes(ERSAXParserv7x.java:994)
      at oracle.dbtools.crest.imports.erwin.ERSAXParserv7x.endElement(ERSAXParserv7x.java:428)
      at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1666)
      at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:458)
      at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:404)
      at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:245)
      at oracle.xml.jaxp.JXSAXParser.parse(JXSAXParser.java:298)
      at oracle.dbtools.crest.imports.erwin.ERwinHandler.parseFile(ERwinHandler.java:252)
      at oracle.dbtools.crest.imports.erwin.ERwinHandler.access$500(ERwinHandler.java:51)
      at oracle.dbtools.crest.imports.erwin.ERwinHandler$Runner.run(ERwinHandler.java:126)
      at java.lang.Thread.run(Thread.java:745)
    2015-02-11 14:38:12,680 [main] INFO  ApplicationView - Oracle SQL Developer Data Modeler 4.1.0.866
    2015-02-11 16:13:44,218 [Thread-33] ERROR ERwinHandler - ERwinHandler - Unable to parse ERwin 7.x file: <file_Path>
    java.lang.OutOfMemoryError: Java heap space

Maybe you are looking for

  • Importing music FROM an external hard drive

    My dance studio has an external hard drive with over 15,000 songs in MP3 format, and I would like to be able to put some of those songs on an iPod. My problem: I do not want double copies of my 15,000 songs (one copy in the external hard drive and on

  • Closed Statement Exception

    hi, I'm using OC4J version "Oracle Application Server Containers for J2EE 10g (9.0.4.3.0) (build 060411.1838)" as my application server running on AIX 5.3 with java version "1.4.1" Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1) Classi

  • Can I revert back to prior mozilla. 6.0 does not load all images

    many websites do not load all pictures and images since I updated to 6.0. Can I undo update?

  • SAP UI 5 and the Efforts issue

    Hi, All We  are exploring building SAP UI 5 applications. It seems to build a web application 1. Need to develop the UI part in SAP UI5 2. To get the data from SAP back-end,  Create first, the function module and then create a odata service using NW

  • Using Swiftmq as the third-party Jms provider in Weblogic11

    Hi, I am using swiftmq as 3rd-party jms provider in wls, however when I am trying to deploy a MDB listening on the queue configed in swiftmq.rar (resource adapter) in wls, it warns that ***MDB is unable to connect to the JMS destination: myforeigndes