<?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: How do I test whether ENQUEUE  works? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-test-whether-enqueue-works/m-p/3669518#M883853</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hI,&lt;/P&gt;&lt;P&gt;During the time u are performing ENQUEUE operation on a set of data then it is not posible to update same set of data in SE16.&lt;/P&gt;&lt;P&gt;In your program you have locked some set of data and if u try to update other set of data it is possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sandipan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Apr 2008 13:38:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-03T13:38:57Z</dc:date>
    <item>
      <title>How do I test whether ENQUEUE  works?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-test-whether-enqueue-works/m-p/3669513#M883848</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 have created a lock object for one of my tables ZTAB1.&lt;/P&gt;&lt;P&gt;I have also incorporated the following ENQUEUE codes into my report program:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE enqueue INPUT.&lt;/P&gt;&lt;P&gt;  OK_CODE = SY-UCOMM.&lt;/P&gt;&lt;P&gt;  CASE ok_code.&lt;/P&gt;&lt;P&gt;    WHEN 'ENQUEUE'.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'ENQUEUE_EZTAB1'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          MODE_ZKKA301         = 'E'&lt;/P&gt;&lt;P&gt;          LOAD_ID              = ZTAB1-LOAD_ID&lt;/P&gt;&lt;P&gt;          RECORD_ID            = ZTAB1-RECORD_ID&lt;/P&gt;&lt;P&gt;          DP_NUMC2             = ZTAB1-DP_NUMC2&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        X_LOAD_ID            = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        X_RECORD_ID          = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        X_DP_NUMC2           = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        _SCOPE               = '2'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        _WAIT                = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        _COLLECT             = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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;P&gt;                .&lt;/P&gt;&lt;P&gt;      CASE sy-subrc.&lt;/P&gt;&lt;P&gt;        WHEN 0.&lt;/P&gt;&lt;P&gt;          MESSAGE i888(ztry) WITH 'Enqueue successful'.&lt;/P&gt;&lt;P&gt;        WHEN 1.&lt;/P&gt;&lt;P&gt;          text = sy-msgv1.&lt;/P&gt;&lt;P&gt;          MESSAGE e888(ztry) WITH 'Record already'&lt;/P&gt;&lt;P&gt;                            'locked by' text.&lt;/P&gt;&lt;P&gt;          CALL TRANSACTION 'SM12'.&lt;/P&gt;&lt;P&gt;        WHEN 2 OR 3.&lt;/P&gt;&lt;P&gt;          MESSAGE e888(ztry) WITH 'Error in enqueue!'.&lt;/P&gt;&lt;P&gt;      ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WHEN 'DEQUEUE'.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'DEQUEUE_EZTAB1'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          MODE_ZKKA301       = 'E'&lt;/P&gt;&lt;P&gt;          LOAD_ID            = ZTAB1-LOAD_ID&lt;/P&gt;&lt;P&gt;          RECORD_ID          = ZTAB1-RECORD_ID&lt;/P&gt;&lt;P&gt;          DP_NUMC2           = ZTAB1-DP_NUMC2&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        X_LOAD_ID          = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        X_RECORD_ID        = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        X_DP_NUMC2         = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        _SCOPE             = '3'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        _SYNCHRON          = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        _COLLECT           = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;                .&lt;/P&gt;&lt;P&gt;      CASE sy-subrc.&lt;/P&gt;&lt;P&gt;        WHEN 0.&lt;/P&gt;&lt;P&gt;          MESSAGE i888(ztry) WITH 'Dequeue successful'.&lt;/P&gt;&lt;P&gt;        WHEN 1.&lt;/P&gt;&lt;P&gt;          MESSAGE e888(ztry) WITH 'Error in dequeue!'.&lt;/P&gt;&lt;P&gt;      ENDCASE.&lt;/P&gt;&lt;P&gt;    WHEN 'SM12'.&lt;/P&gt;&lt;P&gt;      CALL TRANSACTION 'SM12'.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I know my ENQUEUE code works? In other words, how do I know the record has been locked and no write is possible until the DEQUEUE code is run? Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 11:31:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-test-whether-enqueue-works/m-p/3669513#M883848</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-03T11:31:39Z</dc:date>
    </item>
    <item>
      <title>Re: How do I test whether ENQUEUE  works?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-test-whether-enqueue-works/m-p/3669514#M883849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use transaction sm12.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will show all your (and other users) locks placed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so just debug upto just past your enqueue call and check with sm12.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 11:38:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-test-whether-enqueue-works/m-p/3669514#M883849</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-03T11:38:59Z</dc:date>
    </item>
    <item>
      <title>Re: How do I test whether ENQUEUE  works?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-test-whether-enqueue-works/m-p/3669515#M883850</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;Put a break point inside Enqueue function module and run it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When controller comes to break point,try using Enqueue function module in another program.If it throws an eror then ur Enquue is working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;--Pradeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 12:02:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-test-whether-enqueue-works/m-p/3669515#M883850</guid>
      <dc:creator>pradeep_nellore</dc:creator>
      <dc:date>2008-04-03T12:02:19Z</dc:date>
    </item>
    <item>
      <title>Re: How do I test whether ENQUEUE  works?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-test-whether-enqueue-works/m-p/3669516#M883851</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;Durinf Execution of Enqueue FM, If you get an exception , it means that object os locked by another user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rajani.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 12:10:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-test-whether-enqueue-works/m-p/3669516#M883851</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-03T12:10:54Z</dc:date>
    </item>
    <item>
      <title>Re: How do I test whether ENQUEUE  works?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-test-whether-enqueue-works/m-p/3669517#M883852</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 have tested my program, and it showed that when I run one instance of my program with the ENQUEUE function, I can't run another instance of the same program with ENQUEUE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, I can run ANOTHER program to update that same record that was locked (or, I can use SE16 to update the locked record). Is this the expected behaviour after I perform ENQUEUE?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 13:18:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-test-whether-enqueue-works/m-p/3669517#M883852</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-03T13:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: How do I test whether ENQUEUE  works?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-test-whether-enqueue-works/m-p/3669518#M883853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hI,&lt;/P&gt;&lt;P&gt;During the time u are performing ENQUEUE operation on a set of data then it is not posible to update same set of data in SE16.&lt;/P&gt;&lt;P&gt;In your program you have locked some set of data and if u try to update other set of data it is possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sandipan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 13:38:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-test-whether-enqueue-works/m-p/3669518#M883853</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-03T13:38:57Z</dc:date>
    </item>
    <item>
      <title>Re: How do I test whether ENQUEUE  works?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-test-whether-enqueue-works/m-p/3669519#M883854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For my example above, I was trying to lock a particular record in ZTAB1 using ENQUEUE: &lt;/P&gt;&lt;P&gt;LOAD_ID = '100001', RECORD_ID = 1,&lt;/P&gt;&lt;P&gt;DP_NUMC2 = 1 (note: LOAD_ID, RECORD_ID and DP_NUMC2 are primary keys)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I run the ENQUEUE function in my program, I get an error message when I try to run the ENQUEUE function in another instance of the program again. However, I can actually edit the record (LOAD_ID = '100001', RECORD_ID = 1,&lt;/P&gt;&lt;P&gt;DP_NUMC2 = 1) using SE16.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By right, I shouldn't be able to (since the record is locked), right? Is it because I didn't create the lock object correctly? Or, is there some other reason?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 14:08:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-test-whether-enqueue-works/m-p/3669519#M883854</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-03T14:08:23Z</dc:date>
    </item>
    <item>
      <title>Re: How do I test whether ENQUEUE  works?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-test-whether-enqueue-works/m-p/3669520#M883855</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;Please refer the link below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdev.co.uk/dictionary/lock_enqueue.htm" target="test_blank"&gt;http://www.sapdev.co.uk/dictionary/lock_enqueue.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sriram Ponna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 14:13:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-test-whether-enqueue-works/m-p/3669520#M883855</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-03T14:13:55Z</dc:date>
    </item>
    <item>
      <title>Re: How do I test whether ENQUEUE  works?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-test-whether-enqueue-works/m-p/3669521#M883856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;According to your scenario when u have locked a record using ENQUEUE u cant change it unless u DEQUEUE it before.&lt;/P&gt;&lt;P&gt;I think there is some problem in the lock object itself. &lt;/P&gt;&lt;P&gt;Are the data u r editing getting saved/changed when u have locked the data? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Check your Lock Mode?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sandipan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 14:17:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-test-whether-enqueue-works/m-p/3669521#M883856</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-03T14:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: How do I test whether ENQUEUE  works?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-test-whether-enqueue-works/m-p/3669522#M883857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, maybe I'll further explain my scenario here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ZTAB1 has 4 columns:&lt;/P&gt;&lt;P&gt;LOAD_ID (Primary Key)&lt;/P&gt;&lt;P&gt;RECORD_ID (PK)&lt;/P&gt;&lt;P&gt;DP_NUMC2 (PK)&lt;/P&gt;&lt;P&gt;DP_NUMC4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have two records in ZTAB1:&lt;/P&gt;&lt;P&gt;LOAD_ID  RECORD_ID  DP_NUMC2  DP_NUMC4&lt;/P&gt;&lt;P&gt;100001,    1                   1                  20&lt;/P&gt;&lt;P&gt;100001,    1                   2                  23&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created a lock object for ZTAB1 using SE11. I then implemented the corresponding ENQUEUE FM in my report.&lt;/P&gt;&lt;P&gt;In my report, I have a button that runs the ENQUEUE FM to lock the first record upon clicking: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'ENQUEUE_EZTAB1'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;MODE_ZKKA301 = 'E'&lt;/P&gt;&lt;P&gt;LOAD_ID = '100001'&lt;/P&gt;&lt;P&gt;RECORD_ID = 1&lt;/P&gt;&lt;P&gt;DP_NUMC2 = 1&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, I clicked on the button, and the ENQUEUE is performed successfully (SY-SUBRC = 0). At this point in time, the first record should be locked. But when I go to SE16 and try to change the DP_NUMC4 of the first record, I was able to do so!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why is that? How do I check the lock mode?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 14:31:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-test-whether-enqueue-works/m-p/3669522#M883857</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-03T14:31:17Z</dc:date>
    </item>
    <item>
      <title>Re: How do I test whether ENQUEUE  works?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-test-whether-enqueue-works/m-p/3669523#M883858</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've already done the same problem. My analysis is : &lt;/P&gt;&lt;P&gt;- SE16 is not calling the enqueue function MODULE of the Ztable,&lt;/P&gt;&lt;P&gt;- your specific program is calling the enqueue function module of the Ztable.&lt;/P&gt;&lt;P&gt;==&amp;gt; you can update a record with SE16 despite a z-report is locking the record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can create a report that is updating a record without calling the enqueue module.&lt;/P&gt;&lt;P&gt;You can try to update a record using SM30 instead SE16 (sm30, i think locks entries)/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cordialement,&lt;/P&gt;&lt;P&gt;Chaouki.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Apr 2008 12:27:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-test-whether-enqueue-works/m-p/3669523#M883858</guid>
      <dc:creator>chaouki_akir</dc:creator>
      <dc:date>2008-04-05T12:27:44Z</dc:date>
    </item>
    <item>
      <title>Re: How do I test whether ENQUEUE  works?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-test-whether-enqueue-works/m-p/3669524#M883859</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;Use Tcode, SM12 to find the lock entries. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, &lt;/P&gt;&lt;P&gt;Vaishnavi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Apr 2008 13:37:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-test-whether-enqueue-works/m-p/3669524#M883859</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-05T13:37:16Z</dc:date>
    </item>
  </channel>
</rss>

