<?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: Dynamic selections in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selections/m-p/1444883#M211377</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt; I tried in all the ways but though the dynamic selections are active in my report it's not returning any values to the IT_RANGE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any other way to read the dynamic selections entered by the user in the report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Krishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Jun 2006 13:33:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-20T13:33:48Z</dc:date>
    <item>
      <title>Dynamic selections</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selections/m-p/1444881#M211375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt; I am using a function Module RS_REFRESH_FROM_DYNAMICAL_SEL to read the dynamic selections given by user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But its not returning any values. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : IT_TRANGE TYPE RSDS_TRANGE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'RS_REFRESH_FROM_DYNAMICAL_SEL'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    curr_report              = SY-REPID&lt;/P&gt;&lt;P&gt;    mode_write_or_move       = W&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;   P_TRANGE                 = IT_TRANGE&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   NOT_FOUND                = 1&lt;/P&gt;&lt;P&gt;   WRONG_TYPE               = 2&lt;/P&gt;&lt;P&gt;   OTHERS                   = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any one please let me know whether anyother function module must be used before this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Krishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 13:02:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selections/m-p/1444881#M211375</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T13:02:38Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic selections</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selections/m-p/1444882#M211376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I believe that your syntax (and EXPORTING parameters) should be like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; data: g_repid like sy-repid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; move sy-repid to g_repid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CALL FUNCTION 'RS_REFRESH_FROM_DYNAMICAL_SEL'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            CURR_REPORT        = G_REPID&lt;/P&gt;&lt;P&gt;            MODE_WRITE_OR_MOVE = 'M'    "Move&lt;/P&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;            P_TRANGE           = IT_TRANGE&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            NOT_FOUND          = 1&lt;/P&gt;&lt;P&gt;            WRONG_TYPE         = 2&lt;/P&gt;&lt;P&gt;            OTHERS             = 3.&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;    EXIT.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 13:26:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selections/m-p/1444882#M211376</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T13:26:36Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic selections</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selections/m-p/1444883#M211377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt; I tried in all the ways but though the dynamic selections are active in my report it's not returning any values to the IT_RANGE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any other way to read the dynamic selections entered by the user in the report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Krishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 13:33:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selections/m-p/1444883#M211377</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T13:33:48Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic selections</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selections/m-p/1444884#M211378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi kumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you tell your mail-id. I have a document on dynamic selection which might help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vicky&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 13:36:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selections/m-p/1444884#M211378</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T13:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic selections</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selections/m-p/1444885#M211379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi vicky,&lt;/P&gt;&lt;P&gt;My Mail ID is.&lt;/P&gt;&lt;P&gt;Krishnakumar.r@in.bosch.com&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Krishnakumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 13:40:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selections/m-p/1444885#M211379</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T13:40:18Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic selections</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selections/m-p/1444886#M211380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just mailed you the document. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vicky&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS: Award points if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 13:49:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selections/m-p/1444886#M211380</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T13:49:37Z</dc:date>
    </item>
  </channel>
</rss>

