Organization id null in RA_Cust_Trx_types_all table in R12 EBS version

Is it possible to get org id null in RA_Cust_Trx_types_all table in R12 EBS version. I would like to know the steps to create the entries in the table RA_Cust_Trx_types_all with org_id as null.
Thanks in advance.

select f.inventory_item_id  ,j.customer_trx_id
apps.mtl_system_items_kfv f,
apps.ra_customer_trx_all j
where 1=1
and customer_trx_id=3458
--and inventory_item_id=1234
Got
inventory_item_id  --> 1234
customer_trx_id  -->3458
select f.inventory_item_id 
apps.mtl_system_items_kfv f,
apps.ra_customer_trx_all j,
apps.oe_order_headers_all ooh,
apps.oe_order_lines_all ool
where 1=1
AND ( ooh.header_id      = ool.header_id or ooh.header_id is null)
AND ool.inventory_item_id = f.inventory_item_id
AND f.organization_id     =NVL(ool.ship_from_org_id,34)
and j.interface_header_attribute1 = to_char(ooh.order_number)
and z.interface_line_attribute1   = to_char(ooh.order_number)
and z.interface_line_attribute6   = to_char(ool.line_id)
--and inventory_item_id=1234
With the above Query i am getting inventory_item_id  as NULL because with that Inventory_item_id i don't any rows in the Orders Lines Table

Similar Messages

  • Which fnd table has the EBS version?

    I'd like to find out the R12 version from the db, without logging into the apps nor logging into the servers.
    Which table has that?

    Hi,
    Please see the following threads.
    family pack level
    family pack level
    Scripts to know Installed family pack version in apps11i
    Scripts to know Installed family pack version in apps11i
    Regards,
    Hussein

  • How to migrate the userwise organization access rights info from 11i to R12

    Dear All,
    Is there a way to migrate the user-wise organization access rights information from 11i to R12 ? Does this falls under DBA purview ?

    I assume you are talking about Organization Access (in Inventory). As far as I know, there is no api for this. You can consider using a key-mapping software such as Data loader / winparrot.
    OR
    you can write your own script to insert records into the org_access table. It should be a straight forward insert. You just need to ensure that the combination of organization_id, responsibility_id and resp_application_id is valid.
    Hope this helps
    Sandeep Gandhi
    Independent Consultant

  • Table.rows.find() returns null in a table where the row exists.

    Hi...
    I am working in a Project in Visual Studio 2013 where I have to read an Excel report related with a list of business opportunities. Some of the Fields that are involved in it are:  Opportunity ID, BU, Account, close date, Account Manager,
    Total Value and so on. As soon as I get the conection with the Excel Report, I fill a DataTable and declare the columns [Opportunity ID] and [BU] as my Primary Keys.  In that way, an Opportunity value may have one o more rows
    with different BU code each of them.  In consequence, you can define one row in the table if you specify the [Opportunity ID] and the [BU] values.
    My problem starts when I try to get information of those rows that have an specific value of [Opportunity ID]. For that situation I make a "foreach" structure where I check the BU codes that are involved with that Opportunity. So
    I use the Find() Method to get the information of the row specified by the Opportunity ID and BU.  The first time it goes to find the information it gets the results successfully but in the next cycle changing just the [BU] using the same [Opportunity
    ID] value, the find() method returns a "null" and I do not know why because I am sure that the row exists in the table.  I have verified the "Unique" property for the  [Opportunity ID] and [BU] columns (which are
    my primary keys)  and they are in false which is OK.
    I share the code that I am using...
    Hope someone can help.
    Thanks.
    Alfmar.
    void ObtenTotalesxBUs(string Opportunity, string[] BUs, Object[] TotalBUs, Object[] ExpTotalBUs)
    ArrayList TotalesBUs = new ArrayList(); //Required information from the row.
    ArrayList ExpTotalesBUs = new ArrayList(); //Required information from the row.
    foreach(string businessUnit in BUs)
    Object[] LlaveBusqueda = { Opportunity, businessUnit }; //Provide values to the Primary Keys.
    DataRow RenglonInfo = null;
    RenglonInfo = TablaFunnel.Tabla.Rows.Find(LlaveBusqueda); //Find method receives the Primary Keys values. Here is where I have a "null" in return the second time changing just the [BU] field.
    TotalesBUs.Add(RenglonInfo["Total"]); //Get the required information from the row.
    ExpTotalesBUs.Add(RenglonInfo["Expected Total Value"]); //Get the required information from the row.
    TotalBUs = TotalesBUs.ToArray();
    ExpTotalBUs = ExpTotalesBUs.ToArray();}

    Hi Viorel..
    Thanks a lot for you help.
    I am absolutely sure that the second ítem of BU is valid and exist in the table because I tried to make a "Select" statement in the table providing the values of [Opportunity ID] and [BU] and I get the expected record. So, why is not
    working using Find() with the defined Primary Keys??? 
    I tried this in order to test that the record exists...
    if(RenglonInfo == null)
    string strSelect = "[Opportunity ID] = '0000218256' AND [BU] = 'SFW'";
    RenglonInfo2 = TablaFunnel.Tabla.Select(strSelect);

  • Oracle Financials AP 11i tables Vs R12 tables

    Hello,
    I have a package that works in Oracle Apps 11i instance. This package is using 11i tables in its cursors. we are moving this package to r12 and thus this package has to run in r12 using r12 tables. I have heard that a lot of tables have been changed from 11i to r12 in oracle financials. here is the code.
    Some of the tables in the AP that were used in 11i were AP_BANK_ACCOUNTS_ALL, AP_BANK_BRANCHES, AP_CHECKS_ALL,
    AP_INV_SELECTION_CRITERIA_ALL,
    fnd_lookup_values_vl. I need to know their R12 counterparts or the R12 tables that needs to be inserted here.
    SELECT DISTINCT abb.attribute1 attribute1
    FROM APPS.ap_bank_accounts_all ABA,
    APPS.ap_bank_branches ABB,
    XXAP.XXAP_CD_PAYBATCH_APPR_OUT XCOUT,
    APPS.AP_INV_SELECTION_CRITERIA_ALL AISC
    WHERE aisc.checkrun_id = xcout.batch_id
    AND aisc.bank_account_id = aba.bank_account_id
    AND aba.bank_branch_id = abb.bank_branch_id
    SELECT ABB.ATTRIBUTE1 MESSAGE_ID,
    FROM APPS.AP_BANK_ACCOUNTS_ALL ABA,
    APPS.AP_BANK_BRANCHES ABB,
    APPS.AP_CHECKS_ALL CHK,
    APPS.AP_INV_SELECTION_CRITERIA_ALL AISC,
    APPS.fnd_lookup_values_vl FLV,
    XXAP.XXAP_APP_OUT XCOUT
    WHERE ABA.bank_branch_id = ABB.bank_branch_id
    AND AISC.bank_account_id = ABA.bank_account_id
    AND XCOUT.batch_id = AISC.checkrun_id
    AND CHK.checkrun_id = AISC.checkrun_id
    AND CHK.PAYMENT_METHOD_LOOKUP_CODE = AISC.PAYMENT_METHOD_LOOKUP_CODE
    AND ABA.ATTRIBUTE4 = FLV.LOOKUP_CODE

    933951 wrote:
    Hello Srini,
    Thank your for the reply. Appreciate it.
    I have taken a look at the zip file from that Steven Chen blog, but i guess that does not really help me at the moment i guess. It tells us changes have been made but what needs to be replaced with which tables hasnt been mentioned.
    I have taken a look at the document "Bank Setups in R12 Question [ID 434195.1]" and it provided me this below information. Is it right if i replace the tables on the left with the tables on the right.
    AP_BANK_ACCOUNTS_ALL --> CE_BANK_ACCOUNTS
    AP_BANK_ACCOUNTS_USES_ALL --> CE_BANK_ACCT_USES_ALL
    AP_BANK_BRANCHES --> CE_BANK_BRANCHES_VCorrect - pl see this MOS Doc
    R12 Cash Management 'How To' documents [ID 580516.1]     
    AP_CHECKS_ALL -- ??
    AP_INV_SELECTION_CRITERIA_ALL -- ??These two tables are still valid for R12. Pl see
    What are the new tables in R12 for Payables and to what R12 objects are obsoleted 11i tables mapped [ID 1290116.1]     
    >
    Is the above derived information right? Can you please help me in this? Thank you
    Also, i have seen a lot of threads with the same requirement, so i guess that should help a lot of other people.
    Thank youHTH
    Srini

  • What are the payment tables in R12?

    Hello,
    What are the payments tables in R12,
    I need retrieve the below columns from tables in R12
    Payment_id,
    Invoice_num, Invoice_amount
    Payment_num, Payment_amount
    please help us,
    Thanks,
    Raj

    Hello,
    Thanks for your helping,
    1). DUNS_NUMBER
    2). JP_DUNS_NUMBER
    3). CHECK_AMOUNT
    4). CHECK_NUMBER
    5). BANK_NUMBER
    6). DISB_BANK_ACCT
    7). COMPANY,
    8). VENDOR_NAME
    9). CMP_IDF
    Please help me to get this columns in payments
    If you know anything about NACHA Payment Format report customization in R12 please help me, Im struggling to customize this report in R12
    Thanx,
    <-- Raj -->

  • Need help for learning how to develop interfaces for Oracle R12 EBS

    Hi all,
    I need to learn how to create interfaces in PL/SQL for Oracle R12 EBS Financials. I cannot find a good starting point for the documentation and examples to help me get started in this area. Would appreciate tips
    for this area.

    Hi,
    What kind of interfaces you are planning to develop?
    Oracle already provides list of APIs that can be used (in R12, it is responsibility).
    Oracle Integration Repository Documentation Resources Release 12 [ID 396116.1]
    Oracle Integration Repository
    http://irep.oracle.com/index.html
    If those APIs do not satisfy your requirements, you can refer to "Oracle Applications Developer" guide as well as SQL-PL/SQL guides.
    Applications Releases 11i and 12
    http://www.oracle.com/technetwork/documentation/applications-167706.html
    Database Documentation -- SQL-PL/SQL
    http://www.oracle.com/technetwork/database/enterprise-edition/documentation/index.html
    Thanks,
    Hussein

  • Any table to check A version of datasource in development and quality syste

    Hi Experts,
    1. Do we have any tables to check A version of objects once the datasource moved to quality system?...
    2. I have moved some datasources from development to quality system and in the log of the request i am seeing the error message like below
    DataSource xyz does not exist in source system qa system of version A
    Mapping between data source xyz and source system QA is inconsistent
    DataSource xyz does not exist in source system QA of version A
    Field  field1 will not be delivered from DataSource xyz in source system qa system
    Field field2 will not be delivered from DataSource xyz in source system QA system
    Field nfield3 will not be delivered from DataSource xyz in source system QA
    Field field4 will not be delivered from DataSource xyz in source system QA
    Field field5 will not be delivered from DataSource xyz in source system QAT
    How to handle this type issue while transporting issues..
    Could any one help me to resolve this issue.
    Thanks,
    Vachan

    Hi Jr,
    thanks for your reply...Please give me the correct path to check the mapping..
    Thanks,
    Vachan

  • How is it possible to split the table cells in Pages, Version 5.1

    How is it possible to split the table cells in Pages, Version 5.1?

    This is a feature removed in the change from Pages 09 to Pages 5.0.1.
    If you need this facility, revert to Pages 09.  If you upgraded to 5.0.1, then the earlier version is still in your Applications folder in a folder called iWork.

  • How to up concurrent manager in R12 EBS installation in windows 2003 server

    Hi,
    I have installed R12 EBS on windows 2003 server. It was working fine for 2 days.
    Then suddenly when I submitted some concurrent program ,
    status was "No Manager" i.e. concurrent manager was down.
    I dont know how to restart/start concurrent manager .
    Any help will be greatly appreciated .
    Thanks

    Thanks hussein , where do I get application env file. I tried stoping cm from the services and then executed file CMCLEAN.sql and then restarted cm from services menu. However still I can't see cm running in application. I bounced the server also before restartingConfiguration and Environment Files
    http://docs.oracle.com/cd/E18727_01/doc.121/e13676/T530334T530337.htm#admu-cef
    Did you commit the changes after running cmclean.sql? If yes, please check the CM log file for any errors.
    Thanks,
    Hussein

  • Is it possible to add standard tables to a trial version of sap netweaver

    Hi,
    I have installed SAP NetWeaver 7.01 ABAP Trial Version successfully but i can't find any standard
    tables in it.
    Is it possible to add standard tables in a trial version, if yes then how.
    Please can u explain in detail how to get the standard data, i am new to sap.
    Please help.
    2)
    Is it possible to install SAP NetWeaver 7.01 ABAP Trial Version  and SAP Netweaver sp16 Java trial edition in windows on one single system side by side, if yes then how.
    Thanks

    Thanks for your reply sir.
    By standard tables i mean tables such as MSEG,BSEG etc.
    I Can't find them in the trial version.
    Is it possible to add such tables to a trial version of sap netweaver, if yes then what i have to do.
    I am new to sap.
    Thanks

  • Startup / Shutdown Oracle R12 EBS Linux Server How To?

    Hi All,
    I finally have a linux box (x86) running with the R12 EBS.
    Now, I wanted to get some input if I shut down this box when not in use, what is the best way to do that?
    And when I restart, what is the best way to kick it up so its up and running again.
    Basically - need some input on what measures to take and which commands to run.
    Thanks!

    This is the results from:
    /d01/oracle/VIS/db/tech_st/11..1.0/lib
    [oravis@oracle lib]$ ls -lrt
    total 550872
    -rw-r--r-- 1 oravis dba 56899 Sep 25 2000 jdev-rt.zip
    -rw-r--r-- 1 oravis dba 280984 Oct 23 2001 mail.jar
    -rw-r--r-- 1 oravis dba 45386 Oct 23 2001 activation.jar
    -rw-r--r-- 1 oravis dba 139516 Jun 5 2003 xmldemo.jar
    -rw-r--r-- 1 oravis dba 232488 May 23 2005 http_client.jar
    -rw-r--r-- 1 oravis dba 142 Oct 17 2005 credentials.reg
    -rw-r--r-- 1 oravis dba 103 Oct 17 2005 clusters.reg
    -rw-r--r-- 1 oravis dba 37948 Jun 9 2006 jcr-1.0.jar
    -rw-r--r-- 1 oravis dba 2702 Sep 19 2006 fetchlets.reg
    -rw-r--r-- 1 oravis dba 7370 Jan 17 2007 asmcmd_disk_header_format
    -rw-r--r-- 1 oravis dba 11701 Jun 4 2007 asmcmdglobal.pm
    -rwxr-xr-x 1 oravis dba 253559 Jul 10 2007 libexpat.so.0.5.0
    -rwxr-xr-x 1 oravis dba 253559 Jul 10 2007 libexpat.so.0
    -rwxr-xr-x 1 oravis dba 253559 Jul 10 2007 libexpat.so
    -rwxr-xr-x 1 oravis dba 743 Jul 10 2007 libexpat.la
    -rwxr-xr-x 1 oravis dba 442746 Jul 10 2007 libexpat.a
    -rw-r--r-- 1 oravis dba 388 Aug 3 2007 recvlets.reg
    -rw-r--r-- 1 oravis dba 179758 Sep 5 2007 libocijdbc11.so
    -rw-r--r-- 1 oravis dba 15505 Sep 5 2007 libheteroxa11.so
    -rw-r--r-- 1 oravis dba 423502 Sep 8 2007 libirc.a
    -rw-r--r-- 1 oravis dba 26086 Sep 8 2007 libipgo.a
    -rw-r--r-- 1 oravis dba 4351658 Sep 8 2007 libimf.a
    -rw-r--r-- 1 oravis dba 3848 Sep 8 2007 libcxaguard.so.5
    -rw-r--r-- 1 oravis dba 394232 Sep 9 2007 ojcr.jar
    -rw-r--r-- 1 oravis dba 83020 Sep 21 2007 asmcmdshare.pm
    -rw-r--r-- 1 oravis dba 13159 Oct 4 2007 libskgxn2.so
    -rw-r--r-- 1 oravis dba 0 Oct 14 2007 libclntst11.a
    -rw-r--r-- 1 oravis dba 3098 Nov 16 2007 facility.lis
    -rw-r--r-- 1 oravis dba 24240 Dec 7 2007 libslax11.a
    -rw-r--r-- 1 oravis dba 71767 Feb 6 2008 asmcmddisk.pm
    -rw-r--r-- 1 oravis dba 167306 Mar 28 2008 asmcmdbase.pm
    -rw-r--r-- 1 oravis dba 38 Jul 31 2008 sysliblist
    -rw-r--r-- 1 oravis dba 330384 Aug 6 2008 libwwg.a
    -rw-r--r-- 1 oravis dba 56782 Aug 18 2008 asmcmdambr.pm
    -rw-r--r-- 1 oravis dba 12514 Aug 26 2008 libOsUtils.so
    -rw-r--r-- 1 oravis dba 1440458 Aug 27 2008 libldapclnt11.a
    -rw-r--r-- 1 oravis dba 39208 Aug 27 2008 libldapjclnt11.a
    -rw-r--r-- 1 oravis dba 74594 Aug 27 2008 libzt11.a
    -rw-r--r-- 1 oravis dba 2713966 Aug 27 2008 libztkg11.a
    -rw-r--r-- 1 oravis dba 11899122 Aug 27 2008 libnnz11.a
    -rw-r--r-- 1 oravis dba 8387704 Aug 27 2008 libnnz11.so
    -rw-r--r-- 1 oravis dba 188108 Aug 27 2008 libowm2.so
    -rw-r--r-- 1 oravis dba 133781 Aug 27 2008 libldapjclnt11.so
    -rw-r--r-- 1 oravis dba 808740 Aug 27 2008 libordim11.a
    -rw-r--r-- 1 oravis dba 203610 Aug 27 2008 libordimt11.a
    -rw-r--r-- 1 oravis dba 584320 Aug 27 2008 libordim11.so
    -rw-r--r-- 1 oravis dba 193150 Aug 27 2008 xsu12.jar
    -rw-r--r-- 1 oravis dba 3567 Aug 27 2008 xsqlserializers.jar
    -rw-r--r-- 1 oravis dba 131646 Aug 27 2008 xschema.jar
    -rw-r--r-- 1 oravis dba 1436312 Aug 27 2008 xmlparserv2.jar
    -rw-r--r-- 1 oravis dba 646807 Aug 27 2008 xmlmesg.jar
    -rw-r--r-- 1 oravis dba 565119 Aug 27 2008 xml.jar
    -rw-r--r-- 1 oravis dba 92141 Aug 27 2008 xmlcomp.jar
    -rw-r--r-- 1 oravis dba 11114 Aug 27 2008 xmlcomp2.jar
    -rw-r--r-- 1 oravis dba 117441 Aug 27 2008 transx.zip
    -rw-r--r-- 1 oravis dba 148664 Aug 27 2008 oraclexsql.jar
    -rw-r--r-- 1 oravis dba 36686 Aug 27 2008 classgen.jar
    -rw-r--r-- 1 oravis dba 5578314 Aug 27 2008 libordsdo11.a
    -rw-r--r-- 1 oravis dba 2050282 Aug 27 2008 libsqlplus.a
    -rw-r--r-- 1 oravis dba 1481762 Aug 27 2008 libsqlplus.so
    -rw-r--r-- 1 oravis dba 2408 Aug 27 2008 sscoreed.o
    -rw-r--r-- 1 oravis dba 2736 Aug 27 2008 scorept.o
    -rw-r--r-- 1 oravis dba 4352 Aug 27 2008 s0main.o
    -rw-r--r-- 1 oravis dba 139966 Aug 27 2008 liboraz.a
    -rw-r--r-- 1 oravis dba 1751103 Aug 27 2008 libcorejava.so
    -rw-r--r-- 1 oravis dba 119187 Aug 27 2008 lclasses14.zip
    -rw-r--r-- 1 oravis dba 119187 Aug 27 2008 lclasses12.zip
    -rw-r--r-- 1 oravis dba 84898 Aug 27 2008 libons.so
    -rw-r--r-- 1 oravis dba 74601 Aug 27 2008 libonc.so
    -rw-r--r-- 1 oravis dba 85590 Aug 27 2008 libmgwagent.so
    -rw-r--r-- 1 oravis dba 206574 Aug 27 2008 libunls11.a
    -rw-r--r-- 1 oravis dba 283488 Aug 27 2008 libsnls11.a
    -rw-r--r-- 1 oravis dba 2332486 Aug 27 2008 libnls11.a
    -rw-r--r-- 1 oravis dba 85848 Aug 27 2008 liblxled.a
    -rw-r--r-- 1 oravis dba 215608 Aug 27 2008 libncrypt11.a
    -rw-r--r-- 1 oravis dba 4284 Aug 27 2008 nautab.o
    -rw-r--r-- 1 oravis dba 3944 Aug 27 2008 nautab_std.o.dbl
    -rw-r--r-- 1 oravis dba 27008 Aug 27 2008 libnhost11.a
    -rw-r--r-- 1 oravis dba 39564 Aug 27 2008 libntns11.a
    -rw-r--r-- 1 oravis dba 10480 Aug 27 2008 libnoname11.a
    -rw-r--r-- 1 oravis dba 339956 Aug 27 2008 libnldap11.a
    -rw-r--r-- 1 oravis dba 4696 Aug 27 2008 nigtab.o
    -rw-r--r-- 1 oravis dba 4872 Aug 27 2008 osntabst.o
    -rw-r--r-- 1 oravis dba 16912 Aug 27 2008 nigcon.o
    -rw-r--r-- 1 oravis dba 3026 Aug 27 2008 libnsslb11.a
    -rw-r--r-- 1 oravis dba 1112022 Aug 27 2008 libnl11.a
    -rw-r--r-- 1 oravis dba 213228 Aug 27 2008 libnsgr11.a
    -rw-r--r-- 1 oravis dba 159594 Aug 27 2008 libnus11.a
    -rw-r--r-- 1 oravis dba 261226 Aug 27 2008 libntcp11.a
    -rw-r--r-- 1 oravis dba 106352 Aug 27 2008 libnbeq11.a
    -rw-r--r-- 1 oravis dba 6924 Aug 27 2008 libntcps11_std.a.dbl
    -rw-r--r-- 1 oravis dba 309074 Aug 27 2008 libntcps11.a
    -rw-r--r-- 1 oravis dba 865102 Aug 27 2008 libnro11.a
    -rw-r--r-- 1 oravis dba 6758 Aug 27 2008 libnzjs11.a
    -rw-r--r-- 1 oravis dba 4669674 Aug 27 2008 libnjssl11.so
    -rw-r--r-- 1 oravis dba 11845 Aug 27 2008 libntcpaio11.so
    -rw-r--r-- 1 oravis dba 56806 Aug 27 2008 libnque11.so
    -rw-r--r-- 1 oravis dba 216420 Aug 27 2008 libnjni11.so
    -rw-r--r-- 1 oravis dba 15332 Aug 27 2008 naeet.o
    -rw-r--r-- 1 oravis dba 3996 Aug 27 2008 naedhs.o
    -rw-r--r-- 1 oravis dba 5996 Aug 27 2008 naect.o
    -rw-r--r-- 1 oravis dba 5964 Aug 27 2008 naect_std.o.dbl
    -rw-r--r-- 1 oravis dba 15300 Aug 27 2008 naeet_std.o.dbl
    -rw-r--r-- 1 oravis dba 108324 Sep 2 2008 env_emagent.mk
    -rw-r--r-- 1 oravis dba 5623 Sep 2 2008 ins_emagent.mk
    -rw-r--r-- 1 oravis dba 99460 Sep 2 2008 libnmcbuf.a
    -rw-r--r-- 1 oravis dba 45880 Sep 2 2008 libnmccol.a
    -rw-r--r-- 1 oravis dba 4856 Sep 2 2008 snmccolm.o
    -rw-r--r-- 1 oravis dba 21502 Sep 2 2008 libnmcfsga.a
    -rw-r--r-- 1 oravis dba 12250 Sep 2 2008 libnmcfhc.a
    -rw-r--r-- 1 oravis dba 4117694 Sep 4 2008 libctx11.a
    -rw-r--r-- 1 oravis dba 163388 Sep 4 2008 libctxs11.a
    -rw-r--r-- 1 oravis dba 856442 Sep 4 2008 libctxc11.a
    -rw-r--r-- 1 oravis dba 552006 Sep 4 2008 libgx11.a
    -rw-r--r-- 1 oravis dba 208718 Sep 4 2008 libzx11.a
    -rw-r--r-- 1 oravis dba 3731455 Sep 4 2008 libinlxs11.so
    -rw-r--r-- 1 oravis dba 22817190 Sep 5 2008 libjavavm11.a
    -rw-r--r-- 1 oravis dba 1472828 Sep 9 2008 liboevm.a
    -rw-r--r-- 1 oravis dba 33878 Sep 9 2008 libclsrx11.a
    -rw-r--r-- 1 oravis dba 194048 Sep 9 2008 libocrutl11.so
    -rw-r--r-- 1 oravis dba 1759806 Sep 9 2008 libocrb11.so
    -rw-r--r-- 1 oravis dba 1062133 Sep 9 2008 libocr11.so
    -rw-r--r-- 1 oravis dba 1870114 Sep 9 2008 libuini11.so
    -rw-r--r-- 1 oravis dba 2513705 Sep 9 2008 libhasgen11.so
    -rw-r--r-- 1 oravis dba 1617080 Sep 9 2008 libclsr11.a
    -rw-r--r-- 1 oravis dba 170868 Sep 9 2008 libdbcfg11.so
    -rw-r--r-- 1 oravis dba 76181 Sep 9 2008 libclsra11.so
    -rw-r--r-- 1 oravis dba 981908 Sep 11 2008 libsql11.a
    -rw-r--r-- 1 oravis dba 79280 Sep 11 2008 utility.a
    -rw-r--r-- 1 oravis dba 1042396 Sep 11 2008 sqoci.a
    -rw-r--r-- 1 oravis dba 308276 Sep 11 2008 sqora.a
    -rw-r--r-- 1 oravis dba 695666 Sep 11 2008 libskgxpr.so
    -rw-r--r-- 1 oravis dba 21674 Sep 11 2008 libskgxpd.so
    -rw-r--r-- 1 oravis dba 22926 Sep 11 2008 libnnet11.a
    -rw-r--r-- 1 oravis dba 1029197 Sep 11 2008 libsqora.so.11.1
    -rw-r--r-- 1 oravis dba 1313816 Sep 11 2008 libagent11.a
    -rw-r--r-- 1 oravis dba 201420 Sep 11 2008 libplc11.a
    -rw-r--r-- 1 oravis dba 22926 Sep 11 2008 libnnetd11.a
    -rw-r--r-- 1 oravis dba 8795474 Sep 11 2008 libclient11.a
    -rw-r--r-- 1 oravis dba 26750 Sep 11 2008 libavstub11.a
    -rw-r--r-- 1 oravis dba 11007314 Sep 11 2008 libpls11_pic.a
    -rw-r--r-- 1 oravis dba 363374 Sep 11 2008 libpsa11.a
    -rw-r--r-- 1 oravis dba 72114 Sep 11 2008 libnid.a
    -rw-r--r-- 1 oravis dba 5235610 Sep 11 2008 libplp11.a
    -rw-r--r-- 1 oravis dba 202632 Sep 11 2008 libplc11_pic.a
    -rw-r--r-- 1 oravis dba 400868 Sep 11 2008 libcell11.a
    -rw-r--r-- 1 oravis dba 5301906 Sep 11 2008 libplp11_pic.a
    -rw-r--r-- 1 oravis dba 4960 Sep 11 2008 libmm.a
    -rw-r--r-- 1 oravis dba 385350 Sep 11 2008 libhgosh11.a
    -rw-r--r-- 1 oravis dba 2239366 Sep 11 2008 libocci11.a
    -rw-r--r-- 1 oravis dba 3769470 Sep 11 2008 libcommon11.a
    -rw-r--r-- 1 oravis dba 12755 Sep 11 2008 libodmd11.so
    -rw-r--r-- 1 oravis dba 54764 Sep 11 2008 libnfsodm11.so
    -rw-r--r-- 1 oravis dba 423560 Sep 11 2008 libxdb.so
    -rwxr-xr-x 1 oravis dba 47459 Sep 11 2008 libhgotrace11.so
    -rw-r--r-- 1 oravis dba 695636 Sep 11 2008 libskgxpg.so
    -rw-r--r-- 1 oravis dba 8386 Sep 11 2008 libvsn11_std.a.dbl
    -rw-r--r-- 1 oravis dba 8446 Sep 11 2008 libvsn11.a
    -rw-r--r-- 1 oravis dba 13191 Sep 11 2008 libskgxns.so
    -rw-r--r-- 1 oravis dba 315024 Sep 11 2008 libqsmashr.so
    -rw-r--r-- 1 oravis dba 16235836 Nov 10 2008 liboraolap11.a
    -rw-r--r-- 1 oravis dba 29760784 Nov 10 2008 libolapapi11.so
    -rwxr-xr-x 1 oravis dba 42924 Jan 14 2009 libnmuc.so.0
    -rwxr-xr-x 1 oravis dba 42924 Jan 14 2009 libnmuc.so
    drwxr-xr-x 2 oravis dba 4096 Mar 26 2009 stubs
    -rwxr-xr-x 1 oravis dba 145888 Mar 26 2009 libnmefojmx.so.0
    -rwxr-xr-x 1 oravis dba 45302 Mar 26 2009 libnmefdms.so.0
    -rwxr-xr-x 1 oravis dba 37079 Mar 26 2009 libnmevsp.so.0
    -rwxr-xr-x 1 oravis dba 13508 Mar 26 2009 libnmefpfa.so.0
    -rwxr-xr-x 1 oravis dba 52372 Mar 26 2009 libnmefsqlt.so.0
    -rwxr-xr-x 1 oravis dba 27703 Mar 26 2009 libnmefsp.so.0
    -rwxr-xr-x 1 oravis dba 24892 Mar 26 2009 libnmefport.so.0
    -rwxr-xr-x 1 oravis dba 73465 Mar 26 2009 libnmcfsga.so.0
    -rwxr-xr-x 1 oravis dba 45796 Mar 26 2009 libnmcfhc.so.0
    -rwxr-xr-x 1 oravis dba 69739 Mar 26 2009 libsrvmocr11.so0
    -rwxr-xr-x 1 oravis dba 1691901 Mar 26 2009 libsrvmhas11.so0
    -rwxr-xr-x 1 oravis dba 1632963 Mar 26 2009 libocci.so.11.1
    -rw-r--r-- 1 oravis dba 7085106 Mar 26 2009 libxml11.a
    -rw-r--r-- 1 oravis dba 27150788 Mar 26 2009 libgeneric11.a
    -rw-r--r-- 1 oravis dba 11077402 Mar 26 2009 libpls11.a
    -rw-r--r-- 1 oravis dba 4278296 Mar 26 2009 libcore11.a
    -rw-r--r-- 1 oravis dba 181560214 Mar 26 2009 libserver11.a
    lrwxrwxrwx 1 oravis dba 59 Nov 5 23:52 libclntsh.so.10.1 -> /d2/R12/ab/apps/R1211XB9/db/tech_st/11.1.0/lib/libclntsh.so
    lrwxrwxrwx 1 oravis dba 12 Nov 5 23:52 libodm11.so -> libodmd11.so
    lrwxrwxrwx 1 oravis dba 15 Nov 5 23:58 libocci.so -> libocci.so.11.1
    -rw-r--r-- 1 oravis dba 111 Nov 5 23:59 ldflagsO
    -rw-r--r-- 1 oravis dba 111 Nov 5 23:59 ldflags
    -rwxr-xr-x 1 oravis dba 9904424 Nov 5 23:59 libagtsh.so.1.0
    lrwxrwxrwx 1 oravis dba 15 Nov 5 23:59 libagtsh.so -> libagtsh.so.1.0
    -rw-r--r-- 1 oravis dba 2264 Nov 5 23:59 ntcontab.o
    -rw-r--r-- 1 oravis dba 1912 Nov 5 23:59 nnfgt.o
    -rw-r--r-- 1 oravis dba 8572884 Nov 5 23:59 libn11.a
    -rwxr-xr-x 1 oravis dba 2610320 Nov 5 23:59 libnmemso.so.0
    -rwxr-xr-x 1 oravis dba 63592 Nov 6 00:00 libnmeoci.so.0
    -rwxr-xr-x 1 oravis dba 23903 Nov 6 00:00 libnmefw.so.0
    -rwxr-xr-x 1 oravis dba 47734 Nov 6 00:00 libnmefsql.so.0
    -rwxr-xr-x 1 oravis dba 50281 Nov 6 00:00 libnmefos.so.0
    -rwxr-xr-x 1 oravis dba 28830 Nov 6 00:00 libnmefud.so.0
    -rwxr-xr-x 1 oravis dba 199975 Nov 6 00:00 libnmefut.so.0
    -rwxr-xr-x 1 oravis dba 145253 Nov 6 00:00 libnmefojmx.so
    -rwxr-xr-x 1 oravis dba 44419 Nov 6 00:00 libnmefdms.so
    -rwxr-xr-x 1 oravis dba 35900 Nov 6 00:00 libnmevsp.so
    -rwxr-xr-x 1 oravis dba 107145 Nov 6 00:00 libnmevq.so.0
    -rwxr-xr-x 1 oravis dba 14368 Nov 6 00:00 libnmefvr.so.0
    -rwxr-xr-x 1 oravis dba 12801 Nov 6 00:00 libnmefpfa.so
    -rwxr-xr-x 1 oravis dba 15627 Nov 6 00:00 libnmastk.so.0
    -rwxr-xr-x 1 oravis dba 15601 Nov 6 00:00 libnmalk.so.0
    -rwxr-xr-x 1 oravis dba 33331 Nov 6 00:00 libnmadm.so.0
    -rwxr-xr-x 1 oravis dba 24751 Nov 6 00:00 libnmadbg.so.0
    -rwxr-xr-x 1 oravis dba 51665 Nov 6 00:00 libnmefsqlt.so
    -rwxr-xr-x 1 oravis dba 26204 Nov 6 00:00 libnmefsp.so
    -rwxr-xr-x 1 oravis dba 24817 Nov 6 00:00 libnmefport.so
    -rwxr-xr-x 1 oravis dba 22923 Nov 6 00:00 libnmasf.so.0
    -rwxr-xr-x 1 oravis dba 27141 Nov 6 00:00 libnmarl.so.0
    -rwxr-xr-x 1 oravis dba 73374 Nov 6 00:00 libnmcfsga.so
    -rwxr-xr-x 1 oravis dba 45457 Nov 6 00:00 libnmcfhc.so
    -rwxr-xr-x 1 oravis dba 63592 Nov 6 00:00 libnmeoci.so
    -rwxr-xr-x 1 oravis dba 2610320 Nov 6 00:00 libnmemso.so
    -rwxr-xr-x 1 oravis dba 23903 Nov 6 00:00 libnmefw.so
    -rwxr-xr-x 1 oravis dba 50281 Nov 6 00:00 libnmefos.so
    -rwxr-xr-x 1 oravis dba 14368 Nov 6 00:00 libnmefvr.so
    -rwxr-xr-x 1 oravis dba 199975 Nov 6 00:00 libnmefut.so
    -rwxr-xr-x 1 oravis dba 28830 Nov 6 00:00 libnmefud.so
    -rwxr-xr-x 1 oravis dba 47734 Nov 6 00:00 libnmefsql.so
    -rwxr-xr-x 1 oravis dba 107145 Nov 6 00:00 libnmevq.so
    -rwxr-xr-x 1 oravis dba 15601 Nov 6 00:00 libnmalk.so
    -rwxr-xr-x 1 oravis dba 33331 Nov 6 00:00 libnmadm.so
    -rwxr-xr-x 1 oravis dba 24751 Nov 6 00:00 libnmadbg.so
    -rwxr-xr-x 1 oravis dba 15627 Nov 6 00:00 libnmastk.so
    -rwxr-xr-x 1 oravis dba 22923 Nov 6 00:00 libnmasf.so
    -rwxr-xr-x 1 oravis dba 27141 Nov 6 00:00 libnmarl.so
    -rwxr-xr-x 1 oravis dba 48333396 Nov 6 00:00 libclntsh.so.11.1
    -rw-r--r-- 1 oravis dba 4739091 Nov 6 00:00 clntsh.map
    lrwxrwxrwx 1 oravis dba 17 Nov 6 00:00 libclntsh.so -> libclntsh.so.11.1
    -rwxr-xr-x 1 oravis dba 68304 Nov 6 00:00 libsrvmocr11.so
    -rwxr-xr-x 1 oravis dba 79849 Nov 6 00:00 libsrvm11.so0
    -rwxr-xr-x 1 oravis dba 1696482 Nov 6 00:00 libsrvmhas11.so
    -rwxr-xr-x 1 oravis dba 79849 Nov 6 00:00 libsrvm11.so
    -rwxr-xr-x 1 oravis dba 10353690 Nov 6 00:00 liborasdkbase.so.11.1
    lrwxrwxrwx 1 oravis dba 21 Nov 6 00:00 liborasdkbase.so -> liborasdkbase.so.11.1
    -rwxr-xr-x 1 oravis dba 39093373 Nov 6 00:00 liborasdk.so.11.1
    lrwxrwxrwx 1 oravis dba 17 Nov 6 00:00 liborasdk.so -> liborasdk.so.11.1
    -rw-r--r-- 1 oravis dba 695636 Nov 6 00:00 libskgxp11.so

  • R12 EBS

    Dear all,
    In R12 EBS,from my server, when I try to create a location in inventory, after entering all the details on the form, when I try to save, it gives me this error message: FRM-40735: ON-INSERT trigger raised unhandled exception ORA-29273". What do I do to solve this problem?.
    Thanks.
    Regards
    Clement.

    Hi Hussein,
    I do not have csi to access the documents, can you please copy and paste the solution for me here?
    Remember my query:
    Re: In R12 EBS,from my server, when I try to create a location in inventory, after entering all the details on the form, when I try to save, it gives me this error message: FRM-40735: ON-INSERT trigger raised unhandled exception ORA-29273". What do I do to solve this problem?.
    Required details are:
    Application: R12.1.3
    Database: 11.1.0.7
    Operating System: Oracle Unbreakable Linux 5
    Navigation path:
    Inventory, Vision Operations (USA): Setup – Org – Location
    complete the location form, when I try to save, then error message: FRM-40735: ON-INSERT trigger raised unhandled exception ORA-29273". What do I do to solve this problem?.
    Form name: Location.
    This is my first time to actually use it.
    I hope you can give me the solution.
    Thanks Regards
    Clement Ikolo

  • Oracle R12 EBS installation on CentOS Linux 5

    Per MOS Note 761566.1 , I am installing Oracle 12.1.1 EBS on CentOS 5.5 Linux 64 bit servers. Issue is that I cannot find the packages listed below which are required for 64 Bit Linux installation with Oracle R12 EBS:
    The following packages must be installed from the OEL 5 or RHEL 5 distribution media:
    gcc-4.1.2-14.el5.x86_64
    gcc-c++-4.1.2-14.el5.x86_64
    glibc-2.5-18.i686 (32-bit)
    glibc-2.5-18.x86_64
    glibc-common-2.5-18.x86_64
    glibc-devel-2.5-18.i386 (32-bit)
    glibc-devel-2.5-18.x86_64
    libgcc-4.1.2-14.el5.i386
    libgcc-4.1.2-14.el5.x86_64
    libstdc++-devel-4.1.2-14.el5.i386
    libstdc++-devel-4.1.2-14.el5.x86_64
    libstdc++-4.1.2-14.el5.i386
    libstdc++-4.1.2-14.el5.x86_64
    make-3.81-1.1.x86_64
    gdbm-1.8.0-26.2.1.i386
    gdbm-1.8.0-26.2.1.x86_64
    libXp-1.0.0-8.1.el5.i386
    libXp-1.0.0-8.1.el5.x86_64
    libaio-0.3.106-3.2.i386
    libaio-0.3.106-3.2.x86_64
    libgomp-4.1.2-14.el5.x86_64
    sysstat-7.0.0-3.el5.x86_64
    util-linux-2.13-0.45.el5.x86_64
    compat-libstdc++-296-2.96-138.i386
    compat-libstdc++-33-3.2.3-61.i386
    Additionally, the following RPMs are required for an 11gR1 Database (which is bundled with the 12.1.1 release) on the database tier:
    compat-libstdc++-33-3.2.3-61.x86_64
    elfutils-libelf-devel-0.125-3.el5.x86_64
    elfutils-libelf-devel-static-0.125-3.el5.x86_64
    libaio-devel-0.3.106-3.2.x86_64
    unixODBC-2.2.11-7.1.i386
    unixODBC-devel-2.2.11-7.1.i386
    unixODBC-2.2.11-7.1.x86_64
    unixODBC-devel-2.2.11-7.1.x86_64
    kernel-headers-2.6.18-8.el5.x86_64
    I cannot find these at the http://oss.oracle.com/projects/compat-oracle/files/Enterprise_Linux
    site for CentOS 5.5 and they are not at the CentOS site either.
    Any ideas where to obtain these required Linux packages for CentOS 5.5?
    Thanks!
    Ben

    Ben,
    CentOS is not certified as a database/application tier node.
    You can find the packages from the Media Pack (Download it from e-Delivery website), or just search Google (below is an example):
    Download compat-libstdc++-33-3.2.3-61.x86_64
    http://tinyurl.com/33rj6ea
    Thanks,
    Hussein

  • Demantra Integration with R12 EBS instance without APS /ASCP

    Will the out of the box integration work without the APS in the R12 EBS instance.
    The client runs SCP and does not use APS for this.
    The client wants to implement Demantra - so how will the integrations work because there is no APS available ?
    Any thoughts would be helpful.
    thx and rgds,
    Pankaj

    Demantra does not integrate with SCP. But You can code such that Demantra output can go into a forecast and then load the forecast into SCP.

Maybe you are looking for