<?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 Dump in module pool at CURSOR statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-module-pool-at-cursor-statement/m-p/4669498#M1098359</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have placed an table control in one subscreen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PBO I have written something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT tab  INTO wa&lt;/P&gt;&lt;P&gt;    WITH CONTROL tab&lt;/P&gt;&lt;P&gt;    CURSOR wa.&lt;/P&gt;&lt;P&gt;    MODULE zorder_move.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in PAI, I have written .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT tab.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Whenever I run this it is giving a dump stating that "curson value should be binary/hexadecimal type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could anybody diagonise this problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jeetu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Oct 2008 12:11:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-13T12:11:36Z</dc:date>
    <item>
      <title>Dump in module pool at CURSOR statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-module-pool-at-cursor-statement/m-p/4669498#M1098359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have placed an table control in one subscreen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PBO I have written something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT tab  INTO wa&lt;/P&gt;&lt;P&gt;    WITH CONTROL tab&lt;/P&gt;&lt;P&gt;    CURSOR wa.&lt;/P&gt;&lt;P&gt;    MODULE zorder_move.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in PAI, I have written .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT tab.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Whenever I run this it is giving a dump stating that "curson value should be binary/hexadecimal type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could anybody diagonise this problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jeetu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Oct 2008 12:11:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-module-pool-at-cursor-statement/m-p/4669498#M1098359</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-13T12:11:36Z</dc:date>
    </item>
    <item>
      <title>Re: Dump in module pool at CURSOR statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-module-pool-at-cursor-statement/m-p/4669499#M1098360</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;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT tab INTO wa WITH CONTROL tab CURSOR &amp;lt;CURSOR&amp;gt;.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;CURSOR&amp;gt; has to be an integer number, if WA is a workarea for TAB, it can't be for the cursor too,&lt;/P&gt;&lt;P&gt; u can use the field CURRENT_LINE of the table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What's TAB? Is it an internal table or the table control?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If ITAB is the internal table with the data to be displayed and T_CTRL is the table control, it shoud be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT ITAB WITH CONTROL T_CTRL CURSOR T_CTRL-CURRENT_LINE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Oct 2008 12:16:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-module-pool-at-cursor-statement/m-p/4669499#M1098360</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-13T12:16:17Z</dc:date>
    </item>
  </channel>
</rss>

