<?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: reset flag in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667897#M1288963</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;looping at lt_eban&lt;/P&gt;&lt;P&gt;Modifying eban .. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not possible&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
 LOOP AT lt_eban INTO ls_eban .   &amp;lt;--------
      clear: ls_eban-LOCKFLAG .
      modify eban from ls_eban.       &amp;lt;-----------
 ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Jun 2009 10:07:58 GMT</pubDate>
    <dc:creator>kesavadas_thekkillath</dc:creator>
    <dc:date>2009-06-10T10:07:58Z</dc:date>
    <item>
      <title>reset flag</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667892#M1288958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts I need an advice for the below case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A flag which is set in the EBAN must be reseted. This&lt;/P&gt;&lt;P&gt;is the programm. It doesn't do that. What can be reason for that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the Function Module Call from SAP SRM System with destination command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'ZBM_RESET_FLAG'
 DESTINATION 'RV3CLNT888'
  EXPORTING
    BANFNUMBER        = ls_ITEM-EXT_DEMID
 EXCEPTIONS
   NOT_RESETED       = 1
   OTHERS            = 2.&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;The Function Module is in the the backendsystem (R/3).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FUNCTION ZBM_RESET_FLAG.
*"----------------------------------------------------------------------
*"*"Lokale Schnittstelle:
*"  IMPORTING
*"     VALUE(BANFNUMBER) TYPE  BANFN
*"  EXCEPTIONS
*"      NOT_RESETED
*"----------------------------------------------------------------------

  data lt_eban type table of eban.
  data ls_eban type eban.

  data:  l_r_banfn type table of ZBANFEN.

 SELECT * FROM eban into table lt_eban where BANFN EQ BANFNUMBER AND LOCKFLAG EQ 'X'.

  IF SY-SUBRC IS INITIAL.
    LOOP AT lt_eban INTO ls_eban .
      clear: ls_eban-LOCKFLAG .
      modify eban from ls_eban.
    ENDLOOP.
    ELSE.
    raise NOT_RESETED.
  ENDIF.

ENDFUNCTION.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 09:46:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667892#M1288958</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-10T09:46:13Z</dc:date>
    </item>
    <item>
      <title>Re: reset flag</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667893#M1288959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may check in the backend system by debugging the system .&lt;/P&gt;&lt;P&gt;There can be  an issue with the "modify eban from ls_eban."&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 09:51:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667893#M1288959</guid>
      <dc:creator>Sandeep_Panghal</dc:creator>
      <dc:date>2009-06-10T09:51:34Z</dc:date>
    </item>
    <item>
      <title>Re: reset flag</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667894#M1288960</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 field BANFN has a conversion routine associated with it.&lt;/P&gt;&lt;P&gt;Just check whether the Purchase requisition number which you are passing to the FM via the variable &lt;/P&gt;&lt;P&gt;ls_ITEM-EXT_DEMID has padded 0's. If not then use FM CONVERSION_EXIT_ALPHA_INPUT in your RFC FM before the select statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Possibly the select statement is failing and hence the update is not happening.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ankur Parab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 09:54:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667894#M1288960</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-10T09:54:27Z</dc:date>
    </item>
    <item>
      <title>Re: reset flag</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667895#M1288961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ertas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you debug and check whether the select is successful.&lt;/P&gt;&lt;P&gt;Whether it is clearing the same entry for that particular record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Vanessa Noronha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Vanessa Noronha on Jun 10, 2009 11:55 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 09:55:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667895#M1288961</guid>
      <dc:creator>former_member609120</dc:creator>
      <dc:date>2009-06-10T09:55:21Z</dc:date>
    </item>
    <item>
      <title>Re: reset flag</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667896#M1288962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i'm just wondering about that. Do you know how the UPDATE is working?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
update eban
set lockflag = ' '
where banfn = banfnumber.
  and lockflag = 'X'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;no select, no loop, no modify. Add checking of sy-subrc and sy-dbcnt and give that back to the caller.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rainer Hübenthal on Jun 10, 2009 12:04 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 10:04:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667896#M1288962</guid>
      <dc:creator>rainer_hbenthal</dc:creator>
      <dc:date>2009-06-10T10:04:49Z</dc:date>
    </item>
    <item>
      <title>Re: reset flag</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667897#M1288963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;looping at lt_eban&lt;/P&gt;&lt;P&gt;Modifying eban .. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not possible&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
 LOOP AT lt_eban INTO ls_eban .   &amp;lt;--------
      clear: ls_eban-LOCKFLAG .
      modify eban from ls_eban.       &amp;lt;-----------
 ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 10:07:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667897#M1288963</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2009-06-10T10:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: reset flag</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667898#M1288964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;when I call the Function Module within R/3 then it works&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 10:09:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667898#M1288964</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-10T10:09:06Z</dc:date>
    </item>
    <item>
      <title>Re: reset flag</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667899#M1288965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;then your rfc connection is not working. But ...  i would really change the coding.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 10:11:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667899#M1288965</guid>
      <dc:creator>rainer_hbenthal</dc:creator>
      <dc:date>2009-06-10T10:11:24Z</dc:date>
    </item>
    <item>
      <title>Re: reset flag</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667900#M1288966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How else can you write this coding ?&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;ertas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Ilhan Ertas on Jun 10, 2009 12:12 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 10:12:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667900#M1288966</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-10T10:12:27Z</dc:date>
    </item>
    <item>
      <title>Re: reset flag</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667901#M1288967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just read the answers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 10:14:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667901#M1288967</guid>
      <dc:creator>rainer_hbenthal</dc:creator>
      <dc:date>2009-06-10T10:14:10Z</dc:date>
    </item>
    <item>
      <title>Re: reset flag</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667902#M1288968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;is that the answer ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;looping at lt_eban&lt;/P&gt;&lt;P&gt;Modifying eban .. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is not a valid abap code&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 10:16:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667902#M1288968</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-10T10:16:49Z</dc:date>
    </item>
    <item>
      <title>Re: reset flag</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667903#M1288969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you cant read i cant help you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 10:18:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667903#M1288969</guid>
      <dc:creator>rainer_hbenthal</dc:creator>
      <dc:date>2009-06-10T10:18:59Z</dc:date>
    </item>
    <item>
      <title>Re: reset flag</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667904#M1288970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;TRANSPORTING&lt;/STRONG&gt; addition in &lt;STRONG&gt;MODIFY&lt;/STRONG&gt; statement may do the trick for you.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*MODIFY eban FROM ls_eban.
MODIFY eban FROM ls_eban TRANSPORTING lockflag.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 10:20:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667904#M1288970</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-10T10:20:55Z</dc:date>
    </item>
    <item>
      <title>Re: reset flag</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667905#M1288971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if its not working without transporting, it will not work with transporting. But still silly coding.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 10:23:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667905#M1288971</guid>
      <dc:creator>rainer_hbenthal</dc:creator>
      <dc:date>2009-06-10T10:23:08Z</dc:date>
    </item>
    <item>
      <title>Re: reset flag</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667906#M1288972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi IIhan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check the Prv post from Rainer .. Thatz it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and manish  "MODIFY eban" is that possible &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 10:27:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667906#M1288972</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2009-06-10T10:27:05Z</dc:date>
    </item>
    <item>
      <title>Re: reset flag</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667907#M1288973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Even i think so now..&lt;/P&gt;&lt;P&gt;My apologies..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 10:28:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667907#M1288973</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-10T10:28:44Z</dc:date>
    </item>
    <item>
      <title>Re: reset flag</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667908#M1288974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi is there a commit work needed or not ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ertas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 15:04:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667908#M1288974</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-10T15:04:34Z</dc:date>
    </item>
    <item>
      <title>Re: reset flag</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667909#M1288975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Colleques,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the problem is still existing. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have inserted a infinite loop and have called t-code sm50 and debugged this coding.&lt;/P&gt;&lt;P&gt;There is no sy-subrc &amp;lt;&amp;gt; 0 and any error message.&lt;/P&gt;&lt;P&gt;Is it not possible to update a dictionary table via remote call like in my case ?&lt;/P&gt;&lt;P&gt;What is worng here ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ertas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data lzahl1 type i .
data lzahl2 type i .

lzahl1 = 0.
lzahl2 = 2.

while lzahl1 &amp;lt; lzahl2.
clear sy-subrc.
endwhile.


  data lt_eban type table of eban.
  data ls_eban type eban.

  data:  l_r_banfn type table of ZBANFEN.

  CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
    EXPORTING
      INPUT  = BANFNUMBER
    IMPORTING
      OUTPUT = BANFNUMBER.


  SELECT * FROM eban into table lt_eban where BANFN EQ BANFNUMBER AND LOCKFLAG EQ 'X'.

  IF SY-SUBRC IS INITIAL.
    LOOP AT lt_eban INTO ls_eban .
      UPDATe eban set lockflag = ' ' where banfn = ls_eban-BANFN.
     commit work and wait.
    ENDLOOP.
  ELSE.
    raise NOT_RESETED.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 11:15:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667909#M1288975</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-11T11:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: reset flag</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667910#M1288976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;what is the type of teh field BANFNUMBER?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is your select statement returning anything?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ankur Parab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 11:20:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667910#M1288976</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-11T11:20:18Z</dc:date>
    </item>
    <item>
      <title>Re: reset flag</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667911#M1288977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi parab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; the type of the field BANFNUMBER is BANFN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the select statement is returning 0&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;ertas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 11:35:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reset-flag/m-p/5667911#M1288977</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-11T11:35:11Z</dc:date>
    </item>
  </channel>
</rss>

