<?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: Lock object for table EKES in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/lock-object-for-table-ekes/m-p/2140571#M450874</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried to use the FM suggested by you, but i got the following error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Error analysis                                                                        &lt;/P&gt;&lt;P&gt;     An exception occurred. This exception is dealt with in more detail below          &lt;/P&gt;&lt;P&gt;     . The exception, which is assigned to the class 'CX_SY_DYN_CALL_ILLEGAL_TYPE',    &lt;/P&gt;&lt;P&gt;      was neither                                                                      &lt;/P&gt;&lt;P&gt;     caught nor passed along using a RAISING clause, in the procedure "ZPH_POUPDATE"   &lt;/P&gt;&lt;P&gt;      "(FUNCTION)"                                                                     &lt;/P&gt;&lt;P&gt;     .                                                                                &lt;/P&gt;&lt;P&gt;Since the caller of the procedure could not have expected this exception          &lt;/P&gt;&lt;P&gt;      to occur, the running program was terminated.                                    &lt;/P&gt;&lt;P&gt;     The reason for the exception is:                                                  &lt;/P&gt;&lt;P&gt;     The call to the function module "ENQUEUE_E_TABLE" is incorrect:                                                                                &lt;/P&gt;&lt;P&gt;The function module interface allows you to specify only                          &lt;/P&gt;&lt;P&gt;     fields of a particular type under "TABNAME".                                      &lt;/P&gt;&lt;P&gt;     The field "EKES" specified here is a different                                    &lt;/P&gt;&lt;P&gt;     field type                                                                        &lt;/P&gt;&lt;P&gt;     .                                                                                &lt;/P&gt;&lt;P&gt;The lock object created by me, it didnt give error, but im not sure if that works perfectly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 Apr 2007 14:53:21 GMT</pubDate>
    <dc:creator>pkch</dc:creator>
    <dc:date>2007-04-13T14:53:21Z</dc:date>
    <item>
      <title>Lock object for table EKES</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/lock-object-for-table-ekes/m-p/2140569#M450872</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I developed a function module to update the confirmations tab of a PO on ME22N screen. Now, I want to have a lock object in the FM so that a user cant make changes while this FM is in use. I do not know if there is any standard lock object for this purpose. I created a lock object in SE11 'EZEKES' since table EKES corresponds to vendor confirmations details. The Enqueue function was called into the program. The code is below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'ENQUEUE_EZPHLOCK'&lt;/P&gt;&lt;P&gt; EXPORTING&lt;/P&gt;&lt;P&gt;   MODE_EKES            = 'E'&lt;/P&gt;&lt;P&gt;   MANDT                = SY-MANDT&lt;/P&gt;&lt;P&gt;   EBELN                = ponumber&lt;/P&gt;&lt;P&gt;&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;P&gt;&lt;/P&gt;&lt;P&gt;The problem is, i'm not able to have a lock on the confirmations tab when the FM is in use. Is there any problem with the lock object i have created. The lock mode is Exclusive,Cumulative.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me with this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2007 14:34:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/lock-object-for-table-ekes/m-p/2140569#M450872</guid>
      <dc:creator>pkch</dc:creator>
      <dc:date>2007-04-13T14:34:58Z</dc:date>
    </item>
    <item>
      <title>Re: Lock object for table EKES</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/lock-object-for-table-ekes/m-p/2140570#M450873</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 &amp;lt;b&amp;gt;ENQUEUE_E_TABLE&amp;lt;/b&amp;gt;. Check this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  DATA: VARKEY LIKE RSTABLE-VARKEY.
  VARKEY = SY-MANDT.
  CALL FUNCTION 'ENQUEUE_E_TABLE'
       EXPORTING
            TABNAME        = 'EKES'
            VARKEY         = VARKEY
       EXCEPTIONS
            FOREIGN_LOCK   = 1
            SYSTEM_FAILURE = 2
            OTHERS         = 3.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2007 14:40:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/lock-object-for-table-ekes/m-p/2140570#M450873</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-13T14:40:51Z</dc:date>
    </item>
    <item>
      <title>Re: Lock object for table EKES</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/lock-object-for-table-ekes/m-p/2140571#M450874</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried to use the FM suggested by you, but i got the following error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Error analysis                                                                        &lt;/P&gt;&lt;P&gt;     An exception occurred. This exception is dealt with in more detail below          &lt;/P&gt;&lt;P&gt;     . The exception, which is assigned to the class 'CX_SY_DYN_CALL_ILLEGAL_TYPE',    &lt;/P&gt;&lt;P&gt;      was neither                                                                      &lt;/P&gt;&lt;P&gt;     caught nor passed along using a RAISING clause, in the procedure "ZPH_POUPDATE"   &lt;/P&gt;&lt;P&gt;      "(FUNCTION)"                                                                     &lt;/P&gt;&lt;P&gt;     .                                                                                &lt;/P&gt;&lt;P&gt;Since the caller of the procedure could not have expected this exception          &lt;/P&gt;&lt;P&gt;      to occur, the running program was terminated.                                    &lt;/P&gt;&lt;P&gt;     The reason for the exception is:                                                  &lt;/P&gt;&lt;P&gt;     The call to the function module "ENQUEUE_E_TABLE" is incorrect:                                                                                &lt;/P&gt;&lt;P&gt;The function module interface allows you to specify only                          &lt;/P&gt;&lt;P&gt;     fields of a particular type under "TABNAME".                                      &lt;/P&gt;&lt;P&gt;     The field "EKES" specified here is a different                                    &lt;/P&gt;&lt;P&gt;     field type                                                                        &lt;/P&gt;&lt;P&gt;     .                                                                                &lt;/P&gt;&lt;P&gt;The lock object created by me, it didnt give error, but im not sure if that works perfectly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2007 14:53:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/lock-object-for-table-ekes/m-p/2140571#M450874</guid>
      <dc:creator>pkch</dc:creator>
      <dc:date>2007-04-13T14:53:21Z</dc:date>
    </item>
    <item>
      <title>Re: Lock object for table EKES</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/lock-object-for-table-ekes/m-p/2140572#M450875</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;Can you try the same FM in SE37. I tried this  FM in SE37 and it did not give any error. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also,  can you paster your code here? Are you handling exception exceptions in FM using EXCEPTIONS?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2007 14:57:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/lock-object-for-table-ekes/m-p/2140572#M450875</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-13T14:57:36Z</dc:date>
    </item>
    <item>
      <title>Re: Lock object for table EKES</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/lock-object-for-table-ekes/m-p/2140573#M450876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;STRONG&gt;"&lt;/STRONG&gt;"Local Interface:&lt;/P&gt;&lt;P&gt;*"  IMPORTING&lt;/P&gt;&lt;P&gt;*"     REFERENCE(PONUMBER) TYPE  EKKO-EBELN&lt;/P&gt;&lt;P&gt;*"  TABLES&lt;/P&gt;&lt;P&gt;*"      ITAB STRUCTURE  UEKES&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: EKES, EKKO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: BEGIN OF I_EKKO OCCURS 0,&lt;/P&gt;&lt;P&gt;        EBELN LIKE EKKO-EBELN,&lt;/P&gt;&lt;P&gt;        END OF I_EKKO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: X LIKE EKES-ETENS.&lt;/P&gt;&lt;P&gt;  data: i_tab like itab occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  move itab[] to i_tab[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: i_ekes LIKE uekes OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT EBELN FROM EKKO INTO TABLE I_EKKO WHERE EBELN = PONUMBER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF NOT I_EKKO[] IS INITIAL.&lt;/P&gt;&lt;P&gt;    SELECT  * FROM EKES INTO TABLE I_EKES&lt;/P&gt;&lt;P&gt;    FOR ALL ENTRIES IN I_EKKO&lt;/P&gt;&lt;P&gt;  WHERE EBELN = I_EKKO-EBELN.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  select single etens from ekes into x WHERE EBELN = PONUMBER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  x = x + 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: VARKEY LIKE RSTABLE-VARKEY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'ENQUEUE_E_TABLE'&lt;/P&gt;&lt;P&gt;   EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    MODE_RSTABLE         = 'E'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     TABNAME              = EKES&lt;/P&gt;&lt;P&gt;     VARKEY               = VARKEY&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    X_TABNAME            = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    X_VARKEY             = ' '&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;LI level="1" type="ul"&gt;&lt;P&gt;  EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    FOREIGN_LOCK         = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    SYSTEM_FAILURE       = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    OTHERS               = 3&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            .&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            .&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    LOOP AT I_TAB. "WHERE EBELN = PONUMBER.&lt;/P&gt;&lt;P&gt;    READ TABLE I_TAB.&lt;/P&gt;&lt;P&gt;    LOOP AT i_ekes WHERE ebelp EQ ITAB-EBELP "itemnumber&lt;/P&gt;&lt;P&gt;                      AND ebtyp EQ 'LA'.&lt;/P&gt;&lt;P&gt;      i_ekes-menge = ITAB-MENGE. "quantity.&lt;/P&gt;&lt;P&gt;      i_ekes-kz   = 'U'.&lt;/P&gt;&lt;P&gt;      i_ekes-eindt = ITAB-EINDT. "deldate.&lt;/P&gt;&lt;P&gt;      I_EKES-XBLNR = ITAB-XBLNR.&lt;/P&gt;&lt;P&gt;      i_ekes-erdat = sy-datum.&lt;/P&gt;&lt;P&gt;      i_ekes-ezeit = sy-uzeit.&lt;/P&gt;&lt;P&gt;      MODIFY i_ekes.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;    LOOP AT I_TAB. "WHERE EBELN = PONUMBER.&lt;/P&gt;&lt;P&gt;      READ TABLE I_TAB.&lt;/P&gt;&lt;P&gt;      LOOP AT i_ekes WHERE ebelp EQ ITAB-EBELP "itemnumber&lt;/P&gt;&lt;P&gt;                     AND ebtyp EQ 'AB'.&lt;/P&gt;&lt;P&gt;        i_ekes-menge = ITAB-MENGE. "quantity.&lt;/P&gt;&lt;P&gt;        i_ekes-ebtyp = 'LA'.&lt;/P&gt;&lt;P&gt;        i_ekes-kz   = 'I'.&lt;/P&gt;&lt;P&gt;        i_ekes-etens   = x.&lt;/P&gt;&lt;P&gt;        i_ekes-eindt = ITAB-EINDT. "deldate.&lt;/P&gt;&lt;P&gt;        I_EKES-XBLNR = ITAB-XBLNR.&lt;/P&gt;&lt;P&gt;        i_ekes-erdat = sy-datum.&lt;/P&gt;&lt;P&gt;        i_ekes-ezeit = sy-uzeit.&lt;/P&gt;&lt;P&gt;        APPEND i_ekes.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;  ENDIF.&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; To update the confirmations tab&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'ME_CONFIRMATION_UPDATE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      I_EBELN = PONUMBER&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      XEKES   = i_ekes[].&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        YEKES         = I_EKES[].&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;    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'DEQUEUE_E_TABLE'&lt;/P&gt;&lt;P&gt; EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MODE_RSTABLE       = 'E'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   TABNAME            = EKES.&lt;/P&gt;&lt;P&gt;   VARKEY             = VARKEY&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  X_TABNAME          = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  X_VARKEY           = ' '&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFUNCTION.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2007 15:07:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/lock-object-for-table-ekes/m-p/2140573#M450876</guid>
      <dc:creator>pkch</dc:creator>
      <dc:date>2007-04-13T15:07:48Z</dc:date>
    </item>
    <item>
      <title>Re: Lock object for table EKES</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/lock-object-for-table-ekes/m-p/2140574#M450877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your TABNAME field is of different type.  You have to use the following for the tabname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : ls_tabname type RSTABLE-TABNAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hith.&lt;/P&gt;&lt;P&gt;Sunil Achyut&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2007 17:13:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/lock-object-for-table-ekes/m-p/2140574#M450877</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-13T17:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: Lock object for table EKES</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/lock-object-for-table-ekes/m-p/2140575#M450878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When creating a lock object, we have the key fields of a table as lock parameters. Does that mean that we cant make changes only to those fields or any fields of the table?&lt;/P&gt;&lt;P&gt;I'm trying to lock table EKES, but not making any changes in the key fields, i'm trying to update other fields.....still I cant see the lock activated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 14:11:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/lock-object-for-table-ekes/m-p/2140575#M450878</guid>
      <dc:creator>pkch</dc:creator>
      <dc:date>2007-04-16T14:11:39Z</dc:date>
    </item>
  </channel>
</rss>

