How to migrate some page  from a workspace to another workspace

APEX 4.0.2.00.07
Oracle 10.1.2.0.0
I have 2 workspaces, the one regard as Dev env, another regard as Pro. env.
When the change need to be migrated, the some page of Dev workspace should be copy to Pro. one. I export the pages what I want to move from Dev., then try to import it into Pro. but I get the error as below:
Page Origin: This page was exported from a different application or from an application in different workspace. Page cannot be installed in this application. Is there a better way to resolve? I don't want to copy the page one by one.
Thanks and Regards.

Prabodh wrote:
As they say, today's problems are yesterday's solutions. If no thought is given to enhancements and upgrades at the time of development , to solve a cost or time problem, then the situation you describe is very likely to come up.
If you do not use APP_ID anywhere, exclusively use APP_ALIAS, everywhere Tabs, Lists, Branches,etc. you are unlikely to have such issues. If APP_ID is never given to users and never displayed in the URL then the Alias based bookmarks are always valid. :D
When you inherit an application that has these issues, the choice to live with it or to change it for the better exists but often not exercised for (all valid) reasons.
Regards,Even if you never use app_id anywhere in your application, and never give it to your users, it IS displayed in the browser address bar, and therefore your bookmarks will have the app_id, not the alias. As soon as you browse to an application using the app_alias link, the alias is translated to the app_id in the browser address bar.

Similar Messages

  • How to migrate Distribution list from one domain to another within same forest

    team,
    we are in the process of migrating all users mailbox, DL and contacts from one domain to another within a same forest.
    can some one please let me know how can we migrate them without loosing the group membership and exchange attributes.
    Kindly help.
    Srinivasa K

    I ran all of them 
    First Command , it works very well and its removed the exchange attribute
    $DomCtrlr = (Dir env:Log*).Value.Replace('\','')
    Get-MailContact -OrganizationalUnit Contacts -DomainController $DomCtrlr | Export-Csv E:\MailContacts.csv
    Get-Contact -OrganizationalUnit Contacts -DomainController $DomCtrlr | Export-Csv E:\UserContacts.csv
    Import-Csv MailContacts.csv | Disable-MailContact -DomainController $DomCtrlr
    Second command
    $DomCtrlr = "DCNAME"
    $MailContacts = Import-Csv E:\MailContacts.csv
    $UserContacts = Import-Csv E:\UserContacts.csv
    after running the above command, I copied below on note pad and saved as .PS1 , as per your advise I make sure that starting with new-mailcontact and below 2 are is same line and Executed the ps1 script.
    Scipt rans but didnt give me any error mesage.
    ForEach ($Contact in $MailContacts) {
        $UserContacts | ? { $_.SamAccountName -eq $Contact.Alias } | % {
            New-MailContact -DomainController $DomCtrlr -LastName $_.LastName -FirstName $_.FirstName -Alias $_.SamAccountName -DisplayName $_.DisplayName -Name $_.Name -ExternalEmailAddress $Contact.ExternalEmailAddress -OrganizationalUnit
    Test_con    }
    By Running
    $MailContacts : it provided the stored value for users
    $UserContacts: it
    provided the stored value for users
    after runing below in  single notepad as .ps1 , not getting error message , but its not giving any
    output nor error.
    suspecting something needs to b checked on for loop
    ForEach ($Contact in $MailContacts)  {
        $UserContacts | ? { $_.SamAccountName -eq $Contact.Alias } | % {
            $_
    Hope this explained clearly.
    Srinivasa K

  • How to migrate ESS job from one instance to another Instance ?

    Hi Experts,
    We have developed some custom ESS jobs in fusion applications. Now we have to migrate newly created ESS jobs to another environment.
    Is there any way like we use to extract ldt in EBS R12.
    Kindly suggest......!
    Thanks,
    Praveen

    Please refer to:
    How to Migrate ESS Job Definitions Using WLST (1941788.1)
    Migrating Ess Job Definitions From One Instance To Another Instance (1442541.1)
    Jani Rautiainen
    Fusion Applications Developer Relations
    https://blogs.oracle.com/fadevrel/

  • How to migrate configurator models from one instance to another in R12

    Hi
    I want to migrate models from one instance to another using the Migrate models Program .For this do we need to create a Database link between the two configurator instances .Can anybody detail the steps to be followed

    Sumit,
    I am trying to figure out how to implement copying a quote line from one quote to another. Could you please let me know waht you found out regarding the usage of package. As of now I am only trying it in R11 but I will also need to know how to do it in R12 for future. So could you please tell me how you accomplished it in both releases with probably some sample code.
    Thanks in advance,
    Vinodh Ramadoss

  • Print Layourt Designer how to migrate a report from one SBO to another

    I have written a report on my Test version of SBO and need to migrate it to the customers site but cant see a method of exporting/Importing a User Report
    (I am probably missing something obvious though.....) but would appreciate a prod in the right direction.  thanks

    Hi George,
    There is two ways, you can either copy it over......but sometimes all the alignment goes off.
    Or you can use the query SAP have given in a note. I do not remember the note number. But here is an extract of the note. I use this query often and have kept this extract one side. It only copies the layouts that do not exist in the destination company. Here is the extract.
    An SQL query can be used to copy documents from one database to another, however the following conditions must be met:
    1. Only edited documents with a doccode (the template primery key), which does not exist in the destination database, will be copied.
    2. It is necessary to backup source and destination databases before running the query!!!
    3. Both databases must share the same localization and the same version!!!
    4. Select "Start" -> "Programs" -> "Microsoft SQL Server" -> "Query Analyzer" and run the following query:
    Replace SOURCE with the source database name.
    Replace DEST with the destination database name.
    insert into [DEST].[dbo].[RDOC]
    select [SOURCE].[dbo].[RDOC].*
    from
    [SOURCE].[dbo].[RDOC],[DEST].[dbo].[cinf],[SOURCE].[dbo].[cinf]
    where [DEST].[dbo].[cinf].[lawsset]=[SOURCE].[dbo].[cinf].[lawsset]and [DEST].[dbo].[cinf].[version]=[SOURCE].[dbo].[cinf].[version] and [SOURCE].[dbo].[RDOC].[Doccode]NOT IN (SELECT Doccode from [DEST].[dbo].[RDOC])
    insert into [DEST].[dbo].[RITM]
    select [SOURCE].[dbo].[RITM].*
    from [SOURCE].[dbo].[RITM],[DEST].[dbo].[cinf],[SOURCE].[dbo].[cinf] where [SOURCE].[dbo].[RITM].[Doccode] NOT IN (select Doccode from [DEST].[dbo].[RITM])AND [SOURCE].[dbo].[RITM].[Doccode]IN (SELECT Doccode from [DEST].[dbo].[RDOC])
    The query is also attached to this note!
    Hope this helps.

  • How to migrate "Access Restrictions"  from One Environment to another Env

    Hi ,
    Can anyone suggest regarding the "Access Restrictions" , we need to move the "Access Restrictions"  from one environement to another environment .
    Thanks & Regards
    Venkat.

    hi,
    When using Import wizard,
    while importing Universe, Please check the below option to migrate Access Restrictions.
    "Keep Universe Overloads for imported Users and Groups"
    Regards,
    Vamsee

  • How to migrate Open Directory from 10.6 to another server with 10.8?

    Hello all,
    I have a Mac Pro running Mac OS X Server 10.6.8 with Open Directory active. Now I bought a new Mac Pro running MAC OS 10.8 and I also bought the OS X Server app.
    What I want to know is how can I migrate the users and their home folders from old server with Snow Leopard to the new one? The Open Directory Archive does this job?
    Regards,
    Carlos.

    Ok. I did a test and I saw that it exports only the information account. So I suppose that I have to copy the home folder using scp or something similar. Is that correct? 
    I also have to keep the same hostname from the old server in the new server or this can be done in a different way?
    Thanks.

  • How to migrate the data from on version to another version in SAP

    Hai,
         Now iam working in Upgradation and Data migration Project. Iam new to this Project. My problem is we have the data of one module in 4.7e and we want that module data into upgrade verion say ECC 6.0. But we didnt want to upgrade that module. Pls guide me in this.

    hi,
    Welcome to SCN.
    if you want data of specific module to be transported to different version then you can use BDC,LSMW or BAPI for the transactions of that module according to your requirement.
    Also if you search in SCN with migrate data to different version you will get lot of posts.

  • How to migrate pop3 mailbox from one iphone to another iphone

    Guys, it is urgent for me, recently i have bouht a new 6 plus, and currently i am using 5s, my daily business access are go through pop3 mail server, and setup on 5s. now i got lot of sending mail stored on 5s sending box, and it can not SYNC to my desktop outlook. iTunes dont support mailbox backup and restore, is it anyway to solve it?

    This knowledge base article explains the process: http://support.apple.com/kb/HT2109

  • Migrating KMS server from one computer to another

    Hi,
    I would like to know how to migrate the KMS from one server to another. Thanks in advance

    Steps to migrating the KMS:
    1. Uninstall the KMS host key first by running the following command:
    slmgr -upk
    2. Then, install the default kms key by running the following command:
    slmgr /ipk [KMS Client Setup Key]
    The default KMS client setup keys can be found here:
    http://technet.microsoft.com/en-us/library/cc303280.aspx
    3. Delete the record from the DNS:
    Open DNS console:
    Expand _tcp node under the domain.com. There will be a record _VLMCS. Delete this record.
    4. The KMS server is uninstalled.
    5. To install KMS on a new server, enter:
    cscript C:\windows\system32\slmgr.vbs /ipk <KmsKey>
    then to activate the KMS host, enter:
    cscript C:\windows\system32\slmgr.vbs /ato
    6. After activation is complete, restart the Software Licensing Service.
    7. Verify that the record is created for the new server in the DNS.
    To verify that the KMS host is configured correctly, you can check the KMS count to see if it is increasing. Run slmgr.vbs /dli on the KMS host to obtain the current KMS count. You can also check the Key Management Service log in the Applications and Services Logs folder for 12290 events, which records activation requests from KMS clients. Each event displays the name of the computer and the time-stamp of an individual activation request.

  • How do I delete some pages from an existing pdf file?

    I have an existing pdf file that is too large to send to some people. How can I delete some pages from this existing pdf file, and break it up into two files?

    Acrobat
    You can download a 30 day trial at that link.
    You may also be able to do it with CreatePDF, but I'm not sure.

  • How do I prevent Pages from changing earlier parts of a document when I am in an 8 page newsletter. Going back to check something and items are jumbled up!

    How can I stop Pages from changing parts of a document when I am progressing through an 8 page newsletter. When I go back to check something some headings have moved and been put out of context. I can't lock the individual pages of the document to prevent this happening.

    The Amazon iWork '09 is a DVD in a boxed set.
    Downloading is transferring something from the Internet.
    I think you are talking about not having a DVD drive?
    To install the DVD version, either get an external USB DVD drive, they are cheap on eBAy or borrow another computer and drag the iWork Installer onto a USB Flash Drive and install from that.
    Peter

  • How can I copy a page from one wiki to another?

    Using the Wiki function in OSX server, I am able to move a page from one wiki to another by clicking the gear icon. Is there a way to copy the page to another wiki while leaving it intact in its existing wiki? I have tried to copy/paste while editing a page, however much of the formatting does not properly migrated to the pasted content.

    What you are looking for is how to "duplicate" ca page.

  • How to export some data from the tables of an owner with integrity?

    Hi to all,
    How to export some data from the tables of an owner with integrity?
    I want to bring some data from all tables in a single owner of the production database for development environment.
    My initial requirements are: seeking information on company code (emp), contract status (status) and / or effective date of contract settlement (dt_liq_efetiva) - a small amount of data to developers.
    These three fields are present in the main system table (the table of contracts). Then I thought about ...
    - create a temporary table from the query results table to contract;
    - and then use this temporary table as a reference to fetch the data in other tables of the owner while maintaining integrity. But how? I have not found the answer, because: what to do when not there is the possibility of a join between the contract and any other table?
    I am considering the possibility of consulting the names of tables, foreign keys and columns above, and create dynamic SQL. Conceptually, something like:
    select r.constraint_name "FK name",
    r.table_name "FK table",
    r.column_name "FK column",
    up.constraint_name "Referencing name",
    up.table_name "Referencing table",
    up.column_name "Referencing column"
    from all_cons_columns up
    join all_cons_columns r
    using (owner, position), (select r.owner,
    r.constraint_name fk,
    r.table_name table_fk,
    r.r_constraint_name r,
    up.table_name table_r
    from all_constraints up, all_constraints r
    where r.r_owner = up.owner
    and r.r_constraint_name = up.constraint_name
    and up.constraint_type in ('P', 'U')
    and r.constraint_type = 'R'
    and r.owner = 'OWNERNAME') aux
    where r.constraint_name = aux.fk
    and r.table_name = aux.table_fk
    and up.constraint_name = aux.r
    and up.table_name = aux.table_r;
    -- + Dynamic SQL
    If anyone has any suggestions and / or reuse code to me thank you very much!
    After resolving this standoff intend to mount the inserts in utl_file by a table and create another program to read and play in the development environment.
    Thinking...
    Let's Share!
    My thanks in advance,
    Philips

    Thanks, Peter.
    Well, I am working with release 9.2.0.8.0. But the planning is migrate to 10g this year. So my questions are:
    With Data Pump can export data just from tables owned for me (SCHEMAS = MYOWNER) parameterizing the volume of data (SAMPLE) and filters to table (QUERY), right? But parameterizing a contract table QUERY = "WHERE status NOT IN (2,6) ORDER BY contract ":
    1º- the Data Pump automatically searches for related data in other tables in the owner? ex. parcel table has X records related (fk) with Y contracts not in (2,6): X * SAMPLE records will be randomly exported?
    2º- for the tables without relation (fk) and which are within the owner (MYOWNER) the data is exported only based on the parameter SAMPLE?
    Once again, thank you,
    Philips
    Reading Oracle Docs...

  • How to programmatically copy a OneNote page from one section to another

    How to programmatically copy a OneNote page from one section to another.
    I don't find any interface in OneNote
    2010 Developer Reference which will let me do this.
    any help?
    Regards,
    Umar
    OneNote 2010

    Hi Umarinam,
    Thank you for posting in the MSDN Forum.
    In the page OneNote 2010 Developer Reference, you can see an Application Interface which includes methods
    help retrieve, manipulate, and update OneNote information and content. 
    The below are some basic samples 
    Retrieving Section Metadata in OneNote 2010
    Programmatically Opening and Closing a Notebook in OneNote 2010
    Hope it helps. 
    Best regards,
    Quist Zhang [MSFT]
    MSDN Community Support | Feedback to us
    Develop and promote your apps in Windows Store
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

Maybe you are looking for

  • Migrating from 6i to 9i for form generating starting with designer

    I try to migrating our forms generating 5-6 years start with designer, but they are finished through form builder. When I tried to use migrating assistant wizard, I get LMDMANA.CG$WHEN_NEW_FORM_INSTANCE: The String CALL was found. If it is an occuren

  • Error in accessing application on windows 2003 server

    error on accessing the application on windows 2003 server R12 500 Internal Server Error Servlet error: An exception occurred. The current application deployment descriptors do not allow for including it in this response. Please consult the applicatio

  • Re: Any problems printing since 10.6.8?

    Hi, Since I've updated, everytime I go to print on any of the printers I'm connected to at work, which up to a couple of days ago and the update I keep getting that printer is paused, but won't resume no matter what.  Any thoughts?  Printers are Tosh

  • How do I get my music off my iphone???

    I have over 200 songs on my iphone. When I plug it into my iMac, I can see the songs on the phone in iTunes. But I can't get them FROM the phone to the computer. It won't let me copy them, drag them, or whatever. I would like to NOT lose the songs I

  • REFRESH button in Classical report

    Hi, We have one classical interactive report using write statement and we would like add refresh button, so that user need not execute the report from initial screen. I have added refresh button in GUI and wrote in at user command also, but still not