New to oracle apps

Hi All,
I am new to oracle apps. I am using PL/SQL by last 5 years. Please let me know how to create forms & reports.
And where to test/run these.
Is there is any pre-built site where we can run this forms/reports.

You need to install oracle forms/reports suite on your workstation, refer link:
http://www.oracle.com/technetwork/developer-tools/developer-suite/downloads/index.html
after the tool readiness, you required Oracle EBS test instance to connect and work on the schema of EBS to create reports/forms.
number of resources are available just google you will find
regards,

Similar Messages

  • Load Balancing & Fault tolerance in Oracle Apps

    Hello
    I am pretty new to Oracle Apps and Oracle 9iAS
    We are trying to asked to find out the ways of deplying load balancing and fault tolerance in Oracle Apps
    I have gone thru the following articles of metalink and some more from google
    Configuring Web Cache as a Load Balancer for Application Servers
    Create new middle tier node in existing Apps 11i environment using cloning and then load balance
    Integrating and using Web Cache with Forms 9i for Load Balancing
    Running Multiple OC4J Instances From a Single Install of 9iAS 1.0.2.2
    LOAD BALANCING ORACLE APPLICATIONS ON UNIX
    Load Balancing in 11i
    OC4J Clustering Setup
    OC4J Load Balancing for Forms 9i
    Setting up 11i E-Business suite using a hardware load balancer
    Sharing an APPL_TOP in Oracle Applications 11i
    In Oracle Apps Concepts pdf, found that
    Load balancing occurs when there are multiple installations of web server, forms server, reports server, concurrent manager server etc
    Lets consider forms server component of middle tier
    Can there be multiple INSTANCES of forms server within SINGLE INSTALLATION ???
    If it has to be MULTIPLE INSTALLATIONS, then it will require multiple physical machines
    What is software load balancing then ???
    Also read that
    Oracle 9i AS instance is combition of Oracle HTTP Server (OHS) and one or more instances of Oracle9iAS Container for J2EE (OC4J)
    Thus software load balancing can be implemented for Web server component of middle tier using multiple instances of OC4J ???
    Forms metrix server configuration is hardware load balancing ??
    What about Oracle9iAS Web Cache clustering ??
    Please clarify the doubts and suggest me the way
    Thanks a lot

    dear all can any one help me on the following;
    We want to install Oracle Apps 11.5.9 on 4 IBM AIX 5L boxes, the first node
    will hold the database , concurrent and Admin Tiers. as for the other 3 nodes
    it will hold the Forms/Web Tiers and we need to use forms metrics for load
    balancing taking into consideration that we can't use Shared APPL_TOP. we tried
    to find the way how to install and configure this solution but all the
    documents are talking aboout the concept only and this concept is applicable.
    We need the exact steps on how do the installation either using rapidwiz or any
    thing else
    fadi

  • (need answers)oracle apps functional queries

    This is bhanu nice meeting you, recently i went to an interview there i 've faced the following queries i've answered the queries but i didn't satisfy with my brief explanations ,i need apt&elobarated answers/ reasons so in that regard i need your help so that it can be usefull to me, plz forward the answers to my mailid:[email protected]
    These are the queries:
    1.What is the difference between accounting calander & inventory calander?
    2.Explain the Business process?
    3.What is Business group ,and draw the multi_org structure?
    4.How do you implement multi org in oracle apps and at what level you will set up your set of books in it?
    5.What is the difference between multi org set up and single org setup explain it genuinely?
    6.When do you define keyflexfield in GL,how many segments you can define in a keyflexfield ,if I want more than 30 segments what will I do?
    7.Explain whole inventory process upto GL accounting transactions?
    8.How inventory is get connected with purchase order explain?
    9.Why should I define an item in the master item table only?
    10.Explain purchase order process upto payments?
    11.When do you raise the purchase order?
    12.What are the prerequisites of supplier setup?
    13.What is the difference between supplier bank account & customer bank account?
    14.Explain the payables process?elobrately
    15.How many payment terms are there in payables?
    16.How many payment methods are there in payables?
    17.When do you raise the debit memo in the payables module?
    18.What will I do if I assign one set of book instead of other set of book in payables?
    19.Explain the recivables process? Elobrately
    20.How do we segregate debit & credit transactions in Receivables and where we will you do it?
    21. what is transaction in AR ,and when do we raise it,?
    22. when do we raise a p.o in purchase order module?
    23.when do we raise an invoice in p.o and when do we match the p.o with invoce explain the process?
    1. if i give u a blank instance how can you implement oracle apps financials on it starting with GL,AP,AR?
    2. where do you convert stock rates in your oracle apps(gl)?
    3.how many legal entities & operating units can we use at max and mini?
    4. how many accounting types are there in receivables?
    5. how do you close your payment date in payables widow without applying effective dates?
    6.what are the testing & document types in AIM?and how many types are they?
    7. how do you pay your payments from one currency to another in payables?

    Hi this is Prabhu. im new to Oracle apps.. if you got answers for the above questions please forward it to my email id: [email protected]
    It will be useful for me.
    Thanks in advance,
    Regards,
    Prabhu.

  • Oracle apps r12 data is not coming up in form based on org_id specific view

    Hi All,
    I am new to oracle apps R12. I have to develop a form which is based on views which are org_id specific. My data block is based on view which is org_id specific. Can anyone tell me what all settings i need to do in my form so that i can get the data on the basis of org_id. I am working on oracle apps R12 right now.
    TIA
    Praveen

    999698 wrote:
    Hi All,
    Sorry for inconvenience, Since i am new to oracle, can you guys please provide me the link where to search for my problem?
    I am not sure how to access the solution you have provided? My only problem is how to get the data in my form when i attach it to a responsibility in orace apps R12. what all steps do i need to follow or code change i need to do in my form to get the data ???
    TIA
    Praveen SaraswatYou can access the above docs through MOS website -- https://support.oracle.com
    You will need to have a valid username/password and CSI number.
    Thanks,
    Hussein

  • Oracle Apps - How to create a table before report execution?

    Hi,
    I'm new to oracle apps, I created a procedure to get some values for a report and created a query to get the remaining values. Now I need to populate those values into a temporary table and after the report execution I have to delete the table. In apps there is no before parameter form. If any one can help me, that will great.
    Thanks in advance.

    Hi,
    Do you really need to create a table INSIDE the report? It doesn't look like a good idea to me. For instance, what happens if 2 users try to execute the report at the same time? I would create a global temporary table before any execution of the report, and then I would just populate the data in the table in the 'Before Report' trigger. The data in a global temporary table is only visible at session level, so you wouldn't have any problems with multiple users executing the report at the same time and the data disappears once you finish your session, so you don't need to take care of deleting the data.
    Hope it helps.

  • Where to start in Oracle Apps R12

    Hi
    I am completely new in Oracle Apps. I have lot of experience in Microsoft technologies (SQL Server, .Net) but never worked in Oracle Apps before. Now trying to learn it.
    I installed Oracle Apps R12 on a virtual linux machine for learning. I selected "empty database" at the time of installation (i.e. not Vision installation) and logged in as sysadmin. But now I don't know where to start. Let's say I want to use the Financials module to enter some fake data and then create a report. Where do I start? I searched in Google but looks like none of the "beginner's tutorial" have that info.
    Can someone help me or direct me to some tutorial/documentation which will help me to start?
    Thanks for your help.
    -Mike

    976849 wrote:
    Hi
    I am completely new in Oracle Apps. I have lot of experience in Microsoft technologies (SQL Server, .Net) but never worked in Oracle Apps before. Now trying to learn it.
    I installed Oracle Apps R12 on a virtual linux machine for learning. I selected "empty database" at the time of installation (i.e. not Vision installation) and logged in as sysadmin. But now I don't know where to start. Let's say I want to use the Financials module to enter some fake data and then create a report. Where do I start? I searched in Google but looks like none of the "beginner's tutorial" have that info.
    Can someone help me or direct me to some tutorial/documentation which will help me to start?
    Thanks for your help.
    -MikeR12 Docs
    http://docs.oracle.com/cd/E18727_01/index.htm
    11i and R12 Docs
    http://www.oracle.com/technetwork/documentation/applications-167706.html
    If you select vision (demo) database then you should have setup/data.
    Thanks,
    Hussein

  • Creating interfaces in oracle apps 11i

    Hello everyone,
    I'm new to oracle apps and getting trained in supply chain management(PO,INV,OM). Could you pls post some doc's or sample code for creating interfaces between apps modules. For example PO to AP, OM to AR.
    thanks in advance,
    vr

    Hi
    You don't need to program any interfaces between Oracle modules e.g. PO to AP. This is all standard functionality within the Oracle e-business suite. For example, moving from a PO to an Invoice to a payment is standard cross module functionality in Oracle. This is all documented in the appropriate manuals : http://www.oracle.com/technology/documentation/applications.html
    You only need to worry about coding interfaces if you wish to import data from a non-Oracle system

  • How to duplicate user in Oracle apps?

    Hi, there
    I am new to Oracle apps(11i). A very simple question: how can I duplicate (create like) a predefined user in the demo applications?
    TIA.
    Regards,
    Yatao
    null

    Karandeep wrote:
    Hello everyone,
    We are working on r12 upgrade project. We have a requirement to do the performance testing of our new r12 application.
    Requirement :-
    Let us thing if at the same time 100 of user's are logged in and using the application then application should not have any performance issue's ......pages should work fine .
    So, now we have some existing super users in our project .They have some extra privilages and roles to open some of the page and to perform some of the tasks which cant be possible to do from an ordinary user.
    I want to know that is it possible to grant the same privilages to ordinary user's if yes then how or how can I find that what roles and privilages has been given to a super user .
    Regards
    KarandeepUse FNDLOAD to create new users and migrate the same responsibilities of superusers.
    Tips About FNDLOAD [ID 735338.1]
    How To Create A New User From Existing User With Same Responsibilities [ID 1474294.1]
    Thanks,
    Hussein

  • How to attach report in oracle apps AR module

    i m new in Oracle Apps 12. please any body tell me how to attact new customised report in EBS 12.

    Dear
    1. place the .rdf file respective dir.
    2. create concurrent executable
    3. create concurrent program
    4. Assign it to request group of the said responsibility.
    done

  • Oracle apps account receivable, account payable, general ledger tables help

    hi all,
    iam new to oracle apps...
    I want to know all the tables for AR, AP, Gl with all variables..
    where can i get all the info abt tables with columns(description) fro AR,AP,Gl
    regards
    srinivas
    waiting for ur earliest reply....

    Here are import transaction tables
    AP:
    ap_invoices_all (invoices)
    po_vendors (vendors, TCA architecture view)
    po_vendor_sites_all (vendor sites, TCA architecture view)
    ap_checks_all (checks)
    ap_invoice_payments_all (invoices - checks)
    ap_schedule_payments_all (schedule payments)
    AR:
    ra_customer_trx_all (transactions)
    ar_customers
    ar_cash_receipts_al
    ar_customers_v (customers, TCA architecture view)
    GL:
    gl_je_batches (batches)
    gl_je_headers (journals)
    gl_je_lines (journal lines)
    gl_balances (balances)
    HZ:
    hz_parties (parties)
    hz_party_sites (party_sites)
    For more information on Oracle Financials and Oracle Applications please visit video tutorials at http://handsonerp.com
    Thanks and Regards

  • Fresher in Oracle Apps

    hi all,
    I am a fresher n i m working in oracle apps since past 6 months.
    I would like to go for certification programs in apps.
    can anyone help me regarding that???

    Dear All,
    I am new to ORACLE APPS. Im recently selected for a product development ( in project management of oracle apps).
    I would like to know if there are any links or probably books which can help me understand basics of oracle apps. I am towards project management of oracle apps.
    Please suggest me how to proceed to carry on with my job smoother..
    Regards

  • Form based on org_id not displaying data in oracle apps R12

    Hi All,
    I am new to oracle apps R12. I have to develop a form which is based on views which are org_id specific. My data block is based on view which is org_id specific. Can anyone tell me what all settings i need to do in my form so that i can get the data on the basis of org_id. I am working on oracle apps R12 right now.
    TIA
    Praveen

    Since this question is related to forms also, dats y i posted it here.But not everyone in this forum is going to know how to work with a Multi-Org configuration in the EBS. Your best bet is still to post in the General EBS Discussion forum.
    Craig...

  • Tuning Oracle APPS 11i Start with

    Hi Hussain/Helios,
    I am new to Oracle APPS, and am working oracle apps 11i 11.5.10.2 with 10.2.5.0, the database and application was upgraded by previous dba. which left almost 3-4 months before.
    now my question is i want to have a performance tuning for Oracle apps environment, can you please suggest some key points for starting with and some good links for future usage.
    Other thing is i have used find command on my linux box and found many log files which are greater than 1000K on apps tier (forms/reports/web), and similiarly db tier (db/admin/concurrent).
    can i just remove all these logfiles using os (rm) command and is it feasible with production environment on running mode or is it not feasible and i should use some other ways/etc.
    APPS Tier folder locations.
    ****podappl/admin/PROD/log
    ****prodora/iAS/Apache/Apache/logs/sec_audit.log
    ****prodora/iAS/Apache/Jserv/logs/mod_jserv.log
    ****prodora/iAS/Apache/Jserv/logs/jserv.log
    ****prodcomn/admin/scripts/PROD_****/sqlnet.log
    ****prodcomn/admin/log/PROD_****/
    ****prodcomn/_pages/
    ****prodcomn/rgf/PROD_****/
    ****prodcomn/rgf/PROD_****/oam/
    DB Tier files folder locations.
    ****oracle/proddb/10.2.0/oc4j/j2ee/OC4J_DBConsole_*****_PROD/log/em-application.log
    ****oracle/proddb/10.2.0/oc4j/j2ee/OC4J_DBConsole_*****_PROD/log/http-web-access.log
    ****oracle/proddb/10.2.0/oc4j/j2ee/OC4J_DBConsole_****_PROD.upgrade/log/http-web-access.log
    ****oracle/proddb/10.2.0/appsutil/log/PROD_****/StageDBTier_10161830.log
    ****oracle/proddb/10.2.0/*****_PROD/sysman/log/emoms.log
    ****oracle/proddb/10.2.0/*****_PROD.upgrade/sysman/emd/sqlnet.log
    ****oracle/proddb/10.2.0/******_PROD.upgrade/sysman/log/
    ****oracle/prodappl/admin/PROD/log/For Performance Tuning, right now i have following points with me.
    1). Compile APPS Schema in maintenace which i will take.
    2). I have checked some Gather Stats/Purge jobs are already scheduled for maintenance.
    Please tell me what other Jobs i can schedule using OAM for weekend for All tiers in APPS.
    I have been also asked to apply latest patches on PROD APPS/DB/* system, I can check using sql, which patches are applied, but how can i know which patches are required, (don't know about the licensed products with never ask policy here).
    Thanks,
    RAJ
    Edited by: 870344 on Jul 5, 2011 6:36 AM

    can you please suggest some key points for starting with and some good links for future usage.Please check below MOS doc:-
    A Holistic Approach to Performance Tuning Oracle Applications Systems [ID 69565.1]
    Configuring various JVM tuning parameters for Oracle E-Business suite 11i and R12 [ID 567551.1]
    Tuning is something that require more analysis less action, first you need to answer:-
    1) Why do you need tuning? is it proactive or some incident happend?
    2) Where are you facing issues? i.e. which module, form, report or whole application.
    3) Number of users facing issues? i.e. is it single user, user at one location or all users.
    4) Has something changed in past that might have triggered this need?
    Theri are various components involved in tuning that start from :-
    1) user machine
    2) network
    3) Application tier.
    4) Database tier.
    Application tier can be further divided into:-
    1) Apache server(JVM, modplsql, jserv etc etc
    2) Form Server
    3) Concurrent processing server
    4) Discovered if using,
    5) XML publisher..
    and like wise other component using.
    If you are looking to tune then i believe start from application tier first, pick one by one componets, like if your users are facing issues with login then use note that i have provided, if users are not satisifed with time taken to complete concurrent request then you might have to tune it and likewise.
    can i just remove all these logfiles using os (rm) command and is it feasible with production environment on running mode or is it not feasible and i should use some other ways/etc.Do not rm files because it might be in use by some process and ti might then not be able to release space, its better to trim the file. do cat file >
    Log file you have mentioned can be removed depedning upon your company policy if any.
    Thanks,
    JD

  • How to install oracle apps 11i on xp

    Hi
    iam new about oracle apps 11i, plz guide me how to install oracle apps 11i.on xp
    plz give proper step
    thanks

    Check the following links:
    Oracle EBS 11.5.10.2 Installation Steps
    Oracle EBS 11.5.10.2 Installation Steps
    Oracle Applications Installation Guide: Using Rapid Install
    http://download-uk.oracle.com/docs/cd/B25516_14/current/acrobat/r115102ins.pdf
    Note: 316806.1 - Oracle Applications Installation Update Notes, Release 11i (11.5.10.2)
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=316806.1
    Note: 294932.1 - Recommendations to Install Oracle Applications 11i
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=294932.1

  • How to download and install oracle apps

    Hi guys,
    Am new to oracle apps I want to study oracle apps, is it free to use for learning purpose.
    can you provide me the link to download and install in windows 7(64 bit).

    Braam wrote:
    Hi guys,
    Am new to oracle apps I want to study oracle apps, is it free to use for learning purpose.
    can you provide me the link to download and install in windows 7(64 bit).You can download Oracle EBS R12 from Oracle e-Delivery website -- https://edelivery.oracle.com/
    Please note that Windows 7 is not certified -- How to install Oracle EBS R12 on Windows 7 (32-bit)?
    Thanks,
    Hussein

Maybe you are looking for

  • Custom Error Pages based on URI not working in WS 7

    We have added a handful of Error Page Redirects to our SSL configuration based on URI that do not seem to be working The entry in the default object looks like Error fn="send-error" code="500" uri="http://oursite.com/error.html" The entry in the erro

  • Cheque information add in FBL3N

    Hi  Experts, Please suggest me.I go through spro:financial accounting ( new)->general ledger accounting (new)->master data->g/l accounts->line items->define special fields for line item display. I was added Table: PAYR and Fied:CHECF and i saved. Aft

  • Find children in a webBean

    I'd needed to find a child in a webBean.  I'd used: OASubTabLayoutBean subTabLayout = (OASubTabLayoutBean)webBean.findChildRecursive("subTabRN"); and gotten null results.  So either that wasn't the name I thought it was, or I was in the wrong bean. S

  • Table & Index Compression on 11g

    Hi, We are planning to upgrade oracle ( RAC ) from 10.2.0.4  to 11.2 and planning to turn on table and index compression. I would like to learn the pros & cons of turning compression on in a 6TB database. Any performance issues after table/index comp

  • I wish to get the earlier version of mozila and not the last one

    Some of the add ons and plugins in the new version don't work so how do I get the an earlier version of Mozilla and not the most recent one. The things not working in my Mozilla are: afurladvisor 1.0 ( disabled) Chatzilla 0.9.86.1 (disabled) Google G