<?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: Detecting rows marked at table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/detecting-rows-marked-at-table-control/m-p/5176551#M1198475</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, I don't know what does Implicit Enhancement mean.&lt;/P&gt;&lt;P&gt;I will try to find out about it. &lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Lilian.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 27 Feb 2009 11:33:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-02-27T11:33:25Z</dc:date>
    <item>
      <title>Detecting rows marked at table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/detecting-rows-marked-at-table-control/m-p/5176549#M1198473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to display a message error when trying to delete operations in IW32.&lt;/P&gt;&lt;P&gt;For that purpose, I am validating the value of a field at user exit ZXBS1U01.&lt;/P&gt;&lt;P&gt;The problem is that I cant't know the rows I've marked in table control for deleting. &lt;/P&gt;&lt;P&gt;There is a table (LST), with the number of operations and a field FLG_MARK but this appears with an X (delete), after that user exit.&lt;/P&gt;&lt;P&gt;There is another structure ( RC27X ) with the index for deleting, but the problem is that it is not available for the last row at the user exit.&lt;/P&gt;&lt;P&gt;I tried to search for the table control, but I cant find it neither the rows I've marked at ZXBS1U01.&lt;/P&gt;&lt;P&gt;Can any one help me please ? &lt;/P&gt;&lt;P&gt;Thanks a lot,&lt;/P&gt;&lt;P&gt;Lilian.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONSTANTS:  &lt;/P&gt;&lt;P&gt;           c_loea(4) VALUE 'LOEA',&lt;/P&gt;&lt;P&gt;           c_valor(22) VALUE '(SAPLCOIH)CAUFVD-AUFNR',&lt;/P&gt;&lt;P&gt;           c_valor4(25) VALUE '(SAPLCODT)LST[]',&lt;/P&gt;&lt;P&gt;           c_valor5(25) VALUE '(SAPLCOVG)RC27X'.&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS:&lt;/P&gt;&lt;P&gt;               &amp;lt;fs_valor&amp;gt; TYPE caufvd-aufnr,&lt;/P&gt;&lt;P&gt;               &amp;lt;fs_valor4&amp;gt; TYPE STANDARD TABLE,&lt;/P&gt;&lt;P&gt;               &amp;lt;fs_valor5&amp;gt; TYPE rc27x.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA BEGIN OF t_lst OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE rclst.&lt;/P&gt;&lt;P&gt;DATA END OF t_lst.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-tcode = c_iw32 AND sy-ucomm = c_loea AND sy-dynnr = 3010.&lt;/P&gt;&lt;P&gt;  ASSIGN (c_valor4) TO &amp;lt;fs_valor4&amp;gt;.&lt;/P&gt;&lt;P&gt;  IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    t_lst[] = &amp;lt;fs_valor4&amp;gt;[].&lt;/P&gt;&lt;P&gt;    ASSIGN (c_valor5) TO &amp;lt;fs_valor5&amp;gt;.&lt;/P&gt;&lt;P&gt;    IF sy-subrc = 0 AND &amp;lt;fs_valor5&amp;gt;-index_act IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;      READ TABLE t_lst INDEX &amp;lt;fs_valor5&amp;gt;-index_act.&lt;/P&gt;&lt;P&gt;      IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      &lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="4" type="ul"&gt;&lt;P&gt;    validation    *****&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Feb 2009 13:56:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/detecting-rows-marked-at-table-control/m-p/5176549#M1198473</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-26T13:56:30Z</dc:date>
    </item>
    <item>
      <title>Re: Detecting rows marked at table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/detecting-rows-marked-at-table-control/m-p/5176550#M1198474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you tried Implicit enhancement? From ECC 6.0 version we have Implicit and Explicit, try to find any implicit enhancment after choosing delete operation and write the code in that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Feb 2009 09:02:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/detecting-rows-marked-at-table-control/m-p/5176550#M1198474</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-27T09:02:15Z</dc:date>
    </item>
    <item>
      <title>Re: Detecting rows marked at table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/detecting-rows-marked-at-table-control/m-p/5176551#M1198475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, I don't know what does Implicit Enhancement mean.&lt;/P&gt;&lt;P&gt;I will try to find out about it. &lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Lilian.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Feb 2009 11:33:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/detecting-rows-marked-at-table-control/m-p/5176551#M1198475</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-27T11:33:25Z</dc:date>
    </item>
    <item>
      <title>Re: Detecting rows marked at table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/detecting-rows-marked-at-table-control/m-p/5176552#M1198476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We are working with R/3 Enterprise version.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Feb 2009 11:41:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/detecting-rows-marked-at-table-control/m-p/5176552#M1198476</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-27T11:41:50Z</dc:date>
    </item>
  </channel>
</rss>

