How to find Application products?

Hi Guru's
1> How to find which product installed in the application,version, and where that products are shared or not with all information by running single script?
2> how to find how many CPU are there in the system?
Thanks

1> How to find which product installed in the application,version, and where that
products are shared or not with all information by running single script?Use $AD_TOP/sql/adutconf.sql
2> how to find how many CPU are there in the system?What is the OS?

Similar Messages

  • How to find the product key on a preinstalled version of Windows 8?

    This is a similar qustion:
    https://forums.lenovo.com/t5/Windows-8-and-8-1-Knowledge-Base/How-to-find-the-product-key-on-a-prein...
    But its not actually explaining which part of the BIOS menu contains the windows key.
    I see a UUID  number -- but that doesmt match the windows 8 5x5 code format.  SO!
    where can I locate the windows 8 key in the BIOS?

    On recent ThinkPad, the Product ID Key sticker has been moved from the bottom of the unit to behind the battery.
    You need to contact Lenovo technical support directly to ask about recovery media.

  • How to find Application short name for an application?

    Hi ,
    How to find Application short name for an application?
    Eg: what query will give me output as PER when I give input as Human Resources?
    Regards,
    Neeraj

    Try the following:
    SQL> select application_id, application_short_name, basepath
    from fnd_application
    order by application_id;

  • How to find Application Program for fstandard orm in GTS

    Hi,
    Good day!
    I would to ask for your assistance with regard to the Application Program that retrieves data for standard Smartforms in GTS. 
    To be specific, anyone knows how to find the Application Program for the standard Export Declaration Form --- /SAPSLL/SF_CH_802AZV --- in GTS? 
    Thank you very much!
    Best regards.
    Brando

    Transaction NACU or NACE doesn't exist in GTS.  But, in SPRO i already saw the standard form as the defualt value.  However, there's no Application Program assigned to the form in SPRO.  Can anyone help me with this?

  • How to finds applications that are still running?

    How do I find applications that are running on my computer?  I can't install a new version of Google Drive because I get the message that this application is open.  When I bring up the panel to do a force quit I do not see that application listed.  Once I find the app running how do I quit it?
    Thanks for any tips.
    Bryan

    Use Activity Monitor (in /Applications/Utilities). After opening it, go to View menu (on the menu bar) > All Processes, and quit the processes related to the apps that the installer needs.
    Another way is to start up in safe mode by holding the Shift key while your Mac is starting. This allows you to install any application without any problem, as no third-party apps are running

  • How to find Application Path

    Hi
    How to get Application Path from form module (Any Built Ins)

    Hi,
    declare
    curform varchar2(100);
    begin
    curform:=get_application_property(current_form);
    end;
    hope it helps u..
    navneet jain
    [email protected]

  • How to find running product

    In oracle, is there a way we can find running product ?
    create table an_t(col2 number)
    insert into an_t(col2) values (3);
    insert into an_t(col2) values (2);
    insert into an_t(col2) values (4);
    commit;
    So we want to see in another column
    result like this:
    3*2 = 6
    6*4 = 24 (above result multiplied by next row value)

    You could use Tubby's suggestion. Although it's pretty accurate, still there is a chance of losing precision. Another suggestion is writing your own PROD function using ODCI interface:
    create or replace
      type prod_type as object(
                               prod number,
                               static function ODCIAggregateInitialize(
                                                                       sctx in out prod_type
                                 return number,
                               member function ODCIAggregateIterate(
                                                                    self  in out prod_type,
                                                                    value in     varchar2
                                 return number,
                               member function ODCIAggregateTerminate(
                                                                      self        in  prod_type,
                                                                      returnvalue out number,
                                                                      flags in number
                                 return number,
                               member function ODCIAggregateMerge(
                                                                  self in out prod_type,
                                                                  ctx2 in     prod_type
                                 return number
    create or replace
      type body prod_type
        is
          static function ODCIAggregateInitialize(
                                                  sctx in out prod_type
            return number
            is
            begin
                sctx := prod_type(null) ;
                return ODCIConst.Success ;
          end;
          member function ODCIAggregateIterate(
                                               self  in out prod_type,
                                               value in     varchar2
            return number
            is
            begin
                self.prod := nvl(self.prod,1) * value ;
                return ODCIConst.Success;
          end;
          member function ODCIAggregateTerminate(
                                                 self        in  prod_type,
                                                 returnvalue out number,
                                                 flags       in  number
            return number
            is
            begin
                returnValue := self.prod;
                return ODCIConst.Success;
            end;
          member function ODCIAggregateMerge(
                                             self in out prod_type ,
                                             ctx2 in     prod_type
            return number
            is
            begin
                self.prod := self.prod * ctx2.prod;
                return ODCIConst.Success;
            end;
    end;
    create or replace
      function prod(
                    input number
        return number
        deterministic
        parallel_enable
        aggregate using prod_type;
    /Now:
    select  col1,
            prod(col2) over (order by col1 asc) as running_product
      from  an_t
          COL1 RUNNING_PRODUCT
             1               3
             2               6
             3              24
    SQL> SY.

  • How to find Application Support from external hard drive backup.

    I have an external hard drive which I used with time machine to backup my old computer. I've got a new Mac now, and I want to restore the Skype chat logs to my current computer. To do this I need to find the correct Application Support folder which contains Skype, however I can't navigate to it using Finder's "Go to folder" feature as that only searches locally and not on the external hard drive. How can I get to it?!
    Thanks!

    Open the copy of your home folder on the external drive, choose Go to Folder, and provide exactly Library as the path; ~/Library is limited to your current home folder.
    (121413)

  • How to find Application Server version

    Environemnt details:
    EBS->R 12.0.6
    Database->10.2.0.2
    OS->AIX 5.3
    All 64-bit
    How I can find the exact version of the Application server. I just see two directories:
    /u01/R12/apps/tech_st/10.1.3/
    /u01/R12/apps/tech_st/10.1.2/
    Please help me out.
    Regards,
    M.U.N.A

    Actually I have to install patches <<patch 6497684>> and <<patch 7426842>> and not clear for which iAS version it should be installed.
    There are two options:
    10.1.2.2
    10.1.2.3
    Edited by: M.U.N.A on Oct 29, 2010 11:55 AM

  • How to find application server services on aix servers?

    Hi
    We have 3 instances running (single node installation) on one LPAR. When i query 'topas' for high CPU utilization process, it shows name of process as 'rwrun','frmweb','oracle','java' etc. I can understand that rwrun=report run, frmweb=forms session,oracle=database process etc but java=not known? If database processes are consuming high cpu utilization, i can find their sid,serial# from v$session and kill them. But how can i get the sid, serial# for processes called frmweb,rwrun,java? What are all processes (names) that are running on application tier? Any document for reference?
    Help me?

    Ateeq,
    But how can i get the sid, serial# for processes called frmweb,rwrun,java?Please see (Note: 206681.1 - How to Troubleshoot Spinning / Runaway Web Deployed Forms Runtime Processes?) -- including all referenced documents.
    Regards,
    Hussein

  • How to find Application user connect location.

    Hi There,
    I want know oracle ebs user's connect information on a specific time mean user login from which location(hostname) on specific time. please help me out in this regards,
    Application: Oracle Ebs R12(12.1.2)
    OS: Linux5-64*86
    Database: 11.1.0.7.0
    Regards,
    Mohsin

    920138 wrote:
    Hi There,
    I want know oracle ebs user's connect information on a specific time mean user login from which location(hostname) on specific time. please help me out in this regards,
    Application: Oracle Ebs R12(12.1.2)
    OS: Linux5-64*86
    Database: 11.1.0.7.0
    Regards,
    MohsinPlease see old threads for the same topic/discussion.
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Connected+AND+Users&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=IP+AND+Address+AND+Audit&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • How to find cc product code

    Need to talk to some one about my products and merging cs5 upgrade to cc account

    Cloud Getting Started https://helpx.adobe.com/creative-cloud/topics/getting-started.html
    Adobe contact information - http://helpx.adobe.com/contact.html

  • How to find the material based on the division.

    Hi All,
    My requirement is to read the all the material(products) in the division.
    I have executed  transaction code:COMMPR01 and seen division field  in material tab.
    I found the table CRMC_DIVISION but i did not find any maetial.
    Please help me how to find the PRODUCT in the division.
    Thanks,
    Venkat

    Hi Venkat,
    There are three tables that you need to refer to get the products for a particular division in CRM.
    1. Go to table COMM_PRMAT, pass the division and get the Set Guid for all the products
    2. Go to table COMM_PR_FRG_REL, pass the Set Guid and get the Product Guid of all the products.
    3. Go to table COMM_PRODUCT , pass the product guid and get the list of product ID which belongs to that particular division.
    I hope this will help you.
    Regards,
    PP

  • How to find if a SAP Application uses Shared server process ??

    Hi,
    Please find the details below wrt to SAP application:
    SAP Release : SAP ECC 6.0
    Oracle database Version : 10.2.0.4.0
    Can you please tell me how to find if my SAP application  with oracle  uses Shared server mode or Dedicated server mode for oracle database access??
    regards,
    Arul S

    Hi Nick,
    Thanks for your reply.
    I am also pasting the output of "lsnrctl services"
    LSNRCTL for HPUX: Version 10.2.0.4.0 - Production
    Copyright (c) 1991, 2007, Oracle.  All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=IPC)(KEY=R1Q.WORLD))
    Services Summary...
    Service "R1Q" has 1 instance(s).
      Instance "R1Q", status UNKNOWN, has 2 handler(s) for this service...
        Handler(s):
          "DEDICATED" established:0 refused:0
             LOCAL SERVER
          "DEDICATED" established:269921 refused:0
             LOCAL SERVER
    The command completed successfully
    This looks like dedicated connection with the Oracle database..
    Can you please comment on this?
    Regards,
    Arul S

  • How to find the number of references to an object in a big application

    How to find the number of references created for a given object in a big application environment.
    That means, if i give any object name (of my application) as input, then how can i find the[b] number of references created for that particular object ??

    Please don't post the same question multiple times.
    I've answered your question in the other thread here:
    http://forum.java.sun.com/thread.jspa?messageID=4312939

Maybe you are looking for

  • Interface in SAP

    Hi, What is Interface ,how is related to SAP & what all the modules related to this ,and what are the configuration record to map this into SAP.How is it related FICO ? regards, Santosh kumar

  • Help, xsl mime type not recognized by ie 5.5

    Hey, I've got a page that is doing it's own xml/xsl transforms in javascript. It uses XMLDocument.load( file location), which fails in IE 5.5. I think I've narrowed the problem down to this: If I enter the URL directly to the xsl: http://(myhost):888

  • Audition MIDI tracks and VST scanning not working - what to do?

    Hi - I'm running Audition 3.0.1 as an audio only application very successfully for some time on my Dell Inspiron 1525 (Vista Service Pack 1, all updates applied; 4GB RAM). However, I'm now trying to use it as a MIDI multitrack sequencer and am encoun

  • Adobe Production Premium CS5 Download

    I'm trying to find Adobe Production Premium CS5 in the download section but it seems that it's all replaced with CS5.5. I bought 5 licenses from a vendor last year, and lost my disks.  Where can I get CS5??

  • Program crash when i use SetBitmapToFile command in 16bit True colour.

    i am using cvi 5.0 and i need to save a graph plot as a picture file. i used the SetBitmapToFile command from one of the examples from NI knowledgebase. this command cause a page fault in kernel32.dll when i run the program under 16bit high colour(di