Problem exporting then importing application

I created a simple htmldb application with a report page, and an insert/update/delete form. I exported it to a file, deleted the application and re-imported. Now it doesn't work properly. To be more specific, I had to recreate the authentication scheme which wasn't a big deal but now I can't see any of the controls when the application runs. I don't know much about htmldb but it looks like certain template things are gone. Why can't the application be re-imported to a working state?? Should I have done it differently?

Nick,
You are most likely running into one of the problems described in this thread:
Re: Problem with importing HTML DB applications
Sergio

Similar Messages

  • Can I duplicate a RAW image as a JEPG without exporting then importing?

    I would like to duplicate a RAW image as a JPEG. Is this possible to accomplish within the Aperture library without  exporting then importing?

    No, it is not.
    "RAW" describes a family of proprietary sensor-data file formats.  If you want a JPG file, you must create it.  "Export", in Aperture, means "Make me a file of this Image according to these settings in this Image Export Preset".  You make JPG files by exporting Images and selecting JPG (and other settings) in the Image Export Preset.
    If you supply some more information on what you are trying to do, we might be able to help you.  You question comes up often from users trying to do something larger, but I can't tell what from the information you've given.

  • SQL Developer 2.1: Problem exporting and importing unit tests

    Hi,
    I have created several unit tests on functions that are within packages. I wanted to export these from one unit test repository into another repository on a different database. The export and import work fine, but when running the tests on the imported version, there are lots of ORA-06550 errors. When debugging this, the function name is missing in the call, i.e. it is attempting <SCHEMA>.<PACKAGE> (parameters) instead of <SCHEMA>.<PACKAGE>.<FUNCTION> (parameters).
    Looking in the unit test repository itself, it appears that the OBJECT_CALL column in the UT_TEST table is null - if I populate this with the name of the function, then everything works fine. Therefore, this seems to be a bug with export and import, and it is not including this in the XML. The same problem happens whether I export a single unit test or a suite of tests. Can you please confirm whether this is a bug or whether I am doing something wrong?
    Thanks,
    Pierre.

    Hi Pierre,
    Thanks for pointing this out. Unfortunately, it is a bug on our side and you have found the (ugly) "work-around".
    Bug 9236694 - 2.1: OTN: UT_TEST.OBJECT_CALL COLUMN NOT EXPORTED/IMPORTED
    Brian Jeffries
    SQL Developer Team

  • Exporting and importing applications/workspaces

    I am currently on a testing workspace and want to put the application/workspace to another workspace. I know the export and import commands but my concern is the application import. The application is linked to a sample table caled "Samp" and now I would need to link it to a table called "test". This table is almost eactly the same as "Samp" witht he exeption of 2 or 3 new columns. I am wondering what I need to do to change the link to the new table and whether the application will still work.
    Thanks

    "419008",
    In cases like this, where I know the table name is going to be different across HTML DB instances, what I usually do is create a view on top of the table, and then build my HTML DB applications against the view. Then, assuming the definition of the tables are the same, it should work without further modification.
    So in your testing workspace you could have:
    create view foo as select * from Samp
    and in your other workspace you could have:
    create view foo as select * from test
    Joel

  • Export then Import to a different Hyper-V server

    In http://social.technet.microsoft.com/Forums/en-US/winserverhyperv/thread/85dc7d36-491f-4b02-88ac-63c1ed0d94db I described a problem when exporting from a Hyper-V server and trying to import into a different Hyper-V server in a different domain. The import failed and the event log contained:
    Failed to import the virtual machine from import directory 'D:\HV\Test\Test4GB-3\'. Error: One or more arguments are invalid(0x80070057)Well I've now identified the source of the problem. In the .exp file is:
    <INSTANCE
      CLASSNAME="Msvm_VirtualSystemGlobalSettingData">
      <PROPERTY NAME="ScopeOfResidence" TYPE="string">
        <VALUE>
          e7668fbc-216e-4ed1-8ce3-3b932b42e22b
        </VALUE>
      </PROPERTY>
    If I edit the .exp file and delete the <value>..</value> then the virtual machine imports with no errors.
    Looks like a Hyper-V bug to me!
    JR

    We are not planning to fix this for Windows 2008 at the moment - as SCVMM work around the problem when they move virtual machines (they remove the scope section just like you have done here).  But here is a handy VBScript that you can run on a Hyper-V server that will go through and nuke all the scopes (do not use this if you are still using SCVMM) so you can export and import happily (note that you need to run this before exporting):
    Option Explicit  
    Dim WMIService  
    Dim VMList  
    Dim VM  
    Dim VMSystemGlobalSettingData  
    Dim VMManagementService  
    Dim Result  
    'Get instance of 'virtualization' WMI service on the local computer  
    Set WMIService = GetObject("winmgmts:\\.\root\virtualization")  
    'Get a VMManagementService object  
    Set VMManagementService = WMIService.ExecQuery("SELECT * FROM Msvm_VirtualSystemManagementService").ItemIndex(0)  
    'Get all the MSVM_ComputerSystem object  
    Set VMList = WMIService.ExecQuery("SELECT * FROM Msvm_ComputerSystem")  
    For Each VM In VMList  
       if VM.Caption = "Virtual Machine" then  
           Set VMSystemGlobalSettingData = (VM.Associators_("MSVM_ElementSettingData", "Msvm_VirtualSystemGlobalSettingData")).ItemIndex(0)   
           VMSystemGlobalSettingData.ScopeOfResidence = "" 
           Result = VMManagementService.ModifyVirtualSystem(VM.Path_.Path, VMSystemGlobalSettingData.GetText_(1))  
        end if  
    Next 
    Cheers,
    Benjamin Armstrong
    ============================
    Windows Virtualization
    Senior Lead Program Manager
    This posting is provided AS IS with no warranties, and confers no rights. You assume all risk for your use.

  • Exporting  andn importing applications

    Several apex applications need to be exported from one database and imported into another database. What is the procedure to export the css, files and themes? Listed below are more specific questions.
    1. For the ccs all of the applications have two entries. Namely, 'All Style Sheets' and a customized style sheet. Should they be exported with every application? Or, should they be exported with only one application and they will be available for all of the exported applications? Or, is 'All Style Sheets' automatically exported and the one customized style sheet needs to be exported only with one application? Is the customized style sheet included with the "All Style Sheets'?
    2. There is similar situation with the files export. The same files are listed for each application even though they are not used by each application. 'Static files' is an option. Will that option export all of the static files? If all static files is selected for one application will it be available for all of the applications?
    3. When the theme is exported it appears twice. Why does it appear twice when it is exported? Is it necesary to export the theme separately. Isn't exported with the application?
    Also, is there a report that shows what css, files, themes etc. are associated with each application?
    Thanks,
    PANY

    "419008",
    In cases like this, where I know the table name is going to be different across HTML DB instances, what I usually do is create a view on top of the table, and then build my HTML DB applications against the view. Then, assuming the definition of the tables are the same, it should work without further modification.
    So in your testing workspace you could have:
    create view foo as select * from Samp
    and in your other workspace you could have:
    create view foo as select * from test
    Joel

  • Exporting then Importing Photos changes the dates in iPhoto...

    Hello,
    I am exporting photos into the Watermark Sense App from iPhoto. Once watermarked, when I import them back into iPhoto the date has automatically been changed by a year and a day.
    Why?
    Is this an iPhoto issue, or an application issue?
    Thanks in advance,
    Karen

    I "add images" into Watermark Sense. Watermark them. Press "Save", then "add to iPhoto"
    Once they have imported back into iPhoto, the year and day has changed.
    Sorry but this is what you need to explain
    Exactly how are you "adding images" to WMS?
    And how are you "Importing"them to iPhoto - saving and adding to iPhoto is not definative
    Are you directly accessing the contents of the iphoto library either to get photos or put them back is not supported and could be yoru problem if that is what you are doing
    Download simple EXIF viewer - export a photo to the desktop  from iPhoto - view the dates using Simple EXIF viewer - add that photo to WMS - do its thing and save the photo back to the desktop - view the datea again - and import that photo to iPhoto - this will identify either the proper way to do this or will tell you where the problem occures
    LN

  • Export and Import Application

    Greetings,
    I have created a Portal30 application that includes several forms, reports, and charts. Now I want to duplicate for another schema in the same database. I export the application in Navigator under applications.
    Then I use Sqlplus 8.1.7. to import. There doesn't seem to be any documentation for the import step, so I have questions for anyone that has successfully done this:
    1. Who do I logon as for the import? Portal30 or the new application owner.
    2. I get prompted for login user name and password. Is this Portal30, Portal30_SSO, the user I logged on as to do the import, the new application owner, or the old application owner?
    3. I have taken several guesses and run the CHECK mode, which returns the following message:
    ...Checking component: ID = 1143586401 Name = LOC_RPT Owner = NEW_APP Type = REPORT
    *** WARNING ***
    ID 1143586401 already exists: owner = OLD_APP, name = LOC_RPT, type = REPORT
    ==> Import will fail
    4. CHECK is correct, when I try to run in CREATE mode I get:
    ERROR at line 1:
    ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "PORTAL30.WWPRO_API_PROVIDER_REGISTRY", line 255
    ORA-00001: unique constraint (PORTAL30.WWPRO_PROVIDERS_UK1) violated
    Thus, the import isn't clever enough to assign a new component id.
    Thanks in advance for any ideas.
    Trenton

    Dear Balaji!
    Is there a way to export forms and reports with PL/SQL? The manually export is very slow with 100 forms to copy (to another location, another database).
    Thanx,
    Gyorgy
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by balaji kashyap ([email protected]):
    Trenton,
    You cannot export/import an application in th e same portal instance. As Import does not create a new component Id, it will give you error if you try to import a component in the same portal instance.
    If you want to duplicate the application, I suggest you to create another application based on different schema and copy the components (one at a time) into this application.
    For copying click on the Manage tab of the component and click on the copy link. Specify the target application and component name.
    In general while importing an application/component you need to specify the following parameters:
    1 : import mode CHECK or CREATE
    2 : portal schema (Portal Instance Name)
    3 : login user name
    4 : login user password
    (Portal User name and password who has sufficient privilege to import the application);
    5 : application schema (Name of the schema on which the application will be created)
    6 : application name (New name of the application/component)
    7 : log file
    Hope this helps
    Balaji<HR></BLOCKQUOTE>
    null

  • Exporting then importing projects back into imovie so I can re-edit

    If I have almost completed a project but want it off my hard drive for awhile, is there a way to save that project on a portable drive, then latter, if I need to make changes, import that project back into imovie so I can add video or change the transitions, etc. I find after exporting a project if I import it back, it cannot be re-edited without starting all over. In other words I want to save and store a project with all the editing instructions and then be able to import it back for changes. Thanks for any help on this...
    Jerry

    If I have almost completed a project but want it off my hard drive for awhile, is there a way to save that project on a portable drive, then latter, if I need to make changes, import that project back into imovie so I can add video or change the transitions, etc.
    Project files (which are merely a set of instructions describing how a file will be made when it is to be exported/shared) are relatively small compared to Event (i.e., source) files and you would normally reap greater benefits by moving/keeping them on an external drive. If Events are moved from within iMovie '08, their paths will remain unbroken. If, however, you remove the the project files and anything happens to change either the Project or Event paths, you could be in a lot of trouble trying to get/fit everything back to its proper location with path references in tact at a later time.

  • Captivate 5: Export Captions then Import Captions Problems

    Greetings,
    The more I work with Captivate 5 the more disappointed I am in some of the changes. I just did a simple test (part of my normal workflow) where I export a project's Captions into Word (usually this would be to apply different symbols to bullit items). I didn't change anything this time, I just wanted to see how this function works in Captivate 5. Well, I certainly screwed up the project I was working on (good thing I was working on a backup!)
    Why would a simple export then import (with no changes) thoroughly mess up text in a project? In previous versions of Captivate there would have been no changes, it would import what it exported. Now I am afraid to use this function. This was a powerful tool at one time.
    In previous versions this was a wonderful way to have control over text. I could change bullit items, line and font spacing, etc.
    Is there something I am missing in my workflow? Has anyone used this function? Is there any documentation available that might shed some light on how I need to change my work flow to accomodate this?
    Thank you,
    TPK

    let me explain better :-)
    in captivate 5 there a feature for people to export legend and sub title so some one could revise the slide text etc...
    i exprt it in word format but the doc created  we could reed the text cause the text is white on a white background
    any idea ?
    Thanks

  • Export and Import of Application problem

    Hi,
    I had my application developed in Windows environment. First time i had full application export and import on Solaris box. The application was successfully installed on Solaris box and i could login into application. The login process was working but all of my queries/reports were not displaying any values. All i can see is number of rows retrieved for example 1-20 etc. I repeated the export/import 3-4 times but results were same.
    On Solaris box i opened one of the reports and started playing with it. Luckily on "Reports Attribute" tab i unchecked/checked the show column checkbox. The report started working. Likewise i did for other reports. Just to verify this i repeated the Export/import of application and unchecked/checked the show column and reports started working. I repeated it at least 3 times.
    Our application is going to expand everyday and on every import we cannot repeat this step for every report.
    Please let me know what steps are missing in Import or are they any manual Post-Import steps ?
    Regards
    Hamayun

    Hi Scott,
    Today i applied the patch and now its 1.6.1.02. After applying the patch i imported application once again.
    I was able to login into application. When i executed a report the system navigated to required tab but did not show any data. Then i performed following steps:
    1.Selected Edit page(xx).
    2.Selected region in the selected page.
    3.Select Report Attributes tab from region.
    4.In Report Column Attributes section the "Show" option was Checked for all the columns which i want to display.
    5. i unchecked only ONE COLUMN and CHECKED again the same column. This was done just to apply changes to report.
    6. Clicked on Apply Changes to save the changes.
    7. Executed the application and the report started working.
    8. Likewise i repeated step 5 for all reports in the application.
    I also tried another option.
    -navigated to Reports Attribute tab and made a change just to save the changes on tab. After saving the page the report started working.
    Your help is greatly appreciated.
    Regards,
    Hamayun

  • Exporting/Importing Application Problems

    When importing an exported application, I am having problems with the application performing the same. For example, the imported application Report Region Sort Sequence doesn't work except when I'm logged in developer mode. The sort works in the original application from which it was exported. I have compared all the page rendering, page processing and components and everything appears the same. Any ideas? Any help greatly appreciated.

    I am not sure I understand your problem definition. Can you please try to explain in some more detail what your question is?
    "Doesn't work" almost always conveys no useful information. Explain what the desired/expected behaviour is and what the actual behaviour is.

  • Language Problem while exporting and importing data

    hi,
    I have Oracle version 8.1.7.0.0 installed on one server and 9.2.0.1.0 installed on new server.
    I'm copying and pasting my version info from SQL*Plus:
    SQL*Plus: Release 8.1.7.0.0 - Production on Mon Aug 22 10:46:31 2005
    (c) Copyright 2000 Oracle Corporation. All rights reserved.
    Connected to:
    Oracle8i Enterprise Edition Release 8.1.7.0.0 - Production
    With the Partitioning option
    JServer Release 8.1.7.0.0 - Production
    SQL>
    SQL*Plus: Release 9.2.0.1.0 - Production on Mon Aug 22 12:30:06 2005
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    Connected to:
    Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.1.0 - Production
    SQL>
    I created new user on my new server from enterprise manager.
    Exported user from the old server and imported in the new server.
    i.e: from Oracle8i Enterprise Edition Release 8.1.7.0.0, I did
    c:\>exp system/manager file=abc.dmp owner=abc
    Then on the new server Release 9.2.0.1.0, I did
    c:\>imp system/manager file=abc.dmp fromuser=abc touser=abc
    I'm using Arabic Language on my both servers. NLS_LANG parameter on both the servers is AMERICAN_AMERICA.WE8MSWIN1252.
    On both the servers I'm able to insert and select data in arabic.
    However, after I export the data from old server to the new server, the arabic data comes in question marks.
    If I create new table and insert arabic data on new server's user abc it is displaying well. Only the data which I exported and imported is not showing arabic.
    On both old and new servers operating system is Windows XP.
    I'm stuck with this problem. Anybody having any idea about how to solve this problem please help.
    Thank you all in advance.
    Regards

    Let me be clear here. Storing Arabic data in a WE8MSWIN1252 database is not supported by Oracle and will lead to problems. You are incorrectly using the NLS_LANG to prevent proper conversion and your data appears to be okay when you use utilties like SQL*PLUS to view your data. When you write applications that don't rely on the NLS_LANG like JDBC thin driver for instance you will realize your data is in fact invalid. To learn more about the NLS_LANG you can take a look at this FAQ: http://www.oracle.com/technology/tech/globalization/htdocs/nls_lang%20faq.htm
    To migrate your database to a proper character set you can refer to this paper:
    http://www.oracle.com/technology/tech/globalization/pdf/mwp.pdf
    But please do not ask for help in supporting your current configuration in this forum.

  • Export and Import a page from one application to another within same WKSPCE

    Hello,
    Can anyone help me out in moving a page from one application to another within the space workspace. I tried to export it and then import the page, but I am not able to do that. I think the problem is with the application IDs.
    Plz help me out with this issue.
    Thanks,
    Orton

    Hi Orton,
    moving a page from one application to another within the space workspace
    This U can get it, through copying the page from one application to another application within the same workspace
    In the top of the page, you have "copy" option.
    regards,
    Kavitha

  • Export and import, same problem in 08 as in 07!

    I am so fed up and frustrated with this problems in iPhoto, I had exactly the same thing in iPhoto´07, and on an other installation:
    When I import pictures from a folder on my HD, it imports the pictures, but it NEVER finishes the import-process! It goes on and on forever. So I have to terminate iPhoto and restart. The pictures are then imported, but the "Last import" folder is not updated. And I don´t know what harm this does to the library. Anyone else with this problem?
    I also cannot export. It exports up to ca 370 pictures, and then I get this message "cannot create folder .....".
    I have no iPhoto plugins. A new fresh plain installation, plenty diskspace and 2 GB ram
    I removed iPhoto and then reinstalled - didn´t help
    I did repair disk/permissions, didn´t help
    I rebuilded the database, didn´t help.
    My guess is this is a bug in iPhoto, when will Apple fix this!

    Sitara:
    Boot into Safe Mode and try to import. If it works then there's something amiss with your primary account. It may be another preference that iPhoto interacts with. To see if that's the case do the following:
    Trouble Shooting Preferences
    Go to HD/Users/Your_name/Library. Move the Preferences folder (in its entirety) to the Desktop and make a second copy of it so you have Copy A and B. Now try the the process again and determine if problem is fixed.
    If the problem IS fixed, then go to the new Prefs folder that the OS will have created and open it up.
    Open Copy B on the Desktop and select all of the items inside. Drag them into the open new library folder. When the Copy window comes up check the Apply to All check box and then click on the Don't Replace button as seen here. That will keep the new files created and bring back all of the others.
    If the problem is NOT fixed, trash the new Prefs folder and move the intact Copy A folder back to the Library folder .
    If the import problem persists in the Safe Mode, I suggest you reinstall the 10.4.10 COMBO updater followed by a repair of disk permissions.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

Maybe you are looking for