How we can calculate available free memory in java?

Hi all
i want to see what is the free heap memory available while running the java application?
please can anyone tell me how i can do it ?
thank u

Perhaps the MemoryUsage class is what you're looking for?
http://java.sun.com/j2se/1.5.0/docs/api/java/lang/management/MemoryUsage.html

Similar Messages

  • How i can calculate area of polygon with java ??

    hello
    i've trouble with calculation polygon-area
    is there any body who is good at calculation of shapes?
    i explain my problem with pictures.
    on piture2, i can calculate red-area of polygon with reference "http://www.cs.princeton.edu/introcs/33modular/Polygon.java.html"
    but, i can't do it on picture1.
    please help me and understand that i'm poor at english
    picture 1.
    http://myhome.naver.net/imsangchin/trace1.jpg
    picture 2.
    http://myhome.naver.net/imsangchin/trace2.jpg

    Do you have a formula that generates picture 1?
    If so, then you can use the basic formula for integration... take very very small steps and sum up all the steps, you can get as close as you like by making the steps sufficiently small.
    If you don't have a formula to generate the picture, then you can do it by essentially counting the number of colored pixels in the shape and calling them any type of appropriate units or actually scaling converting them to inches or cm or what ever you are using. You can do this by just scanning across the image and counting how many pixes are on each line, then go to the next line. Do this for the entire image only counting the target color and then do your conversion.

  • How we can see the abap memory data

    How we can see the abap-memory data
    fine the code below
    import lsind
             report_title
             table_name
             report_field
             change_display
             show_hide
             conversion_exits
             table_description
             form_program
             select_form
             update_form
             line_size
             line_count
             records[]
             fields[]
             header_fields[]
             select_fields[]
             xrep[]
             from memory id 'LZUT5U11'.
    Regards
    santhosh
    mail-id : [email protected]

    Dear Santosh,
    ABAP MEMORY:
    A logical memory model illustrates how the main memory is distributed from the view of executable programs. A distinction is made here between external sessions and internal sessions .
    An external session is usually linked to an R/3 window. You can create an external session by choosing System/Create session, or by entering /o in the command field. An external session is broken down further into internal sessions. Program data is only visible within an internal session. Each external session can include up to 20 internal sessions (stacks).
    Every program you start runs in an internal session.
    All "squares" with rounded "corners" displayed in the status diagram represent a set of data objects in the main memory.
    The data in the main memory is only visible to the program concerned.
    CALL TRANSACTION and SUBMIT AND RETURN open a new internal session that forms a new program context. The internal sessions in an external session form a memory stack. The new session is added to the top of the stack.
    When a program has finished running, the top internal session in the stack is removed, and the calling program resumes processing.
    The same occurs when the system processes a LEAVE PROGRAM statement.
    LEAVE TO TRANSACTION removes all internal sessions from the stack and opens a new one containing the program context of the calling program.
    The ABAP memory is initialized after the program is called. In other words, you cannot transfer any data to a program called with LEAVE TO TRANSACTION via the ABAP memory.
    SUBMIT replaces the internal session of the program performing the call with the internal session of the program that has been called. The new internal session contains the program context of the called program with which it is performed.
    When a function module is called, the following steps are executed:
    A check is made to establish whether your program has called a function module of the same function group previously.
    If this is not the case, the system loads the associated function group to the internal session of the calling program as an additional program group. This initializes its global data.
    If your program used a function module of the same function group before the current call, the function module that you have called up at present can access the global data of the function group. The function group is not reloaded.
    Within the internal session, all of the function modules that you call from the same group access the global data of that group.
    If, in a new internal session, you call a function module from the same function group as in internal session 1, a new set of global data is initialized for the second internal session. This means that the data accessed by function modules called in session 2 may be different from that accessed by the function modules in session 1.
    You can call function modules asynchronously as well as synchronously. To do so, you must extend the function module call using the addition STARTING NEW TASK ''. Here, '' is a symbolic name in the calling program that identifies the external session, in which the called program is executed.
    Function modules that you call using the addition STARTING NEW TASK '' are executed independently of the calling program. The calling program is not interrupted.
    To make function modules available for local asynchronous calls, you must identify them as executable remotely (processing type: Remote-enabled module).
    There are various ways of transferring data between programs that are running in different program contexts (internal sessions). You can use:
    (1) The interface of the called program (standard selection screen, or interface of a
    subroutine, function module, or dialog module)
    (2) ABAP memory
    (3) SAP memory
    (4) Database tables
    (5) Local files on your presentation server.
    For further information about transferring data between an ABAP program and your presentation server, refer to the documentation for the function modules WS_UPLOAD and WS_DOWNLOAD.
    Function modules have an interface, which you can use to pass data between the calling program and the function module itself (there is also a comparable mechanism for ABAP subroutines). If a function module supports RFC, certain restrictions apply to its interface.
    If you are calling an ABAP program that has a standard selection screen, you can pass values to the input fields. There are two options here:
    By using a variant of the standard selection screen in the program call
    By passing actual values for the input fields in the program call
    If you want to call a report program without displaying its selection screen (default setting), but still want to pass values to its input fields, there is a variety of techniques that you can use.
    The WITH addition allows you to assign values to the parameters and select-options fields on the standard selection screen.
    If the selection screen is to be displayed when the program is called, use the addition: VIA SELECTION-SCREEN.
    Use the pattern button in the ABAP Editor to insert a program call via SUBMIT. The structure shows you the names of data objects that you can complete with the standard selection screen.
    For further information on working with variants and further syntax variants for the WITH addition, see the key word documentation in the ABAP Editor for SUBMIT.
    You can use SAP memory and ABAP memory to pass data between different programs.
    The SAP memory is a user-specific memory area for storing field values. It is available in all of the open sessions in a user's terminal session, and is reset when the terminal session ends. You can use its contents as default values for screen fields. All external sessions can access SAP memory. This means that it is only of limited use for passing data between internal sessions.
    The ABAP memory is also user-specific, and is local to each external session. You can use it to pass any ABAP variables (fields, structures, internal tables, complex objects) between the internal sessions of a single external session.
    Each external session has its own ABAP memory. When you end an external session (/i in the command field), the corresponding ABAP memory is released automatically.
    To copy a set of ABAP variables and their current values (data cluster) to the ABAP memory, use the EXPORT TO MEMORY ID statement. The (up to 32 characters) is used to identify the different data clusters.
    If you repeat an EXPORT TO MEMORY ID statement to an existing data cluster, the new data overwrites the old.
    To copy data from ABAP memory to the corresponding fields of an ABAP program, use the IMPORT FROM MEMORY ID statement.
    The fields, structures, internal tables, and complex objects in a data cluster in ABAP memory must be declared identically in both the program from which you exported the data and the program into which you import it.
    To release a data cluster, use the FREE MEMORY ID statement.
    You can import just parts of a data cluster with IMPORT, since the objects are named in the cluster.
    In the SAP memory, you can define memory areas (SET/GET parameters, or parameter IDs), which you can then address by a name of up to 20 characters.
    You can fill these memory areas either using the contents of input/output fields on screens, or using the ABAP statement:
    SET PARAMETER ID '' FIELD .
    The memory area with the name now has the value .
    You can use the contents of a memory area to display a default value in an input field on a screen.
    You can also read the memory areas from the SAP memory using the ABAP statement GET PARAMETER ID FIELD . The field then contains the value from parameter .
    The link between an input/output field and a memory area in SAP memory is inherited from the data element on which the field is based. You can enable the set parameter or get parameter attributes in the input/output field attributes.
    Once you have set the Set parameter attribute for an input/output field, you can fill it with default values from SAP memory. This is particularly useful for transactions that you call from another program without displaying the initial screen. For this purpose, you must activate the Set parameter functionality for the input fields of the first screen of the transaction.
    You can:
    (1) Copy the data that is to be used for the first screen of the transaction to be called to the parameter ID in the SAP memory. To do so, use the statement SET PARAMETER immediately before calling the transaction.
    (2) Start the transaction using CALL TRANSACTION or LEAVE TO
    TRANSACTION . If you do not want to display the initial screen, use the AND
    SKIP FIRST SCREEN addition.
    (3) The system program that starts the transaction fills the input fields that do not already have default values and for which the Get parameter attribute has been set with values from SAP memory.
    The Technical information for the input fields in the transaction you want to call contains the names of the parameter IDs that you need to use.
    Parameter IDs should be entered in table TPARA. This happens automatically if you create them via the Object navigator.
    Programs that you call using the statements SUBMIT , LEAVE TO TRANSACTION , SUBMIT AND RETURN, or CALL TRANSACTION run in their own SAP LUW, and update requests receive their own update key.
    When you use SUBMIT and LEAVE TO TRANSACTION , the SAP LUW of the calling program ends. If no COMMIT WORK statement occurred before the program call, the update requests in the log table remain incomplete and cannot be processed. They can no longer be executed. The same applies to inline changes that you make using PERFORM … ON COMMIT.
    Data that you have written to the database using inline changes is committed the next time a new screen is displayed.
    If you use SUBMIT AND RETURN or CALL TRANSACTION to insert a program and then return to the calling program, the SAP LUW of the calling program is resumed when the called program ends. The LUW processing of calling and called programs is independent.
    In other words, inline changes are committed the next time a new screen is displayed. Update requests and calls using PERFORM ... ON COMMIT require an independent COMMIT WORK statement in the SAP LUW in which they are running.
    Function modules run in the same SAP LUW as the program that calls them.
    If you call transactions with nested calls, each transaction needs its own COMMIT WORK, since each transaction maps its own SAP LUW.
    The same applies to calling executable programs, which are called using SUBMIT AND RETURN.
    The statement CALL TRANSACTION allows you to
    Shorten the user dialog when calling using CALL TRANSACTION USING .
    Determine the type of update (asynchronous, local, or synchronous) for the transaction called. For this purpose, use the addition CALL TRANSACTION USING UPDATE 'update_mode', where update_mode can have the values a (asynchronous), L (local), or S (synchronous).
    Combining the two options enables you to call several transactions in sequence (logical chain), to reduce their screen sequence, and to postpone processing of the SAP LUW 2 until processing of the SAP LUW 1 has been completed.
    When you call a function module asynchronously using the CALL FUNCTION STARTING NEW TASK ' ' statement, it runs in its own SAP LUW.
    Programs that are executed with a SUBMIT AND RETURN or CALL
    TRANSACTION statement starts their own LUW processing. You can use these to perform nested (complex) LUW processing.
    You can use function modules as modularization units within an SAP LUW.
    Function modules that are called asynchronously are suitable for programs that allow parallel processing of some of their components.
    All techniques are suitable for including programs with purely display functions.
    Note that a function module called with CALL FUNCTION STARTING NEW TASK is executed as a new logon. It, therefore, sees a separate SAP memory area. You can use the interface of the function module for data transfers.
    Example: In your program, you want to call a display transaction that is displayed in a separate window (amodal). To do so, you encapsulate the transaction call in a function module, which you set as to Remote-enabled module. You use the function module interface to accept values that you write to the SAP memory. You then call up the transaction in the function module using CALL TRANSACTION AND SKIP FIRST SCREEN. You call the function module itself asynchronously.
    Type ‘E' locks for nested program calls may be requested more than once from the same object. This behavior can be described as follows:
    Lock entries from function modules called synchronously increment the cumulative counter, And are therefore successful.
    Lock entries from programs called with CALL TRANSACTION or SUBMIT
    AND
    RETURN is refused. The object to be locked by the called program is displayed as already Locked by another user.
    Programs that you call using SUBMIT or LEAVE TO TRANSACTION cannot come into conflict with lock entries from the calling program, since the old program ends when the call is made. When a program ends, the system deletes all of the lock entries that it had set.
    Lock requests belonging to the same user from different R/3 windows or logons are treated as lock requests from other users.
    Regards,
    Rajesh.
    Please reward points if found helpful.

  • What is available free memory in skeleton air application?

    hi,
    My pc has 12 gb.
    I was developing full scale DESKTOP adobe air app and it started to crash on mousemove. So basically i wanted to see whats available free memory  it was showing 50mb
    that was too low for my app to process data.
    So i went back and created simple HTML that shows available free memory...it shows 80mb free....whats going on?.
    Anyone care to explain? FREE memory should be atleast 50% of allocated memory of processs assuming system uses 50%
    Here is code and here is HTML
    output
    Memory-f-88-t-6452-p-30064
    HTML
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"><head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>PUSH PERFECT</title>   
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
    <script src="assets/js/frameworks/libs/air/AIRAliases.js"></script>
    </head>
    <body  style="overflow:hidden;padding:5px;" id="MySplitter" >                   
                        <div class="span5 grider"  style="text-align:left;">
                                <ul class="breadcrumb">
                                <li><a href="#">Calculation</a> <span class="divider"> </span></li>
                                <li><span >Memory</span>-f-<span id='freememory'></span>-t-<span id='totalmemory'></span>-p-<span id='privatememory'></span></li>
                                </ul>
                        </div>
    <script>
    function displaymemory()
    var totalmemory=air.System.    totalMemoryNumber;
    var freememory=air.System.freeMemory;
    var privatememory=air.System.privateMemory;
    document.getElementById("totalmemory").innerHTML=totalmemory/1024;
    document.getElementById("freememory").innerHTML=freememory/1024;
    document.getElementById("privatememory").innerHTML=privatememory/1024;
    displaymemory();
    air.System.gc();
    displaymemory();
    </script>
    </body>
    </html>
    ===================
    Thanks in advance

    Hot Cpu Tester can test every device in the pc .
    Use it alot myself , assisting others with PC's and at work if there is problematic machines .
    Given it thumbs -up in the past and in the present time .  
    http://7byte.com/index.php?page=hotcpu

  • How i can calculate the backplane speed & throughput of cisco 48 1G 2960S switch?

    How i can calculate the backplane speed & throughput of cisco 48 1G 2960S switch?

    Disclaimer
    The  Author of this posting offers the information contained within this  posting without consideration and with the reader's understanding that  there's no implied or expressed suitability or fitness for any purpose.  Information provided is for informational purposes only and should not  be construed as rendering professional advice of any kind. Usage of this  posting's information is solely at reader's own risk.
    Liability Disclaimer
    In  no event shall Author be liable for any damages whatsoever (including,  without limitation, damages for loss of use, data or profit) arising out  of the use or inability to use the posting's information even if Author  has been advised of the possibility of such damage.
    Posting
    Calculate?  Calculate for wirespeed/line-rate?  If the latter, take all the port bandwidths, and assuming they are duplex, double for necessary fabric bandwidth.  I.e. 48 gig ports would need a 96 Gbps fabric.  Take all your port bandwidths, and allow 1.448 Mpps per gig (for minimum size Ethernet packets), i.e. 48 gig ports would need 69.5 Mpps.  Once you have required fabric bandwidth and PPS, you can compare to vendor's specs.

  • How I can calculate tax !

    Hi !
    I wonder how I can calculate tax !
    Now, I'm investigating  if i can make MM-Invoice with batch-input,
    and i got 1 question.
    In making MM-Invoice, I have to decide total invoice amount with tax before going batch-input.
    While I could find total amount ( by deal × per amount), I couldn't find how to get amount of tax.
    Is there any function module or tables that have tax-rate?

    check table RBVD

  • How I can create a XML file from java Aplication

    How I can create a XML file from java Aplication
    whith have a the following structure
    <users>
    <user>
    <login>anyName</login>     
    <password>xxxx</password>
    </user>
    </users>
    the password label must be encripted
    accept any suggestion

    Let us assume you have all the data from the jsp form in an java bean object..
    Now you want a xml file. This can be acheived in 2 ways
    1. Write it into a file using java.io classes. Say you have a class with name
    write("<name>"+obj.getName+</name>);
    bingo you have a flat file with the xml
    2. Use data binding to do the trick
    will recommend JiBx and Castor for the 2nd option
    Regards,
    Rajagopal

  • How i can make  my own connection in java source of a jsp page

    How i can make my own connection in java source of a jsp page (How to get connection from JNDI datasource address) ?
    imagine that i have a rowset in a web page , now i want to do some operation using
    plain JDBC , so i will need a connection object.
    I tried to get one of my rowsets connection but it return null ?
    what is best way to retrive a connection from JNDI datasource that we define for our project?
    for example if i have
    myRowSet.setDataSourceName("java:comp/env/jdbc/be");
    in web page constructor
    now i want a pure connection from the same datasource ? JNDI
    Thank you

    It is not hard to get your own connection from datasource.
    in your case you need to do like the the following code.
    i provide sample to show you how to catch the exception and create an statement .
    Connection con =null;
    try{
    InitialContext ctx = new InitialContext();
    DataSource ds = (DataSource)ctx.lookup("java:comp/env/jdbc/be");
    con = ds.getConnection();
    java.sql.Statement st =con.createStatement();
    }catch(SQLException sqlex){
    sqlex.printStackTrace();
    sqlex.getNextException().printStackTrace();
    catch(NamingException nex){
    nex.printStackTrace();
    hth
    Masoud kalali

  • How we can update the  System Date,in java

    Hi guys,
    can U pls help me...
    How we can update the System Date,in java
    I need to get the System Date and time continuosly thruogh threads concept.kindly help me
    Thanking u in Advance

    System.currentTimeMillis() will give you the current
    system date and time as a long value.
    ~I think the OP wants to change the system time not just get the system time.

  • How to manually calculate total host memory on SCVVM 2008R2

    I'm looking for a formula to calculate the total memory amount used on a host. When I add all allocated memory from the VM's, add the reserved host memory and add 32MB per VM it's still not enough to explain the amount of free memory that's reported on the
    host in SCVVM. Can someone explaine how this calculation can be done. Thanks for your reply.

    Hi mheijkant,
    " The other thing to consider regarding virtualization overhead is that VMs use a small amount of memory for Integration Services and other virtualization-related processes. That amount of memory is somewhat trivial, so you won’t typically have
    to worry about assigning extra memory for that, unless you’re only planning on providing each VM with the bare minimum amount of memory.
    VMs with 1GB or less of RAM only use about 32MB of memory for virtualization-related overhead. You should add 8MB for every gigabyte of additional RAM. "
    I checked the available memory report in SCVMM , it is very close to the available memory in Resource Monitor running on that hyper-v host .
    You can run " resmon.exe " to use resource monitor in hyper-v host to check the memory usage .
    In addition , memory usage of parent partition/hyper-v host should be counted in .
    "Hyper-V doesn’t let you allocate memory directly to the host partition. It essentially uses whatever memory is left over. Therefore, you have to remember to leave 2GB of your host server’s memory not allocated so it’s available for the parent partition.
    http://technet.microsoft.com/en-us/magazine/hh750394.aspx
    Best Regards,
    Elton Ji
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected] .

  • How i can increase the OC4J memory ?

    hi
    thank you for reading my post
    how i can increase memory of OC4J which make it not to show these messages :
       Gen space                                                                      
    06/09/11 14:45:38 java.lang.OutOfMemoryError: PermGen space                    
    Java HotSpot(TM) Client VM warning: Exception java.lang.OutOfMemoryError occurre
    d dispatching signal UNKNOWN to handler- the VM may need to be forcibly terminat
    ed                                                                             
    Java HotSpot(TM) Client VM warning: Exception java.lang.OutOfMemoryError occurre
    d dispatching signal UNKNOWN to handler- the VM may need to be forcibly terminat
    ed                                                                              Thanks

    Hi,
    PermGen space implies the perm space allocated is not sufficient, not the heap space. Please add the following to the command line -XX:MaxPermSize=128M.
    Hope that helps!
    --Sindhu                                                                                                                                                                                                                                                                                                                                                                                           

  • How I can calculate a percentage?

    I did a query and print 2 number values:
    #NumberFormat(deriden.den9999999)#
    #NumberFormat(baniban.ban,9999999)#
    now I need to do e percentage, A/B * 100
    Do you know how I can do that?
    I wrote that but doesn't work:
    <cfoutput>
    #NumberFormat(deriden.den9999999)#/#NumberFormat(baniban.ban,9999999)#
    * 100
    </cfoutput>
    Thanks!
    CFwork

    Try with this:
    <cfscript>
    var varname =
    NumberFormat(deriden.den9999999)/NumberFormat(baniban.ban,9999999)
    * 100;
    </cfscript>
    <cfoutput>#varname#</cfoutput>
    Thanks
    Sankalan
    (www.mindfiresolutions.com)

  • Checking Amount of free memory in java code

    Hi, Does anyone know of an accurate way to check the amount of free memory available in the JVM or OC4J container? I've been using "Runtime.getRuntime().freeMemory()", but that's not entirely accurate since it depends on garbage collection. Is there a better way? thanks.

    Try a Restore with the most recent iPod Updater.
    http://discussions.apple.com/message.jspa?messageID=2488357#2488357
    This is another one of my posts with some good links on this subject.
    I hope this helps!

  • How i can execute the sql query in java code

    I already have sql query in jave plateform i need to execute this code how i can do that. i have unix env and with oracle database. should i just run this query in my sqlplus. this file has extention .java. thanks

    you can create a project in JDeveloper add the java file to it, add the Oracle JDBC library to the project properties and then hit the run button.

  • Available free memory is 10MB in Appl1 Prod server

    Dear all,
    kindly check the Top Cpu process details
    94.324     root     dtgreet     0,09     20:31     1.652     20
    237.646     root     /opt/ibm/director/j     0,08     3:20     38.704     20
    151.756     esaadmin     /usr/java5/bin/java     0,01     6:08     74.340     20
    294.928     irpadm     /usr/sap/IRP/D00/ex     0,01     2:57     17.388     20
    270.446     irpadm     /usr/sap/IRP/SYS/ex     0,01     2:22     4.300     20
    315.572     root     /usr/bin/xmwlm -L     0,00     0:15     848     20
    397.356     irpadm     dw.sapIRP_D00 pf=/u     0,00     149:55     210.184     20
    69.666     root     gil     0,00     1:30     960     41
    213.150     irpadm     /usr/sap/IRP/D00/ex     0,00     1:19     30.076     20
    254.092     irpadm     /usr/sap/IRP/D00/ex     0,00     1:19     30.080     20
    172.056     irpadm     dw.sapIRP_D00 pf=/u     0,00     3:30     35.920     20
    278.716     root     nfsd     0,00     1:49     2.496     20
    114.820     root     /usr/lpp/X11/bin/X     0,00     0:29     6.316     20
    49.176     root     xmgc     0,00     0:28     448     41
    245.892     root     rpc.lockd     0,00     0:19     1.216     20
    127.060     irpadm     icman -attach pf=/u     0,00     0:09     92.188     20
    385.076     irpadm     gwrd -dp pf=/usr/sa     0,00     0:15     8.476     20
    65.568     root     netm     0,00     0:02     448     41
    319.546     irpadm     /usr/sap/IRP/D00/ex     0,00     0:11     12.136     20
    188.518     root     rtcmd     0,00     0:05     512     20
    98.428     root     /usr/sbin/syncd 60     0,00     3:46     504     20
    45.078     root     pilegc     0,00     0:01     1.472     41
    200.804     root     n4bg     0,00     0:00     448     20
    208.998     root     rdpgc     0,00     0:00     448     20
    192.610     root     /usr/ccs/bin/shlap6     0,00     0:00     436     20
    184.478     root     /usr/sbin/syslogd     0,00     0:00     364     20
    180.322     root     kbiod     0,00     0:11     1.280     20
    168.036     root     /usr/sbin/cron     0,00     0:01     412     20
    163.984     root     /usr/sbin/inetd     0,00     0:00     480     20
    159.872     root     /opt/ibm/director/b     0,00     0:00     208     20
    155.884     root     /usr/sbin/rpc.mount     0,00     0:00     1.800     20
    147.580     root     rgsr     0,00     0:01     448     20
    143.440     root     usbCfgDev     0,00     0:00     448     20
    139.302     irpadm     dw.sapIRP_D00 pf=/u     0,00     1:36     103.772     20
    135.238     root     hea_kproc     0,00     0:00     448     41
    123.088     root     dtlogin <:0>     0,00     0:00     424     20
    118.860     root     j2pg     0,00     0:10     2.048     41
    110.674     root     dog     0,00     0:00     960     20
    102.498     root     /usr/dt/bin/dtlogin     0,00     0:00     456     20
    90.254     root     /usr/lib/errdemon     0,00     0:00     628     20
    my query is ,  is it possible to the above same from OS level (AIX)
    (In windows we can check task manager )
    kindly suggest how to kill the process from OS level.
    regards

    You can check these details from OS level(*ix) with below command
    ps -ef |grep
    You also can check this from SAP gui level from ST06
    Below command can help you for killing the processes from OS(*ix) level
    kill -9 PID
    Here PID is the process ID...
    Suggetion: Close your duplicate threads and just follow only one, as i saw similar post raised by you
    Regards,
    Nick Loy

Maybe you are looking for

  • How do I access my iCloud account from someone else's device?

    II'd like to use my friend's iPad to access my mail.  it will only access her account.   How can can I log into my account from her iPad?

  • My iPhone 3G is stuck on the USB to iTunes screen

    I tried to upgrade the OS of my iPhone 3G and as I was done downloading the software and ready upgrade the phone it showed an error and the phone could not be seen in iTunes. So I unplugged and replugged the USB and now even trying to restore the pho

  • Word 2010 Text Box PDF Conversion

    When I work in Word 2010 and create a text box, once I PDF (Adobe XI-Pro) the document, the text does not show in the text box in the PDF. It only shows if I save the Word document in 1997-2003 compatibility mode. Does anyone have this issue and if s

  • Revaluation - AR29N

    HI When i am trying to post the revaluation of an asset by AR29N then i am getting following error. I am doing following settings in AR29N asset valued amount revaluation offsetting account T -type 897 Depreciation wout/ writeback revaluation measure

  • IPhoto does NOT import " .pictClipping " files ?

    Hi, I copied pictures of artists from Amazon on the Web and put them together with the songs in iTunes Artwork. So far so good. I wanted to import these pics in iPhoto. I dragged them on the desktop en tried to import them via iPhoto 'Add to library'