<?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 How to find currently editing transaction code details using ABAP code in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-currently-editing-transaction-code-details-using-abap-code/m-p/2159769#M456709</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  if some user is using VA02 tcode.i want to know for which sales order(i.e Sales order number)he is making changes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want ABAP code sample for this scenario.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Jag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Apr 2007 02:12:59 GMT</pubDate>
    <dc:creator>former_member214364</dc:creator>
    <dc:date>2007-04-30T02:12:59Z</dc:date>
    <item>
      <title>How to find currently editing transaction code details using ABAP code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-currently-editing-transaction-code-details-using-abap-code/m-p/2159769#M456709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  if some user is using VA02 tcode.i want to know for which sales order(i.e Sales order number)he is making changes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want ABAP code sample for this scenario.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Jag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 02:12:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-currently-editing-transaction-code-details-using-abap-code/m-p/2159769#M456709</guid>
      <dc:creator>former_member214364</dc:creator>
      <dc:date>2007-04-30T02:12:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to find currently editing transaction code details using ABAP code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-currently-editing-transaction-code-details-using-abap-code/m-p/2159770#M456710</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;You can use the FM ENQUEUE_READ function module..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Give the user name..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the parameter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GUNAME - GIve the user ID.&lt;/P&gt;&lt;P&gt;GNAME - VBAK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the ENQ internal table you will have a list of sales orders that the user is using in VA02.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 02:25:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-currently-editing-transaction-code-details-using-abap-code/m-p/2159770#M456710</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T02:25:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to find currently editing transaction code details using ABAP code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-currently-editing-transaction-code-details-using-abap-code/m-p/2159771#M456711</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;              For this you need to create Lock Object from se11 .It will automatically crate Two Function modules for enque and deque.&lt;/P&gt;&lt;P&gt;In you case If you want to see the Details for Va02 use.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'ENQUEUE_EVVBAKE'&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;P&gt;              VBELN          = VBELN&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;    CASE SY-SUBRC.&lt;/P&gt;&lt;P&gt;      WHEN 1.&lt;/P&gt;&lt;P&gt;        MESSAGE E042(V1) WITH vbeln RAISING ERROR_IN_COPY.&lt;/P&gt;&lt;P&gt;    ENDCASE.&lt;/P&gt;&lt;P&gt;Regds,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 03:12:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-currently-editing-transaction-code-details-using-abap-code/m-p/2159771#M456711</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T03:12:52Z</dc:date>
    </item>
  </channel>
</rss>

