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.

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

  • 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

  • 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.

  • 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

  • Report won't print to the end of width in Oracle E-Business Suite

    Hello all,
    I desperately need help to setup Reports 6i layout. I created a report for a 8.3 x 11.69" and it seems fine when I print directly from Reports Developer but when I register it in Oracle E-Business Suite 11.5.10.2 it won't print to the end of page width. It always cut the print in about 3/4 of page width. I already setup the report as a text and pdf but still no success. Enlarge the width and height of the report won't help either. Anyone can suggest something to help? Thanks.

    Hi Clamarion,
    Login as those users and check the preferences, or you can check the value from the backend (through FND_USER_PREFERENCES table).
    About "Applications Start Page" profile option (Doc ID 729375.1)
    https://forums.oracle.com/thread/940401
    Thanks,
    Hussein

  • Integrate an Apex Application with the E-Business Suite 11i

    Hi !
    I'm currently working to get connected to APEX (Application Express 3.2.1.00.11) using an E-Business Suite 11i form function then using the ICX cookie.
    I'm using a document created by Rod West(consultant at Cabot Consulting) to help me doing this connection.
    The document is : http://www.oracle.com/technology/products/database/application_express/pdf/apex_ebs_wp_cabot_consulting.pdf
    I always have errors when I try to get connected using the method suggested in the document.
    The error I have received is :
    ORA-00942: table or view does not exist ORA-00942: table or view does not exist ORA-06512: at "APPS.ICX_SEC", line 2388 ORA-06510: PL/SQL: unhandled user-defined exception
    This error seems to come from wfa_sec.getsession(:P101_USERNAME) used in the Before Header process of the login page(Page101).
    See code here (Figure 10 in the document) :
    BEGIN
    wfa_sec.getsession(:P101_USERNAME);
    :P101_PASSWORD :=
    XXAPX_SECURITY_PKG.generate_hash
    (FND_GLOBAL.user_name);
    IF :P101_PASSWORD IS NOT NULL THEN
    APEX_CUSTOM_AUTH.login(
    P_UNAME => :P101_USERNAME,
    P_PASSWORD => :P101_PASSWORD,
    P_SESSION_ID => v('APP_SESSION'),
    P_APP_PAGE => :APP_ID||':1'
    END IF;
    EXCEPTION WHEN OTHERS THEN NULL;
    END;
    I have done a "GRANT EXECUTE ON apps.WFA_SEC" to my APEX Schema, so the APEX Schema should have access to everything used by the package... I have tried to "GRANT EXECUTE ON" ICX_SESSIONS but I still have the same error...
    Do I need to do other "GRANT" ? Have you experienced the same problem ?
    Thanks for your help !

    Hi !
    Yes, I have already created synonyms but I still got the same errors...the error seems to be related to a table used in the package icx_sec...I have tried to grant and create synonym for tables icx_transactions and icx_sessions but I still got the error. Any ideas ?
    I have also tried to use the method (OWA_COOKIE.send) suggested in the 2007 version of the Rod West's document (the method you mentionned in the thread) and I'm able to get connected to my APEX application using the E-Business Menu but I have an intermittent problem with this method.. In fact, some days I'm able to get connected to APEX at the first try but some days I received "Invalid Login Credentials" at the first try and at the second try I get connected...And we haven't found any reasons yet for the intermittent "Invalid Login Credentials" ?
    Have you experienced the same intermittent problem on your side ?
    Thanks !

  • Performance of Sales order creation on Business Suite on HANA

    Hi,
    I understand that HANA column tables are read and insert optimized. I would like get some clarification on the following scenario.
    Assume that in the ECC (non HANA DB) the sales order creation process is taking few hours to complete due to the sheer number of line items and associated bill of materials, serial numbers etc. If the same process is running on the Business suite on HANA system will there be any considerable performance improvement (because HANA column tables are insert optimized)?
    Thanks for your help on this.
    Thanks
    Vinod

    Yes Vinod,
    that is the general idea.
    For more details please have a look at Hasso Plattner's latest book A Course in In-Memory Data Management: The Inner Mechanics of In-Memory Databases.
    R/3 updates the row table based on V1 or V2 priorities and writes the changes to the change log tables in the background.
    With HANA application we can eliminate the need for the change log tables and table locking, by inserting the changes for particular fields into the columnar tables of the application with a time stamp immediately, and therefore also enabling real-time reporting.
    For traditional RDBMS based applications the notion was that the faster read from the row tables which only hold the latest updates justifies the update of the changelog tables. In order to optimize this update process required by the traditional RDBMS-based systems, a single sales document was split into many smaller tables, like for example header table VBAK and item table VBAP and separate status tables for these header and items, which also made it more challenging to build reports on the complex set of individual tables.
    Indices and aggregates could be more easily build from the single row records, but on the flipside after each update to the row table, the indices and aggregates needed to be re-build or scheduled for rebuild at a later point in time. Not only the application-build index tables and aggregates, but also the secondary index tables created by the DBA tuning efforts.
    Overall tons of overhead especially for business processes with a many updates like sales order re-scheduling based on MRP runs.
    With HANA this is no longer necessary as the latest information and the time travel from the columnar store can be accessed instantaneously across all inserts and therefore eliminates the need for any overhead of the index and aggregates as well as the changelog tables. In addition the split of document information into many smaller tables can now be avoided, so that we might not see any header tables and their dependent tables anymore.
    We will provide more updates as they become available in the S/4 SAP S/4 Business Suite on SAP HANA (FAQ)
    Thank you
    erich

  • Fail to install E-Business Suite Diagnostics Installation Guide ID 167000.1

    I am following E-Business Suite Diagnostics Installation Guide [ID 167000.1] for the installation.
    Firstly, i have successfully adsplice Patch 3636980.
    then i try on Patch 7530017 and i hit this error during adpatch:
    About to update the current-view snapshot: Wed Oct 24 2012 18:27:43
    Updating the current-view snapshot...
    ORA-01403: no data found
    ORA-06512: at "APPS.AD_FILE_SYS_SNAPSHOTS_PKG", line 2095
    ORA-06512: at line 2
    AutoPatch error:
    Error while executing statement (curr-vw updt)
    Error calling adphistUpdtCurrVwSnapshot(1).
    Error calling adphistStoreCurPatchHistInDB2
    AutoPatch error:
    Unable to save Patch History information to Database
    Then according to note [ID 468940.1], i need to run the Update current view snapshot, and i hit this error:
    File "atg_supp_patches.sql"
    Either has No Version or Unknown error(-4)
    Failed in adusnapGetDetailFileInfo()
    AD Administration error:
    Failed store Snapshot file info
    adusnapMaintainSnapshot() : Error calling adusnapUpdateCurrentView()
    Error calling adusnapMaintainSnapshot
    Checking from knowledge base, i should follow ID 372491.1 to solve the problem, but i can't figure out which record to follow.
    AD_APPL_TOPS
    appl_top_id,name,server_type_admin_flag,server_type_forms_flag,server_type_node_flag,server_type_web_flag,applications_system_name,appl_top_type,active_flag
    1,tafnw1,Y,Y,Y,Y,prod,R,Y
    43,*PRESEEDED*,,,,,*PRESEEDED*,S,Y
    68,digidb2,Y,N,Y,N,EES06A,R,Y
    69,GLOBAL,,,,,EES06A,G,Y
    21,crmees06,Y,Y,Y,Y,DEV,R,Y
    41,isupplier,N,N,N,Y,DEV,R,Y
    42,t_f_w1,,Y,,Y,DEV,R,Y
    88,AT_ofsdevdb,Y,Y,Y,Y,DEV,R,Y
    45,digiapps1,N,Y,N,Y,DEV,R,Y
    65,GLOBAL,,,,,DEV,G,Y
    66,digiapps1,N,Y,N,Y,EES06A,R,Y
    AD_SNAPSHOTS
    snapshot_id,release_id,appl_top_id,snapshot_name,snapshot_type,comments,ran_snapshot_flag
    1,21,43,*PRESEEDED*11.5.5,B,Preseeded,Y
    8,41,68,CURRENT_VIEW,C,Current View,N
    9,41,69,GLOBAL_VIEW,G,Created from Current View Snapshots,N
    2,21,88,CURRENT_VIEW,C,Current View,Y
    3,61,45,CURRENT_VIEW,C,Current View,Y
    4,61,41,CURRENT_VIEW,C,MERGING_APPL_TOPS_DONE,Y
    5,21,41,PROD,S, ,Y
    6,21,65,GLOBAL_VIEW,G,Created from Current View Snapshots,Y
    7,21,41,BACKUP_SNAPSHOT_4,S, ,Y
    (sorry, not sure how to post the table nicely)
    what should i do next?

    Then according to note [ID 468940.1], i need to run the Update current view snapshot, and i hit this error:Please see (ORA-06512 APPS.AD_FILE_SYS_SNAPSHOTS_PKG [ID 372491.1]).
    Thanks,
    Hussein

  • How to integrate E-Business Suite and OWB

    I want to extract data from an E-business Suite (EBS) database. In the OWB 10.2 userguide is a paragraph, Enabling Integration with Oracle E-business Suite, telling me to import some metadata tables from the EBS-database. But how do I go from there to extracting the application data from the EBS database?
    Jaap.

    Hi Jaap,
    Take a look at the following paper on OTN as to how the EBS connector works in 10.2 (http://www.oracle.com/technology/products/warehouse/pdf/ERP%20Data%20Integration%20with%20OWB.pdf)
    In general this works like most import and loads in OWB. You basically read the EBS metadata catalog and then once that information is in OWB, you drag these tables into mappings.
    Hope this answers the questions,
    JP

  • 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.

  • How to Unlicensed E-business suite product ?

    Hi,
    How to Unlicensed E-business suite product module ?
    If I want to take off CASH management which is currently showing as licensed product like that.
    Thanks

    Hi,
    There is no direct way to achieve this, so you will have to restore the application/database files from a backup before this module was licensed. If you cannot afford this solution, please log a SR and see if Oracle support would suggest any workaround.
    Note: Please do not update any table manually unless you are instructed to do so by Oracle Support.
    Regards,
    Hussein

  • 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

  • Fax and SMS from E-Business Suite

    I am currently working on the implementation of HRMS and finance
    modules from the E-business suite. My question is, Is it
    possible to fax or SMS from these core modules, if so how is
    this achieved if using Microsoft exchange, is there any relevant
    documentation around
    Thanks
    Mark

    While I am not aware of any standard published means to do so, you can also think of triggering a Java code to instantiate the business event.
    A non-intrusive approach could be.
    1. Have a Java Business Event Subscription to the Item-create/update event.
    2. Make API calls to the BPEL invocation code from this Java BPES. (The OTN BPEL tutorials have sample code)
    However, there is a risk that the Java client classes required for invoking BPEL processes may not be part of the middle-tier JAVA classpath. ($AF_CLASSPATH in adovars.env). You need to check with techstack team in case you run into issues and need additional jars in the classpath.
    Alternatively,
    3. Create a seeded JMS queue in apps
    4. You can publish a message to a JMS AQ Queue from your Java BES code
    5. Have a JMS adapter to trigger your BPEL process.
    Alternatively, (probably not what you want)
    1. Create a new interface table to store BPEL invocation requests.
    2. Have a DB polling on this table.
    3. Maintain status of BPEL process also in this table.
    4. Purge "success" records from this table at regular intervals. This will keep your DB polling non-intrusive from your actual process flow in apps.

  • ORACLE E-BUSINESS SUITE 11i Query to find users who never logged in

    Dear, All -
    ORACLE E-BUSINESS SUITE 11i
    Is there a query to find out a list of users who were created but never logged into the system. I believe these users do no appear in FND_USER table since they never logged in.
    Thanks in advance!

    FAIRE wrote:
    Dear, All -
    ORACLE E-BUSINESS SUITE 11i
    Is there a query to find out a list of users who were created but never logged into the system. I believe these users do no appear in FND_USER table since they never logged in.
    Thanks in advance!All application users details are stored in FND_USER table (whether they logged in or not).
    To find the list of those users, please run this query:
    SQL> select *
    from FND_USER
    where LAST_LOGON_DATE is NULL
    and END_DATE is NULL;Thanks,
    Hussein

Maybe you are looking for