<?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 Re: Table Control inside a TabsTrip in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-inside-a-tabstrip/m-p/3774787#M908283</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to use as: ITAB-SPFLI-SELECT_LINE instead of the SELECT_LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 Apr 2008 14:18:49 GMT</pubDate>
    <dc:creator>naimesh_patel</dc:creator>
    <dc:date>2008-04-30T14:18:49Z</dc:date>
    <item>
      <title>Table Control inside a TabsTrip</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-inside-a-tabstrip/m-p/3774786#M908282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gentlemen!! I'm trying to use the selection line of a table control created in a Subscreen inside of a tabstrip.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using this code in the flow logic (PAI) inside the subscreen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;select_line = selection line of the table control&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT itab_spfli.&lt;/P&gt;&lt;P&gt;    CHAIN.&lt;/P&gt;&lt;P&gt;      FIELD:&lt;/P&gt;&lt;P&gt;              select_line.&lt;/P&gt;&lt;P&gt;      MODULE mod_linea ON CHAIN-REQUEST.&lt;/P&gt;&lt;P&gt;    ENDCHAIN.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------------------------" /&gt;&lt;P&gt;IMODULE mod_linea INPUT.&lt;/P&gt;&lt;P&gt;  IF select_line = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    MOVE-CORRESPONDING itab_spfli TO wa_spfli.&lt;/P&gt;&lt;P&gt;    MODIFY itab_spfli FROM wa_spfli.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the problem is that select_line doesn't exists.&lt;/P&gt;&lt;P&gt;I named it in the table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know if this problem is because I'm not using it at the right place.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Polaken...!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 14:10:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-inside-a-tabstrip/m-p/3774786#M908282</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T14:10:49Z</dc:date>
    </item>
    <item>
      <title>Re: Table Control inside a TabsTrip</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-inside-a-tabstrip/m-p/3774787#M908283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to use as: ITAB-SPFLI-SELECT_LINE instead of the SELECT_LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 14:18:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-inside-a-tabstrip/m-p/3774787#M908283</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2008-04-30T14:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: Table Control inside a TabsTrip</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-inside-a-tabstrip/m-p/3774788#M908284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To select a line in a table control, go to screen painter and in the table control attributes, check fields c/ col marc and fill wih  a variable name, MARC for example. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the include TOP you have to declare this variable: &lt;/P&gt;&lt;P&gt;data: marc. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the internal table itab_spfli, insert the field MARC. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the module mod_line: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMODULE mod_linea INPUT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move marc to itab_spfli-marc. &lt;/P&gt;&lt;P&gt;modify itab_spfli. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 14:33:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-inside-a-tabstrip/m-p/3774788#M908284</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T14:33:20Z</dc:date>
    </item>
  </channel>
</rss>

