<?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 problem in code in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-code/m-p/6812114#M1469110</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;I am facing issue when retrieving data to internal table based on the import parameter getting from the FM. but internal table doesn't contains any data althouh where condition parameter contains value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am including my Code below.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
types :    begin of iy_tab4 ,

        valfr type ibin-valfr,
        ibase type ib_ibase,
       amount type ibin-amount,
       unit type ibin-unit,
       end of iy_tab4.
data : it_tab4 type standard table of iy_tab4,

       wa_tab4 type iy_tab4.

data : i_ibase type ib_ibase.
data: begin of it_tab occurs 10,
       ibase type ib_ibase,
       end of  it_tab.

data : it_tab type STANDARD TABLE OF iy_tab ,
         wa_tab type iy_tab.



CALL FUNCTION 'IBSD_CREATE_IBASE'
  EXPORTING
    I_VBELN                     = '0000013234'
    I_POSNR                     = '000010'
    I_AS_SOLD                   = '0'
    I_AS_BUILD                  = '0'
    I_CAPID                     = '0'
*   I_CHANGE                    = ' '
   I_COMMIT                    = 'X'
*   I_COMMIT_WAIT               = ' '
 IMPORTING
   E_IBASE                     = i_ibase
 EXCEPTIONS
   ORDER_NOT_FOUND             = 1
   POSITION_NOT_FOUND          = 2
   NOTHING_TO_DO               = 3
   TOO_MUCH_TO_DO              = 4
   MISSING_AUTHORIZATION       = 5
   FOREIGN_LOCK                = 6
   OTHERS                      = 7
          .
IF SY-SUBRC &amp;lt;&amp;gt; 0.
  MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
          WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
else.

  move i_ibase to wa_tab-ibase.
  append  wa_tab to it_tab.
  clear wa_tab.


endif.


select valfr ibase amount unit from IBIN
 into table it_tab4
 for all ENTRIES IN it_tab
  where ibase = it_tab-ibase.




loop at it_tab4 into wa_tab4.

  write : wa_tab4-valfr,
         / wa_tab4-ibase,
         / wa_tab4-amount.
endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lokeswari.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Moderator message: please use a more meaningful subject line and -tags next time.&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Thomas Zloch on Mar 24, 2010 4:20 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Mar 2010 15:18:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-03-24T15:18:55Z</dc:date>
    <item>
      <title>problem in code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-code/m-p/6812114#M1469110</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;I am facing issue when retrieving data to internal table based on the import parameter getting from the FM. but internal table doesn't contains any data althouh where condition parameter contains value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am including my Code below.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
types :    begin of iy_tab4 ,

        valfr type ibin-valfr,
        ibase type ib_ibase,
       amount type ibin-amount,
       unit type ibin-unit,
       end of iy_tab4.
data : it_tab4 type standard table of iy_tab4,

       wa_tab4 type iy_tab4.

data : i_ibase type ib_ibase.
data: begin of it_tab occurs 10,
       ibase type ib_ibase,
       end of  it_tab.

data : it_tab type STANDARD TABLE OF iy_tab ,
         wa_tab type iy_tab.



CALL FUNCTION 'IBSD_CREATE_IBASE'
  EXPORTING
    I_VBELN                     = '0000013234'
    I_POSNR                     = '000010'
    I_AS_SOLD                   = '0'
    I_AS_BUILD                  = '0'
    I_CAPID                     = '0'
*   I_CHANGE                    = ' '
   I_COMMIT                    = 'X'
*   I_COMMIT_WAIT               = ' '
 IMPORTING
   E_IBASE                     = i_ibase
 EXCEPTIONS
   ORDER_NOT_FOUND             = 1
   POSITION_NOT_FOUND          = 2
   NOTHING_TO_DO               = 3
   TOO_MUCH_TO_DO              = 4
   MISSING_AUTHORIZATION       = 5
   FOREIGN_LOCK                = 6
   OTHERS                      = 7
          .
IF SY-SUBRC &amp;lt;&amp;gt; 0.
  MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
          WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
else.

  move i_ibase to wa_tab-ibase.
  append  wa_tab to it_tab.
  clear wa_tab.


endif.


select valfr ibase amount unit from IBIN
 into table it_tab4
 for all ENTRIES IN it_tab
  where ibase = it_tab-ibase.




loop at it_tab4 into wa_tab4.

  write : wa_tab4-valfr,
         / wa_tab4-ibase,
         / wa_tab4-amount.
endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lokeswari.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Moderator message: please use a more meaningful subject line and -tags next time.&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Thomas Zloch on Mar 24, 2010 4:20 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Mar 2010 15:18:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-code/m-p/6812114#M1469110</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-24T15:18:55Z</dc:date>
    </item>
    <item>
      <title>Re: problem in code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-code/m-p/6812115#M1469111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Lokeswari&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you need to append the value of the table..so or you do like follow&lt;/P&gt;&lt;P&gt;change&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
select valfr ibase amount unit from IBIN
 into table it_tab4
 for all ENTRIES IN it_tab
  where ibase = it_tab-ibase.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;with&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
select valfr ibase amount unit from IBIN
 into CORRESPONDING FIELDS OF TABLE  it_tab4
 for all ENTRIES IN it_tab
  where ibase = it_tab-ibase.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or you must create a structure, do the select and after append the value at the table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
select valfr ibase amount unit from IBIN
 into CORRESPONDING FIELDS OF it_str4
 for all ENTRIES IN it_tab
  where ibase = it_tab-ibase.
append it_str4 to  it_tab4.
endselect.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Mar 2010 15:28:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-code/m-p/6812115#M1469111</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-24T15:28:23Z</dc:date>
    </item>
    <item>
      <title>Re: problem in code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-code/m-p/6812116#M1469112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check if there is any value in IBIN for the values in it_tab-ibase.&lt;/P&gt;&lt;P&gt;and the domain of the field IBIN-IBASE has a conversion exit used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try like this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move i_ibase to wa_tab-ibase.&lt;/P&gt;&lt;P&gt;call function 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;exporting &lt;/P&gt;&lt;P&gt;input = wa_tab-ibase&lt;/P&gt;&lt;P&gt;importing&lt;/P&gt;&lt;P&gt;output = wa_tab-ibase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append  wa_tab to it_tab.&lt;/P&gt;&lt;P&gt;clear wa_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after this check your select query.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Mar 2010 16:19:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-code/m-p/6812116#M1469112</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-03-24T16:19:13Z</dc:date>
    </item>
    <item>
      <title>Re: problem in code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-code/m-p/6812117#M1469113</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;select valfr ibase amount unit from IBIN&lt;/P&gt;&lt;P&gt; into table it_tab4&lt;/P&gt;&lt;P&gt; for all ENTRIES IN it_tab&lt;/P&gt;&lt;P&gt;  where ibase = it_tab4-ibase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do like this as this is the for all entries statement the where condition must be with the for all entries table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Venkat Appikonda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Mar 2010 16:29:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-code/m-p/6812117#M1469113</guid>
      <dc:creator>former_member203501</dc:creator>
      <dc:date>2010-03-24T16:29:30Z</dc:date>
    </item>
    <item>
      <title>Re: problem in code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-code/m-p/6812118#M1469114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Keshav...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; i tried like this as suggested by you. But Still internal table-it)tab4 have no values. when i placed break point before select statement and checking step wise it is working. if put break point after Select query i.e. at loop statement it is showing sy-subrc 4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any pointers??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'IBSD_CREATE_IBASE'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    I_VBELN                     = '0000013234'&lt;/P&gt;&lt;P&gt;    I_POSNR                     = '000010'&lt;/P&gt;&lt;P&gt;    I_AS_SOLD                   = '0'&lt;/P&gt;&lt;P&gt;    I_AS_BUILD                  = '0'&lt;/P&gt;&lt;P&gt;    I_CAPID                     = '0'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_CHANGE                    = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   I_COMMIT                    = 'X'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_COMMIT_WAIT               = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   E_IBASE                     = i_ibase&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   ORDER_NOT_FOUND             = 1&lt;/P&gt;&lt;P&gt;   POSITION_NOT_FOUND          = 2&lt;/P&gt;&lt;P&gt;   NOTHING_TO_DO               = 3&lt;/P&gt;&lt;P&gt;   TOO_MUCH_TO_DO              = 4&lt;/P&gt;&lt;P&gt;   MISSING_AUTHORIZATION       = 5&lt;/P&gt;&lt;P&gt;   FOREIGN_LOCK                = 6&lt;/P&gt;&lt;P&gt;   OTHERS                      = 7&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;  MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;          WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  move i_ibase to wa_tab-ibase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      INPUT         = wa_tab-ibase&lt;/P&gt;&lt;P&gt;   IMPORTING&lt;/P&gt;&lt;P&gt;     OUTPUT        = wa_tab-ibase&lt;/P&gt;&lt;P&gt;            .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  append wa_tab to  it_tab.&lt;/P&gt;&lt;P&gt;  clear wa_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select valfr ibase amount unit from IBIN&lt;/P&gt;&lt;P&gt; into TABLE it_tab4&lt;/P&gt;&lt;P&gt; for all ENTRIES IN it_tab&lt;/P&gt;&lt;P&gt;  where ibase = it_tab-ibase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it_tab4 into wa_tab4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  write : wa_tab4-valfr,&lt;/P&gt;&lt;P&gt;         / wa_tab4-ibase,&lt;/P&gt;&lt;P&gt;         / wa_tab4-amount.&lt;/P&gt;&lt;P&gt;endloop.&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;Lokeswari.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Mar 2010 07:25:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-code/m-p/6812118#M1469114</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-25T07:25:25Z</dc:date>
    </item>
    <item>
      <title>Re: problem in code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-code/m-p/6812119#M1469115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   Can you check whether any value is populated in field "i_ibase".&lt;/P&gt;&lt;P&gt;and try to see whether any entry exist for that field into table IBIN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(your code is working perfectly fine in my system)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Mar 2010 07:55:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-code/m-p/6812119#M1469115</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-25T07:55:58Z</dc:date>
    </item>
    <item>
      <title>Re: problem in code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-code/m-p/6812120#M1469116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raj...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is working some times and not working some times.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am unable to interprete what is happening in the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lokeswari.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Mar 2010 07:58:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-code/m-p/6812120#M1469116</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-25T07:58:59Z</dc:date>
    </item>
    <item>
      <title>Re: problem in code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-code/m-p/6812121#M1469117</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;change your code like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    i_commit              = ' '&lt;/P&gt;&lt;P&gt;    i_commit_wait         = 'X'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your problem will be solved, i checked it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA : it_tab4 TYPE STANDARD TABLE OF ibin.
DATA:wa TYPE ibin.
DATA : i_ibase TYPE ib_ibase.

CALL FUNCTION 'IBSD_CREATE_IBASE'
  EXPORTING
    i_vbeln               = '0001122654'
    i_posnr               = '000017'
    i_as_sold             = '0'
    i_as_build            = '0'
    i_capid               = '0'
    i_commit              = ' '
    i_commit_wait         = 'X'
  IMPORTING
    e_ibase               = i_ibase
  EXCEPTIONS
    order_not_found       = 1
    position_not_found    = 2
    nothing_to_do         = 3
    too_much_to_do        = 4
    missing_authorization = 5
    foreign_lock          = 6
    OTHERS                = 7.
IF sy-subrc  &amp;lt;&amp;gt; 0.
  MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
          WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ENDIF.


SELECT * FROM ibin
 INTO TABLE it_tab4
  WHERE ibase = i_ibase.

LOOP AT it_tab4 INTO wa.
  WRITE : wa-valfr,
        / wa-ibase,
        / wa-amount.
ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Mar 2010 09:25:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-code/m-p/6812121#M1469117</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-03-25T09:25:44Z</dc:date>
    </item>
    <item>
      <title>Re: problem in code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-code/m-p/6812122#M1469118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your replies.&lt;/P&gt;&lt;P&gt;Special thanks to Keshav.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lokeswari.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Mar 2010 11:06:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-code/m-p/6812122#M1469118</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-25T11:06:22Z</dc:date>
    </item>
  </channel>
</rss>

