<?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: obviously unable to process in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/obviously-unable-to-process/m-p/3462105#M831876</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;K@$TURI  &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;thak you for replying. But to be honest I don't understand the relation to my &lt;/P&gt;&lt;P&gt;current problem. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any object is being  locked and almots it drives me mad I can't figure out.&lt;/P&gt;&lt;P&gt;I get always this error message "...selected are being processed"&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;sas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Mar 2008 14:34:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-10T14:34:50Z</dc:date>
    <item>
      <title>obviously unable to process</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obviously-unable-to-process/m-p/3462103#M831874</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;How do you solve generally lock entry problems ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you have to findout an error e.g. &lt;/P&gt;&lt;P&gt;"selected  are being processed"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I assume somebody is attemting to process some that are being processed by another user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and system is obviously unable to process these .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you ever come into touch with such a situation ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;sas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 14:14:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obviously-unable-to-process/m-p/3462103#M831874</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T14:14:52Z</dc:date>
    </item>
    <item>
      <title>Re: obviously unable to process</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obviously-unable-to-process/m-p/3462104#M831875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please loop the enque functuion module until the  lock has been performed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then after go with the database operation.&lt;/P&gt;&lt;P&gt;as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Loop the lock mechansim and exit the loop whenver there is a lock happened.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  do.&lt;/P&gt;&lt;P&gt;    call function 'ENQUEUE_EZL00FI_EOD_STAT'&lt;/P&gt;&lt;P&gt;      exporting&lt;/P&gt;&lt;P&gt;        mode_zt00fi_eod_check = 'X'&lt;/P&gt;&lt;P&gt;        mandt                 = sy-mandt&lt;/P&gt;&lt;P&gt;        country               = iv_countrycode&lt;/P&gt;&lt;P&gt;        bu_posting_area       = iv_bp_area&lt;/P&gt;&lt;P&gt;        posting_date          = iv_postingdate&lt;/P&gt;&lt;P&gt;      exceptions&lt;/P&gt;&lt;P&gt;        foreign_lock          = 1&lt;/P&gt;&lt;P&gt;        system_failure        = 2&lt;/P&gt;&lt;P&gt;        others                = 3.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Exit the loop whenever enque happened&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      exit.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;  enddo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Select is there any other BPAs are there whos cashpool still pending.&lt;/P&gt;&lt;P&gt;*Fetch all those records, and&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  select  *&lt;/P&gt;&lt;P&gt;         from zt00fi_eod_check&lt;/P&gt;&lt;P&gt;         into table lt_bpa_status&lt;/P&gt;&lt;P&gt;         where country          eq iv_countrycode  and&lt;/P&gt;&lt;P&gt;               bu_posting_area  ne iv_bp_area      and&lt;/P&gt;&lt;P&gt;               posting_date     eq iv_postingdate  and&lt;/P&gt;&lt;P&gt;               status           ne  '03'  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  lv_sysubrc = sy-subrc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Select the BPAs which are waiting for those cash pool run.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  update zt00fi_eod_check&lt;/P&gt;&lt;P&gt;         set status = '03'&lt;/P&gt;&lt;P&gt;         where country          = iv_countrycode  and&lt;/P&gt;&lt;P&gt;               bu_posting_area  = iv_bp_area      and&lt;/P&gt;&lt;P&gt;               posting_date     = iv_postingdate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  commit work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Immediately release the lock&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'DEQUEUE_EZL00FI_EOD_STAT'&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      mode_zt00fi_eod_check = 'X'&lt;/P&gt;&lt;P&gt;      mandt                 = sy-mandt&lt;/P&gt;&lt;P&gt;      country               = iv_countrycode&lt;/P&gt;&lt;P&gt;      bu_posting_area       = iv_bp_area&lt;/P&gt;&lt;P&gt;      posting_date          = iv_postingdate.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 14:19:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obviously-unable-to-process/m-p/3462104#M831875</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T14:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: obviously unable to process</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obviously-unable-to-process/m-p/3462105#M831876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;K@$TURI  &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;thak you for replying. But to be honest I don't understand the relation to my &lt;/P&gt;&lt;P&gt;current problem. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any object is being  locked and almots it drives me mad I can't figure out.&lt;/P&gt;&lt;P&gt;I get always this error message "...selected are being processed"&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;sas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 14:34:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obviously-unable-to-process/m-p/3462105#M831876</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T14:34:50Z</dc:date>
    </item>
    <item>
      <title>Re: obviously unable to process</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obviously-unable-to-process/m-p/3462106#M831877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use transaction SM12 to check lock entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 15:07:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obviously-unable-to-process/m-p/3462106#M831877</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T15:07:09Z</dc:date>
    </item>
  </channel>
</rss>

