How to find out how much columns are there in Array?

How to find out how much there are columns in Array?
Array.length returns only number of rows.

If you have a multidimensional array and each row has the same number of "columns" then call length on any of the arrays that are elements of your "main" array.
Lee

Similar Messages

  • How to find out the selected column in Table Control

    Hi all,
          How to find out the selected column in Table Control?
    Thanks & Regards,
    YJR

    Hi,
    Let your table control name in Screen painter be TC1.
    READ TABLE TC1-COLS INTO WA_COLS (some wok area)
                 WITH KEY SELECTED = 'X'.
            IF SY-SUBRC = 0.
              CLEAR: W_DUMMY, W_COL_NAME.
              SPLIT WA_COLS-SCREEN-NAME AT '-' INTO W_DUMMY
                                                   W_COL_NAME.
            endif.
    W_COL_NAME gives you the column name.
    Hope it helps.
    cheers
    sharmistha

  • I am trying to sync my 5th gen. Keep getting a message about items on my iPod not in my library. How do I find out what these items are?

    I'm trying to sync my 5th gen iPod and I keep getting a message that there are items on my iPod that are not in my iTunes and they'll be deleted if I don't transfer them. How do I find out what these items are so I know if I want them or not? Also, I seem to have a fair amount of duplicates, one marked with the cloudn symbol and one not. Which one do I delete??

    Go to your "Purchased"  list. See:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    and look for items not on this computer.

  • How to find out Which SAP programs are affecting Which Z programs?

    Do we have a program/tool that can tell us the following:
    How to find out Which SAP programs are affecting Which Z programs in the entire development server?  
    We have a list of SAP programs and a list of custom u2018zu2019 programs, which ones impact each other?   I know we have a u201Cwhere usedu201D functionality, however that is at the object by object level. 
    We need are looking for something a little larger u2013
    thanks in advance
    Vishnu

    Do we have a program/tool that can tell us the following:
    How to find out Which SAP programs are affecting Which Z programs in the entire development server?  
    We have a list of SAP programs and a list of custom u2018zu2019 programs, which ones impact each other?   I know we have a u201Cwhere usedu201D functionality, however that is at the object by object level. 
    We need are looking for something a little larger u2013
    thanks in advance
    Vishnu

  • How to find out the values which are assigned in authority group

    Hi to all
    Please tell me where can I find out the values which are assigned in authority object according to roles.
    for ex :
             Changed    Customer: Account Authorization                              F_KNA1_BED
              Changed    Customer: Account Authorization                              T-DR50175601
                Activity                       01, 02, 03, 08                                                              ACTVT
                Authorization Group            5100                                                                        BRGRU
    F_KNA1_BED is the authority object , assigned to one user.
    He can access the authorization group 5100. I want to check that value in my program.
    How ?
    Where it is stored.
    Please help me....
    Regards
    Anubhav Gupta

    Hi Anubhav,
    Please use this FM "SUSR_USER_AUTH_FOR_OBJ_GET" and pass the object name in it . You would get the values for that particular object.
    Thanks
    Nitin Sachdeva

  • I can't remember my security questions and have used the maximum number of tries, how do I find out what my answers are so I can log in and buy some music?

    I can't remember my security questions and have used the maximum number of tries, how do I find out what my answers are so I can log in and buy some music?

    From a Kappy  post
    The Best Alternatives for Security Questions and Rescue Mail
    1.  Send Apple an email request at: Apple - Support - iTunes Store - Contact Us.
    2.  Call Apple Support in your country: Customer Service: Contact Apple support.
    3.  Rescue email address and how to reset Apple ID security questions.
    An alternative to using the security questions is to use 2-step verification:
    Two-step verification FAQ Get answers to frequently asked questions about two-step verification for Apple ID.

  • How do we find out what the conflicts are when the metadata conflict warning appears?

    How do we find out what the conflicts are when the metadata conflict warning appears?

    LR doesn't provide any way to do that.  If you are really curious, you could use the free Exiftool to capture the metadata in the file before and after you do Metadata > Save Metadata To File, and then compare the before and after.  
    Also note that many people have reported spurious notifications that a file's metadata has changed.

  • HT3819 how do I find out what 5 machines are authorized in my account

    how do I find out what 5 machines are authorized in my account

    There is no list available from your end.
    (76890)

  • How do i find out what tcp ports are open? and where do i look it up?

    how do i find out what tcp ports are open? and where would i go to see them? i have a program that is asking for it and i am unable to find where those are listed.

    If you are not too tech savvy, try using the Network Utility found in the Utilities folder. Just have the Mac scan itself.
    If tech savvy, there's always Fyodor's classic NMap, found at www.insecure.org.

  • How do I find out what Virtual Machines are hosted on a server?

    How do I find out what Virtual Machines are hosted on a server?
    I am working in a on a Windows 2008 box?
    Thanks,
    Ben
    Mr Shaw

    Hi Ben ,
    I agree with Tim .
    In addition , Get-vm came with windows 8 .
    As a workaround to use powershell to manage hyper-v please use "PowerShell management Library for Hyper-V" within following link:
    http://pshyperv.codeplex.com/
    Also :
    http://www.altaro.com/hyper-v/powershell-in-hyper-v-2008-r2/
    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] .

  • HT1689 How can I find out what 5 devices are connected to my itunes account

    How can I find out what 5 devices are connected to my iTunes account?

    There is no list available from your end.
    (78933)

  • How can I find out which vi's are dynamic?

    I am working on a project made up of hundreds of VIs. I have to make an standalone executable version of it. I was not the original developer. Is there a way I can scan the vi's to find out which of them are dynamic? What should I be looking for as a telltale sign of being dynamic (What makes a vi dynamic?)
    Are all vit's dynamic? (I was told by my senior developer to include all vit's in the dynamic section of the build dialog box.)
    Message Edited by rashid19672008 on 02-27-2008 03:25 PM

    This is not a property of a VI, but rather a way of using it. You can call any VI either way (or both ways), so whether a VI is called dynamically depends on your code.
    One way of finding whether a VI does not have static calls is to open all the VIs in the hierarchy at the same time and then go over each of them in a loop, open a reference to it and check its "Callers" property. If the array is empty, it means that this VI is not called by any other VI currently in memory and might be called dynamically. It might also mean that it is an old VI and is not used any more.
    Another option is to create a copy of the hierarchy using File>>Save With Options. LabVIEW will only copy the VIs which are called statically and you can then compare the hierarchies for files which are only found in the original.
    Try to take over the world!

  • How much memory are actually being used? db_32k_cache_size

    Hi everyone,
    Using Oracle 10g on RHEL 5.3.
    I've been asked to check how much memory are actually being used by our db cache's. Currently we are using the parameters db_32k_cache_size (user-defined) and db_8k_cache_size (default) both allocated with 12gb. Now I want to know if there is any way to find out how much of the 12gb are actually being used by the cache.
    Is this possible?
    Thanks

    Thanks Guys,
    Okay, so it is using the whole 12gb. I guess the next question would be, is 12gb really needed? You see, we are trying to increase memory where possible as this database has performance issues. Now we are thinking of taking some of the 12gb that is allocated to the 32k cache and assign it to the sga for instance.
    Does this make any sense?
    Regards

  • Examining how much resources are left in Oracle?

    Hello. I'm writing some programs that interface with Oracle. I want to know if my programs are leaking any oracle resources. Is there a way to do that per connection/session? 'show sga' isn't very useful.
    I'm running a bunch of sqlplus queries over 10,000 times which will eventually call some pl/sql code underneath, which in turn calls some external c++ programs. Some of these pl/sql programs dynamically create tables, views, and procs. I'm doing this 10k test on one connection.
    I'm using top and I see that Oracle is slowly gaining memory, but i'm not sure what that would be that Oracle is just keeping track of items for house keeping purposes, or if my program is genuinely leaking.
    Anyways, any insight/tools to use would be great.
    thanks.

    Do not much like the the phrasing of your questions. A lot of resources in Oracle is shared resources. The db buffer cache being 100% utilised is not an indication of resource leakage, or we-have-a-problem - it is a lot better to have data in the buffer cache than on disk when it comes to I/O. A fully utilised buffer cache is a lot more desirable than a stingy one that aggressively try not to be an "exhausted" resource at 100% utilisation.
    There are also numerous ways to monitor memory usage in Oracle. Oracle consists of a number of different processes (on Unix/Linux each with its own data segment - stack & heap). Oracle uses shared memory. On the o/s side, what is reported at memory footprint of a process. The actual data segment alone? Global/shared memory used? A lot of memory reporting via top and ps are ambiguous, if you do not understand just what kernel calls are made to calculate this "memory" usage of a process.
    Besides, it is very seldom an issue of "how much resources are left"? And even when one happens to be pushing resources, that is the wrong question to ask. Why? Because it is not about how much is left, but how well the resources are configured and being used.
    And from the sounds of it, "Some of these pl/sql programs dynamically create tables, views, and procs." - it does not sound like it is being effectively used at all.
    For PL/SQL code to be run 10's of 1000's times, and dynamically create database objects..? It's the kind of design and approach that makes me reach for my lead pipe.

  • How much fast are the new iMac's?

    I've been looking at upgrading my G5 PowerMac for a while and now Apple has just updated the iMac. How much faster are the new models over the just superseded ones and my G5 (spec below).
    I mainly us it for my work with Photoshop CS2 and the G5 does a great job most of the time but is showing it's age. I was looking at the 2nd model but for not much more you can get the 27inch screen with better upgrade options.

    Hi Craig,
    even the very first 2006 released Intel iMacs were faster than the G5 iMacs including yours.
    See this Barefeats test http://www.barefeats.com/imcd3.html
    Check additional tests on Barefeats on older iMacs against newer ones http://www.barefeats.com/
    The new 2010 iMacs of any sort run circles around the 2006 iMacs, so you are in for a very pleasant surprise
    Regards
    Stefan

Maybe you are looking for