<?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: rang values in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/rang-values/m-p/1973144#M399083</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manel,&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;This part of the code is correct:&lt;/P&gt;&lt;P&gt;SELECT kunnr stcdt&lt;/P&gt;&lt;P&gt;FROM KNA1&lt;/P&gt;&lt;P&gt;INTO TABLE i_client&lt;/P&gt;&lt;P&gt;WHERE stcdt IN rang.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rang should be declared like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ranges: rang for kna1-stcdt. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, the z table should have the same field STCDT to group different KUNNR s according to STCDT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT kunnr &amp;lt;b&amp;gt;STCDT&amp;lt;/b&amp;gt; tipo_fra belnr belnr_vs&lt;/P&gt;&lt;P&gt;FROM zficgtd01&lt;/P&gt;&lt;P&gt;INTO TABLE i_cargos&lt;/P&gt;&lt;P&gt;FOR ALL ENTRIES IN i_client&lt;/P&gt;&lt;P&gt;WHERE bukrs = 'COBE' AND&lt;/P&gt;&lt;P&gt;kunnr = i_client-kunnr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 Feb 2007 13:11:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-19T13:11:10Z</dc:date>
    <item>
      <title>rang values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rang-values/m-p/1973142#M399081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had a function which received a single value (stcdt) and did some operations and consults. Now, i need use same function but i receive a rang of values (in struct: sign, option, low, high).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SELECT kunnr stcdt&lt;/P&gt;&lt;P&gt;  FROM KNA1&lt;/P&gt;&lt;P&gt;  INTO TABLE i_client&lt;/P&gt;&lt;P&gt;  WHERE stcdt = v_stcdt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF NOT i_client[] IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    SELECT kunnr tipo_fra belnr belnr_vs&lt;/P&gt;&lt;P&gt;    FROM zficgtd01&lt;/P&gt;&lt;P&gt;    INTO TABLE i_cargos&lt;/P&gt;&lt;P&gt;    FOR ALL ENTRIES IN i_client&lt;/P&gt;&lt;P&gt;    WHERE bukrs = 'COBE' AND&lt;/P&gt;&lt;P&gt;          kunnr = i_client-kunnr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;etc, etc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is that i don't know how i can use same code with the input rang. I can't use a loop... how many different vaules are there between two limits? &lt;/P&gt;&lt;P&gt;If i use: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SELECT kunnr stcdt&lt;/P&gt;&lt;P&gt;  FROM KNA1&lt;/P&gt;&lt;P&gt;  INTO TABLE i_client&lt;/P&gt;&lt;P&gt;  WHERE stcdt IN rang.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF NOT i_client[] IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    SELECT kunnr tipo_fra belnr belnr_vs&lt;/P&gt;&lt;P&gt;    FROM zficgtd01&lt;/P&gt;&lt;P&gt;    INTO TABLE i_cargos&lt;/P&gt;&lt;P&gt;    FOR ALL ENTRIES IN i_client&lt;/P&gt;&lt;P&gt;    WHERE bukrs = 'COBE' AND&lt;/P&gt;&lt;P&gt;          kunnr = i_client-kunnr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In i_client i have all kunnr, and i need separate clients by stcdt.&lt;/P&gt;&lt;P&gt;I think rangs values are not used of intelligent form in this case because i select all kunnr for later use them of independent form depending of stcdt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is difficult to explain but do you understands me? Any idea?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Manel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Feb 2007 12:58:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rang-values/m-p/1973142#M399081</guid>
      <dc:creator>former_member582701</dc:creator>
      <dc:date>2007-02-19T12:58:48Z</dc:date>
    </item>
    <item>
      <title>Re: rang values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rang-values/m-p/1973143#M399082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Manel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why don't you combine table I_CARGOS and I_CLIENT after the second selection by reading all clients from I_CARGOS and getting the relevant STCDT from table I_CLIENT?&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;&lt;/P&gt;&lt;P&gt;John.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Feb 2007 13:04:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rang-values/m-p/1973143#M399082</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-19T13:04:52Z</dc:date>
    </item>
    <item>
      <title>Re: rang values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rang-values/m-p/1973144#M399083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manel,&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;This part of the code is correct:&lt;/P&gt;&lt;P&gt;SELECT kunnr stcdt&lt;/P&gt;&lt;P&gt;FROM KNA1&lt;/P&gt;&lt;P&gt;INTO TABLE i_client&lt;/P&gt;&lt;P&gt;WHERE stcdt IN rang.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rang should be declared like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ranges: rang for kna1-stcdt. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, the z table should have the same field STCDT to group different KUNNR s according to STCDT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT kunnr &amp;lt;b&amp;gt;STCDT&amp;lt;/b&amp;gt; tipo_fra belnr belnr_vs&lt;/P&gt;&lt;P&gt;FROM zficgtd01&lt;/P&gt;&lt;P&gt;INTO TABLE i_cargos&lt;/P&gt;&lt;P&gt;FOR ALL ENTRIES IN i_client&lt;/P&gt;&lt;P&gt;WHERE bukrs = 'COBE' AND&lt;/P&gt;&lt;P&gt;kunnr = i_client-kunnr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Feb 2007 13:11:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rang-values/m-p/1973144#M399083</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-19T13:11:10Z</dc:date>
    </item>
    <item>
      <title>Re: rang values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rang-values/m-p/1973145#M399084</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;U have to define a range table and append teh same with values.&lt;/P&gt;&lt;P&gt;If it is from slection screen then u can use IN s_stcdt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u want to use range table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here with RANGES  user has to design an internal table with fields -  &lt;/P&gt;&lt;P&gt;SIGN,OPTION,LOW and HIGH EXPLICITLY. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="--------------------------------------------------------------------------------------------------------" /&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example: &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;select-options: bukrs for zstock-bukrs. &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;Should the user fill in 'ABFI' in BUKRS on the selection screen, BUKRS will look like this: &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;IEQABFI &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;This is because BUKRS is set as a table as follows: &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;begin of bukrs occurs 0, &lt;/P&gt;&lt;P&gt;  SIGN(1)    type c, &lt;/P&gt;&lt;P&gt;  OPTION(2) type c, &lt;/P&gt;&lt;P&gt;  LOW         like bukrs, &lt;/P&gt;&lt;P&gt;  HIGH         like bukrs, &lt;/P&gt;&lt;P&gt;end of bukrs. &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;Now, when you create the following range, it will have the exact same fields set inside its table: &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;Ranges: bukrs for zstock-bukrs. &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;The difference is, because ranges doesn't show on the selection screen, you will have to fill it yourself, meaning you will have to fill bukrs-sign, bukrs-option, bukrs-low &amp;amp; bukrs-high all manually. &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;Some tips: &lt;/P&gt;&lt;P&gt;Sign is always I (for Include) or E (for Exclude) &lt;/P&gt;&lt;P&gt;Option can be a whole range, which includes: &lt;/P&gt;&lt;P&gt;EQ        (Equal)  &lt;/P&gt;&lt;P&gt;BT        (Between))  &lt;/P&gt;&lt;P&gt;CP        (Contain Pattern) &lt;/P&gt;&lt;P&gt;So let's say you want to have the range check for all company codes not starting with AB, you will set your code as follow: &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;ranges: bukrs for zstock-bukrs. &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;bukrs-sign = 'E'.             "Exclude &lt;/P&gt;&lt;P&gt;bukrs-option = 'CP'.        "Pattern &lt;/P&gt;&lt;P&gt;bukrs-low = 'AB*'.            "Low Value &lt;/P&gt;&lt;P&gt;bukrs-high = ''.                "High Value &lt;/P&gt;&lt;P&gt;append bukrs. &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;Always remember to APPEND your range when you fill it, as the WHERE clause checks against the lines of the range table, not against the header line.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Feb 2007 13:11:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rang-values/m-p/1973145#M399084</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-19T13:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: rang values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rang-values/m-p/1973146#M399085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thx guys, but my problem persists.&lt;/P&gt;&lt;P&gt;John, I have seeing your solution but i think is not possible because i need group kunnr separated by stcdt and in cargos i have all kunnr and in clients all kunnr by stcdt. The problem is that i don't know the number of different stcdt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop i_cargos&lt;/P&gt;&lt;P&gt;  Loop i_client&lt;/P&gt;&lt;P&gt;     if i_cargos-kunnr = i_client-kunnr &lt;/P&gt;&lt;P&gt;        if i_client-stcdt = 01&lt;/P&gt;&lt;P&gt;            append i_cargos1&lt;/P&gt;&lt;P&gt;        if i_client-stcdt = 02&lt;/P&gt;&lt;P&gt;            append i_cargos2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How many tables i need? I think is absurd group by stcdt through a rang if after you need separate by stcdt. Probably is a bad analysis of the functional.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Feb 2007 13:37:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rang-values/m-p/1973146#M399085</guid>
      <dc:creator>former_member582701</dc:creator>
      <dc:date>2007-02-19T13:37:48Z</dc:date>
    </item>
    <item>
      <title>Re: rang values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rang-values/m-p/1973147#M399086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  I have clearly understood your problem. Please replace your AFTER code by following code. This would solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----" /&gt;Code for Manel &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt; -&lt;HR originaltext="---------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT kunnr stcdt&lt;/P&gt;&lt;P&gt;FROM KNA1&lt;/P&gt;&lt;P&gt;INTO TABLE i_client&lt;/P&gt;&lt;P&gt;WHERE stcdt IN rang.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check not i_client[] is initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;The following step would put all the kunnr of same stcdt together one after the &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;other.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;sort i_client by stcdt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: w_client        like line of i_client,&lt;/P&gt;&lt;P&gt;        i_client_temp like i_client.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at i_client into w_client.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  on change of w_client-stcdt.&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;    SELECT kunnr tipo_fra belnr belnr_vs&lt;/P&gt;&lt;P&gt;       FROM zficgtd01&lt;/P&gt;&lt;P&gt;         INTO TABLE i_cargos&lt;/P&gt;&lt;P&gt;          FOR ALL ENTRIES IN i_client_temp&lt;/P&gt;&lt;P&gt;    WHERE bukrs = 'COBE' AND&lt;/P&gt;&lt;P&gt;                 kunnr = i_client-kunnr    &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   etc, etc.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    refresh i_client_temp[]. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  endon.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  append w_client to i_client_temp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;--&lt;/STRONG&gt;&lt;DEL&gt;&lt;STRONG&gt;End of code&lt;/STRONG&gt;&lt;/DEL&gt;---&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please try the above solution and let me know if you face any problem. &lt;/P&gt;&lt;P&gt;The ABAP statement ON CHANGE OF, would be really helpful here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: Please provide points if you are happy with the solution :).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Ravi &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Feb 2007 13:39:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rang-values/m-p/1973147#M399086</guid>
      <dc:creator>raviprakash</dc:creator>
      <dc:date>2007-02-19T13:39:46Z</dc:date>
    </item>
    <item>
      <title>Re: rang values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rang-values/m-p/1973148#M399087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are right, you can't define an unfinite number of "Cargo" tables, but what I meant was to add the 'STCDT' field to the table I_CARGOS. The program which is calling this FM then has to split the table up again and this program is also supplying the range to your FM.&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;&lt;/P&gt;&lt;P&gt;John.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Feb 2007 13:46:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rang-values/m-p/1973148#M399087</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-19T13:46:56Z</dc:date>
    </item>
    <item>
      <title>Re: rang values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rang-values/m-p/1973149#M399088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yep.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both solutions are good! Thx John and ravi.&lt;/P&gt;&lt;P&gt;I have used your sentence. Easy solution and good operation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pd: sorry ravi, my english is not my strongpoint &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;pd2: i didn't know about the points. Inmediately i vote something&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Feb 2007 14:24:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rang-values/m-p/1973149#M399088</guid>
      <dc:creator>former_member582701</dc:creator>
      <dc:date>2007-02-19T14:24:23Z</dc:date>
    </item>
    <item>
      <title>Re: rang values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rang-values/m-p/1973150#M399089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not a problem Manel :).&lt;/P&gt;&lt;P&gt;You had clearly stated the problem and so i had not much of problem understanding it.&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Ravi &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Feb 2007 15:37:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rang-values/m-p/1973150#M399089</guid>
      <dc:creator>raviprakash</dc:creator>
      <dc:date>2007-02-19T15:37:49Z</dc:date>
    </item>
  </channel>
</rss>

