Oracle 11i Personalization issue

Hi:
I was trying to export personalization from "Financial Administrator", export/import, select all, then clicked on "export to system". I got "Exported 727 document(s) to /usr/tmp successfully. ..." but I went to /usr/tmp didn't see any file was created.
thank you for your help.

I was trying to export personalization from "Financial Administrator", export/import, select all, then clicked on "export to system". I got "Exported 727 document(s) to /usr/tmp successfully. ..." but I went to /usr/tmp didn't see any file was created.How many nodes you have? Is this a single node or multi-node installation? If it is the latter please check other nodes.
Also, please check the value of "FND: Personalization Document Root Path" profile option and make sure you have permission set properly on this directory -- How To Use 'Functional Administrator' to Migrate Personalizations? [ID 370734.1]
Thanks,
Hussein

Similar Messages

  • POST COMMIT FORM issue in Oracle Forms Personalization

    Hi All,
    I have following requirement in Oracle Forms Personalization :
    1. User updates a records( from the table xxtable) in the Form
    2. Following this, on saving the record, a stored procedure is called to pick those records which are updated/inserted and display. But its displaying still the old values, since commit has not occured.
    3. I have added new forms personalization using POST-DATABASE-COMMIT and POST-FORM-COMMIT. However, none of this trigger is firing.
    Used POST-UPDATE and POST-INSERT, but this trigger are not fetching the committed data but picking the old value.
    Please let me know, how this requirement can be achieved in Oracle forms personalization?
    Many Thanks in Advance.

    the difference in time is that you doing the following additional tasks in forms that you dont do in sqlplus:
    1. you are retrieving data into the fields of the form.
    2. creating the record.
    which is a network round-trip for each record. AFAIK.
    if its an option for you, I would create a global temporary table and then populate the temporary table with the required data. Then build a base table block based on the global temporary table. This way you can use the forms default functionality and its fast because you dont have to populate all the records on the form before you see the first record!
    :>)

  • Upgrade of oracle 11i database 9.2.0.6 to 9.2.0.8

    Hi ,
    I want upgrade oracle 11i applcation in to r12. for that 1st i need to upgrade my databse 9.2.0.6 to 9.2.0.8 then to 11.1 . iam using OEL5.1 os .IS it possibel to upgrade the database 9.2.0.6 to 9.2.0.8 on OEL5.1 .Kindly help this issue.

    Hi,
    According to the certification matrix, Oracle9i is not certified with OEL5. So, I am not sure how you managed to have 9.2.0.6 installed and running on this OS. There could be a workaround for ignore the OS pre-req. when running OUI, but I would suggest you log a SR to confirm this with Oracle support.
    Since you are upgrading to 9.2.0.8, please refer to (Note: 216550.1 - Oracle Applications Release 11i with Oracle9i Release 2 (9.2.0)) instead of the one referenced in my previous update (same section). Please note that you still need to apply patch 5035661.
    Thanks,
    Hussein

  • Accounts Receivable Reconciliation - Oracle 11i

    I am sorry this is long but I am trying to be detailed!
    I am trying to help one of my users reconcile AR for Banking purposes. Oracle offers a very nice way to do this with the AR Reconciliation Report (ARXRECON.rdf). The problem we have is that we need to differentiate from Domestic and Export customers as the bank considers Export transactions as “High risk” and will not allow those transactions to be considered as a factor in our ability to borrow.
    This report does not do this. The report is based off of built in procedures and thus I can’t/don’t know how to modify. The solution I have devised is to reproduce the report using queries as Oracle as detailed how the report works (below). The first step is to come up with the exact numbers Oracle details in the report and then once I have the SQL to do that I can make modifications to only pick up Domestic or Export customers.
    ***Quote***
    THE AR RECONCILAITION REPORT
    The AR Reconciliation Report shows the summary amounts of various AR
    reports, that are used to reconcile your AR.
    AR is reconciled when the "Aging on the beginning of the Period" + "The
    Total Activity in the Period" is equal to the "Aging on the end of the
    Period".
    The Total Activity in a period is calculated as follows:
    Transaction Register for the Period
    (-) Applied Receipts Register for the Period
    (-) Un-Applied Receipts Register for the Period
    (+) Adjustments Register for the Period
    (-) Invoice Exceptions for the Period
    (+) Rounding Differences for the Period (*)
    (+) Credit Memo gain/loss for the Period(*)
    (*) These can occur only in the case of foreign currency transactions.
    ***End Quote***
    I have had no issues in writing SQL statements for the Items which make up the period activity. However I cannot seem to get the “Beginning” / “Ending” Balances.
    The documentation details the following on how they derive the beginning and ending balances is here:
    ***Quote***
    Beginning and Ending Balance:
    To get the beginning and ending balances the report uses the same procedure. The As of Date for the Beginning period is GL Date Low-1 where as the As Of date for the Ending balance is GL Date High.
    The report selects all transactions from AR_PAYMENTS_SCHEDULES_ALL table which are not receipts and have a GL Date equal to or less than the As Of date, AND a GL Date Closed which is greater than the As Of date.
    For all records returned which are not credit memos, the report calculates and sums up all the receipt and credit memo applications which have a GL date of greater than the As Of date from the AR_RECEIVABLE_APPLICATIONS_ALL table. This total is termed as Accounted_Amount_Applied_To.
    For all credit memos, the report calculates and sums up all the applications which have a GL date of greater than the AS Of date from the AR_RECEIVABLE_APPLICATIONS_ALL table. This is called the Accounted_Amount_Applied_From.
    Any approved adjustments tied to these transactions are also calculated
    and summed up that have a GL date of greater than the As Of date.
    The report also sums up the Accounted Amount Due Remaining for all
    transactions.
    The final value the report calculates to get the Beginning/Ending Balance is the sum of all Unapplied, On-Account and Unidentified Receipts which were closed after the As Of date.
    The Beginning and Ending balance is calculated using the following
    equation:
    Beginning/Ending Amount = Sum of all Accounted Amount Due Remaining
    + sum of Accounted_Amount_Applied_To
    - sum of Accounted_Amount_Applied_From
    - sum of all approved adjustements
    + ( - sum of all unapplied receipts)
    ***End Quote***
    I am a novice when it comes to understanding the database structure of Oracle 11i and the above details are a little spotty on where and what fields are being summed up. So far I have written these (again note that I am trying to tie to the report…adding the functionality to select Domestic verses Export will come later and is not an issue) SQL statements which should give me an individual number for each part for which I can do calculations with to get the actual balance:
    --AR Beginning Balance Queries
    --Sum ACCTD_AMOUNT_DUE_REMAINING
    Select Sum(AR_PAYMENT_SCHEDULES_ALL.ACCTD_AMOUNT_DUE_REMAINING) as ACCTD_AMOUNT_DUE_REMAINING
    From AR_PAYMENT_SCHEDULES_ALL
    Where AR_PAYMENT_SCHEDULES_ALL.GL_DATE <= :date1
    and AR_PAYMENT_SCHEDULES_ALL.GL_DATE_CLOSED > :date1
    and AR_PAYMENT_SCHEDULES_ALL.org_id = :org
    -- Sum ACCTD_AMOUNT_APPLIED_TO
    Select Sum(AR_RECEIVABLE_APPLICATIONS_ALL.ACCTD_AMOUNT_APPLIED_TO) as ACCTD_AMOUNT_APPLIED_TO
    From AR_RECEIVABLE_APPLICATIONS_ALL
    Where AR_RECEIVABLE_APPLICATIONS_ALL.GL_DATE > :date1
    and AR_RECEIVABLE_APPLICATIONS_ALL.APPLICATION_TYPE <> 'CM'
    and org_id = :org
    --Sum ACCT_AMOUNT_APPLIED_FROM
    Select Sum(AR_RECEIVABLE_APPLICATIONS_ALL.ACCTD_AMOUNT_APPLIED_FROM) as ACCTD_AMOUNT_APPLIED_FROM
    From AR_RECEIVABLE_APPLICATIONS_ALL
    Where AR_RECEIVABLE_APPLICATIONS_ALL.GL_DATE > :date1
    and AR_RECEIVABLE_APPLICATIONS_ALL.APPLICATION_TYPE = 'CM'
    and org_id = :org
    --AR Beginning Balance Queries (End)
    I am not sure how to calculate the “approved adjustments” or what they consider “unapplied receipts” can someone please help me? Also if you believe my above queries aren't pulling the correct totals please elaborate on that as well.
    Thanks in advance!

    I think you will get response faster if you go to the Oracle App. forum.
    http://forums.oracle.com/forums/categoryHome.jspa?categoryID=84
    Thanks

  • Oracle 11i e-Business General Ledger Lead

    Skills -- Oracle 11i e-Business General Ledger implementation
    Job description:
    High profile consulting client seeks a solid Oracle 11i GL Lead for an overseas contract position. This is an excellent opportunity for anyone seeking to gain experience overseas with a Fortune 500 company. All visa requirements will be taken care of by the company.
    Candidate must have experience implementing Oracle e-Business Suite 11i for the GL module with three+ years implementing relevant Oracle products.
    Application Team Lead for Oracle GL
    * Design the Oracle Applications configuration and RICEW component customizations to meet the business process design and application requirements.
    * Use the business process requirements to drive out application requirements and metrics.
    * Assist in defining and reviewing requirements for the application.
    * Validate the design with the stakeholders to ensure that the design satisfies the requirements.
    * Supervise client in completing designs.
    * Inform the project manager of any issues that may affect other areas of the project as discovered.
    * Participate in quality management reviews as outlined in the Validation Task Overview ensuring the application design and related work products satisfy the requirements.
    * Develop an application prototype and conduct conference room pilot to validate the configuration design and explore Oracle Applications gap resolution options.
    * Conduct Oracle Applications training for conference room pilot participants.
    * Participate in transitioning the designs to the programmers and ensure a clear and complete understanding of the designs.
    * Understand that this role is more focused on the overall process flow and user experience than the integration solution designer role.
    * Provide status to project management regarding the process area.
    * Knowledge of the functionality provided by Oracle Applications
    * Ability to transform customer requirements into a workable design at the functional and/or technical levels
    * Ability to translate functional requirements into technical terms relevant to Oracle Applications to coordinate and assist with the detailed technical design tasks
    * Facilitation experience for conducting user design and review sessions and running stakeholder agreement meetings
    * Familiarity with Joint Application Design (JAD) session, Conference Room Pilot (CRP), and similar approaches and principles
    * Familiarity with business process design concepts and principles
    * Deep functional knowledge of Oracle Applications: configuration/development experience is not necessary, but knowledge of how functionality can be supported through the technology is needed
    * Some project management skills
    Location: Hong Kong, HK
    Pay rate: open and daily expenses will be covered with benefits
    Length: 6 months+
    Project language: is English
    NOTE: CHAINESE LANGUAGE IS MANDATORY AND ANY EXPERIENCE IN CHINA OR HONG KONG IS ADVANTAGEOUS
    Kindly apply your resume to [email protected] contact nos: India: +91-9989482244, London: +44 7799 112 005 with updated resume, contact details, pay rates and availability for the project

    Thanks to previous responder for tip regarding JDK/JRE anchor strings. I'm not sure if that is a problem. After letting the install process (java.exe) run for over an hour, I finally got past the InstantiateFile step. It looks like the process just takes a long time with no visible progress sometimes. After 5-6 hrs, it looked like the install succeeded (for the most part). There were still some errors in the error logs related to the Concurrent Manager (TNS-12541: TNS:no listener) I believe. If anyone has insight on what this error msg means, I would greatly appreciate a reply.
    The other problem I am tackling right now is how to explicitly set the Forms processing mode to HTTP rather than the default socket mode. According to the 11i docs (and Forms Developer 6i docs), you should only have to set "connectMode=HTTP" in the config file, appsweb.cfg, to make this happen. However, when I try bringing up a client form, the form hangs. So, obviously, something is amiss. A related question is whether one can run Forms in only HTTP mode and not HTTPS (and thus avoid having to install SSL). I would greatly appreciate any insight from fellow users.

  • Re-compile Oracle 11i Internet Expenses Java Classes

    Due to business requirement, we are required to re-compile Oracle 11i Internet Expenses java classes. Fortunately all files are fine, except of one for "Expense Details" screen.
    Under directory */comn/java/oracle/apps/ap/oie/server/, there is a JAVA class file DetailAMImpl.java. When I re-compile it, I got errors as below:
    $> javac DetailAMImpl.java
    DetailAMImpl.java:506: cannot resolve symbol
    symbol : method copyFrom (oracle.apps.ap.oie.server.ExpenseReportLinesVORowImpl,oracle.jbo.domain.Number,oracle.jbo.domain.Number)
    location: interface oracle.jbo.Row
    row.copyFrom(expensereportlinesvorowimpl, new Number(-10), expensereportlinesvorowimpl.getDistributionLineNumber());
    ^
    DetailAMImpl.java:508: cannot resolve symbol
    symbol : method setReportLineId (oracle.jbo.domain.Number)
    location: interface oracle.jbo.Row
    row.setReportLineId(expensereportlinesvorowimpl.getReportLineId().multiply(-1));
    ^
    DetailAMImpl.java:512: cannot resolve symbol
    symbol : method getReportLineId ()
    location: interface oracle.jbo.Row
    expenseallocationsvoimpl.duplicateDistributionsByLine(expensereportlinesvorowimpl.getReportLineId(), row.getReportLineId());
    ^
    DetailAMImpl.java:525: cannot resolve symbol
    symbol : method bIsEmpty ()
    location: interface oracle.jbo.Row
    if(row.bIsEmpty())
    ^
    4 errors
    $>
    It seems I am missing one Java class file that contains View object "ROW". Could you please advise me what is the missing file, and where can I get it?
    Many Thanks.

    Hi,
    I suggest to ask this question on one of the Oracle Applications forums, or better, address this issue with customer support at metalink.oracle.com
    Frank

  • How to Install Oracle 11i/E-Business Suite in Windows using cygwin

    Hi,
    if
    You are going to use oracle EBS for learning oracle provide the free of license
    you must install Oracle Apps with Vision Database
    its absolutely free for learners
    for further details read this blog
    http://gpganapathy.blogspot.com
    Find article related with Oracle 11i installation in windows XP
    All rights reserved by only oracle corporation if you have any doubts related to license issues Contact oracle Corporation Directly

    Hi;
    Please check Hussein Sawwan greatest previous post about same topic
    Oracle EBS 11.5.10.2 Installation Steps
    Oracle EBS 11.5.10.2 Installation Steps
    Regard
    Helios

  • Where I can download oracle 11i

    I am an oracle DBA. Now, I try to learn oracle application by myself. My question is where I can download oracle 11i for Sun Solaris box? Any license issue for personal use?
    thanks
    Belinda

    where i can freely download oracle-apps 8iThere is nothing called Oracle Apps 8i.
    It is either Oracle Apps 11i (log a SR and ask Oracle support to send you the Media Pack as it is no longer available for download), or R12 (download it from Oracle e-Delivery website -- http://edelivery.oracle.com).
    If you want to download Oracle 8i database, please see this thread -- oracle 8i and 9i
    Thanks,
    Hussein

  • Help regarding Oracle 11i

    hi,
    I m doing installation of oracle 11i on Red Hat Linux .
    Installation was successfull but when i started the appln i got the error as unable to start the discover gatekeeper process.
    I heard that after applying patch,resolves the below issue.So pls help by sending Patch 3170128 , i heard this patch solves the ( addisctl.sh start) problem.
    Thanks you in advance.
    Best Regards
    Vani

    Hi,
    Your questions :
    *1. how can we benefit most from Contract Purchase Agreements . what is it used for?*
    Ans : Contract Purchase Agreement (CPA) is basically an agreement of an organization with a Supplier. In CPA you can purchase from supplier but you don't mention what you are going to buy and when.
    You create contract purchase agreements with your suppliers to agree on specific terms and conditions without indicating the goods and services that you will be purchasing. You can later issue standard purchase orders referencing your contracts, and you can encumber these purchase orders if you use encumbrance accounting.
    *2. are there any accounting/ financial setup ?*
    Ans : No.
    *3. summarized setup sequence, please.*
    Ans : The major setup will be the Document type : Contract Purchase Agreement.
    *4. what are the interfaces or links to other purchase documents or modules ? we have Oracle Inventory, Oracle HRMS, General Ledger, Payables, cash Management, and Assets*
    Ans : Request you to refer the user guide for details how Purchasing is linked to other modules.
    Kind Regards,
    S.P DASH

  • Oracle 11i Login

    I lost the login information for Oracle 11i Application. Would anybody tell me how to ovecome this issue. The application is on windows 2000 and running fine. Does the application have a guest id and password. Ideally, I would like to retrieve my admin id and password. Thanks.

    Hi Timi,
    Not familiar with 11i on W2K, but on Unix I can use
    the executable FNDCPASS to (re)set passwords.
    Take a look below, and see if you can »translate« it to something usefull on W2K.
    Also check MetaLink or documentation, because FNDCPASS
    can do it's magic on ordinary users, schema-owners, etc. (given the rigth token)
    v_APPS_pwd='xxxx'
    v_SYSTEM_pwd='yyyyyyy'
    v_FND_USER_NAME='timi'
    v_NEW_pwd='cocacola'
    ${FND_TOP}/bin/FNDCPASS apps/${v_APPS_pwd} 0 Y system/${v_SYSTEM_pwd} USER ${v_FND_USER_NAME} ${v_NEW_pwd}
    I have build a ksh-script to randomly change a user-password, and e-mail the user the new value.
    It works like a charm, so I'm quite fond of FNDCPASS
    Regards Sune

  • Failed implimentations of Oracle 11i

    I'm doing a case study on oracle for a graduate class, and would like to receive some info on the failed implementations of Oracle 11i. There seems to be a lot out there about it's success, but none about it's failed implementations. My e-mail address is [email protected]
    Thank You,
    John T. Owen Sr.

    I have completely purged previous installations:
    #rm -rf /usr/lib/oracle/ /etc/default/oracle-xe /etc/oratab; dpkg --purge   oracle-xe
    I have download again libaio et oracle-xe but same issue.
    So, I have tried with Ubuntu 10.04 32 bits and always the same issue :-(

  • Uninstalling Oracle 11i on NT

    Is there any articles on uninstalling Oracle 11i on NT.

    Which release of 11i you are using now, moreover, do you have any idea on sizing?
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Anantha Kondalraj ([email protected]):
    Yes we have successfully installed and implementing right now. We are facing some issue with Order Management modules. Financials is a breeze.
    Ananth Kondalraj
    [email protected]
    Anyone out there implementing 11i on NT ?. I would like to share notes and experience.
    Thanks
    <HR></BLOCKQUOTE>
    null

  • Any Body in US who can share the Oracle 11i DVD/CD!!

    Hi,
    I am looking for Oracle 11i DVD on Windows OS in US.
    Any body who already downloaded and can write into DVD and ship to my location i will be greatful.
    please let me know any body who can do this
    thanks in advance.

    surprisingly enough i just checked today....oracle 11i and 12 for windows came at 60 USD from 120 so i think it should not be big issue...
    check
    oraclestore.oracle.com
    Regards
    Prashant Pathak

  • Migrating menues from oracle 11i to R12

    Hi all,
    I have to migrate Menus from Oracle 11i to R12, this can be done using FND_LOAD, but we have to migrate it using API's. Please suggest me the API name and approach. Currently I am investigating on fnd_menus_pkg.load_row and fnd_menu_entries_pkg.load_row . Please let mw know if these are the correct API's to migrate Menus. Any help is appreciated.

    If the version of $FND_TOP/patch/115/import/afsload.lct and the table structure is identical on both instances, you may use FNDLOAD for your custom menus. However, I would not recommend using FNDLOAD or any API between different application releases.
    How To Download a Parent Menu and Submenus [ID 369421.1]
    Replicating Custom Menu [ID 839879.1]
    Thanks,
    Hussein

  • Unable to find class oracle.panama.personalization.login

    oracle.jsp.parse.JspParseException: Line # 21, Error: Unable to find class for bean: login defined by tag with class: oracle.panama.personalization.login
    I get this message when trying to go to "http://{hostname}/papz/login.jsp"
    window 2k, Oracle 8.1.7, 9iASwe 1.0.2.0.0.
    Any help would be great.
    Thanks in advance
    Sean.

    I'm also having this problem. Could really use some help

Maybe you are looking for

  • BOM Explosions for Materials and Plant

    I am looking for the same functionality as in CS15 where I can check if a component within a BOM is part of another BOM. How can I achieve this? I have tried the FM: CS_BOM_EXPLOSION or CS_BOM_EXPL_MAT_V2, but I can not get these to work as I wish. I

  • Macbook vs powerbook

    Hi Just bought a 12" powerbook the other day and now I'm kind of thinking of returning it coz maybe the macbooks are better (faster, camera, intel duo etc.). Not sure what to do. I love the 12' screen and the fact that it's silver. Can anyone tell me

  • Oracle.sql.STRUCT cannot be cast to oracle.sql.STRUCT

    I met a problem,I use oracle spatial to store geometry,then get it like this: STRUCT dbObject = (oracle.sql.STRUCT)rs.getObject("shape"); JGeometry geom = JGeometry.load(dbObject); tomcat 6 told me java.lang.ClassCastException: oracle.sql.STRUCT cann

  • Why java is called platform independent

    Hello Why java is called as platform independent?Any body please give a detailed explanation since im a beginner to java technology. ThankYou Jk

  • Help converting Fireworks CS3 to Illustrator CS2 (vector file)

    Hello, I have a customer trying to send artwork that he created in Fireworks CS3 that I need to have in some sort of Vector file. It appears that Fireworks CS3 can only save an AIv8 file. When doing this, it loses its shading and some (I believe) obj