<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Table control + Hotspot in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-hotspot/m-p/6341899#M1397571</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hiii&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a development where the original developer have make used of the &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table control to display data instead of ALV, since may be due to development needing to navigate to different screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advise is it possible to&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.  Add hotspot in a table control.&lt;/P&gt;&lt;P&gt;2. On a table control on the screen there are some field which are modifiable and i need to implement a search help such i mus display stock category applicable to that article only.&lt;/P&gt;&lt;P&gt;3.  Add a button which will do sorting... just like in the ALV report&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 Oct 2009 15:25:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-10-21T15:25:54Z</dc:date>
    <item>
      <title>Table control + Hotspot</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-hotspot/m-p/6341899#M1397571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hiii&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a development where the original developer have make used of the &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table control to display data instead of ALV, since may be due to development needing to navigate to different screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advise is it possible to&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.  Add hotspot in a table control.&lt;/P&gt;&lt;P&gt;2. On a table control on the screen there are some field which are modifiable and i need to implement a search help such i mus display stock category applicable to that article only.&lt;/P&gt;&lt;P&gt;3.  Add a button which will do sorting... just like in the ALV report&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Oct 2009 15:25:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-hotspot/m-p/6341899#M1397571</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-21T15:25:54Z</dc:date>
    </item>
    <item>
      <title>Re: Table control + Hotspot</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-hotspot/m-p/6341900#M1397572</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;1. for giving hotspot to the field in table control , go to the layout of the screen then double click the field where u want to give hotspot,then go to its attibutes and select the display tab and click the checkbox 'Respond to double click'.&lt;/P&gt;&lt;P&gt;then go to pf status and select the function keys and in Recommended Function Key Settings give a pick command .&lt;/P&gt;&lt;P&gt;F2                             PICK       Choose&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then in op when u double click the table control in user command..&lt;/P&gt;&lt;P&gt;when 'PICK'. ..... then u can read the line where u have clicked and u can write codes for where u want to navigate&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Oct 2009 07:26:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-hotspot/m-p/6341900#M1397572</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-22T07:26:41Z</dc:date>
    </item>
    <item>
      <title>Re: Table control + Hotspot</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-hotspot/m-p/6341901#M1397573</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;for sorting..&lt;/P&gt;&lt;P&gt;add 2 buttons in table control one for sort ascending and the other for sort descending&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in user command write&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : wtab type cxtab_column,t_field(30),wfld1(20),wfld2(20).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*for ascending...&lt;/P&gt;&lt;P&gt;loop at tc into wtab.&lt;/P&gt;&lt;P&gt;IF wtab-SELECTED = 'X'.&lt;/P&gt;&lt;P&gt;     T_FIELD =  wtab-SCREEN-NAME.&lt;/P&gt;&lt;P&gt;     SPLIT T_FIELD AT '-' INTO WFLD1 WFLD2.&lt;/P&gt;&lt;P&gt;      SORT IJOBH BY (WFLD2).&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*for descending..&lt;/P&gt;&lt;P&gt;loop at tc into wtab.&lt;/P&gt;&lt;P&gt;IF wtab-SELECTED = 'X'.&lt;/P&gt;&lt;P&gt;     T_FIELD =  wtab-SCREEN-NAME.&lt;/P&gt;&lt;P&gt;     SPLIT T_FIELD AT '-' INTO WFLD1 WFLD2.&lt;/P&gt;&lt;P&gt;      SORT IJOBH BY (WFLD2) descending.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Oct 2009 07:31:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-hotspot/m-p/6341901#M1397573</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-22T07:31:01Z</dc:date>
    </item>
  </channel>
</rss>

