How many TOP are in APPS and what they mean........

Dear All
One very basic question, how many TOPs are there in APPS, middle tier and db tier, and what does they mean, like we have APPL_TOP, COMMON_TOP, etc.......
regards

how many TOPs are there in APPSNo specific answer since it differs from release to release. Oracle Apps 11i installation comes with many TOPs defined (e.g. APPL_TOP, COMMON_TOP, FND_TOP, AU_TOP, ..etc).
and what does they mean, like we have APPL_TOP, COMMON_TOP, etcSimply, they are environment variables.
Let us say ..
You have installed the APPL_TOP under /u01/oracle (e.g. /u01/oracle/prodappl)
and,
I have installed it under /u02/oracle (e.g. /u02/oracle/prodappl).
When we both issue "echo $APPL_TOP":
You would get:
$ echo $APPL_TOP -- On Windows, type %APPL_TOP%
/u01/oracle/prodapplAnd, I would get:
$ echo $APPL_TOP -- On Windows, type %APPL_TOP%
/u02/oracle/prodappl

Similar Messages

  • Poll:  How many users on your apps and what hardware are you using?

    I am curious about the collective experience and performance of others APEX applications and how much "horsepower" your hardware has.
    I have a need to support 20-30 users and am using a Windows XP machine with 1.99 Gig of RAM and a 2.8 GHz Pentium 4 CPU.
    Any thoughts on this?

    For my personal use, I'm renting a Celeron 2.4ghz with 1Gig RAM running CentOS, Oracle XE and Apex 3.2 at a data center 1200 miles away. Seems to work fine. I find the biggest issue is network bandwidth. I originally had a 10Mb link to the datacenter's backbone, now have a 100Mbit. The difference was night and day.
    For work (speaking only of our Apex servers), we've got:
    One Dell 2way P4 with 4G RAM and 10,000 RPM drives.
    It runs 2 10G instances and several Apex apps and it also runs Enterprise Manager Grid Control for 40+ databases. No issues.
    Multiple prod/dev/test servers.
    All are VIRTUAL running on VMWare ESX3.5. Each database VM has 2 gig of RAM and 2 "CPUs" running 11g/Apex3.2 on Oracle Linux. They all work fine.
    I find that a poorly written app can crush just about any hardware you can throw at it. Luckily we don't have any of those ;).
    I suspect that your hardware would be fine, particularly if running Linux. I cannot speak to Oracle/Apex on XP. I suspect you might be disappointed, mostly because it is tuned for interactive use rather than background applications (services). Not trying to be a Windows vs Linux troll here, just saying that if you are running a workstation with Oracle/Apex and you on it and expect to support 20-30 other people, you are all likely to be disappointed. Apex/Oracle should be on dedicated server hardware with a server OS.
    You also aren't giving us much info on your hardware; 7200RPM IDE/SATA drives aren't going to be as fast as 15KRPM SCSI or SAS, etc.
    It wouldn't surprise me if your well written application was able to support 20-30 users with the hardware you are describing (though I won't vouch for the OS).
    Google for "apex.oracle.com" and "poweredge 1950" that will take you to this link:
    http://joelkallman.blogspot.com/2009/06/who-says-application-express-cant-scale.html
    The whole thing apparently serves up 6 million page hits a week with a 1.5Gig SGA. That's a lot of work on a pretty small box.

  • How many types of tables exists and what are they in data dictionary?

    hi,
    How many types of tables exists and what are they in data dictionary?
    regards.

    Hello Liu,
    Please search in forum before posting any question .
    anyhow check the below link :
    http://web.mit.edu/sapr3/dev/sap_table_types.htm
    Thanks
    Seshu

  • How to check ,how many  users are logged in and logged out in oracle ebs 11i/R12.

    Hi Experts,
    Kindly let me know
    how to check ,how many  users are logged in and logged out in oracle ebs 11i/R12.
    Also, in the database level too ,Do we need to write any trigger for this?
    Thanks in advance.

    Hi,
    How to check ,how many  users are logged in and logged out in oracle ebs 11i/R12.
    Please check the following links:
    Oracle EBS - Number of Users logged into EBS / Oracle Applications currently
    List all users currently logged in on Oracle EBS
    Also see forum Search:
    Forum Search: Logged In EBS User
    Also, in the database level too
    Please see:
    https://forums.oracle.com/message/9225094#9225094
    Do we need to write any trigger for this?
    Yes you may, But I personally suggest you not to do so as it may affect performance.
    Thanks &
    Best Regards,

  • How can i decide how many dimensions are needed here.and which charactersti

    Hi,
            i am planning to create custom defined cube for sale order line item data.  how can i decide how many dimensions are needed here.and which characterstics are suitable for that dimensions.
    Thanks,
    chandu.

    Hi Chandra,
    How many dimensions are needed and which characteristics to be used totally depends upon the data model you are using.
    for instance  take an example of school.
    teachers , students are the imp terms in this example .
    you can choose these two as dimensions .
    teacher's name , address  , subject , class , designation etc can be its characteristics . and for students also the important terms describing them can be its characteristics.
    for more understanding of the Dimensional Modeling you can refer to following link.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/6ce7b0a4-0b01-0010-52ac-a6e813c35a84
    Hope It Helps .
    Regards
    Pratap

  • How many DB are in APPS ?

    Hi,
    Could anybody tell me how many database are in the APPs (11i) and what are the role of each ?
    Thanks,
    Paul

    As mentioned before, you need One Database to run Oracle EBS. For ORACLE_HOMEs, in Oracle Applications 11i we have 3 homes:
    1) /APPS/VISora/8.0.6, This is the forms (developer) home and owned by applmgr user. Whenever you need to upgrade the developer version which comes with Oracle Applications you refer to this HOME
    2) /APPS/VISora/iAS, This is Oracle application server home owned by applmgr user and contains the web components (i.e. Apache, Jserv .. etc)
    3) /APPS/VISdb/9.2.0, This is Oracle DB home owned by oracle user and contains the DB libraries and executable files.
    The below 2 directories cannot be considered as ORACLE_HOME(s).
    /APPS/VISappl --> This is the APPL_TOP: Contains Oracle Applications product files
    /APPS/VIScomn -> This is the COMMON_TOP: Contains (Java/HTML, logs, output, scripts) files
    And of course your database files go under /APPS/VISdata, which is not an ORACLE_HOME

  • How to get real time information about how many user are logged in and thei

    I use tomcat as my server platform in Ubuntu for a war file.
    I know in order to get real time information about how many user are logged in, we can count how many active sessions exist by a SessionCounter code. However, I have to permit HttpSessionListener in web.xml of tomcat. From other users' experiences, the configuration is complexed and has some errors.
    Here's the link:http://www.stardeveloper.com/article...1112001&page=1
    In order to get users' ip, in jsp, use request.getremotehost() or
    request.getremoteaddress() by editing the jsp file.
    I wonder if there's some open source software to use for these two purposes.
    Thank you!

    That url is missing a few bits. The ... in the middle doesn't help.
    we can count how many active sessions exist by a SessionCounter code.
    However, I have to permit HttpSessionListener in web.xml of tomcat.
    From other users' experiences, the configuration is complexed and has some errors.And have you tried it? The configuration isn't that complex.
    What errors do you mean? Errors in tracking people, variance in the count? Probably related to internet issues and nothing you can do will alleviate them.

  • How to set restrictions and what they mean

    How to set restrictions one the different oracle users and what can they do within the set restrictions, their limitations.

    What cardinality means

  • Descritpti​on of property nodes and what they mean

    Does anybody know where I can get a good description of property nodes and what the specific properties mean?  The help files are a start, but in many areas they are kind of lame..

    My company is sending a representative to NI Week to meet with some head honchos from NI on possible improvements and suggestions.  I have added what you are asking for to the list of what will be discussed.  In addition to property nodes, I am asking for documentation of all methods.  I've seen a large TestStand poster that lists API calls, properties and methods, and such.  I think the same ought to be done with Labview.  Of course that poster would be humongous.  Any kind of document would suffice.  I am anxiously awaiting the outcome of this meeting.
    Many other items are on the list, including some issues that were brought up in this forum.  I have asked for a way to "comment out" sections of code without having to use a case structure set to false with all the wiring changes.  Another item I asked for was a wizard to automatically generate the basic code for some architectures, like producer-consumer, state machine (simpler that using the state machine toolkit), and such.  Many others here have joined in to make suggestions, too numerous to list them all here.
    - tbob
    Inventor of the WORM Global

  • Is there a list somewhere of HP Failure IDs and what they mean?

    I'm getting the following Failure ID when I run system disgnostic test on the HDD in a HP Envy
    U0823F-6BA705-XD7X1F-60UE03
    Anyone know what it means or where I can find out?
    The disk itself appears to be running ok. I ran a chkdsk \F on it in a separate computer which found and fixed a few problems. I've also done a full restore of Windows on the disk (separate issue) but I still get the above Failure ID after this

    Hi there,
    I managed to find an old list of compatibility with HS-44 / AD-44 but nothing for the adaptor on it's own.
    Nokia 3600 Slide
    Nokia 3710 Fold
    Nokia 3720 Classic
    Nokia 5610 XpressMusic
    Nokia 5700 XpressMusic
    Nokia 6110 Navigator
    Nokia 6120 Classic
    Nokia 6210 Navigator
    Nokia 6212
    Nokia 6220 Classic
    Nokia 6290
    Nokia 6700 Slide
    Nokia 6730 Classic
    Nokia 7610 Supernova
    Nokia E66
    Nokia E71
    Nokia E90
    I can't promise this is ALL th ehandsets though, since the list is quite old. Also I am almost certain that this adaptor converts Nokia 2.5mm to Nokia 3.5mm, Nokia connectors are different to a standard headphone as there is an additional connection for voice.
    If using non -Nokia headphones you may need a further adaptor.
    Hope this helps a little?

  • I'm a computer dummy and, after installing firefox, the follow-up instructions are all halved and what they say will happen next is not happening

    I'm a new player on zynga poker on facebook. When i signed in this morning I was asked to download firefox to make things easier. After waiting the full 13minutes download time, 3 stages of steps to complete appeared. They were all physically cut in half- i.e.: imagine a line being drawn through these words and then everything below the line isn't there. Also I don't know how to copy and paste or "drag to applications etc.

    We're sorry.
    We can't find the article you're looking for.
    Please return to the Apple Support homepage.
    Sigh.

  • IPhone 4 symbols and what they mean

    What does the phone receiver over about 5 dots symbol next to the battery in the top right corner mean. And how do you get rid of it. I first noticed it after I lost all my telephone contacts. I am having to readd everyone and am sure I will miss someone. But I went thru the entire restore process and still didn't get them back. No other problems just hate loosing all my stored numbers I have had for years. Help me with this if you can please. Thanks, Txpondgirl

    Safari bookmarks, open iPhone users guide, go under at a glance section-status icons.
    Why did you let your phone numbers develop slack or run free?
    Or did you mean "losing"?

  • ITunes Error messages and what they mean

    Hello,
    I like to download Podcasts and I enjoy listening to some of them during my down time. But sometimes I get errors such as err = -3259 or err = -3252 but there is no place that I have found to tell what these error codes mean?
    What should I do when I get these errors, and where could I go to find the meaning of these error codes?
    Thanks a million.
    Waseem

    There's an explanation of what a bunch of the codes relate-to/are-caused-by in the *Specific Conditions and Alert Messages* section of the following document:
    [iTunes: Troubleshooting iTunes Store on your computer, iPhone, iPad, or iPod|http://support.apple.com/kb/TS3297]
    Your two typically indicate security software trouble, although it's a bit odd that you're only getting them intermittently ... are they always cropping up on some podcasts but not on others?

  • Is there a listing of error codes and what they mean?

    Continually get -3150 and -3252 codes. Can't find info when I search the site. Looks like lots of other error codes. Didn't know if anyone knows where to find a list of what the codes mean...and ways to make them stop.
    Thanks.

    It happens when the server can't connect to LDAP server. Check to make sure your server is connecting to directory server by going to "Users & Groups" tab in the administration server UI.

  • Ldap - how to check how many users are connected?

    Hi Guys,
    Please help me.
    We have iPlanet installed using LDAP. I want to check in ldap console that how many users are connected currently and monitor that.
    please tell me how can i do it
    thanks

    Hi Noor,
    Thank you for posting in Windows Server Forum.
    From your description I can understand that you want the user name with app they have in their session.
    You can achieve with below command.
    Query process User name
    Displays information about processes running on a terminal server. You can use this command to find out which programs a specific user is running, and also which users are running a specific program.
    More information:
    Query process
    http://technet.microsoft.com/en-us/library/bb490798.aspx
    Hope it helps!
    Thanks.
    Dharmesh Solanki

Maybe you are looking for

  • Question for the Adobe Illustrator team or anyone who might know

    Is Adobe Illustrator meant only to use Bezier curves? I know that they are very useful for a number of curves, but are they used to approximate circles? Granted, all screens require rasterized objects to the nearest pixels in order to display them, b

  • Shef life expire report

    Hi Experts, We are using the t.code: MB5M for Self life expire list, in this special stock not showing. How we can check the special stock "Q" shelf life expire. Regards, Hanuman

  • Adobe DPS Publish button

    Can someone tell the reason why the publish button appears disabled ( letters color gray)?

  • Why is my wifi slider greyed out on the iPhone 4s?

    It's been messing up for 3 weeks now, and I'm getting real ******. I cannot adjust my wifi settings to on. It's stuck on the off (greyed out) position.

  • BEx Analyzer not run in office 2007

    Dear all, We are using BI version 7.0 in BEX gui (frond end pc) windows vista and office 2007 is used when I go to business explorer and run Analyzer then its call excel but not open any file or sheet, then in excel I go to excel  Add-ins menu - BEx