Another schema and/or database for a form

Hello.
What if i have a form and I want to change the schema and/or database name for the form? Is that possible? It want to make a form on data from a running production database. But testing is not very nice in a roduction database. So i want to build and test in my own schema and database. Then, when it all works, I want to change it to the running database.
Is that in any way possible with a form from Portal?

A form resides in an Application.
You can not change the Schema on which the application is based on.
What you will need to do is:
App1 -- Based on Schema1 -- Your production Build
App2 -- Based on Schema2 -- Your testing build
Form1 -- Resides here (In App2)
You will have to copy "Form1" to App1. In that case it will be transfered in Schema1
One more way will be:
Export the application
Delete the application
While Importing change the application Schema of the Application.
(Don't forget to take the backup of database before you do this as if anything goes wrong while
doing the above then you can always revert back)
Thanx,
Chetan.

Similar Messages

  • VLD-1124: Schema and/or Database link physical configuration parameters

    Hi!
    The warning message:
    VLD-1124: Schema and/or Database link physical configuration parameters should not be set for Table1.
    Is it possible to eliminate this warning message ? Anyway , Thanks for your response!
    Bye!

    Hi guys,
    I am facing a strange problem. The code generated for my mapping has NOT used the dblinks. My OWB version is 10.1.0.4
    This is my problem in brief.
    I have installed OWB newly and started to do a sample task. I created a very simple one to one table population mapping from source to the target schema. Both are in the same database.
    When i generated the code for the mapping, it gave a warning 'VLD-2771: System privileges may not allow extraction from source EMP'.
    When i checked the code which was generated, i couldnot see any dblinks associated with my source table( which seems strange)
    CURSOR "INGRP_c" IS
    SELECT
    "EMP_SRC_TRG_CONN"."EMPNO" "EMPNO",
    "EMP_SRC_TRG_CONN"."ENAME" "ENAME",
    "EMP_SRC_TRG_CONN"."JOB" "JOB",
    "EMP_SRC_TRG_CONN"."MGR" "MGR",
    "EMP_SRC_TRG_CONN"."HIREDATE" "HIREDATE",
    "EMP_SRC_TRG_CONN"."SAL" "SAL",
    "EMP_SRC_TRG_CONN"."COMM" "COMM",
    "DEPT_SRC_TRG_CONN"."DEPTNO" "DEPTNO_1",
    "DEPT_SRC_TRG_CONN"."DNAME" "DNAME",
    "EMP_SRC_TRG_CONN"."DEPTNO" "DEPTNO",
    "DEPT_SRC_TRG_CONN"."LOC" "LOC"
    FROM "SCOTT"."EMP" "EMP_SRC_TRG_CONN" ;
    In brief this is the process i have done.
    Source schema : SCOTT & Target schema : TRG_SCHEMA
    1) I have created source (for SCOTT) and target(for TRG_SCHEMA) modules.
    2) I have also created DBLinks, Locations and Connector from source to the target locations.
    3) I registered both the source location and target locations.
    4) Validated, Generated and Deployed the Connector from source to the target.
    I was unable to trace the error. Did i miss anything in the configuration? or during the installation of OWB.
    Though it is a very old post, i hope someone can help me out here.
    Thanks in Advance,
    Sri

  • Can I enable menu for base document and target document for user forms

    Hello friends
    I want to add Base and target document functionality for our addon
    but when i do this
    oform.EnableMenu("5899", True)   ' 5899 is menu uid for target document
    i got this exception
    Menu - Not found [66000-27]
    Is there another way around
    Thanks in advance ....
    Atul

    Atul try adding this to ur form Xml schema and specify the userdatasrc(bold text) for the form as well..
    <item uid="10000329" type="113" left="475" tab_order="0" width="90" top="481" height="19" visible="1" enabled="0" from_pane="0" to_pane="0" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific AffectsFormMode="1" TabOrder="0">
                    <ValidValues>
                      <action type="add">
                        <ValidValue value="A/R Credit Memos" description="14" />
                      </action>
                    </ValidValues>
                    <b><databind databound="1" table="" alias="SYS_312" /></b>
                  </specific>
                </item>
                <item uid="10000330" type="113" left="380" tab_order="0" width="90" top="481" height="19" visible="1" enabled="1" from_pane="0" to_pane="0" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific AffectsFormMode="1" TabOrder="0">
                    <ValidValues>
                      <action type="add">
                        <ValidValue value="Sales Quotations" description="23" />
                        <ValidValue value="Sales Orders" description="17" />
                        <ValidValue value="Deliveries" description="15" />
                      </action>
                    </ValidValues>
                    <b><databind databound="1" table="" alias="SYS_313" /></b>
                  </specific>
                </item>

  • MDSYS Schema in the Database for spatial data

    Hi
    As MDSYS Schema is required in the oracle database to hold the spatial data, The client database server has no MDSYS schema installed.
    So, when i import the mvdemo.dmp file in the database it is erroring out since there is no spatial data, Please let me know how to get the MDSYS schema in the database.
    Thank You

    Hi thanks for your response, i found this out in the oracle site, DBA ran this script for creation of MDSYS..but there was no data in some of the tables which are needed for development.
    --- COMPATIBLE init.ora parameter is set to 9.0.0.0.0 or higher
    show parameter compat
    NAME TYPE VALUE
    compatible string 10.2.0.3.0
    If you create an Oracle database using the Database Configuration Assistant (DBCA), Spatial is installed by default and you do not need to perform the installation steps described in this section.
    Steps to create the MDSYS schema and objects
    1) Connect to the database instance specifying AS SYSDBA.
    2) Create the MDSYS user with a command in the following format:
    SQL> CREATE USER MDSYS IDENTIFIED BY <password>;
    3) Grant the required privileges to the MDSYS user by running the following procedure:
    SQL> @ORACLE_HOME/md/admin/mdprivs.sql
    4) Connect as MDSYS.
    5) Install Spatial by running the following procedure:
    SQL> @ORACLE_HOME/md/admin/catmd.sql
    SQL> ALTER USER MDSYS ACCOUNT LOCK;
    So this solution dint work out.......

  • Functional specification and logic flow for smart form PO

    Dear Friends ,
    For PO develelpment in smart form as per client requirement which are the details we need to give for developers . I had given only table and fiels name for the displaying elements in PO , message type , document type . They are asking conditions also , is it this the job of functional consultant ? .
    If any one having sample FS for PO plaese send . Other than EKKO , EKPO which are the table are there for PO related...?
    RB

    Hi
    Based on your requiremnts you need to give the details of the fields
    First List down all the Required fileds to be in the layout like Vendor details, Plant details, delivery details, Material details, Conditions, Terms & conditions.
    Based on the above you can get the details from the tables used in PO creation.
    EKKO Purchasing Document Header
    EKPO Purchasing Document Item
    EKKI Purchasing Condition Index
    EKAN Vendor Address: Purchasing Document
    EKKN Account Assignment in Purchasing Document
    EKPA Partner Roles in Purchasing
    EKPB "Material Provided" Item in Purchasing Document
    EKPV Shipping Data For Stock Transfer of Purchasing Document Item
    KONV Conditions (Transaction Data)
    EREV Version in Purchasing
    MARA -
    MARC -
    These tables can be used based on your requiremnts
    Thanks & Regards
    Kishore

  • How to view tables in another schema in the database

    I am starting to use the SQl Developer 1.5.
    We can connect to an oracle database successfully, expanding the tables, it shows the list of tables of one schema.
    We have other schema in the database. In the query panel, when we type in the name of the other schema such as tcs. then some table names will popup in the intellisense.
    How can we show the list tables in other schema within the same database.

    In SQL Developer left panel, there's a browse tree. There's a 'Other Users' branch under each database, expand that you will see all the option to check user's objects. Your user need to have check dictionary privilege

  • ASAP Question and Answers Database for Retail

    Hi experts,
    Does anyone have a ASAP Question an Answers Database for Retail?
    Thanks in advance,
    SN

    Hello Ayşe,
    I hope this document which we just published in the BPX Archive provides a useful guideline onto your question.
    [Question Catalogue for Student Lifecycle Management Business Process Mapping 2009|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/808f676c-56d0-2c10-a0a3-e5e9e3ba0012]
    Regards,
    Tina

  • Development and Production Requirements for a Forms/Report application

    Dear all,
    We have an application witch run in client/Server mode using Forms/Reports 6i For 300 users.We want to migrate it on Forms/Reports 9I using Oracle 9IAS and Oracle 9IDB.
    I would like to have advises about material requirements of both development and production environment((developer deskop, development appServer and databaseServer, end user desktop,production databaseServer and production AppServer).
    Thank u for giving more details about my request.

    I have my dev and production on 2 different databases/instances, and the workspaces have a different name aswell (think 'dev' and 'prod').
    I do reuse my application ids, which makes the whole process a lot more manageable: easier for me to identify and replacing a whole application.
    However, when i want to replace only 1 page, apex stumbles over the workspace. Bummer.
    So i took an export of a page on both workspaces, and opened the files.
    prompt  Set Credentials...
    begin
      -- Assumes you are running the script connected to SQL*Plus as the Oracle user APEX_040100 or as the owner (parsing schema) of the application.
      wwv_flow_api.set_security_group_id(p_security_group_id=>nvl(wwv_flow_application_install.get_workspace_id,1377027056414870));
    end;
    wwv_flow_application_install.get_workspace_id,1377027056414870));
    I took both workspace IDs and keep them in a simple txt in my installation-files folder. Each time i need to import a page from dev->prod i go in the exported file from dev and change the workspace id to the id of my production workspace id. Everything works magically after that.
    If your application ids also differ, you can try changing the id in the exported file aswell, but i can't tell if it works or not since i've not done that yet.
    prompt  Set Application ID...
    begin
       -- SET APPLICATION ID
       wwv_flow.g_flow_id := nvl(wwv_flow_application_install.get_application_id,130);
       wwv_flow_api.g_id_offset := nvl(wwv_flow_application_install.get_offset,0);
    null;
    end;where of course you'd change around nvl(wwv_flow_application_install.get_application_id,130);

  • How to create table in another schema of same database

    Hi..
    I've a database DB1
    and has 2 schemas / USers in that..
    Usr1 and Usr2...
    And i created a TEMP table in Usr1 schema... and created
    Then tried the following statement in Usr2 schema...
    CREATE TABLE TEMP AS SELECT * FROM Usr1.TEMP;
    Then it's giving error that ...
    :00942 TABLE OR VIEW DOESN'T EXIST..
    What is the reason for that...
    Thank you

    josh1612 wrote:
    What other grants do i need to give so as to replicate the Primary Keys also...????That's not a matter of grants. It's the way the CREATE TABLE AS SELECT statement works. It does not copy over indexes, primary key constraints, unique constraints, foreign key constraints, etc.
    If you want to copy all that over, you would probably want to get the DDL from the original table (using the DBMS_METADATA package if you're in a recent version), modify the DDL with the new schema name, create the table, indexes, and constraints, and then do an INSERT ... SELECT to populate the data. Or do an export & import of the table from one schema to another.
    Justin

  • Large data moving from one schema to another schema and tablespace

    Dear DBA's
    Oracle 11.2.0.1
    OS : Solaris 10.
    we have 1 TB data in A schema, i want to move to this in B schema for other testing purpose. which method is good to take export/import of this large data? Kindly advice.
    Thanks and Regards
    SG

    Hi
    You can use expdp-impdp or Transportable Tablespaces. Pelase check below note:
    Using Transportable Tablespaces for EBS Release 12 Using Database 11gR2 [ID 1311487.1]
    Regard
    Helios

  • Stop and start database for cold backup

    Hi,
    Database :Oracle 10g R1
    OS : Red hat 3
    I have a RAC database with 2 nodes.
    I build this script to make a cold backup of the database. (I will put it in the cron tab).
    My question is the SRVCTL will work in this scripts??
    # ***** COLDBACKUP ORACLE DATABASE ON LINUX *****
    DIRECTORY=/u02/backup/script/; export DIRECTORY
    cd ${DIRECTORY}
    # ***** SHUTDOWN THE DATABASE *******
    export oracle_sid=RCDB
    srvctl stop database -d RCDB
    # *****cold backup for "RCDB" database on 13-FEB-07 ... *****
    # ***** COPY FILES *****
    # Redo logs
    cp /u02/oradata/RCDB/redo01.log ${DIRECTORY}
    cp /u02/oradata/RCDB/redo07.log ${DIRECTORY}
    cp /u02/oradata/RCDB/redo03.log ${DIRECTORY}
    cp /u02/oradata/RCDB/redo08.log ${DIRECTORY}
    # Datafiles
    #*********START UP DATABASE AND SERVICES********
    srvctl start database -d RCDB
    exit
    Message was edited by:
    ASkika
    Message was edited by:
    ASkika

    I need to put a quick policy backup ... and cold
    backup it's what I use and it works.And reduces the availability of your cluster.
    The problem about RMAN is that we never use it. I
    have to learn about it to make scripts to test....
    and this will tack me 2 or 3 days...I'd assume that installing RAC didn't go overnight, so why underfund the crucial part of any database system, the backup?
    There's even a step by step guide for backup on the Getting Started: DBAs page.
    Samples (and changes) on the latest version of RMAN can be found for example in RMAN Enhancements.
    Or take a look at this Oracle Magazine article:Faster Backup, Faster Recovery
    Backup and Recovery Basics in the user documentation may also be a good starting point.
    C.

  • Questions and Answers Database for HE&R

    Hello Everyone,
    I'm looking for Questions&Answers Database regarding HE&R. I couldn't find anything
    about interview questions and answers cookbook, file etc. for Higher education&Research.
    If anyone has the related documentation, can you please share these information with me or
    give any suggestions about this issue?
    Thanks in advance.
    Regards
    Ayşe

    Hello Ayşe,
    I hope this document which we just published in the BPX Archive provides a useful guideline onto your question.
    [Question Catalogue for Student Lifecycle Management Business Process Mapping 2009|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/808f676c-56d0-2c10-a0a3-e5e9e3ba0012]
    Regards,
    Tina

  • Check on EHP2 and EHP5 Compatibility for Adobe Forms

    Hi,
    Does anyone knows if adobe forms for EHP2 and EHP5 is downward compatible?
    Meaning, the standard SAP adobe forms I have in EHP2 can run as well in EHP5?
    Or appreciate there is any info on the compatibility for sap adobe forms

    Hi Sashu,
    It should be downward Compatible .
    Ranganathan

  • How to create HTML fragment and PHP file for CONTACT FORM?

    Hello!
    I need to add a contact form to my website.
    I don't want to use wufoo or similar.
    Can someone write a code to have a form:
    NOME:
    MAIL:
    MESSAGGIO:
    and file .php ?
    Regards.
    Thanks a lot.

    Where are you publishing your site to? If MMe, then MobileMe does not support php and you don't need php to create a contact form - just good old html.
    If you are uploading to a server/host such as GoDaddy, then you can use the FormMail option too, but you still need to write your own html code - others will not do it for you.
    I would suggest that you visit this site - http://www.w3schools.com. This site tells you about how to write html code for most things, including contact and feedback forms. Look at this and then write your own code from this.
    If you can't manage to do it, then I would suggest that you need to use something like http://www.wufoo.com or GoogleDocs - Google Docs is a good alternative.
    Also, do a search of this forum for contact or contact and feedback forms where you will find lots of questions on this and where you will then find code examples that have been linked to.
    If you try it yourself, you will learn more quickly rather than asking others to do it for you.

  • Formatting and Validation Options for a Form:  go()  versus call()

    Hello.
    Under a Form's "Formatting and Validation Options," the screen says:
    "On successful submission of a form, execute this PL/SQL block or PL/SQL procedure:
    Hint: You can redirect your browser to a PL/SQL procedure, for example a procedure that creates a Web page, using either of these methods:
    call('<url>', '<parameter name for back url>');
    Redirects the browser to the procedure and passes a parameter containing the URL back to the form.
    go('<url>');
    Redirects the browser to the procedure but does not pass a URL to return to the form."
    I can get the go() procedure to work but not the call(). Here are the particulars:
    1. I created a simple page.
    2. I created a Form and placed it on the page.
    3. I have PL/SQL code added to the "On successful submission of a form..." section of the Form so that when the user enters a transaction this code executes.
    4. Unfortunately, the go() procedure redisplays the Form but not the underlying page.
    I'm guessing (hoping) that if I can properly format the call() procedure instead, it will successfully display the underlying page and this Form. But no matter how I format the second parameter of the call() procedure I get the error "HTTP 400 Bad Request" "The web page cannot be found"
    Can anyone provide a simple, working example for the call() procedure? Thanks for any insight.

    Hello.
    Under a Form's "Formatting and Validation Options," the screen says:
    "On successful submission of a form, execute this PL/SQL block or PL/SQL procedure:
    Hint: You can redirect your browser to a PL/SQL procedure, for example a procedure that creates a Web page, using either of these methods:
    call('<url>', '<parameter name for back url>');
    Redirects the browser to the procedure and passes a parameter containing the URL back to the form.
    go('<url>');
    Redirects the browser to the procedure but does not pass a URL to return to the form."
    I can get the go() procedure to work but not the call(). Here are the particulars:
    1. I created a simple page.
    2. I created a Form and placed it on the page.
    3. I have PL/SQL code added to the "On successful submission of a form..." section of the Form so that when the user enters a transaction this code executes.
    4. Unfortunately, the go() procedure redisplays the Form but not the underlying page.
    I'm guessing (hoping) that if I can properly format the call() procedure instead, it will successfully display the underlying page and this Form. But no matter how I format the second parameter of the call() procedure I get the error "HTTP 400 Bad Request" "The web page cannot be found"
    Can anyone provide a simple, working example for the call() procedure? Thanks for any insight.

Maybe you are looking for

  • Export Still Image at 300dpi

    I need a few frame grabs at high res. When I exported them with quicktime conversion my only choice was low, medium, high, and best. I chose best, but that is still not 300 dpi. Is there a way to export a higher resolution image?

  • Bluetooth Canon Printer

    Hi all, I just wanted to know if any you has a PIXMA iP6220D Canon Bluetooth printer, just to be 100% sure that it will work with my iMac Bluetooth (... I've already ordered it...) The driver is UB and updated for Intel-based Macs (driver version 4.1

  • Urgent: Error ORA-01555 "snapshot too old rollback segment too small"

    I get this error when I do a "SELECT" on a few very large tables for a report. Isn't there a way out? Our DBA says our rollback segment size cannot be increased anymore. All I care of is the SELECT statement to finish executing. It is okay for me to

  • Captions under thumbnails

    Hi. Does anyone know how I can do a "workaround" to get the captions in the photogallery from BC also under the thumbnailpictures? I'm doing my site in Adobe Muse.

  • ADDRESS BOOK OPENS IN BACKGROUND WHEN DASHBOARD OPENS

    When I open Dashboard from the dock, it also opens my Address Book in the background. When I close Dashboard, the Address book closes. Does anyone know why and how to correct this?