<?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: SM12 locks for screen programing in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sm12-locks-for-screen-programing/m-p/7107203#M1509296</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The data which you are showing are from a database right? go to se11, and create an lock.While creating the locks, please specify the fields .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For each lock, its automatically create 2 function module.&lt;/P&gt;&lt;P&gt;ENQUEUE and DEQUEUE .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you use the function module ENQUEUE_&amp;lt;LOCK NAME&amp;gt; before showing the ,screen from your alv automatically the records will come in SM12.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nikhil&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Nikhil V Kumar on Jul 27, 2010 5:22 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 27 Jul 2010 11:52:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-07-27T11:52:12Z</dc:date>
    <item>
      <title>SM12 locks for screen programing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sm12-locks-for-screen-programing/m-p/7107200#M1509293</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 displaying the list of entries in my ALV table ( project specific table entries).&lt;/P&gt;&lt;P&gt;On click opf one row, it will display the details in my screen programing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can edit a particular row and update the table. When I am in edit mode of a particular row then other user shoudnt use the same row.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This has to be handled as SM12 lock.&lt;/P&gt;&lt;P&gt;How to use enqueue or dequeue to do this...&lt;/P&gt;&lt;P&gt;Any help is appreciated.Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jul 2010 11:42:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sm12-locks-for-screen-programing/m-p/7107200#M1509293</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-27T11:42:53Z</dc:date>
    </item>
    <item>
      <title>Re: SM12 locks for screen programing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sm12-locks-for-screen-programing/m-p/7107201#M1509294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sumithra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create ENqueu/ Dequeue for the table as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;call function 'ENQUEUE_ZSDAR'
 EXPORTING

    NAME                 = 'TABLE'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jul 2010 11:46:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sm12-locks-for-screen-programing/m-p/7107201#M1509294</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-27T11:46:40Z</dc:date>
    </item>
    <item>
      <title>Re: SM12 locks for screen programing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sm12-locks-for-screen-programing/m-p/7107202#M1509295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is no function module available as 'ENQUEUE_ZSDAR'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jul 2010 11:48:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sm12-locks-for-screen-programing/m-p/7107202#M1509295</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-27T11:48:40Z</dc:date>
    </item>
    <item>
      <title>Re: SM12 locks for screen programing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sm12-locks-for-screen-programing/m-p/7107203#M1509296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The data which you are showing are from a database right? go to se11, and create an lock.While creating the locks, please specify the fields .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For each lock, its automatically create 2 function module.&lt;/P&gt;&lt;P&gt;ENQUEUE and DEQUEUE .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you use the function module ENQUEUE_&amp;lt;LOCK NAME&amp;gt; before showing the ,screen from your alv automatically the records will come in SM12.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nikhil&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Nikhil V Kumar on Jul 27, 2010 5:22 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jul 2010 11:52:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sm12-locks-for-screen-programing/m-p/7107203#M1509296</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-27T11:52:12Z</dc:date>
    </item>
    <item>
      <title>Re: SM12 locks for screen programing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sm12-locks-for-screen-programing/m-p/7107204#M1509297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ENqueue_ZSDAR where "ZSDAR" is the table name for which we create Locks.&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jul 2010 12:02:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sm12-locks-for-screen-programing/m-p/7107204#M1509297</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-27T12:02:30Z</dc:date>
    </item>
  </channel>
</rss>

