How to find Oracle Seeded Responsibility

Is this understanding correct that all the rows in fnd_responsibility_tl table with created_by=1 are rows seeded by Oracle, i.e. they are Oracle seeded responsibilities?
Are there any other responsibilities as well which could be seeded?

Is this understanding correct that all the rows in fnd_responsibility_tl table with created_by=1 are rows seeded by Oracle, i.e. they are Oracle seeded responsibilities?Correct -- Unless that column was updated manually.
Are there any other responsibilities as well which could be seeded?Apart from the query you have and the naming convention, I think there is no other way (log a SR to confirm with Oracle support).
Thanks,
Hussein

Similar Messages

  • How to find oracle archieved products

    Hi
    I want to download Oracle Forms 6i for all OS(Vista). here is a link http://www.oracle.com/technology/products/forms/index.html which everybody say we can find Oracle Forms6i. But i feel that now its difficult to find archieved products. If any body has info on how to find Oracle forms 6i download link please reply.
    thanks a lot

    Oracle Forms 6i (6.0.8) is obsolete and no longer supported. It was also never certified to be installed on Vista or any of the newer OSs. The likelihood that you will experience problems installing on those platforms is quite high and is not recommended. That said, if you really would prefer to use an obsolete product you can still download it for a limited time here:
    http://www.oracle.com/technology/software/products/forms/htdocs/winsoft.html
    I do not know how long this URL will remain available as we are slowly cleaning up all of the old references to now unsupported products.

  • How To Find Oracle Home Directory Path...

    Hello,
    I am working on deployment of java web service on Oracle Application Server(LINUX) 10g, EBS - R12.
    I am working on other system and i want to deploy web service remotely on application server.
    And i am not getting the oracle home directory path. I want to find the home directory path remotely.
    so suggest me how to find out path of that.
    or weather i have to install jdevloper on server system and than i have to deploy it,
    or any other alternative way is available.
    Reply as soon as possible......

    Thanks for your reply.
    It's precisely the registry key which got tampered, and there's no ORACLE_HOME environmental variable(Or that too is tampered)
    Now,how to set it to one of the Oracle home directories?
    Regards,
    Bhagat
    !!!!!!!!!!!!!!!!!!!!

  • How to find Oracle drivers are installed in WAS

    Hi
    I am doing Proto type application using webdynpro.I want to create tables in Oracle database,because WAS is installed on Oracle.Now i went to Visual Admin tool and checked the "JDBC Connector" properties.I tried to create the new 'DataSource".While creating DataSource ,it is asking me DriverName,Driver ClassName,Version.I have following questions:
    1.How to find the wheather Oracle drivers are installed or not?if not where to get these drivers?
    2.Once DataSource is created ,how to test wheater it is working fine or not?please help
    Thanks
    Prasad

    Hello Prasad,
    Don't create a new datasource, but create a datasource alias for the existing SAP<sid>DB datasource with your new name.
    <u>(remember to restart the j2ee cluster)</u>
    Then in your application instatiate the datasource and use your create/update/select statements.
    <b><i>Once this is set up test from your java code as follows:</i></b>
    InitialContext ic = new InitialContext(); 
    DataSource mySource = (DataSource)ic.lookup("java:comp/env/jdbc/YourDataSource");
    or.. DataSource mySource = (DataSource)ic.lookup("java:jdbc/YourDataSource"); <b>(can't remember which of the 2 worked)</b>
    if this throws a NamingException, then your alias doesn't work, or perhaps you forgot to restart the cluster.
    After this executes successfully, use the datasource freely.
    Connection con = mySource.getConnection();
    con.executeQuery
    con.executeUpdate
    con.executeStatement
    ect...
    And forget about oracle, sapdb, informix, db2, or whatever drivers. This makes your application portable and independent from the DB layer.
    Please feel free to reward points if this solves your problem.
    Best regards,
    Homer Vargas

  • How to Find Oracle instances?

    Hi all,
    Could you please guide how to check oracle instances?
    Thanks in advance!!

    Hi all,
    Could you please guide how to check oracle
    instances?
    Thanks in advance!!Hi,
    If you mean "how to find out running instances?" then the answer is OS dependent.
    On Windows, you can look for windows services for service names starting with "OracleService...".
    On UNIX, you can inquire the same using
    ps -ef|grep pmon
    Regards

  • How to suppress Oracle Seeded Form Error Message

    I have a requirement to suppress the oracle seeded form error message.
    How this can be done. Can any one please advise?
    Thanks,
    Ananga

    Also, a redirect is possible - look for note 555137.1 in My Oracle Support.
    -Vinod

  • How to find ORACLE Terminal

    I must set up som function keys, and don't find ORACLE Terminal.
    Could someone tell me where to find it ?

    bin\ot60.exe under ORACLE_HOME
    Regards, Michael

  • SOAP to RFC - Sync Scenario. How to find where the response is going to?

    Hello All
    I have a SOAP to RFC sync scenario.
    In SXMB_MONI,  i see that both the initial message and the response message are successfully processed.
    But, the SOAP sender is not receiving the response message.
    How can i trouble shoot this scenario? How can i findout what is going wrong?
    Most importantly, How can i find out the web address of the SOAP sender? I do not see it anywhere.
    Thanks

    Hi Chandra,
    Please check this blog.
    /people/shabarish.vijayakumar/blog/2008/01/08/troubleshooting--rfc-and-soap-scenarios-updated-on-20042009
    You can by pass your message through a TCPIP gateway , this will help you to see the message contnet and the SOAP header information.
    TCPIPGW application is availabel in one of the SAP notes for Monitoring SOAP adapter. and 2 SAP SDN PI  blogs are also there on how to use this application...
    Regards
    Sunil.

  • How to find Oracle script in the database

    Hi,
    I've an Oracle instance with Fine Grained Auditing (FGA).
    In this DB was created a series of policies and now I want to find the scripts created for insert it in another database.
    for example:
    dbms_fga.add_policy (
    .....................How can I find this SQL script from this database?
    I have also export dmp file
    Must I use TOAD for export the objects?
    Thanks in advance!

    you'll need to use datapump export/import for this, see the example below:
    Create fga policy TEST_POLICY on table scott.emp
    SQL> exec dbms_fga.add_policy(object_schema => 'SCOTT',object_name => 'EMP',policy_name => 'TEST_POLICY');
    Show fga policy in the db
    SQL> select * from DBA_AUDIT_POLICIES where policy_name = 'TEST_POLICY';
    OBJECT_SCHEMA                  OBJECT_NAME                    POLICY_OWNER
    POLICY_NAME                    POLICY_TEXT          POLICY_COLUMN                  PF_SCHEMA
    PF_PACKAGE                     PF_FUNCTION                    ENA SEL INS UPD DEL AUDIT_TRAIL  POLICY_COLU
    SCOTT                          EMP                            OPS$ORACLE
    TEST_POLICY
                                                                  YES YES NO  NO  NO  DB+EXTENDED  ANY_COLUMNS
    Now export the metadata for the objects
    [oracle@mr-blonde 11.2.0]$ expdp / dumpfile=testpolicy.dmp directory=DATA_PUMP_DIR content=METADATA_ONLY SCHEMAS='OPS$ORACLE,SCOTT'
    Export: Release 11.2.0.1.0 - Production on Mon Mar 29 11:22:25 2010
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    With the Partitioning, Automatic Storage Management, OLAP, Data Mining
    and Real Application Testing options
    FLASHBACK automatically enabled to preserve database integrity.
    Starting "OPS$ORACLE"."SYS_EXPORT_SCHEMA_01":  /******** dumpfile=testpolicy.dmp directory=DATA_PUMP_DIR content=METADATA_ONLY SCHEMAS=OPS$ORACLE,SCOTT
    Processing object type SCHEMA_EXPORT/USER
    Processing object type SCHEMA_EXPORT/SYSTEM_GRANT
    Processing object type SCHEMA_EXPORT/ROLE_GRANT
    Processing object type SCHEMA_EXPORT/DEFAULT_ROLE
    Processing object type SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA
    Processing object type SCHEMA_EXPORT/TABLE/TABLE
    Processing object type SCHEMA_EXPORT/TABLE/INDEX/INDEX
    Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/CONSTRAINT
    Processing object type SCHEMA_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
    Processing object type SCHEMA_EXPORT/TABLE/COMMENT
    Processing object type SCHEMA_EXPORT/TABLE/FGA_POLICY
    Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT
    Processing object type SCHEMA_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
    Master table "OPS$ORACLE"."SYS_EXPORT_SCHEMA_01" successfully loaded/unloaded
    Dump file set for OPS$ORACLE.SYS_EXPORT_SCHEMA_01 is:
      /app/oracle/admin/CS11G/dpdump/testpolicy.dmp
    Job "OPS$ORACLE"."SYS_EXPORT_SCHEMA_01" successfully completed at 11:23:46
    Now to drop the policy
    SQL> exec dbms_fga.drop_policy (object_schema => 'SCOTT',object_name => 'EMP',policy_name => 'TEST_POLICY');
    PL/SQL procedure successfully completed.
    Now checking that the policy is really gone
    SQL> select * from DBA_AUDIT_POLICIES where policy_name = 'TEST_POLICY';
    no rows selected
    Now to import the policy back into the db from the data pump export taken earlier
    [oracle@mr-blonde 11.2.0]$ impdp / dumpfile=testpolicy.dmp directory=DATA_PUMP_DIR include=FGA_POLICY
    Import: Release 11.2.0.1.0 - Production on Mon Mar 29 11:27:16 2010
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    With the Partitioning, Automatic Storage Management, OLAP, Data Mining
    and Real Application Testing options
    Master table "OPS$ORACLE"."SYS_IMPORT_FULL_01" successfully loaded/unloaded
    Starting "OPS$ORACLE"."SYS_IMPORT_FULL_01":  /******** dumpfile=testpolicy.dmp directory=DATA_PUMP_DIR include=FGA_POLICY
    Processing object type SCHEMA_EXPORT/TABLE/FGA_POLICY
    Job "OPS$ORACLE"."SYS_IMPORT_FULL_01" successfully completed at 11:27:21
    Checking that the fga policy has been imported successfully
    OBJECT_SCHEMA                  OBJECT_NAME                    POLICY_OWNER                   POLICY_NAME                    POLICY_TEXT
    POLICY_COLUMN                  PF_SCHEMA                      PF_PACKAGE                     PF_FUNCTION                    ENA SEL INS UPD DEL
    AUDIT_TRAIL  POLICY_COLU
    SCOTT                          EMP                            OPS$ORACLE                     TEST_POLICY
                                                                                                                                YES YES NO  NO  NO
    DB+EXTENDED  ANY_COLUMNS

  • How to find Oracle SRID, or create one if it does not exist?

    Hi folks
    I am trying to find the Oracle SRID codes for EPSG codes 4893 and 4759, but am having no success yet. We are at version 10.2.0.4.0.
    This query returns no records for me:
    <pre>
    select * from mdsys.cs_srs where wktext LIKE 'GEOGCS[""NAD83(NSRS2007)"", DATUM[""NAD83_National_Spatial_Reference_System_2007""%';
    </pre>
    Because we are not at version 11.2, I can’t use the function "find_geog_crs()" with WKT as the first argument – it only wants to accept an SRID, which is what I’m trying to find.
    Can anyone help:
    a) identify the correct Oracle SRIDs for these EPSG codes?
    b) tell me the proper steps to take in order to add these missing CRS's to our database?
    Any assistance would be much appreciated!

    SRID 4893 is GEOGRAPHIC3D, which is not yet supported in 10.2. In 11, it is supported, but the SRID is not shipped, out of the box.
    SRID 4759 is GEOGRAPHIC2D, and therefore supported in 10.2. However, it is not shipped, out of the box, and I have not found an OGC equivalent SRID, neither.
    Both SRIDs can be added as EPSG custom definitions. I can supply you a script to do this... I'll try to post that script, later, today...

  • How to Find Oracle Home Name

    Hi All,
    I am trying to find what is the name provided for ORACLE HOME NAME for SSO Midtier.
    The install log files are not available. Now when i try to patch the SSO it is prompting for the Oracle home name and path, for which I donot know the value for Oracle Home Name.
    Is there any file apart from install log will have this value or is there any way i can see it from the OEM console?
    Regards,
    Balaji

    Hi,
    The server has:
    1 SSO
    1 MidTier
    But have been installed with the same Oracle Home Name - oracleas
    Now I have to patch the SSO to 10.1.2.2.0
    During patching if I give oracelas1 as oracle home name it automatically changes its path to Mid Tier path.
    If i manually change it to SSO path it throws an error.
    If i give a new Oracle Home Name manually and type the oracle home for SSO, it says this SSO doesnot need the patch 10.1.2.2.0 but the SSO still runs on 10.1.2.0.2
    Let me know if i am clearly.
    Regards,
    Balaji

  • How to find Oracle version

    Hello friends,
    I am new to sql. Can anyone let me know the query as to how we can find the version of the oracel installed on the system.
    Thanks and Regards,
    shekar.

    select * from v$version;

  • How to find 'I Accept' response while pressing button 'Convert to Auction'

    Hi Everybody,
    Can anybody tell me that Terms and conditions accept/decline by BIDDER after invoking Live Auction Cockpit (clicking Live Auction) for a Auction where system stores this response of accept/decline. I want this response. Please help me where to find out this???
    Thanks in advance,
    Satyawan

    I think it is the number of outstanding notifications, which may be replies to invitations you sent out, or invitations to you. You can see the notifications list by clicking the envelope icon in the bottom left corner of iCal's window.
    AK

  • How to find Oracle is using swap space or not?

    Hi,
    I have a SuSe Linux database server on which 2 Oracle 10g databases and one MySQL server is running.
    I can see a very little swap space is being used in the server while there is almost 100% RAM utlization.
    I want to know if my Oracle databases are using swap or not. If it is using, how much of swap being used currently by each Oracle database?
    Can someone please guide me on how to do that?
    Thanks in advance for your help.
    Regards,
    Murali Mohan

    I did "vmstat 1 10" and here is the output.
    What I want to know how much swap space is used by each of my oracle database while the below output is for total swap usage
    procs -----------memory---------- ---swap-- -----io---- system ----cpu----
    r b swpd free buff cache si so bi bo in cs us sy id wa
    0 0 2366860 36996 81660 9458664 67 44 4160 356 9 13 5 3 82 9
    0 0 2366860 38224 81748 9458576 0 0 0 512 1041 369 0 0 99 1
    1 0 2366860 38224 81748 9458576 0 0 4 80 1053 293 6 0 93 0
    2 0 2366860 38224 81752 9458572 0 0 80 40 1467 956 22 7 70 1
    2 1 2366860 38248 81760 9458564 0 0 0 580 1150 444 32 17 50 1
    1 1 2366860 38124 81808 9458516 0 0 360 1040 1672 1158 28 13 51 8
    2 0 2366860 38124 81832 9458492 0 0 84 288 1380 931 33 10 57 1
    2 0 2366860 36596 81884 9458388 52 0 52 4088 1098 475 36 16 46 1
    2 0 2366860 38188 81916 9458356 0 0 144 1096 1251 570 36 12 49 2
    2 0 2366860 38180 81916 9458356 0 0 68 136 1595 1134 28 9 63 1

  • How to find oracle licence number (oracle 8)

    Helllo,
    One of my server is still running with oracle8.
    I was not there where the install proceed (1998) and i don't find any document about this.
    Does this information stored on the server (files, ....) ?
    Thanks
    Franck

    I'm new on this site since May 2011.
    The oracle server was installed for more than 10 years !!
    Purchases order order than 10 years seems to be destroyed !!!
    I will have to purchase a new database server 11g and i wonder if licence update could be possible (therfore i 'll need the licence number )
    Regards
    Franck

Maybe you are looking for

  • IMac having very low reliability with Hard Drive

    Hi, I recently had to replace the hard drive in my Early 2008 iMac. I replaced it with a 2 TB Seagate (pretty reliable) but my computer has been stuttering lately. It'll be fine for a couple days, and then it will just die (not permanently, just unti

  • Executing listbox items according to loop

    I am making a vi in which we need to execute listbox items according to loop values defined at the begining( shown in the image attached below) , it's like that we start a loop with some values in it e.g loop(2,4,5) and loop ends with END string and

  • How to use LabVIEW code in a Thesis?

    Hello, If I write some code, for example, in MATLAB or C++, that I want to include in my thesis as part of a discussion or in the Appendix, it's a fairly straightforward process: copy/paste However, this isn't really an option for LabVIEW code. Even

  • High latency causing problems... and frustration w...

    I have a femtocell that requires the latency on any single hop on the internet to be less than 240ms, any longer than this and it drops my phone call. On contacting the supplier of the femtocell, they asked me to use Traceroute to see how long the pa

  • Widget Browser installer damaged

    Wondering if anyone out there could help me out? I'm trying to install the Widget Browser, but I keep getting an error. This is what pops up. "Sorry an error has ocurred. The application could not be installed because the installer file is damaged. T