<?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: modify DB table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-db-table/m-p/1937532#M387562</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TABLES : MSEG.&lt;/P&gt;&lt;P&gt;DATA : TB_MSEG LIKE STANDARD TABLE OF MSEG INITIAL SIZE 0 WITH HEADER&lt;/P&gt;&lt;P&gt;LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM MSEG&lt;/P&gt;&lt;P&gt;INTO TABLE TB_MSEG&lt;/P&gt;&lt;P&gt;WHERE CHARG = 'ADK309'&lt;/P&gt;&lt;P&gt;AND MBLNR = '6910003275'.&lt;/P&gt;&lt;P&gt;LOOP AT TB_MSEG.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;TB_MSEG-J_2CMANF = '100'.&lt;/P&gt;&lt;P&gt;TB_MSEG-J_2CMEND = '3698'.&lt;/P&gt;&lt;P&gt;MODITY TB_MSEG INDEX SY-TABIX.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;MODIFY MSEG FROM TABLE TB_MSEG&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;WRITE : / 'SUCCESFUYL'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 17 Feb 2007 11:58:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-17T11:58:06Z</dc:date>
    <item>
      <title>modify DB table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-db-table/m-p/1937531#M387561</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 using the following code to modify the table MSEG&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : MSEG.&lt;/P&gt;&lt;P&gt;DATA : TB_MSEG LIKE STANDARD TABLE OF MSEG INITIAL SIZE 0 WITH HEADER&lt;/P&gt;&lt;P&gt;       LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT * FROM MSEG&lt;/P&gt;&lt;P&gt;           INTO TABLE TB_MSEG&lt;/P&gt;&lt;P&gt;           WHERE CHARG = 'ADK309'&lt;/P&gt;&lt;P&gt;           AND   MBLNR = '6910003275'.&lt;/P&gt;&lt;P&gt;LOOP AT TB_MSEG.&lt;/P&gt;&lt;P&gt;  MSEG-J_2CMANF = '100'.&lt;/P&gt;&lt;P&gt;  MSEG-J_2CMEND = '3698'.&lt;/P&gt;&lt;P&gt;  MODIFY MSEG FROM TABLE TB_MSEG.&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;    WRITE : / 'SUCCESFUYL'.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but its not happening.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can u help me with this please???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Feb 2007 11:01:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-db-table/m-p/1937531#M387561</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-17T11:01:19Z</dc:date>
    </item>
    <item>
      <title>Re: modify DB table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-db-table/m-p/1937532#M387562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TABLES : MSEG.&lt;/P&gt;&lt;P&gt;DATA : TB_MSEG LIKE STANDARD TABLE OF MSEG INITIAL SIZE 0 WITH HEADER&lt;/P&gt;&lt;P&gt;LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM MSEG&lt;/P&gt;&lt;P&gt;INTO TABLE TB_MSEG&lt;/P&gt;&lt;P&gt;WHERE CHARG = 'ADK309'&lt;/P&gt;&lt;P&gt;AND MBLNR = '6910003275'.&lt;/P&gt;&lt;P&gt;LOOP AT TB_MSEG.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;TB_MSEG-J_2CMANF = '100'.&lt;/P&gt;&lt;P&gt;TB_MSEG-J_2CMEND = '3698'.&lt;/P&gt;&lt;P&gt;MODITY TB_MSEG INDEX SY-TABIX.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;MODIFY MSEG FROM TABLE TB_MSEG&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;WRITE : / 'SUCCESFUYL'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Feb 2007 11:58:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-db-table/m-p/1937532#M387562</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-17T11:58:06Z</dc:date>
    </item>
  </channel>
</rss>

