Differentiate 32 bit and 64 bit

Hi Guyz,
How do we know the SAP we are using is 32 bit or 64 bit?
I am not able to find out this information from the Status.I am planning for a Kernal upgrade for ECC6 and confused which(32 bit or 64 bit) Kernal to use.
Warm Regards,
Syam

Dear Syam,
Please do refer to the note given by Manu . It is actually very old and not updated, but has generic command like once you navigate to exe\run (or a similar path to mine) of your server using command line/ command prompt, you can use disp+work.exe -version etc. In fact I will quote the whole section from it - Point - 12 - please note some of them might be outdated.
12. How can you find out whether an object is installed in its  32-bit or 64-bit version?
a) R/3 executables (R3trans, Kernel, tp, R3load):
                       cd /usr/sap/<SID>/SYS/exe/run
disp+work -version
R3trans -version
etc.
If no bit-version is mentioned within the text, this means it is a 32-bit version. 64-bit version would return something like       .... COMPILED WITH 64-BIT LIBRARIES....
b) Oracle
                       as ora<SID> user start svrmgrl
In the header it shows oracle-version and bit-number.
you can also do a SELECT * FROM V$VERSION;
                       Oracle client-lib
library oracle is using CD $ORACLE_HOME/LIB
FILE LIBCLNTSH.<EXT>libary the R3-tools are using
Please check note 180430 for your R3 release specific oracle client note. The location of the clientshared library has changed  with different R3 releases. Get the location of the library from  that note and then execute:
cd <directory where the clientlib is in>
FILE libclntsh<version>.<extension>
Most kernels also have the function calls to the oracle libraries extracted to a new library dboraslib.<extension> Please also check this library:
cd /usr/sap/<SID>/SYS/exe/run
FILE dboraslib.<extension>
c) OS
HP:
getconf KERNEL_BITS  executed as root user returns either 32 or 64
DEC-UNIX:
automatically 64-bit - also shows with the command /usr/sbin/sizer -v
AIX:
beginning with release 4.3.1 64-bit; please make sure that all hardware components are 64-bit. When installing 4.3.1 AIX automatically detects whether your hardware is 64-bit and will install the necessary 64-bit software components. The easiest way to find out whether AIX is 64-bit is by the following commands:
lslpp -l bos.64bit - this should return a line that bos.64bit is installed
genkex | grep 64    - this checks whether the 64-bit kernel extension is installed. it should return something like
149bf58 a3ec /usr/lib/drivers/syscalls64.ext.
For further details refer to the following webpage http://www-1.ibm.com/support/ docview.wss?rs=0uid=aix12465b658044fc574852569e70056e923
SOLARIS:
isainfo -v

Similar Messages

  • Differentiate between mapping and optimization.

    Hi
    tell me some thing about this.
    Differentiate between mapping and optimization.
    please
    urgent. imran

    user571615 wrote:
    Hi
    tell me some thing about this.
    Differentiate between mapping and optimization.
    please
    urgent. imranThis is a forum of volunteers. There is no urgent here. For urgent, buy yourself a support contract and open an SR on MetaLink.

  • Htmlb:tree differentiate between nodeclick and tree node expander click

    Hi,
    how can i differentiate between nodeclick and tree node expander (to get to its children) click in my event processing in htmlb:tree element.
    <u><b>What i am trying to achieve?</b></u>
    Onload just load root node and its immediate children.
    On node expand get the children of the current node and modify htmlb:tree table2 with additional node inofs.
    on node click  call some client function.
    But my issue is that i am not able to differentiate between node expander click and node click in my event handling. Any help on this is appreciated.
    (I am not using MVC)
    Thanks in advance.
    Regards
    Raja
    Message was edited by: Durairaj Athavan Raja

    After reading your weblog I think I understand better. I did some testing with my example.  I am using the toggle = "true", so that the page returns to the server each time an expander is selected.
    <htmlb:tree id          = "myTree1"
                  height      = "75%"
                  toggle      = "true"
                  title       = "<b><otr>EQI Reporting Tree</otr></b>"
                  width       = "90%"
                  onTreeClick = "myTreeClick"
                  table       = "<%= application->selection_model->itview                             %>" >
      </htmlb:tree>
    However I have not added any coding in my event handler to respond to the expander event.  I only respond to myTreeClick (which loads some data for the given selection).  The BSP tree element itself must be doing the hard work for me. 
      if event_id cs 'tr_myTree1'.
        data: tree_event type ref to cl_htmlb_event_tree.
        tree_event ?= htmlb_event.
        if tree_event->server_event = 'myTreeClick'.
          clear appl->message1.
          appl->selection_model->get_chart_data( appl = appl
                                                 node = tree_event->node ).
        endif.
      endif.
    I pass my entire tree defintion to the element.  It appears that it only sends visible nodes to be rendered. When the expander is selected, I don't have to do anything, the tree re-renders with only the newly visible rows. 
    I tested and turned off the toggle (toggle = "false") and my page took forever to load because it was sending all the nodes to the frontend on the first load.

  • How to differentiate capital budget and expense budget in BCS

    Hello all
    i had a doubt , your inputs are required.
    How to differentiate capital budget and expense budget in BCS
    Thanks
    Alok

    Hi ,
    As per the understanding that i can have from the inputs provided by you , you are moving ahead with a combination of Fund center and commitment item .
    Is it the case that for capital items your GL account would be diffrent as compared to the expense item .
    If that is the case then you can create different commitment item based on the GL and accodingly maintain the derivation strategy .
    Hope this suffices .
    Regards ,
    Dewang.

  • Differentiate between invoice and clearing document

    the table BSID and BSAD contains the details of both invoice and clearing documents.
    How to differentiate betwee invoice and clearing document.
    i thought that all debit documents are invoices and credits are clearing documents.
    But its not working because there are invoices which are credit and clearing documents which are debit.
    Please let me know if there is any indicator or field which

    Hi,
    No difference between invoice and billing document.
    But If we want to inform the payable to the customer we use the terminalogy invoice.
    Example Credit meomo, debit memo. etc ...
    As there is no difference , both have the same document types.
    thanks
    Kuntla

  • Servlet filter that can differentiate between Filter and Servlet Writers

    Hey,
    I'm trying to build a Filter and HttpServletResponseWrapper that, when applied to a generic servlet, can differentiate between the output stream from the Servlet and the one from the Filters.
    So, say I have a servlet:
    PrintWriter pw = response.Writer();
    pw.write( "Output from servlet" );
    pw.close();And a filter that is applied to the servlet:
    PrintWriter pw = response.Writer();
    pw.write( "Output from filter" );
    pw.close();I want to be able to do this in my filter that is able to differentiate between the servlet and filter response:
    System.out.println( "Response from servlet: " + responseWrapper.servlet.toString() );
    System.out.println( "Response from filter: " + responseWrapper.filter.toString() );The responseWrapper.servlet and responseWrapper.filter can contain all filter responses from all the servlet(s) and filter(s), respectively.
    Can anyone give me guidance as to how to start with this - really I just need to know if I can differentiate between servlet and filter responses in a generic way (without having to modify the response specially in the filter or servlet files that write output)
    Thanks for your time.

    first thing's first..if the OutputStream if not closed Either a Filter or a ServletChain can write on to the stream.
    There could be cases where the servletoutputstream would be closed at servlet end itself.Therefore,its a valiant effort by acomplishing a responseheader in the response to indicate that.
    Now once the response/outputstream is not closed or flushed out there is not direct way by which you do this unless we indicate using response Headers as flags when we are implementing FilterChaning.
    Hope that might help :)
    REGARDS,
    RaHuL

  • Differentiate between Items and Customer Items

    Differentiate between Items and Customer Items
    pls try to give information about this
    thanx

    Hi Joel,
    Funny you mentioned it, because just today I was thinking about that, and I thought that if it will happen, I will rant you on your forum dereliction of duties. So it seems you’re off the hook now :)
    Anyway, judging from the last 3.0/3.0.1 versions it seems like you are doing your other duties very well so I really don’t mind you keeping the lead.
    Best regards,
    Arie.

  • How do you differentiate business process and business scenario

    how do you differentiate business process and business scenario???
    pls help

    Google says;
    A <b>business scenario</b> is a description of a business problem, which enables requirements to be viewed in relation to one another in the context of the overall problem. Without such a description to serve as context, the business value of solving the problem is unclear; the relevance of potential solutions is unclear and there is a danger of the solution being based on an inadequate set of requirements. A key factor in the success of any other major project is the extent to which it is linked to business requirements, and demonstrably supporting and enabling the enterprise to achieve its business objectives. Business scenarios are an important technique to help identify and understand business needs.
    A business process -
    http://en.wikipedia.org/wiki/Business_process

  • How to differentiate migrated assets and newly purchased assets?

    Hello Experts,
    I would like to make a report for fixed assets, and that report has a field for beginning balance.
    I have a question on this beginning balance field.
    As you know, we have migrated fixed assets from legacy system and new assets that are purchased at SAP system.
    When I make above report, how do I differentiate migrated assets and newly purchased assets from the beginning balance point of view?
    Please let me know the database fields to classify above two things.
    Thanks.
    BR,
    Chris

    Hello Lakshmaiah and Ajay,
    The reason we want to have this kind of report is that this one is for tax reporting.
    As Ajay mentioned, SAP standard asset reports like S_ALR_87011990 is good but they are not enough.
    When I looked around some tables related to fixed asset values, I found out there are 2 fields might be related to above questions.
    They are ANLC-KANSW and ANLC-ANSWL.
    There is no value at ANLC-KANSW field in SAP cut-over year if it is new asset, and ANLC-ANSWL has no value if it is migrated asset.
    I guess if I use above 2 fields, I might be able to classify two things.
    Do you guys agree with me?
    Thanks.
    BR,
    Chris

  • How can I differentiate between iPad and iPhone iMessages for the same contact?

    I have my sister in law's email and phone number all in the same contact. She iMessages me from both her iPad and her phone. They come up as two different iMessage conversations, but they both are under her name. When I go to text her I don't know if I'm sending it to her iPhone or iPad. Anyone know if there's anyway to differentiate? Sometimes looking at what was previously said in the conversation helps but I can't always remember (nor do I know which device he was messaging me from in the previous convo). Thanks all

    Try scrolling to the top of the conversation and tapping Contact.  You will then see the originating address highlighted in blue on the contact.  If the iPad and iPhone are creating two different conversations, chances are if the email address is highlighted it's coming from the iPad; if the phone number is highlighted it's coming from the iPhone (although not necessarily).  To know for sure you would have to ask her to check Settings>Messages>Send & Receive and tell you which is checked under "Start new conversations from" on both devices to know for sure.

  • How to differentiate between Parent and Child in IBASE?

    Hi. I am working on enhancing a BAPI :BAPI_GOODSMVT_CREATE by calling the following function module IBPP_CREATE_IBASE at its exit.
    The BAPI is being called from an SAP ME system and will be passing MATNR and Serial Number of Parent and Child materials to create the IBASE in ECC system. I am confused as to how to differentiate between whether a object is Parent or a Child when the BAPI: BAPI_GOODSMVT_CREATE is called.

    if you have NULL valued fields. If
    you do a compare and one or both are NULL, then the result is always NULL,
    never true or false. Even comparing two fields which are both NULL will
    give NULL as result, not true! Or if you have something like "select
    sum(field) from ..." and one or more are NULL, then the result will be
    NULL. Use always "if field is NULL ..." for NULL checking and for safety
    maybe something like "select sum( IsNull(field,0) ) from ...". Check the
    function ISNULL() in the manual.

  • Differentiate between DC and ADC

    Hi,
    How can I differentiate that which machine in my domain is DC and which one is ADC?
    Best Regards, Parveen Chauhan [email protected] Mobile: +91-9811629793

    In Active Directory, all DC can perform read and write operations – except RODCs in Windows 2008. In general, all DCs are same. 
    Some DCs will hold FMSO roles. 
    FSMO Role:
    http://support.microsoft.com/kb/197132/en-us
    RODC:
    http://technet.microsoft.com/en-us/library/cc732801(WS.10).aspx
    Santhosh Sivarajan | MCTS, MCSE (W2K3/W2K/NT4), MCSA (W2K3/W2K/MSG), CCNA, Network+ Houston, TX http://blogs.sivarajan.com/ http://publications.sivarajan.com/ This posting is provided "AS IS" with no warranties, and confers no rights.

  • Differentiate between report and generated scheduled report - report list

    How do I differentiate between a (.rpt) report and a (scheduled generated report) from this report (.rpt with data) when I list all the reports on the server.
    I need this information because when I view the scheduled report, I do not need to set the parameters via the crystal viewer.
    Thanks in advance.
    JM

    Ted.
    I am not sure why the scheduled report is saying si_instance=false.
    So I scheduled the sample report - Drilldown and named the scheduled instance as "DrilldownInstance",
    it created two info objects. One has SI_INSTANCE = true and the other has SI_INSTANCE = false!!!!!
    select * from CI_INFOOBJECTS
    where
    SI_PROGID = 'CrystalEnterprise.Report'
    and SI_KIND = 'CrystalReport'
    and si_name LIKE '%DrilldownInstance%'
    I presume it should have only created one object, and set si_instance=true
    Thanks,
    JM
    P.S
    Sorry to be a bother! but this is driving me nuts!
    Edited by: jam mend on Jan 20, 2009 9:07 PM

  • UCCX 8 Differentiate between new and requeued Emails

    Hi All,
    It would be of great help if anyone could guide me whether there are any features in UCCX 8 that lets Email Agents differentiate a new Email from a requeued one.
    Is there a way to configure CAD so that Agents can mark emails that are requeued ?
    Also, is it possible for Agents to receive new Emails when he / she has an Email on hold, to be worked later ?
    Many thanks !
    Thanks & Regards,
    Anand

    No on the requeue differentiation. Unlike phone calls, emails do not show a journal of what has happened to them.
    There is a setting that allows the system to assign up to five emails at a time to the agent. This is done through Desktop Admin under Email Settings > Global Settings.
    http://www.cisco.com/en/US/docs/voice_ip_comm/cust_contact/contact_center/crs/express_8_5/user/guide/cda85ccxug-cm.pdf page 200.
    Please remember to rate helpful responses and identify helpful or correct answers.

  • Differentiate tableView select and dis-select.

    Hello all,
    I have debugged and found that the EVENT_TYPE attribute of the CLASS : CL_HTMLB_EVENT_TABLEVIEW is always set to <b>rowSelection</b>, regardless of the fact wheather we select a row or de-select it.
    Is there a wway to differentiate it ???
    Thanks,
    Tatvagna.

    the only way to differentiate between row select of deselect is that  (in a tableview where selectionmode eq singleselect)
    if <cl_htmlb_event_tableview>->PREVSELECTEDROWINDEX  is equal to <cl_htmlb_event_tableview>->SELECTEDROWINDEX  means user is deselecting a row.
    else
    user is selecting a row.
    Raja

Maybe you are looking for

  • How to upload PDF files to a website? Always error messages

    I made a script for friends to upload PDF files to a website we have. The script is: <form action ="<?php print $_SERVER['PHP_SELF']?>" method="post" enctype="multipart/form-data"> This doesn't work in Firefox; it does in other browsers, even IE. Wha

  • Error code 500 on Nokia 9300i

    Can anyone tell me what this error message is? I have set up my email account but when I try to retrieve email I get the message The requested item could not be loaded (Status code 500) Any help gratefully received Thanks Mark

  • Starting new task in FM

    Hi, I have FM 'update_table' with asynchrounous call(FM which use starting new task). This FM updates the table and commits the work.But when I try to read the datas from table I don't get the updated datas.This happens only in in real scenario. When

  • Work Flow Report

    Hi, 1. I need to develop a report  on ZFD1 sales order  charged to cost center .    SAP Work Flow will have ZFD1 Sales order details. 2.I am using VBAK , VBAP , T001 , ZA27 along with WF tables. 3.I need to what are the WF tables to be used  for ( WF

  • Where do MP3s go?

    I can save them to my hard drive, desk top, itunes, no problem, but when you mark a destination and you burn them twice, it says that a file already exists. Where are they stored?