How to find the TECHINICAL INFORMATION of a CHECK MARK

Hi Guys,
How to find a technical information of a check mark on screen. I tried F1 AND click techinal field it showing wrong information.
Thanks

hey guys,
This is a very common problem, you need to hold the mouse-click on the CHECK-BOX when you tick it, and while holding the click you hav to press F1.
Do reward points, if useful and close the topic.
Regards-
Naimesh Kundanani

Similar Messages

  • How to find the profile information of a icloud account user?

    How to find the profile information of a icloud account user?

    This would actually be the Apple ID information and is only available to the user.

  • How to find the hardware information of the Installed HANA Database using studio tool ??

    Hi SAP HANA Experts,
    How can we find the Hardware Information of the HANA Database using the Studio tool.
    I mean, i want to find out the Hardware Information like CPU Model Number, RAM Size & HDD. { HANA Database is already installed as a standalone system } using the Studio tool.
    Can any one of you please provide me the different possibilities to get the Hardware information.....

    Hello,
    Try running the below SQL script in your HANA database. The output should have the info you havd been looking for.
    SELECT
    [NAME]
    - HANA_Hosts_Overview
    [DESCRIPTION]
    - Host information
    [DETAILS AND RESTRICTIONS]
    [VALID FOR]
    - Revisions:              all
    - Statistics server type: all
    [SQL COMMAND VERSION]
    - 2014/05/30:  1.0 (initial version)
    [INVOLVED TABLES]
    - M_HOST_INFORMATION
    [INPUT PARAMETERS]
    - HOST
      Host name
      'saphana01'     --> Specific host saphana01
      'saphana%'      --> All hosts starting with saphana
      '%'             --> All hosts
    [OUTPUT PARAMETERS]
    - HOST:           Host name
    - BUILT_BY:       Manufacturer name
    - CPU_DETAILS:    CPU details (cores, threads, speed)
    - PHYS_MEM_GB:    Physical memory size (GB)
    - SWAP_GB:        Swap size (GB)
    - OP_SYS:         Operating system type and version
    - HARDWARE_MODEL: Hardware model
    - CPU_MODEL:      CPU model
    [EXAMPLE OUTPUT]
    |HOST     |MANUFACTURER|ACTIVE|CPU_DETAILS       |PHYS_MEM_GB|SWAP_GB|SEC_STORE|OPERATING_SYSTEM                 |HARDWARE_MODEL             |
    |saphana20|IBM         |yes   |80 (160) * 2395MHz|    4039.88|  32.00|available|SUSE Linux Enterprise Server 11.2|System x3950 X5 -[7143HDG]-|
    |saphana21|IBM         |yes   |80 (160) * 2395MHz|    4039.88|  32.00|available|SUSE Linux Enterprise Server 11.2|System x3950 X5 -[7143HDG]-|
      H.HOST,
      MAX(CASE WHEN KEY = 'hw_manufacturer' THEN VALUE END) BUILT_BY,
      MAX(CASE WHEN KEY = 'cpu_summary' THEN VALUE END) CPU_DETAILS,
      LPAD(MAX(CASE WHEN KEY = 'mem_phys' THEN TO_DECIMAL(TO_NUMBER(VALUE) / 1024 / 1024 / 1024, 10, 2) END), 11) PHYS_MEM_GB,
      LPAD(MAX(CASE WHEN KEY = 'mem_swap' THEN TO_DECIMAL(TO_NUMBER(VALUE) / 1024 / 1024 / 1024, 10, 2) END), 7) SWAP_GB,
      REPLACE(MAX(CASE WHEN KEY = 'os_name' THEN VALUE END), 'SUSE Linux Enterprise Server', 'SLES') OP_SYS,
      REPLACE(MAX(CASE WHEN KEY = 'cpu_model' THEN VALUE END), '(R)', '') CPU_MODEL,
      MAX(CASE WHEN KEY = 'hw_model' THEN VALUE END) HARDWARE_MODEL
    FROM
    ( SELECT                  /* Modification section */
        '%' HOST
      FROM
        DUMMY
    ) BI,
      M_HOST_INFORMATION H
    WHERE
      H.HOST LIKE BI.HOST
    GROUP BY
      H.HOST
    ORDER BY
      H.HOST
    Rgds,
    Mat.

  • How to find the dependency information for views?

    Hi All,
    There is reuirement where in we have to find the dependency information for all the tables which are used in particular view...along with remote database connections.. For this we have tried to use following query..
    Select * from user_dependencies
    start with name =’SAMPLE_VIEW’
    connect by prior trim(referenced_name)=trim(name);
    The view consists of three tables :
    Create view sample_view as
    select t1.col1,
    T2.col2,
    T3.col3,
    From
    Table1,
    Table2@prd1,
    Table3@prd2
    Where
    T1.col5=t2.col5
    And T1.col5=t3.col5;
    But the ouptut is :
    name     Type     Reference_name     Reference_type     Reference_link_name
    sample_view     View     Table1     Table     null
    So what will be the magic query which will give the all the tables in the view sample_view??
    Desired result:
    name     Type     Reference_name     Reference_type     Reference_link_name
    sample_view     View     Table1     Table     null
    sample_view     View     Table2     Table     prd1
    sample_view     View     Table3     Table     prd2
    Thanks all in Advance!!

    Thanks all for the help!!
    So right now, inorder to find the dependency informations for views there is no direct query :(
    As per the michaels post, i have developed some query ....just joining the table....which will give the source code of the object... :)
    The query is :
    select view_name,db_link,owner, substr(to_char(text),instr(to_char(text),'.',1,2),instr(to_char(db_link),'@')) as _Final_result_,
    substr(to_char(text),instr(to_char(text),'.',1,2),20),text from (
    select a.view_name,b.owner,a.db_link,dbms_metadata.get_ddl ('VIEW', a.view_name) text
    from (
    select view_name, db_link
      from (select view_name, dbms_metadata.get_ddl ('VIEW', view_name) text
              from user_views ),
           user_db_links
    where upper (text) like '%@' || nvl (substr (db_link, 1, instr (db_link, '.') - 1), db_link) || '%' ) A,
    all_views B
    where
    A.view_name=b.view_name
    and b.view_name='VW_TESTING') The sampe view is :
    create or replace view VW_TESTING
    as select A.F_DRUG_SKEY,B.F_DRUG_ID
    from dma_info.MORE_SOME_FTF_DRUG@info A,dms_prf.MORE_SOME_FTF_DRUG_FACTOR@info B
    where a.F_DRUG_ID=b.F_DRUG_ID and
    rownum<=5 The output of these query is :
    Final_result
    MORE_SOME_FTF_DRUG@info A,dms_prf.MORE_SOME_FTF_DRUG_FACTOR@info B where .F_DRUG_ID=b.F_DRUG_ID and rownum<=5 In short through source code, I am trying to find those object name which are preceding the "@' sign...please let me know if this can be workaround for finding the dependencies of objects in view... :(
    Thanks!!
    Edited by: user8915904 on Dec 28, 2009 11:22 PM

  • How to find the sender information from a IDOC

    Hello Colleagues
    I have a list of IDOCs which are transferred by by ALE and EDI methods, the customer idocs are using EDI and internal buyers use the ALE technology.
    I have to write a report which tells me which was the originating system/ source of the order, so I wanted to know is there a way that I can find the origin system of the idoc message.
    I had a look into EDIDC but the sender port here is a self pointing RFC for the edi messages, any idea how to get the origin system here ?, however the ALE messages gives the correct sender. But in future we are planning to have XI for internal transfer for idoc will that also have the same problem.
    Best regards
    Sujoy

    Hi ,
    you can find receiver system details in partner profile , transaction we20.
    the sender system details are
    port = SAP+your systemID(can be found in login system details)
    EX if i am using ides server(testing server) having system id ESR then port = SAPESR
    partner number u can get by following the path
    sale...>basic settings...>logical system....> assign logical system to client.
    here you can find the logical system which is nothing but your partner number for a particular client.
    Hope this  helps you.
    Thank you.
    Regards,
    Lokeswari.

  • How to find the last executed date ,time and user of the quaery

    Hi,
    How to find the following information of the Query
    1. Where all the place these queries/web template used.
    2. When was it last executed.
    3. Who executed last.
    Regards,
    Hari

    hi Hari,
    you can try table /BI0/APERS_BOD00
    for query, first go to table RSRREPDIR, give field COMPID
    with query technical name and get GENUNIID, then go to table /BI0/APERS_BOD00, field TCTOBJNM = RSRREPDIR-GENUNIID, TCTUSERNM and TCTTIMSTMP -> user name and last executed.
    for web template, give field TCTOBJNM in table /BI0/APERS_BOD00 with web template name.
    hope this helps.

  • How can I check on the delivery of an photo but that I created and sent to a friend.  I have the order number but I can't find the tracking information.

    How can I check on the delivery of a photo book that I created and sent to a friend.  I have the order number but I can't find the tracking information.

  • How to find the Information about DB-Server in OEM?

    Hi all,
    I would like to know, how to find the information about the Server-Machine on that the Database installed (Server ID, Network ID, IP-Address, ...) in Oracle Enterprise Manager.
    Regards
    Leonid Pavlov

    HI Dan,
    I dnt know what is SEM ? I Know that SEM uses BI data. if im wrong pls correct me, and my question is, is there any function modules like SD, MM like wise in R/3 is there any modules same in SEM . If they are where the information is stored that these modules are implemented.. at database level..
    Thanks,
    Mahesh

  • How to find the number of times method being called.....

    hi,
    can any one pls tell me how to find the number of times the method being called......herez the example....
    Refrence ref = new Refrence();
    for(int i = 0;i < arr.length; i++){
    if(somecondition){
    ref.getMethod();
    here i want to know how many times the getMethod() is calling...Is there any method to do this.. i have seen StrackTraceElement class..but not sure about that....pls tell me the solution....

    can any one pls tell me how to find the number of times the method being called......
    herez the example.... http://www.catb.org/~esr/faqs/smart-questions.html#writewell
    How To Ask Questions The Smart Way
    Eric Steven Raymond
    Rick Moen
    Write in clear, grammatical, correctly-spelled language
    We've found by experience that people who are careless and sloppy writers are usually also careless and sloppy at thinking and coding (often enough to bet on, anyway). Answering questions for careless and sloppy thinkers is not rewarding; we'd rather spend our time elsewhere.
    So expressing your question clearly and well is important. If you can't be bothered to do that, we can't be bothered to pay attention. Spend the extra effort to polish your language. It doesn't have to be stiff or formal ? in fact, hacker culture values informal, slangy and humorous language used with precision. But it has to be precise; there has to be some indication that you're thinking and paying attention.
    Spell, punctuate, and capitalize correctly. Don't confuse "its" with "it's", "loose" with "lose", or "discrete" with "discreet". Don't TYPE IN ALL CAPS; this is read as shouting and considered rude. (All-smalls is only slightly less annoying, as it's difficult to read. Alan Cox can get away with it, but you can't.)
    More generally, if you write like a semi-literate b o o b you will very likely be ignored. So don't use instant-messaging shortcuts. Spelling "you" as "u" makes you look like a semi-literate b o o b to save two entire keystrokes.

  • How to find the number of ODBC connections to Oracle Database

    Hi All,
    How to find the number of ODBC connections and all connections to the Database in last week. Are there any views to get this information?
    Thanks in advance,
    Mahi

    What Ed said is true that Oracle doesn't note which type of protocol is connecting to the database, however, you can see which program is accessing the database.
    For example: if you already know of a user using ODBC, you can verify as:
    select username, osuser, terminal, program from v$session where username = 'SCOTT'
    USERNAME                 OSUSER          TERMINAL   PROGRAM
    SCOTT                    IUSR_SRV231     SRV231     w3wp.exe
    SCOTT                    IUSR_SRV231     SRV231     w3wp.exe
    2 rows selected.Assuming that you can confirm the progam noted in the above (example) is the one using ODBC, then you can change the query such as:
    SQL> select username, osuser, terminal, program from v$session where program = 'w3wp.exe';
    USERNAME                 OSUSER          TERMINAL   PROGRAM
    SCOTT                    IUSR_SRV231     SRV231     w3wp.exe
    SCOTT                    IUSR_SRV231     SRV231     w3wp.exe
    2 rows selected.Just for kicks, I checked our listener.log file, but there was no reference of odbc in it either.
    Hope this helps...

  • How to find the number of records per months  in cube

    Hi,
      how to find the number of records per months for my all cubes?
      Can i use the ListCube transaction to find totl number f records per cube monthwise ?
    Jimmy

    Hi,
    Here is a program to generate no of records and list of ODS and Cubes in Active version.Schedule this program in background and create a cube to load this information and schedule to the data from the file generated by the program. Schedule this all per you requirement.
    1.Copy the code into your Z<programname> from Se38.
    2.change the FILENAME in CALL FUNCTION 'GUI_DOWNLOAD' in the program to the location from where you can pick the information to load data to cube(eg Application server).
    3.Save program.
    4.Schedule the program in background as required
    5.Create cube with infoobjects to hold no of records and Infoprovider name
    6.Load this cube based on event after the program job is done.
    Hence you can report on this cube to see no of records in  CUBE or ODS in your box.
    Please find the code below.
    Cheers,
    Kavitha Kamesh.
    types: begin of itabs ,
          tabname type dd02l-tabname,
          end of itabs.
    data: itab type itabs occurs 0 with header line.
    data: counter type i.
    data: begin of itab1 occurs 0,
    tabname type dd02l-tabname,
    counter type i,
    end of itab1.
    DATA: ITABTABNAME TYPE STRING.
    DATA: LENGTH TYPE I.
    DATA: OBJECT(30).
    data: str(6) type c.
    select  tabname from dd02l into table itab where ( tabname LIKE  '/BIC/F%' or tabname LIKE  '/BIC/A%00' )
    and TABCLASS = 'TRANSP' and AS4LOCAL = 'A'.
    loop at itab.
      select count(*) from (itab-tabname) into counter.
      str = itab-tabname.
      if str = '/BIC/F'.
    LENGTH  = STRLEN( ITAB-TABNAME ).
      SHIFT  itab-tabname BY 6 PLACES LEFT.
    ELSEIf  str = '/BIC/A'.
      SHIFT  itab-tabname BY 6 PLACES LEFT.
      LENGTH  = STRLEN( ITAB-TABNAME ).
    LENGTH = LENGTH - 2.
    endif.
      itab1-tabname = itab-tabname(LENGTH).
      append itab1.
      itab1-counter = counter.
      clear itab-tabname.
      clear:  COUNTER.
    endloop.
    *********** itab1
    loop at itab1.
    write:/ itab1-tabname, itab1-counter.
    endloop.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
    *   BIN_FILESIZE                    =
        FILENAME                        = 'c:records.xls'
        FILETYPE                        = 'ASC'
    *   APPEND                          = ' '
        WRITE_FIELD_SEPARATOR           = ','
    *   HEADER                          = '00'
    *   TRUNC_TRAILING_BLANKS           = ' '
    *   WRITE_LF                        = 'X'
    *   COL_SELECT                      = ' '
    *   COL_SELECT_MASK                 = ' '
    *   DAT_MODE                        = ' '
    *   CONFIRM_OVERWRITE               = ' '
    *   NO_AUTH_CHECK                   = ' '
    *   CODEPAGE                        = ' '
    *   IGNORE_CERR                     = ABAP_TRUE
    *   REPLACEMENT                     = '#'
    *   WRITE_BOM                       = ' '
    *   TRUNC_TRAILING_BLANKS_EOL       = 'X'
    *   WK1_N_FORMAT                    = ' '
    *   WK1_N_SIZE                      = ' '
    *   WK1_T_FORMAT                    = ' '
    *   WK1_T_SIZE                      = ' '
    * IMPORTING
    *   FILELENGTH                      =
      TABLES
        DATA_TAB                        = itab1
    *   FIELDNAMES                      =
    * EXCEPTIONS
    *   FILE_WRITE_ERROR                = 1
    *   NO_BATCH                        = 2
    *   GUI_REFUSE_FILETRANSFER         = 3
    *   INVALID_TYPE                    = 4
    *   NO_AUTHORITY                    = 5
    *   UNKNOWN_ERROR                   = 6
    *   HEADER_NOT_ALLOWED              = 7
    *   SEPARATOR_NOT_ALLOWED           = 8
    *   FILESIZE_NOT_ALLOWED            = 9
    *   HEADER_TOO_LONG                 = 10
    *   DP_ERROR_CREATE                 = 11
    *   DP_ERROR_SEND                   = 12
    *   DP_ERROR_WRITE                  = 13
    *   UNKNOWN_DP_ERROR                = 14
    *   ACCESS_DENIED                   = 15
    *   DP_OUT_OF_MEMORY                = 16
    *   DISK_FULL                       = 17
    *   DP_TIMEOUT                      = 18
    *   FILE_NOT_FOUND                  = 19
    *   DATAPROVIDER_EXCEPTION          = 20
    *   CONTROL_FLUSH_ERROR             = 21
    *   OTHERS                          = 22
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

  • I tunes has stopped working in windows 7 and I don't know how to get the crash information that everyone else seems to get to know what the cause is....any help?  I have a toshiba windows 7 computer.

    I have a toshiba computer and it is windows 7, recently after I installed imatch everytime I open itunes I get the message 'i tunes has stopped working' and windows cannot find a solution and has to close.  There is no solution and I don't know how to get the crash information on my computer....can anyone help as I want to finish downloading all my songs to match to be available on my mac products.

    Re: That garbage is unreadable.
    If you really want help, stop messing with the fonts and post so that others can read and offer suggestions.
    Or better yet... try a search, I'm certain you'll find a solution to whatever issue you're experiencing.
    I have found that many times it is the things that make you most angry that push you to action. This was the case here. Thank you for causing me to get so angry that I found the answer myself.

  • How to find the exact user exit for our requirement?

    Dear Mr. keerthi,
    can you please explain me how to find the exact user exit for our requirement?

    Hi sandip
    There is more than one method in which you can check for user-exits.The following method is used very often.
    <b>How to find the exact user-exit for your requirement.</b>
    1.     You can check the user exists using transaction SE85.
    2.     Repository Information System -> Enhancements -> Customer exits
    3.     You can search the user-exits by package name.
    4.     Double click on each exit name to check the function module exits.
    <b>The procedure to find the package name.</b>
    Execute transaction SE93 
    Enter the tcode of the transaction for which you want to check the user exit.
    Example: if you want to find the user-exit for purchase orders while changing, enter ME22n  and press display.
    You will get to see the package name
    But you need to confirm that the user exit will get triggered at the appropriate event.
    ( example: you might want some validations to be done ON SAVE of a purchase order)
    <b>Checking if the user-exit is getting triggered or not.</b>
    1.     Open the user exit function module (that you have got in step 4) in Tcode SE37.
    2.     Click on where used button. In the pop up that immediately appears choose only programs .
    3.     You will get a list of programs. Double click on the program name.
    4.     You will get the list of location where this function module user exit is used.
    5.     Place session break points at each of these location ( at each CALL FUNCTION statement)
    6.     Now go to your transaction ( say change purchase order tcode:Me22n) and check if the user exit is getting triggered on appropriate event.
    regards,
    Prasad

  • How to find the list of Tables....

    Hi
    How to find the list of Tables associated with When a Goods Issue is done for a Process Order ??
    Kindly tell me step-by-step procedure in browsing it.
    cheers
    MaruthiRam

    Hi
    goto SE16 Click F4, You have two options Information system & Sap Applications.
    Click on SAP Applications & selec the application you wnat to see, for E.g Purchasing you can click on materials managemnt, Purchasing if you drill down you will see the list of tables....
    reward points if useful
    Thanks & Regards
    Kiran

  • How to find the last refresh of database?

    Hi,
    Can someone tell me how to find when was the last refresh of a database was done.

    Now it is much better!!!
    1. If the cloning was done using a cold backup of
    database, how can we know when was the last cloning
    on testing db done.If the cloned database has been opened with RESETLOGS option, you can try checking out V$DATABASE.RESETLOGS_TIME. if the V$DATABASE.CREATED is not equal to V$DATABASE.RESETLOGS_TIME...there is a possibility that it might be opened with resetlogs option. I don't have the required set up to check and confirm this myself....but this is something you can get it a shot.
    2. If export/import utility is used for this purpose,
    the how can we find out the last time the testing db
    was 'refreshed'?If import was used, check the object creation timestamps of majority of them...may be it will help you find the required information.
    HTH
    Thanks
    Chandra Pabba

Maybe you are looking for