<?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: Function Module RANDOM_I2 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-random-i2/m-p/1616938#M276269</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Swabap&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The FM documentation says that before calling the function module you should call RANDOM_INITIALIZE (probably to initialize some buffers).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;   Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Sep 2006 21:01:05 GMT</pubDate>
    <dc:creator>uwe_schieferstein</dc:creator>
    <dc:date>2006-09-19T21:01:05Z</dc:date>
    <item>
      <title>Function Module RANDOM_I2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-random-i2/m-p/1616937#M276268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Group,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used FM RANDOM_I2 in my report  to generate two digit (from 1 to 100) unique number, when I execute this for the first time it generate 5 ,when I run for second time &lt;/P&gt;&lt;P&gt;still it is showing 5.Can any body tell me why it is giving the same numebr when I generated for the second time.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Sep 2006 20:54:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-random-i2/m-p/1616937#M276268</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-19T20:54:47Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module RANDOM_I2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-random-i2/m-p/1616938#M276269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Swabap&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The FM documentation says that before calling the function module you should call RANDOM_INITIALIZE (probably to initialize some buffers).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;   Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Sep 2006 21:01:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-random-i2/m-p/1616938#M276269</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2006-09-19T21:01:05Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module RANDOM_I2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-random-i2/m-p/1616939#M276270</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;  IF you try to call run multiple times for one session it is bringing out random numbers..but if you run only once I think it will bring you the same number..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: v_output like DATATYPE-INTEGER2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do 5 times.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'RANDOM_I2'&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   RND_VALUE       = v_output&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write: / v_output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Sep 2006 21:03:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-random-i2/m-p/1616939#M276270</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-19T21:03:54Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module RANDOM_I2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-random-i2/m-p/1616940#M276271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The FM will return you the same value if you run your report second time since field values used by the FM are initialised back. It will give you random numbers only when you use that FM iteratively in the report during single execution. You wont find this difference if you run FM thru SE37 because the field values are not intialised howver if you come out of the SE37 and again then excute FM thru SE37, you will find same numbers generated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Vikram&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls reward for helpful replies!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Sep 2006 21:10:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-random-i2/m-p/1616940#M276271</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-19T21:10:57Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module RANDOM_I2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-random-i2/m-p/1616941#M276272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vikram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your response,then what is the solution for this.COuld you please help me in solving out this problem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Sep 2006 21:34:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-random-i2/m-p/1616941#M276272</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-19T21:34:38Z</dc:date>
    </item>
  </channel>
</rss>

