Hand mouse icon in Table Controle

Hi Guys,
Is it possible to change the mouse icon into a hand in a table controle when it pass over a field?
This field must call other transaction filling the Parameter ID with your content.
Att.

Hi
I don't think, you should use an ALV grid setting a cell available for hotspot
Max

Similar Messages

  • Using Insert and Delete icons in table control wizard.

    Can anyone tell me how to perform a new row insertion or deletion in a table created using the table control wizard.
    I see there is a form fcode_insert_row and fcode_delete_row, but dont know how to call them and what parameters to pass and all.
    Since iam new to SAP-ABAP, some code samples will be a great help.
    Thanks to all in advance.

    Hi Lavanya ,
    You have to add the icons personally in the table control.. . Put fcode for addition button as INSE and delete as DELE ..coding will be already thr in the wizard no need to anything just add icons in the table control by selecting from f4 help on icons option of screen.
    Thanks,
    Vishnu .

  • Dynamic pushbotton-icon in table control

    Hello,
    in my table control i have a pushbutton.
    i want to display it with a dynamic icon
    is this possible ?
    thanks very much for your answers
    Helmut

    Hi Anubhab,
         Thanks. With your help i could able to solve the problem. Let me put this in some
    more detail.
    When we are pulling the field from a table to table control we need to make sure the fields should have a data elements. After pulling all the fields to a table control ,we need to drag out  and delete the current table control column headings and then drop in the (new) I/O fields into their place.  I then set the text on these new fields within the PBO.  If we try to drop the (new) I/O fields on top of the existing ones with out deleting it won't work.
    Thanks & Regards.
    Srikanth

  • Pushbutton Icon in Table Control

    Hi Guys,
    I have a table control that contains a push button in each row.  How can I place and remove an icon for a specific row?
    Thanks.

    Try something like this
    * In your dynpro, after PBO
    LOOP AT t_output WITH CONTROL itab_ctrl
                                  CURSOR  itab_ctrl-current_line.
        MODULE screen.
      ENDLOOP.
    MODULE screen OUTPUT.
      base = itab_ctrl-current_line.
    loop at screen.
    icon_name = 'ICON_RED_LIGHT'. "This is an example: use your icon
    CALL FUNCTION 'ICON_CREATE'
          EXPORTING
            name                  = icon_name
            add_stdinf            = ' '
          IMPORTING
            RESULT                = t_output-icon "This is the field you use as pushbutton
          EXCEPTIONS
            icon_not_found        = 1
            outputfield_too_short = 2
            OTHERS                = 3.
    modify screen.
    endloop.
    ENDMODULE.
    Edited by: Simone Milesi on May 4, 2010 2:40 PM

  • Status icons in table controls

    Hi,
       i've included status icons inside my table control with an aim to show appropriate status depending on a value of a column (wa_tab-posted).
    all i want is that if a line in the table control has the value of wa_tab-posted as 'Y'. the status icon should be RED and Green if not posted ( wa_tab-posted = 'N'.)
    so far i have only been able to get a common status icon color based on the last line of the table control.
    ie: if the last line of my table control has the value of wa_tab-posted as 'N' then all the status icons show GREEN,,, even the ones where wa_tab-posted is 'Y'.
    how do i set unique status icons for each individual lines.
    Please advice.
    Thanks,
    David
    Edited by: david joseph on Aug 20, 2008 8:20 AM

    REPORT  ZICON_CONTROL.
    tables: icon.
    controls: tc type tableview using screen 100.
    data: begin of it_data occurs 0,
           icon(4),
           value(02),
          end of it_data.
    "Based on condion you populate the ICON data here
    "if the case is editable and then you have to do the same in PBO
    it_data-icon = '@0A@'."ICON_RED_LIGHT.
    it_data-value = '00'.
    append it_data.
    it_data-icon = '@08@'. "ICON_GREEN_LIGHT.
    it_data-value = '01'.
    append it_data.
    call screen 100.
    *&      Module  transfer_data  OUTPUT
    *       text
    module transfer_data output.
    read table it_data index tc-current_line.
    endmodule.                 " transfer_data  OUTPUT
    Flow logic.
    PROCESS BEFORE OUTPUT.
    MODULE STATUS_0100.
    loop at it_data with control tc.
      module transfer_data.
    endloop.
    PROCESS AFTER INPUT.
    loop.
    endloop.
    MODULE USER_COMMAND_0100.

  • How to display icon status in table control

    hi, i trying to display icon in table control its not displaying
    i given below statment.
    DATA: BEGIN OF WA_MARA,
            ICON1(4) TYPE C,
             END OF WA_MARA.
         INCLUDE <list>.
    MOVE ICON_GREEN_LIGHT TO IT_MARA-ICON1.
    APPEND IT_MARA..
    when i debugging it display green icon but after run the program its display ' @08@ '   in table control.
    how to display green icon in table control help me.

    Hi,
    check the link:
    Table control in custom infotypes

  • Changing the column postion in table control

    Hi All,
    In table control i want to change the columns postion according to users requirement.
    How to do that?
    Thanks for advance.
    Regards,
    krishna

    Hi,
      In the top right hand side of the table control..there will be button for variant..
      there you can create a variant..in the variant..you can move the columns around and save it as variant..then they can choose the variant..
    Thanks
    Naren

  • Redlight in Table Control

    Hi Friends,
    I want to display diffrent lights ( reg light icon or green or other) in table control column depends on some condition.
    Can you please help me on this. Thanks in Advance.
    Thanks & Regards,
    Murali Krishna K

    . Create program in SE38 type module pool and Activated
    2. Go to SE51 give the program name and screen number then Layout Editor in drags table control with wizard.
    3. Start the Wizard give the table control name (TBCL)>click the continue>give the Internal table name >Continueàselect the filed(MATNR) or Fields>continue>continue>check the Scroll check box>continue>continue-->click the completed --> Save --> Activated.
    4.Add the Status Icon into Table Control(drag the Icon into table contol ) and Change the Code for Status Icons Below
    DATA:  STA_ICON10     TYPE ICONS-TEXT,
                  ICON_NAME(20)  TYPE C,
    PROCESS BEFORE OUTPUT.
      MODULE STATUS_0102.
    Code:
    MODULE STATUS_ICONS OUTPUT.
    SELECT SINGLE *
    FROM MARA
    WHERE MATNR = TB_TABLE-MATNR.
    IF SY-SUBRC <> 0.
    ICON_NAME = 'ICON_LED_RED'.
    ELSE.
    ICON_NAME = 'ICON_LED_GREEN'.
    ENDIF.
    CALL FUNCTION 'ICON_CREATE'
    EXPORTING
    NAME = ICON_NAME
    INFO = 'STATUS'
    ADD_STDINF = 'X'
    IMPORTING
    RESULT = STA_ICON10
    EXCEPTIONS
    ICON_NOT_FOUND = 1
    OUTPUTFIELD_TOO_SHORT = 2
    OTHERS = 3.
    IF SY-SUBRC <> 0.   ENDIF.
    ENDMODULE.                 " STATUS_ICONS  OUTPUT
    Message was edited by:
            Durga Vinta

  • Add change Icon in the Table Control tool bar.

    Hi Abapers,
    I need to add "change" icon in the table control. I added it but when I click on it is not working.
    My requirement is that when I run my custom report, all the fields should be shown is in display mode. Then when I click on the "change" icon, all fields should be enabled for change.
    I have already referred to the standard progs BCALV_* but it does not have the "change" icon.
    plz give me any reference prg or sample code.
    Thanks
    Nani.

    Hi Nani,
    Track the function code of change icon in user command. if it is clicked then put a flag eq X.
    check that flag in PBO, if it is eq X then screen-input = 1 or vice versa.
    try this code:
    in PBO:
    LOOP AT SCREEN
    IF WS_EDIT = 'X'
    SCREEN-INPUT = 1
    ELSE
    SCREEN-INPUT = 0
    ENDIF
    MODIFY SCREEN
    ENDLOOP
    Hope it will work fine
    Regards
    Krishnendu

  • Table Control Icon appearing  in Personal Data in ESS in Portal

    Hello All,
    We are on SAP Enterprise Portal 6.0 SPS09 with version details as
    J2EE Engine 6.40 PatchLevel 87289.311
    Portal 6.0.9.0.0
    After installation of Portal system we installed Business Package for
    Employee Self-Service 4.6C - 4.7 on our Portal system and installed ITS
    6.20 patch 22 over Portal inorder for connecting Portal with Backend R/3 system.Ours is a development serverand Portal application and ITS are installed
    on the same server.
    When we access ESS on Portal ,and navigate to Personal Information /Personal Data / , there a small table control icon appears which we donot want to appear and which does not appear on R/3 side.Simultaneously for this transaction in R3 a selection row appears which doesnot appear in Portal.This problem is given even when we run ESS transactions through ITS on webgui.Wt might be the cause of this error ,do we need to make any settings ( Table specific) in ITS or R/3  or somewhere else. Kindly plz suggest.Plz revert at earliest.My email Id is [email protected] .
    Regards,
    Saumya

    Hi Somya,
    Did you solved this problem. If you solved this issue then please let me know because iam also getting the same problem. you can send me an email at [email protected]
    Thanks,
    Abdul Hadi.

  • Mouse down event handling of table control in subvi

    Hello Everyone.......
    I have created a vi which has a table control and xy graph... the function of the vi is to plot the data of two particular column of table into xy-graph after user selects the data from table....  In this vi , I have used mouse down event for selecting data set so that the color of selected row get changed for user reference.......  the vi is working fine..... 
    My problem is that this vi is a part of main vi.. and I want to use this vi as a subvi.... So, in my main vi I have a table control which is connected as input to the subvi...  I come to know that I need to register event for triggering a event in a subvi.......
    (1) How to register Mouse down event of table control which is on Main Vi to trigger mouse down event of table in subvi.... Another Important thing is... how to link every property of table control of subvi to the table control of main vi... so it just act as single control adapting every property like when user selects a particular row its color changes in subvi....so it should be reflected even if user selects a row in main vi... I mean table control of main vi and subvi should be a single control...is it possible?
    I hope I am clear......Thanks ..

    See the modified version of the VI. I use the 'Point to Row Column' method to get the cell that was clicked on - your method also worked using 'Selection Start' but I thought I'd show you an alternative.
    I've used a single event structure to update two table controls - the point is that if you have the references to the controls you can update the control from anywhere. You can also 'register for events' to allow you to register for events from a different VI (again, using the references) that doesn't have the control on the front panel.
    Couple of things about your VI:
    You don't need to put a wait node if you have a timeout on your event structure.
    You don't need the for loop for the columns/rows - if you look at the help for the 'Active Cell' property you can use a value of -2 for the row/column to select all cells in the row/column.
    Certified LabVIEW Architect, Certified TestStand Developer
    NI Days (and A&DF): 2010, 2011, 2013, 2014
    NI Week: 2012, 2014
    Knowledgeable in all things Giant Tetris and WebSockets
    Attachments:
    Highlight Selected Row in Table Control_lv2009.vi ‏13 KB

  • Is it possible to add icons to a field in the table control  ?

    Dear Gurus,
               Greetings..............
    Is it possible to add icons to the line item of  a field in the table control ?
    Thanks in advance
    Raj Kumar

    HI
    YES IT IS POSSIBLE.
    DO THE FOLLOWING
    1.DECLARE INCLUDE <ICON>.
    2.IN YOUR INTERNAL TABLE DECLARE FIELD ICON
    icon(4) TYPE c,
    3. POPULATE YOUR INTERNAL TABLE WITH APPROPRIATE ICONS BY SELECTING FROM INCLUDE SPECIFIED ABOVE.
    EG:
    wa2-icon = '@5C@'.
    4.PASS IT TO FIELDCAT
    wa_fieldcat-fieldname = 'ICON'.
        wa_fieldcat-icon = 'X'.            " Displayed as Icon
      wa_fieldcat-tabname = ' '.
      wa_fieldcat-seltext = 'Status'.
      wa_fieldcat-coltext = text-001.
      APPEND wa_fieldcat TO it_fieldcat.

  • Displaying icon in tow in table control

    Hi experts, I need help on how to display icons in every row in my table control which will be displayed via SAP GUI not Web.
    Did anyone have successfully done this?
    Thank you in advance guys..

    Hi,
    Check these links.It can help you.If so,kindly reward points by clicking the star on the left of reply.
    Re: Showing a status icon column on a table control
    Re: How to show icon(traffic lights) into table control in dialog program?
    http://www.sapdesignguild.org/resources/MiniSG-old/from_develop/norm_status_icons.htm#positioning_4

  • Status control icon  display in table control

    Hi,
    In the workarea the field of status control icon is showing Red/green/yellow that is ok but when i am modifying the internal table from this work area then text(Red or green something...) is coming insted of status Icon.
    So how to modify internal table from this workarea so that i can display icon in my table control's internal table ?Your input is highly appreciated..
    Thanx
    Prince  Raja

    DATA : c_green(4) TYPE c VALUE '@08@',
           c_red(4) TYPE c VALUE '@0A@'.
          IF flag = 'X'.
            READ TABLE it_output INTO is_output WITH KEY
                                      bukrs = is_final-bukrs
                                      anln1 = is_final-anln1
                                      anln2 = is_final-anln2
                                      BINARY SEARCH.
            IF sy-subrc = 0.
              is_output-c_icon  = c_green.
              is_output-leabg_n = is_final-leabg.
              is_output-message = it_return-message.
    * Modify the output internal table with the changed new values
              MODIFY it_output FROM is_output
                               TRANSPORTING c_icon leabg_n message
                               WHERE bukrs = is_output-bukrs
                                 AND anln1 = is_output-anln1
                                 AND anln2 = is_output-anln2.
            ENDIF.
    Regards
    Gopi

  • How to remove the "table control" icon in ITS based ESS screen

    Hi All,
    I have upgraded my external ITS 620 to patch level 28. Earlier we were on patch 04.
    Since then I am seeing the table control in my ESS screens (ITS Based),
    In some thread i got to know that the table control is totally redefined / modified from patch 22 of ITS.
    Is it possible that we can remove / hide the table control from the screens.
    I dont want to let the users access the "Table Settings" screen at all....can u plz tell me how to do it
    regards,
    PK

    we could not remove the table control...it seems like we can not remove it as the table control also appears in the r3 screens also..

Maybe you are looking for

  • 7.0.1 No Longer Sees My Ipod

    I installed 7.0.1 and now my 1st Gen Ipod is no longer recognized by Itunes. Windows still deals with it properly. I already went through the steps of restarting the service and uninstalling and all that. It was recognized without a problem in 7.0, b

  • No CRT Discusions ????? ... 17" Studio Display ?

    I still use my ASD 17" and am wondering about display resolutions. In the interest of screen real estate I switched from 1024 x 768 85 hz to 1280 x 1024 75 hz. Also switched to 1000's of colors to see if the refresh rate quickens - seems to. I'll swi

  • What are the differences between Qosmio X300 and Qosmio X305 ?

    According to my understanding X300 European model while X305 is American model and they have different power supplies, and different default regional settings in pre-installed Windows. Anything else? -Technologov

  • Type mismatch on CRVS2010 appl. after install Crystal Reports 2011

    Hi, I've a Windows application built in VS2010 with Crystal Reports for VS2010 that exports a report to a PDF, Excel or Word file. The application runs fine, but after the installation of Crystal Reports 2011 I got the "Type mismatch" error when the

  • Automatic Web Server startup

    How do you get an automatic startup of an SSL enabled web server without a prompt for the password? The Web Admin Guide says to create a password.conf file in the config directory of the server instance. Ok I did this, with appropriate entries. Then