Moving E-business Suite tables to custom tablespace

Hi,
We are planning to move some of the huge oracle e-business suite tables (Audit tables) from its APPS_TS_TX_DATA tablespace to some custom_table space. We are doing this because we want to truncate those tables after we are cloning from production to test instnace and reclaim the space on the disk on the cloned instance.
We are moving only the audit tables and some custom tables which are independent of the normal functionality of the application.
Is it advisable to do that ? Can we move the standard tables from e-business suite to a custom tablespace.
Regards
Sridhar M

We are moving only the audit tables and some custom tables which are independent of the normal functionality of the application.
Is it advisable to do that ? This should be OK -- For audit and custom tables.
Can we move the standard tables from e-business suite to a custom tablespace.This is not recommended and you better keep the standard tables in the default tablespace.
Thanks,
Hussein

Similar Messages

  • How to Display Data from Oracle E Business Suite tables in ADF

    Hi,
    I am new to ADF.
    I have a requirement to Create an ADF page for Search Results Screen.
    However the result data is from one of the Oracle E Business Suite Tables.
    ie I need to create a Screen where user will enter a Purchase Order Number and Click on Button.
    The Screen should show details from PO_HEADERS_ALL (from Oracle ERP Database Table) based on the entered PO Number.
    Is it possible to implement the same? Can some one guide me how to do it?
    Thanks,
    Kamath

    Hi,
    Is there a way where I can create a VO in ADF to which I can insert records dynamically from a source and the Source connects to E Business Suite tables and returns results ie BPEL etc.
    http://download.oracle.com/docs/cd/E15523_01/web.1111/b31974/bcadvvo.htm#sm0341
    Just replace the PLSQL example with your data source
    Can ADF invoke SOA which inturn connects to Oracle E Business Suite and fetches the data from Oracle tables and pass it back to ADF? Is it possible
    Yes. Just use a WS proxy client to access the SOA entry point (WSDL) and follow the link above
    Frank

  • E-Business Suite Tables List

    Hi,
    is there any formal list of tables for the e-Business Suite?
    Thanks

    Geri, Using the e-TRM is the best way on MetaLink. If you own the e-Business Suite, you can get a MetaLink login. Your DBA or administrator should be able to help.
    You can also use this to get a list of table names:
    select owner, object_name from dba_objects where object_type = 'TABLE' order by owner, object_name;The advantage of the e-TRM is that it explains the table and each column within.

  • Business Suite tables

    Hi,
    I'm working with Forms 6 and Oracle Applications 11.5.10.2.
    I need to build a canvas with 5 fields. All the fields must have LOV's and these lov's must contain values of Flexfields Segments from Oracle Applications . ¿Wich are the table where Oracle saves the values?
    I'm working with PO.
    Each segment have an independent set of values.
    It's very urgent.
    Thanks

    Geri, Using the e-TRM is the best way on MetaLink. If you own the e-Business Suite, you can get a MetaLink login. Your DBA or administrator should be able to help.
    You can also use this to get a list of table names:
    select owner, object_name from dba_objects where object_type = 'TABLE' order by owner, object_name;The advantage of the e-TRM is that it explains the table and each column within.

  • Display E-Business Suite Navigation in Tree Structure

    Hello:
    When I login to E-Business Suite the Module display is in Folder format
    Is it possible to display Tree Structure?
    When can I get the instruction?
    Please help
    Vijay

    Hi,
    Is there a way where I can create a VO in ADF to which I can insert records dynamically from a source and the Source connects to E Business Suite tables and returns results ie BPEL etc.
    http://download.oracle.com/docs/cd/E15523_01/web.1111/b31974/bcadvvo.htm#sm0341
    Just replace the PLSQL example with your data source
    Can ADF invoke SOA which inturn connects to Oracle E Business Suite and fetches the data from Oracle tables and pass it back to ADF? Is it possible
    Yes. Just use a WS proxy client to access the SOA entry point (WSDL) and follow the link above
    Frank

  • Error "REP-0788: Warning" on registering custom report to e-Business Suite

    Hi
    I done the register of custom report to Oracle e-Business Suite 11i got the below error
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.AR8MSWIN1256
    Spawned Process 4579
    REP-3000: Internal error starting Oracle Toolkit.
    REP-0788: Warning: The value of restricted LOV parameter P_1 is not among the selectable values.
    Report Builder: Release 6.0.8.24.0 - Production on Tue Apr 14 10:25:34 2009
    (c) Copyright 1999 Oracle Corporation. All rights reserved.
    Enter Username:
    Program exited with status 1
    Concurrent Manager encountered an error while running Oracle*Report for your concurrent request 715975.
    Review your concurrent request log and/or report output file for more detailed information.
    Executing request completion options...
    Finished executing request completion options.
    please anyone help on this.
    regards,
    sva

    Hi,
    What is the type of the report? Is it bitmap? If yes, please make sure that the DISPLAY is set properly. Also, change the report type to text and see if you can submit the request successfully.
    Here are some additional troubleshooting documents to look at:
    Note: 200474.1 - Comprehensive REP-3000 Troubleshooting and Overview Guide
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=200474.1
    Note: 364838.1 - Quick Checks for REP-3000: Internal Error Starting Oracle Toolkit.
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=364838.1
    Regards,
    Hussein

  • Moving partioned tables to different tablespaces in oracle 11g.

    Dear All,
    I need to move the partitioned table to different tablespace. I moved all the partitions individually and also the index.
    however i have a issue now, when i check the view user_tables or dba_tables, i see null tablespaces correspomding to the table in the tablespace_name column.
    how can i see the tablespace name in these views.

    Even thouh Sb has given you the correct answer, I am just showing you below cut and paste sqlplus screen of 11.2.0.1 :
    test1@ORCL> create table t (x number)
      2    partition by list (x)
      3    (partition p1 values (10),
      4    partition p2 values (20));
    Table created.
    test1@ORCL> select table_name,tablespace_name from user_tables;
    TABLE_NAME                     TABLESPACE_NAME
    T
    1 row selected.
    ---Means tablespace_name.user_tables is always null for partition table(s).
    ---Ok, then how do I see the tablespace name?
    test1@ORCL> select table_name, partition_name,tablespace_name
      2  from user_tab_partitions
      3  where table_name = 'T';
    TABLE_NAME                     PARTITION_NAME                 TABLESPACE_NAME
    T                              P1                             USERS
    T                              P2                             USERS
    2 rows selected.
    test1@ORCL> ALTER TABLE T MOVE PARTITION P1 TABLESPACE EXAMPLE;
    Table altered.
    test1@ORCL> select table_name, partition_name,tablespace_name
      2  from user_tab_partitions
      3  where table_name = 'T';
    TABLE_NAME                     PARTITION_NAME                 TABLESPACE_NAME
    T                              P1                             EXAMPLE
    T                              P2                             USERS
    2 rows selected.
    test1@ORCL> select table_name,tablespace_name from user_tables;
    TABLE_NAME                     TABLESPACE_NAME
    T
    1 row selected.Just for your information please.
    Regards
    Girish Sharma

  • Custom Identity Service - E-Business Suite

    Hi
    Just wondering if anyone has looked into creating a custom BPEL Identity Service Plug-in for E-Business Suite?
    I'm not sure if we need to do this yet for a client, but if anyone had tried it would be great to here about any issues you came across or whether you got it to work....
    Any help greatly appreciated.
    Chris

    The easiest integration with DB repository is to use Oracle Virtual Directory ( OVD) database adapter.
    You can write custom Plug-ins code using IdentityService APIs for 10.1.2 and 10.1.3 releases.
    But we deprecated the approach and recommend to use OVD for customization for 11 release.
    I have tested OVD with BPEL IdentityService LDAP provider. It works well even for 10.1. release.
    That approach simplifies the mapping between LDAP inetOrgPerson and groupOfUnuiqueNames objectClasses and DB schema.
    I can help you with OVD configuration.

  • Create Custom data_domain in Oracle E-Business Suite Extensions for Oracle Endeca

    Hi all
    I integrated EBS with Oracle Endeca information discovery with the help of the following document Installing Oracle E-Business Suite Extensions for Oracle Endeca, Release 12.2 V4 (Doc ID 1574273.1).
    I am little aware to create custom data loading using endeca integrator.
    I need to know is there any possibility to create custom data_domain using Integrator in Oracle E-Business Suite Extensions for Oracle Endeca.
    Using the webs ervices data domains are created in the Endeca server.
    Below mentioned port numbers are displayed in the doc.
    7001 Oracle Endeca WL Managed Server
    7002 Oracle Endeca WL Domain Admin Server
    7004 Oracle Endeca Studio UI WL Managed Server
    7005 Oracle Endeca Integrator WL Domain Admin Server
    7006 Oracle Endeca Integrator Server UI WL Managed Server
    7011-8011 Oracle Endeca Server Internal Data Domains
    webservices url will be like http://hostname:port/endeca-server/ws/admin Like.
    I need to know the port number for this url. Kindle help me regarding this webservices
    Kindly suggest me ASAP.
    Thanks in advance.

    Hi,
    While checking the load data its showing error in clover url.
    We got error like this.
    Graph 'sandbox://Common/graph/FullLoad.grf' failed!
    And we followed the document for this issue Endeca graphs failing  (Doc ID 1549013.1)
    Please help me to fix this issue.
    Regards
    Kumar

  • Host a custom form on E-Business Suite Forms Servlet

    Hi.
    Is it possible to host my own form using the Forms engine integrated with E-Business Suite?. is this a good idea? or do i have to setup another forms servlet?
    I'm trying it with one form with a menu. I just Copied the mmx files and fmx files where all the fmx files of EBS suite reside. or do i need to recompile it inside linux forms compiler (adadmin) using .pll plx, fmb files?
    I manually type the url "domainname.com:8000/dev60cgi/f60cgi?formname.mmx?user=username?password=password"
    where user, password = database user (not apps user)
    when i did this, it still launched the applet but still goes to the main form of EBS? and the custom form doesn't get called..
    regards,
    anton

    I think you can do it.
    Should look in appsweb.cfg configuration file. usaually in $COMMON_TOP/html/bin
    ; 1) Runform Arguments
    ; The module argument defines the first form to be started.
    ; It is composed from parameters %prodTop%/forms/%lang%/%formName%
    ; The default looks like $APPL_TOP/fnd/<version>/forms/US/FNDSCSGN
    ; Following parameters and prodTop are used for composing module.
    ; Note: Personal Home Page modifies the lang setting automatically.
    formName=FNDSCSGN
    lang=US
    Forms servlet is just a mechanism to start the f60webmx processes on the application server (which also has the Forms listener servlet). So you will not need a seperate servlet in your case.
    HTH
    Bansi

  • Moving table from one tablespace to another

    Hi,
    I want to move several tables from one tablespace to another as I know I need to rebuild indexes(as indexes are invalid after this) what I want to know is that constraints needs to recreate again after table movement, Thanks.

    what I want to know is that constraints needs to recreate again after table movementNo you don't need do that.

  • URGENT : JDEVELOPER 10.1.3 and customizing Oracle e-Business suite

    URGENT: Can any one advice me with any pointers on how to open/customize the Pages (Oracle e-business suite pages related Developer 9.x ) using JDeveloper 10.1.3 (ADF framework).
    1. JDeveloper 10.1.3 supports JSPX and other pages and deploy those pages into server. Where as JDeveloper 9.x stores those pages in Database (for Oracle E-business suite) as Regions.
    But, Oracle always provides backward compatibilities. So, how can we change these JDeveloper 9.x JRAD/AK Region pages using JDeveloper 10.1.3 (AD framework)?
    Please respond...

    Can any one advice me with any pointers on how to open/customize the Pages (Oracle e-business suite pages related Developer 9.x ) using JDeveloper 10.1.3 (ADF framework).
    >>>> Cannot be done
    But, Oracle always provides backward compatibilities. So, how can we change these JDeveloper 9.x JRAD/AK Region pages using JDeveloper 10.1.3 (AD framework)?
    OAF is different than ADF, Oracle E-Biz pages are still in OAF, even with Jdev 10.1.3, they are not in ADF.Thanks
    Tapash

  • How to customize E-Business Suite Forms Managed Attachments Solution

    Hi
    i had requirement in that i have to configure E-Business Suite Forms Managed Attachments Solution , i have to add an extra attribute in header region of oaf Form
    how can i add an extra attribute in that region .
    In the Line item entry The left box shows Oracle E-Business Suite configuration and connects to the Oracle E-Business Suite configuration database; it includes transaction tables, custom PLLs, and AXF PL/SQL procedures. To the right are two WebLogic Server boxes, one connecting to an AXF configuration database and containing AXF 11g , and the other WebLogic Server box connecting to a Content Server database and containing Content Server 11g and Content Server functionality (components, search engines, and services, including the AF Grant Access Service).
    Thanks regards
    Rajendar

    If you can use any unused variable already available in the header part that will be a quick and easy solution.
    On other hand if you are very much sure you want to add a new header field then you have to make changes in all the layers including AXF DB and OOTB SPs.
    Regards,
    Vikrant Korde.

  • SAP Applications and Business Suite Installed on an SAP System

    Hi to all SAP gurus,
    I have a couple of questions:-
    1) Is there any way to find out about the SAP applications installed on an SAP system? I used CCMS to find out about the Installed SAP
    components. But does this list give the correct information? Also, can we find out which are the major and minor components from this list?
    2) Can there be more than one business suite (CRM, SRM, SCM etc.) installed on a single SAP system? Or is it always the case that a single SAP system can have only one business suite installed on it so that it can either be a CRM system, SRM system or something else.
    3) Is there any way (Any database table or RFC function) I can find out out about the business suite installed on a particular SAP system? One thing I saw in SAP GUI is that the title bar reads "Customer Relationship Management" if it is a CRM system. Is this a fool-proof way to find out whether an SAP system is a CRM system, SRM system etc. If yes, will this information be stored in a database table or is there any RFC function so that I can get this data programatically?
    Please bear with my BIG questions. I would be grateful if any of you guys can help me on these questions. Please let me know if I have to provide clarity on any of my queries. Thanks in advance

    Hi Mike,
    Thanks a lot for your suggestions.
    I did some research towards this as suggested by you.
    1) I tried out SPAM. But this is giving more or less the same information that I am already getting using the database table "CVERS" or the RFC function module "DELIVERY_GET_INSTALLED_COMPS". Both of these give information about the installed SAP components. But these modules don't give the precise information as to which particular business suite application is installed on the SAP system.
    2) I checked out the site -http://service.sap.com/instguides but couldn't get much help on here. I couldn't exactly get any information about the combinations of the business suite applications
    that can be installed on an SAP system.
    However, I was curious about one thing which I observed on my SAP system. The SAP GUI title bar reads "SAP Easy Access Customer Relationship Management". Can we be come to a conclusion that this is an SAP system with CRM installed on it?
    Also, the installed components for this system lists "BBPCRM" as one of the application component. Can we say that this is a CRM system by looking at this? If yes, are you aware of such a similar component for the other applications SRM, PLM, SCM which tells us about the business suite application installed on the SAP system?
    3) I did some rigorous search for RFC function modules that give the information I need. I came across 2 RFC function modules which give information on the SAP applications installed on an SAP system:-
    a) TERM_GET_TOPLEVEL_COMPONENTS
    b) SKWF_APPLS_GET
    The function module "TERM_GET_TOPLEVEL_COMPONENTS" is showing a list of business suite applications installed but I am not sure if it's giving the correct information because it shows both CRM and SRM in the applications list for an SAP system.
    I'd be most interested for your further suggestions regarding this.
    Thanks again
    - John

  • E-Business Suite apps_initialize and SOA Global Transactions

    Hi,
    We are developing an integration which sends data from one system to an Oracle E-Business Suite instance. In order to load the data into E-Business we need to call API’s which require the fnd_global.apps_initialize to be run.
    We have a custom PL/SQL procedure which calls the API
    e.g.
    SOA -> custom PL/SQL -> E-Biz API
    The custom PL/SQL runs apps_initialize.
    The problem is when we call this from SOA via a XA connection we get the following error:
    <P_ERR_MESSAGE>Error - Failed to delete the interface records after reading result! Message: Unknown Error ORA-20001: Oracle error -20001: ORA-20001: Oracle error -2074: ORA-02074: cannot SET NLS in a distributed transaction
    has been detected in fnd_global.set_nls.set_parameter('NLS_LANGUAGE','AMERICAN').
    has been detected in fnd_global.set_nls. ORA-06512: at "APPS.APP_EXCEPTION", line 72
    ORA-06512: at "APPS.FND_GLOBAL", line 245
    ORA-06512: at "APPS.FND_GLOBAL", line 1426
    ORA-06512: at "APPS.FND_GLOBAL", line 1684
    ORA-06512: at "APPS.FND_GLOBAL", line 2309
    ORA-06512: at "APPS.FND_GLOBAL", line 2447
    ORA-06512: at "APPS.FND_GLOBAL", line 2385
    ORA-06512: at "APPS.ICSOA_UTIL_PKG", line 42
    ORA-06512: at "APPS.ICAR_INT_PKG", line 521
    </P_ERR_MESSAGE>
    The main error here is cannot SET NLS in a distributed transaction.
    This is caused by fnd_global.apps_initialize running SET NLS commands in order to do it’s thing.
    We are looking to use the functionality of global transactions in order to achieve reliable messaging.
    Does anyone have any experience with calling custom PL/SQL from SOA XA connections?
    Robert

    Robert,
    I have the similar use case. I am using a seeded Oracle API to insert data into the tables. I want the user information to be populated in the WHO columns (CREATED_BY, LAST_UPDATED_BY). I have mentioned the jca.apps.username and jca.apps.responsibility in the Invoke activity.
    But unfortunately, the columns are not populated with the data. I am using the Oracle Apps Adapter to call the API.
    Any inputs will be really helpful.
    Thanks,
    Sakthi.

Maybe you are looking for

  • Rescued iBook. Need Advice.

    Hello to all, I am the new owner of a donated iBook. I currently have no experience with Mac's at all really. I am a multiple year IT Tech, but my realm of skills only extends through the Windows environment and some Linux. I was recently given an iB

  • MD4C order report for shipping notification doesnu2019t display any component

    Dear guru , I have created a shipping notification for a subcontract order. If I run order report (using MD04 or MD4C)  for shipping notification doesnu2019t display any component. I have seen note 498217. Any workaround does exist ? What do you sugg

  • Resolving lookup column value

    We have the following data model My_Source_Table (Column1,Column2, Column3...) My_Stage_Table (Column1,Column2, Column3...Res_Lookup_Value....) My_Target_Table (Column1,Column2, Column3...other columns) My_Interface1 operates on My_Source_Table --> M

  • Adf security with upper case user results in 500-internal server error

    Hello JDev 11.1.1.0.2, Integrated WLS I'v set up ADF security as explained in the documentation. The only difference being that the role test-all has been removed. I have one user 'paul' with a password of 'password' I have one application role 'myro

  • How do you configure the Retina MBP with larger SSD? FW800-to-TB?

    The Apple site shows a line that says you can configure it up to 768 I think. But then there is no option on the config page. 256 is not going to cut it even just for programs. Having to wait for FW800-to-TB adapters is also asinine. Many of us have