How to check client size in SAP

Hi All,
I would like to check the size of production client so i can do system refresh to QA. I need to know how to check client size only not database size.
Regards
Atul-

Hi
Yes, there is a report called YSTABSIZ which can calculate the size of the client.
1. Login to the target client ( for which the client size to be calculated)
2. Run SE38 , execute YSTABSIZ by selecting the table *
3. Execute the report in background
Once the client is deleted, the space which is free can be used to fill in with newly added data
but if you want to see the actual space reduction in DB02,it can be acheived only with DB reorganization
OSS notes 118823 and  for this purpose
Hope ths helps
Please reward points
Sunil

Similar Messages

  • How to check total size of attachment stored in database?

    Hello guys,
    Firstly I'm new to this forum & SAP Basis. Therefore i want to apologize if i'm posting in wrong area.
    Actually I want to know how to check total size of attachment that have been uploaded in ECC.
    From the current database size, how can i check how much space have been used to store attachment such as pdf, doc, xls and tif. I  want to know how much space have been utilized by those attachments from August 2010 until now.
    FYI, those are PR, PO & MIGO attachments.
    Where do i start? What are the tables to check? Which table keeps record of the attachment size? etc.. etc..
    Really appreciate if you guys can give me some guideline.
    Thank you & Rgds,
    fafizah.

    Hi,
    As such there is no direct way to do this but if you will able to find out which all table stores the attachment then you can find out the size of those table from database level.
    Thanks
    Sunny

  • How to check File size of a Text file.

    How to check File size of a Text file.
    please explain me.
    I am new in LabVIEW. and dont have much idea on this...;
    Prashant Soni
    LabVIEW Engineer
    Solved!
    Go to Solution.

    Hi Prashant,
    and here's what you get when using the LV help...
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • HELP !!! How to check the size of an object in Photoshop ?

    Hello,
    I'm using Photoshop CS 3 to design a website. I used several shapes such as rectangle, line or ellipse of different size. Probably it is a stupid question but I don't know how to check the size of an existing rectangle. I tried free transform tool that selects my rectangle but doesn't show its size. Then I made a selection with rectangular marquee tool but I see nowhere the size of the selected area.
    If you know the name of such a tool please help me !
    Have a nice day !

    Web images are all pixels. View at 100% at pixel view. that is your exact size

  • How to check image size in oracle 9i & 10g database

    hi,
    i have inserted an Image into a table in oracle database & I want to View the Query How to check image size in oracle 9i & 10g database
    thanks
    Edited by: user8920919 on May 30, 2010 1:43 AM

    user8920919 wrote:
    hi,
    How to check image size in oracle 9i & 10g database
    thanksWhat do you mean with "image size"?

  • How to check patch level in SAP 6.0 ?

    how to check patch level in SAP 6.0 ?
    is there any T code available for this
    thnx in advance

    Hello,
    In note [1076022|http://service.sap.com/sap/support/notes/1076022] we can see:
    b) Minimum support package levels and SAP kernel patch levels
       For non-SAP BW systems the minimum 700 SAP_BASIS support package level is SP14.
       For SAP BW systems, the minimum 700 SAP_BASIS support package level is SP16 and the minimum 700 SAP_BW support package level is SP18.
       Please consult note 1152240 for the minimum DbSl kernel patch level and the minimum JDBC driver requirements.
    Regards,
    Eduardo

  • How to check trace log in sap

    Dear all ,
    in my company one of sap user change in item description in sap  so please suggest me how can i cheack which user change the the following item descrition  
    kindlyy repaly as sson as possible
    With warm regards
    Pritpal Mehru

    SQL Trace transaction ST05
    SQL Trace transaction ST05: The trace list has many lines that are not related to the SELECT statement in the ABAP program. This is because the execution of any ABAP program requires additional administrative SQL calls. To restrict the list output, use the filter introducing the trace list.
    The trace list contains different SQL statements simultaneously related to the one SELECT statement in the ABAP program. This is because the R/3 Database Interface - a sophisticated component of the R/3 Application Server - maps every Open SQL statement to one or a series of physical database calls and brings it to execution. This mapping, crucial to R/3s performance, depends on the particular call and database system. For example, the SELECT-ENDSELECT loop on a particular database table of the ABAP program would be mapped to a sequence PREPARE-OPEN-FETCH of physical calls in an Oracle environment.
    The WHERE clause in the trace list's SQL statement is different from the WHERE clause in the ABAP statement. This is because in an R/3 system, a client is a self-contained unit with separate master records and its own set of table data (in commercial, organizational, and technical terms). With ABAP, every Open SQL statement automatically executes within the correct client environment. For this reason, a condition with the actual client code is added to every WHERE clause if a client field is a component of the searched table.
    To see a statement's execution plan, just position the cursor on the PREPARE statement and choose Explain SQL. A detailed explanation of the execution plan depends on the database system in use.
    Starting the Trace:
    To analyze a trace file, do the following:
    Choose the menu path Test  Performance Trace in the ABAP Workbench or go to Transaction ST05. The initial screen of the test tool appears. In the lower part of the screen, the status of the Performance Trace is displayed. This provides you with information as to whether any of the Performance Traces are switched on and the users for which they are enabled. It also tells you which user has switched the trace on.
    Using the selection buttons provided, set which trace functions you wish to have switched on (SWL trace, enqueue trace, RFC trace, table buffer trace).
    If you want to switch on the trace under your user name, choose Trace on. If you want to pass on values for one or several filter criteria, choose Trace with Filter. Typical filter criteria are: the name of the user, transaction name, process name, and program name.
    Now run the program to be analyzed.
    Stopping the Trace:
    To deactivate the trace:
    Choose Test Performance Trace in the ABAP Workbench. The initial screen of the test tool appears. It contains a status line displaying the traces that are active, the users for whom they are active, and the user who activated them.
    Select the trace functions that you want to switch off.
    Choose Deactivate Trace. If you started the trace yourself, you can now switch it off immediately. If the performance trace was started by a different user, a confirmation prompt appears before deactivation-
    Analyzing a Sample trace data:
    PREPARE: Prepares the OPEN statement for use and determines the access method.
    OPEN: Opens the cursor and specifies the selection result by filling the selection fields with concrete values.
    FETCH: Moves the cursor through the dataset created by the OPEN operation. The array size displayed beside the fetch data means that the system can transfer a maximum package size of 392 records at one time into the buffered area.
    RFC Trace Analysis
    Use
    Using the RFC trace, you can track which remote calls of your application, or the SAP System are executed and on which instance these calls are executed. You can display and analyze the logged trace records in the trace file.
    http://help.sap.com/saphelp_nw04/helpdata/en/5a/ace298ca0211d194b500a0c94260a5/content.htm
    Reward if usefull

  • How to redunce the size in SAP bw system

    hi all,
    i am execute the query i will take more time for result. then i will check the DB size is low, now i do reduce the size or what i do?
    thanx,
    Siva

    hi..
    for query performance
    oss note
    557870 'FAQ BW Query Performance'
    and 567746 'Composite note BW 3.x performance Query and Web'.
    weblog for good query design
    /people/prakash.darji/blog/2006/01/27/query-creation-checklist
    /people/prakash.darji/blog/2006/01/26/query-optimization
    BW Performance Tuning Knowledge Center - SAP Developer Network (SDN)
    Business Intelligence Performance Tuning [original link is broken]
    check out this presentation too..
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/afbad390-0201-0010-daa4-9ef0168d41b6
    assign points if helpful..

  • How to check the size of an info cube?

    Dear all
    Is there any t-code which can be used to see the total disk space occupied by a specific cube?
    I know ST14 can be used for the TOP 30 cubes and stuff.
    but my cube is not in top 30.....so how should i see the total size of my cube in bytes?
    please help me...i need it urgently
    Please dont recommend the SAP note on Sizing...i have it...the caliculation gave me wrong answer!
    Total Points assured!!!!
    Edited by: reddy reddy on Jan 27, 2008 9:34 AM

    Hi,
    we can calculate the size of the info cube.using this information
    Each keyfiure occupies 10 Bytes of memory
    Each Char occupies 6 Bytes of memory
    So in an Infocube the maximum number of fields are 256 out of which 233 keyfigure, 16 Dimesions and 6 special char.
    So The maximum capacity of a cube
    = 233(Key figure)10 + 16(Characteristics)6 + 6(Sp.Char)*6
    In general InfoCube size should not exceed 100 GB of data.
    While considering sizing, you must consider factors like years of data rewuired for reporting, acceptable repsonse time, database limitations, archiving options, etc.
    pl read this document:
    [https://websmp209.sap-ag.de/sizing]
    Hope this helps,
    regards
    CSM Reddy

  • How to check folder sizes of the root directory on my VPS/Dedicated server via Terminal?

    Hi,
    I have following issue.
    I have a VPS with Linux OS and I'd like to check size of the folders as well as remaining space on my server.
    How can I do that via Terminal?
    I would appreciate any input.

    login into your VPS server via terminal and cd into the root of your hosted space.  Then use the df -h command to see the listing
    for i.e.
    df -h /volumes/volume_1
    Filesystem             Size   Used  Avail Capacity iused      ifree %iused  Mounted on
    //john@ds00/volume_1  457Gi   12Gi  445Gi     3%       0 18446744073709551615    0%   /Volumes/volume_1
    for you it would be something like:
    df -h [email protected]/share (ip address)

  • How to check eSOA components in SAP ECC6 server?

    Dear expert,
    I have a SAP ECC6 box in my office and I want to study in eSOA.
    So how can I check that this ECC6 box have all of necessary components for use eSOA, e.g. GP, VC, AF, XI and so on.
    Best regards,
    Kobsak

    Hi,
    Open any transaction in your ECC box, click on menu System -> Status. It will pop up a window, In the SAP data row, there is one column SAP System data, you will see a magnifier glass icon, click on that and it will pop up a window with all the details of the software components loaded in your ECC box.
    Regards
    Sumit Bhutani

  • How to check image size and 500PX upload action please!

    Hi,
    Two questions please.
    1. How do you check the overall size of an image in Lightroom 4 before exporting.  In Photoshop it is image/size so what is it in Lightroom please?
    2. I have Canon raw files and tiffs and want to upload to 500PX and other web site galleries in one action.  Is it possible?  How do you set up an action to convert an image, say a tiff, to a certain size and then save as a jpeg and upload to 500pX using the plugin all in one action?  At the moment I am saving the tiff as a jpeg to a correct size using a pre set, but then exporting to another folder ready to either manually upload or re-import to Lightroom as a jpeg then upload. Surely there is a quicker way than this?

    1. The size is visible in the metadata panel, set the dropdown to EXIF. In addition, in the Grid, with Ctrl-J, you can set the options so that you will see the cropped size in the rectangle surrounding the photo.
    2. You cannot, in one action, upload to multiple galleries. Each upload is its own action. I don't know if there is a plug-in to let you upload from LR to 500px in one action; clearly there are plug-ins for Flickr and Smugmug and several others. There should be no need to re-import. Normally, the plug-ins I mentioned will take a TIFF, resize it according to your directions, convert to JPG and upload.

  • How to check a listener in SAP for a TIBCO topic (published message)?

    Hi,
       We are using TIBCO  as the middle ware between SAP and Documentum. For the last few days none of the IDOCs sent from TIBCO are coming into SAP.
    The concerned person from TIBCO team said that, "TIBCO is publishing messages on the topic SPC.All4One.IncomingInvoiceStart.Topic but there is no subscriber available to pick up the messages. Could you please check if SAP is a subscriber for this topic?".
    I am not sure how should we check this.
    Any pointers on this would be greatly appreciated.
    Regards
    Barada

    Hi,
    I never worked on TIBCO. But generally listner settings  will be in the middle ware. You need to check the listener settings in the middleware. SAP will be registered as listener in the middleweare.  Please check.
    Thanks and Regards,

  • How to check arraylist size greater than 1 using expression language in jsp

    I want to remove the scripplet in jsp, so i am using jstl tags with expression language in it.
    My scripplet is
    <% if (arraylist.size() > 1) {
    ---do something ----
    %>
    i wanted to change this to
    <c:if test="${ somecondition }">
    ---do something ----
    </c:if>
    here "somecondition" is exactly i need to check whether my arraylist size is greater than 1.
    so please can anyone help me how can i do that.

    If you do not mind, you can create a function and package it into a tag library of your own. Then you can use the function just as the existing expressions language construct. You may take a look at the article use functions in jsp expression language.

  • How to check the size of rman backups to tape

    instead of asking tsm person to check, how do I check how big is a rman backup sent to tape?

    query to find the backupset sizes
    SQL> select ctime "Date"
      2       , decode(backup_type, 'L', 'Archive Log', 'D', 'Full', 'Incremental') backup_type
      3       , bsize "Size MB"
      4  from (select trunc(bp.completion_time) ctime
      5          , backup_type
      6          , round(sum(bp.bytes/1024/1024),2) bsize
      7     from v$backup_set bs, v$backup_piece bp
      8     where bs.set_stamp = bp.set_stamp
      9     and bs.set_count  = bp.set_count
    10     and bp.status = 'A'
    11     group by trunc(bp.completion_time), backup_type)
    12  order by 1, 2;
    Date      BACKUP_TYPE    Size MB
    03-JUL-10 Archive Log       7.31
    03-JUL-10 Full             29.81
    03-JUL-10 Incremental    2853.85
    04-JUL-10 Archive Log       3.59
    04-JUL-10 Full              7.45
    04-JUL-10 Incremental       3.05

Maybe you are looking for

  • Problem with pages when it restores the windows

    hi, my problem is that when I open Pages', it says : "application "Pages" has unexpectedly quit during the restoration of its windows. Would you like to try again to restore its windows?" and after that it goes down. So I cant't use it. I'm sorry if

  • ABAP Query insterting 'NO' on output

    Hi Gurus! I've created an ABAP Query which reads various Infotypes in HR. There are screen modifications which hide\display certain fields on Infotypes depending on the Country Grouping. However, on my Query, when I run for a Country for which a fiel

  • Change the time zone in Java System only

    Hi there, Does anyone knows where to change the time zone in Java system only? I know in ABAP they have t-code: STZAC? where do I change in Java? Configtool or visual admin? what is the service name or parameter for this? Thanks Kumar

  • Flexible custom control

    Hi all, I am developing ALV using OO concept in which custom container is placed on custom control, i have kept that custom control of full screen size but my requirement is to make custom control flexible dynamically while we are adjusting the size

  • [svn:fx-trunk] 10674: PARB related API tweaks for the 'simplified skins' work item.

    Revision: 10674 Author:   [email protected] Date:     2009-09-29 06:34:39 -0700 (Tue, 29 Sep 2009) Log Message: PARB related API tweaks for the 'simplified skins' work item. QE notes: None Doc notes: None Bugs: None Reviewer: Chet/Glenn Tests run: Ch