<?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: regarding modify and update in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-modify-and-update/m-p/3469325#M833960</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;refer to the thread.&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="747513"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;sreelakshmi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Mar 2008 04:13:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-05T04:13:31Z</dc:date>
    <item>
      <title>regarding modify and update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-modify-and-update/m-p/3469323#M833958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi everybody,&lt;/P&gt;&lt;P&gt;  what is modify and update.&lt;/P&gt;&lt;P&gt; what is diffrence between them.&lt;/P&gt;&lt;P&gt;can you please give examples for both separately and compare them&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2008 04:10:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-modify-and-update/m-p/3469323#M833958</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-05T04:10:45Z</dc:date>
    </item>
    <item>
      <title>Re: regarding modify and update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-modify-and-update/m-p/3469324#M833959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Update Modify Insert stmts we use when we want to do some change / Insertion&lt;/P&gt;&lt;P&gt;(1) to database table from internal table or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(2) from work area to internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;( AA ) Update &lt;/P&gt;&lt;P&gt;If the intended record in the internal table is found in databse table means it will just update that record.&lt;/P&gt;&lt;P&gt;syntax to update database table from itab:::::&lt;/P&gt;&lt;P&gt;UPDATE dbtab FROM TABLE itab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Changes to lines made with the UPDATE command only becomefinal after a database commit &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Without using internal table we can update database table directly as shown below:::::::::::::::::::::&lt;/P&gt;&lt;P&gt;TABLES SFLIGHT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPDATE SFLIGHT SET SEATSOCC = SEATSOCC + 3 &lt;/P&gt;&lt;P&gt;WHERE CARRID = 'LH' AND &lt;/P&gt;&lt;P&gt;CONNID = '0400' AND &lt;/P&gt;&lt;P&gt;FLDATE = '19950228'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;( BB ) Modify is used to insert new record if the record doesnt exist in datbase table.system check this on primary key basis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the intended record in the internal table is found in databse table means it will just update that record.So here its equal to UPDATE stmt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For changes to database table we use syntax as below ::::&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY DatabaseTable FROM TABLE itab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For changes to Internal table we use syntax as below ::::&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY itab FROM wa INDEX idx. &lt;/P&gt;&lt;P&gt;&lt;A href="http://TRANSPORTING" target="test_blank"&gt;http://TRANSPORTING&lt;/A&gt; f1 ... fn WHERE cond. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;( CC ) Insert stmt is used to insert New records into databse table from internal table or to internal table from work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By default, data is only inserted in the current client. However, ifyou use the CLIENT SPECIFIED addition, you can switch off theautomatic client handling.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You cannot insert a table line if the table alreadycontains a record with the same primary key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax::::::::::&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT INTO dbtab CLIENT SPECIFIED VALUES wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT (dbtabname) CLIENT SPECIFIED FROM TABLE itab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example &lt;/P&gt;&lt;P&gt;Adding customer "Robinson" to client 002: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES SCUSTOM. &lt;/P&gt;&lt;P&gt;SCUSTOM-MANDT = '002'. &lt;/P&gt;&lt;P&gt;SCUSTOM-ID = '12400177'. &lt;/P&gt;&lt;P&gt;SCUSTOM-NAME = 'Robinson'. &lt;/P&gt;&lt;P&gt;SCUSTOM-POSTCODE = '69542'. &lt;/P&gt;&lt;P&gt;SCUSTOM-CITY = 'Heidelberg'. &lt;/P&gt;&lt;P&gt;SCUSTOM-CUSTTYPE = 'P'. &lt;/P&gt;&lt;P&gt;SCUSTOM-DISCOUNT = '003'. &lt;/P&gt;&lt;P&gt;SCUSTOM-TELEPHONE = '01234/56789'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT INTO SCUSTOM CLIENT SPECIFIED VALUES SCUSTOM. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="4609771"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="4675463"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/message/4622903#4622903 &lt;B&gt;[original link is broken]&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward points if helpful....&lt;/P&gt;&lt;P&gt;Gaurav J.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2008 04:13:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-modify-and-update/m-p/3469324#M833959</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-05T04:13:17Z</dc:date>
    </item>
    <item>
      <title>Re: regarding modify and update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-modify-and-update/m-p/3469325#M833960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;refer to the thread.&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="747513"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;sreelakshmi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2008 04:13:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-modify-and-update/m-p/3469325#M833960</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-05T04:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: regarding modify and update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-modify-and-update/m-p/3469326#M833961</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;MODIFY - Will update the table, if the data already exists, if NOT inserts new rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPDATE - Will update the table, errors out if the data is not found.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case of MODIFY the sy-subrc is always 0 so you would't know whether the data is actually updated or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT - Inserting Data in Database Tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Variants:&lt;/P&gt;&lt;P&gt;1. INSERT INTO dbtab CLIENT SPECIFIED VALUES wa.&lt;/P&gt;&lt;P&gt;INSERT INTO (dbtabname) CLIENT SPECIFIED VALUES wa.&lt;/P&gt;&lt;P&gt;2. INSERT dbtab CLIENT SPECIFIED FROM TABLE itab. oder&lt;/P&gt;&lt;P&gt;INSERT (dbtabname) CLIENT SPECIFIED FROM TABLE itab.&lt;/P&gt;&lt;P&gt;3. INSERT dbtab CLIENT SPECIFIED. oder&lt;/P&gt;&lt;P&gt;INSERT *dbtab CLIENT SPECIFIED. oder&lt;/P&gt;&lt;P&gt;INSERT (dbtabname) CLIENT SPECIFIED ... .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect Adds new records to a database table (see relational&lt;/P&gt;&lt;P&gt;database). You can specify the name of the database table&lt;/P&gt;&lt;P&gt;either directly in the program in the form dbtab or at runtime&lt;/P&gt;&lt;P&gt;as the contents of the field dbtabname. In either case, the&lt;/P&gt;&lt;P&gt;database table must be declared in the ABAP Dictionary. You&lt;/P&gt;&lt;P&gt;can only insert data using a view if the view refers to a&lt;/P&gt;&lt;P&gt;single table and has the maintenance status "No restriction"&lt;/P&gt;&lt;P&gt;in the ABAP Dictionary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By default, data is only inserted in the current client.&lt;/P&gt;&lt;P&gt;However, if you use the CLIENT SPECIFIED addition, you can&lt;/P&gt;&lt;P&gt;switch off the automatic client handling. This enables you to&lt;/P&gt;&lt;P&gt;enter data for any client in a cross-client table, not just in&lt;/P&gt;&lt;P&gt;the client in which you are logged on. In this case, the&lt;/P&gt;&lt;P&gt;client field is treated like a normal field to which you can&lt;/P&gt;&lt;P&gt;assign a value in the work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY - Change a database table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Variants:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. MODIFY dbtab. or&lt;/P&gt;&lt;P&gt;MODIFY *dbtab. or&lt;/P&gt;&lt;P&gt;MODIFY (dbtabname) ... ..&lt;/P&gt;&lt;P&gt;2. MODIFY dbtab FROM TABLE itab. or&lt;/P&gt;&lt;P&gt;MODIFY (dbtabname) FROM TABLE itab.&lt;/P&gt;&lt;P&gt;3. MODIFY dbtab VERSION vers. or&lt;/P&gt;&lt;P&gt;MODIFY *dbtab VERSION vers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect Inserts new lines or updates existing lines in a database&lt;/P&gt;&lt;P&gt;table (s. relational database). If a line with the specified&lt;/P&gt;&lt;P&gt;primary key already exists, an UPDATE is executed. Otherwise,&lt;/P&gt;&lt;P&gt;an INSERT is performed. You can specify the name of the&lt;/P&gt;&lt;P&gt;database table either in the program itself in the form MODIFY&lt;/P&gt;&lt;P&gt;dbtab ... or at runtime as the contents of the field dbtabname&lt;/P&gt;&lt;P&gt;in the form MODIFY (dbtabname) ... . In both cases, the&lt;/P&gt;&lt;P&gt;database table must be defined in the ABAP Dictionary.&lt;/P&gt;&lt;P&gt;Normally, records are inserted or updated only in the current&lt;/P&gt;&lt;P&gt;client. Data can only be inserted or updated using a view, if&lt;/P&gt;&lt;P&gt;the view refers to a single table and was created in the ABAP&lt;/P&gt;&lt;P&gt;Dictionary with the maintenance status "No restriction".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY belongs to the Open SQL command set.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the statement has been executed, the system field&lt;/P&gt;&lt;P&gt;SY-DBCNT contains the number of edited lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'Insert' will add a new record or a new row into the database table.&lt;/P&gt;&lt;P&gt;'Update' will modify a record in the DB table.&lt;/P&gt;&lt;P&gt;'Modify' it is a combination of both insert and update...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also check these links&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPDATE-&amp;gt;&lt;/P&gt;&lt;P&gt;Bundling using Function Modules for Updates&lt;/P&gt;&lt;P&gt;If you call a function module using the statement CALL FUNCTION ... IN UPDATE TASK, the function module is flagged for execution using a special update work process. This means that you can write the Open SQL statements for the database changes in the function module instead of in your program, and call the function module at the point in the program where you would otherwise have included the statements. When you call a function module using the IN UPDATE TASKaddition, it and its interface parameters are stored as a log entry in a special database table called VBLOG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The function module is executed using an update work process when the program reaches the COMMIT WORKstatement. After the COMMIT WORKstatement, the dialog work process is free to receive further user input. The update work process is responsible for the update part of the SAP LUW. The statement COMMIT WORKcloses the SAP LUW for the dialog part of the program and starts the update. The SAP LUW is complete once the update process has committed or rolled back all of the database changes. Bundling using function modules is called Update.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/41/7af4bfa79e11d1950f0000e82de14a/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/41/7af4bfa79e11d1950f0000e82de14a/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY-&amp;gt;&lt;/P&gt;&lt;P&gt;To modify the lines of a completed list from within the program, use the MODIFY LINE statement. There are two ways to specify the line you want to modify:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;· Explicitly:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY LINE n OF CURRENT PAGE&lt;/P&gt;&lt;P&gt;modifications.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can refer to the line most recently read:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY CURRENT LINE modifications.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement modifies the line most recently read by means of line selection (F2) or read by the READ LINE statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Apart from the ones described above, the modificationsaddition contains several other possibilities to modify the line. For more information on this and on the individual additions of the MODIFY LINEstatement , refer to the keyword documentation.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dba4b235c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dba4b235c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check out the thread&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2008 04:13:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-modify-and-update/m-p/3469326#M833961</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-05T04:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: regarding modify and update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-modify-and-update/m-p/3469327#M833962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friend,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY = UPDATE or INSERT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The statement UPDATE only changes an existing DB entry otherwise sy-subrc 0&lt;/P&gt;&lt;P&gt;The statement MODIFY updates an existing DB entry or, in no matching entry exists, inserts a new entry into the DB table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Swetha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2008 04:15:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-modify-and-update/m-p/3469327#M833962</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-05T04:15:22Z</dc:date>
    </item>
    <item>
      <title>Re: regarding modify and update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-modify-and-update/m-p/3469328#M833963</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;Main difference:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY = UPDATE or INSERT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The statement UPDATE only changes an existing DB entry otherwise sy-subrc 0&lt;/P&gt;&lt;P&gt;The statement MODIFY updates an existing DB entry or, in no matching entry exists, inserts a new entry into the DB table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Modify and Update:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY - Will update the table, if the data already exists, if NOT inserts new rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPDATE - Will update the table, errors out if the data is not found.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case of MODIFY the sy-subrc is always 0 so you would't know whether the data is actually updated or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT - Inserting Data in Database Tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Variants:&lt;/P&gt;&lt;P&gt;1. INSERT INTO dbtab CLIENT SPECIFIED VALUES wa.&lt;/P&gt;&lt;P&gt;INSERT INTO (dbtabname) CLIENT SPECIFIED VALUES wa.&lt;/P&gt;&lt;P&gt;2. INSERT dbtab CLIENT SPECIFIED FROM TABLE itab. oder&lt;/P&gt;&lt;P&gt;INSERT (dbtabname) CLIENT SPECIFIED FROM TABLE itab.&lt;/P&gt;&lt;P&gt;3. INSERT dbtab CLIENT SPECIFIED. oder&lt;/P&gt;&lt;P&gt;INSERT *dbtab CLIENT SPECIFIED. oder&lt;/P&gt;&lt;P&gt;INSERT (dbtabname) CLIENT SPECIFIED ... .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect Adds new records to a database table (see relational&lt;/P&gt;&lt;P&gt;database). You can specify the name of the database table&lt;/P&gt;&lt;P&gt;either directly in the program in the form dbtab or at runtime&lt;/P&gt;&lt;P&gt;as the contents of the field dbtabname. In either case, the&lt;/P&gt;&lt;P&gt;database table must be declared in the ABAP Dictionary. You&lt;/P&gt;&lt;P&gt;can only insert data using a view if the view refers to a&lt;/P&gt;&lt;P&gt;single table and has the maintenance status "No restriction"&lt;/P&gt;&lt;P&gt;in the ABAP Dictionary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By default, data is only inserted in the current client.&lt;/P&gt;&lt;P&gt;However, if you use the CLIENT SPECIFIED addition, you can&lt;/P&gt;&lt;P&gt;switch off the automatic client handling. This enables you to&lt;/P&gt;&lt;P&gt;enter data for any client in a cross-client table, not just in&lt;/P&gt;&lt;P&gt;the client in which you are logged on. In this case, the&lt;/P&gt;&lt;P&gt;client field is treated like a normal field to which you can&lt;/P&gt;&lt;P&gt;assign a value in the work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY - Change a database table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Variants:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. MODIFY dbtab. or&lt;/P&gt;&lt;P&gt;MODIFY *dbtab. or&lt;/P&gt;&lt;P&gt;MODIFY (dbtabname) ... ..&lt;/P&gt;&lt;P&gt;2. MODIFY dbtab FROM TABLE itab. or&lt;/P&gt;&lt;P&gt;MODIFY (dbtabname) FROM TABLE itab.&lt;/P&gt;&lt;P&gt;3. MODIFY dbtab VERSION vers. or&lt;/P&gt;&lt;P&gt;MODIFY *dbtab VERSION vers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect Inserts new lines or updates existing lines in a database&lt;/P&gt;&lt;P&gt;table (s. relational database). If a line with the specified&lt;/P&gt;&lt;P&gt;primary key already exists, an UPDATE is executed. Otherwise,&lt;/P&gt;&lt;P&gt;an INSERT is performed. You can specify the name of the&lt;/P&gt;&lt;P&gt;database table either in the program itself in the form MODIFY&lt;/P&gt;&lt;P&gt;dbtab ... or at runtime as the contents of the field dbtabname&lt;/P&gt;&lt;P&gt;in the form MODIFY (dbtabname) ... . In both cases, the&lt;/P&gt;&lt;P&gt;database table must be defined in the ABAP Dictionary.&lt;/P&gt;&lt;P&gt;Normally, records are inserted or updated only in the current&lt;/P&gt;&lt;P&gt;client. Data can only be inserted or updated using a view, if&lt;/P&gt;&lt;P&gt;the view refers to a single table and was created in the ABAP&lt;/P&gt;&lt;P&gt;Dictionary with the maintenance status "No restriction".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY belongs to the Open SQL command set.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the statement has been executed, the system field&lt;/P&gt;&lt;P&gt;SY-DBCNT contains the number of edited lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'Insert' will add a new record or a new row into the database table.&lt;/P&gt;&lt;P&gt;'Update' will modify a record in the DB table.&lt;/P&gt;&lt;P&gt;'Modify' it is a combination of both insert and update...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also check these links&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPDATE-&amp;gt;&lt;/P&gt;&lt;P&gt;Bundling using Function Modules for Updates&lt;/P&gt;&lt;P&gt;If you call a function module using the statement CALL FUNCTION ... IN UPDATE TASK, the function module is flagged for execution using a special update work process. This means that you can write the Open SQL statements for the database changes in the function module instead of in your program, and call the function module at the point in the program where you would otherwise have included the statements. When you call a function module using the IN UPDATE TASKaddition, it and its interface parameters are stored as a log entry in a special database table called VBLOG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The function module is executed using an update work process when the program reaches the COMMIT WORKstatement. After the COMMIT WORKstatement, the dialog work process is free to receive further user input. The update work process is responsible for the update part of the SAP LUW. The statement COMMIT WORKcloses the SAP LUW for the dialog part of the program and starts the update. The SAP LUW is complete once the update process has committed or rolled back all of the database changes. Bundling using function modules is called Update.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/41/7af4bfa79e11d1950f0000e82de14a/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/41/7af4bfa79e11d1950f0000e82de14a/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY-&amp;gt;&lt;/P&gt;&lt;P&gt;To modify the lines of a completed list from within the program, use the MODIFY LINE statement. There are two ways to specify the line you want to modify:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;· Explicitly:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY LINE n OF CURRENT PAGE&lt;/P&gt;&lt;P&gt;modifications.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can refer to the line most recently read:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY CURRENT LINE modifications.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement modifies the line most recently read by means of line selection (F2) or read by the READ LINE statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Apart from the ones described above, the modificationsaddition contains several other possibilities to modify the line. For more information on this and on the individual additions of the MODIFY LINEstatement , refer to the keyword documentation.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dba4b235c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dba4b235c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check out the thread&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;vasavi.&lt;/P&gt;&lt;P&gt;kindly reward if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2008 04:18:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-modify-and-update/m-p/3469328#M833963</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-05T04:18:19Z</dc:date>
    </item>
    <item>
      <title>Re: regarding modify and update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-modify-and-update/m-p/3469329#M833964</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;&lt;STRONG&gt;MODIFY&lt;/STRONG&gt; - Will  modify the table, if the data already exists, if NOT inserts new rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;MODIFY for Database Tables&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inserts or changes lines in database tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;Syntax&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MODIFY &amp;lt;dbtab&amp;gt; FROM &amp;lt;wa&amp;gt;.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MODIFY &amp;lt;dbtab&amp;gt; FROM TABLE &amp;lt;itab&amp;gt;.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           Works like INSERT for database tables, if there is not yet a line in the table with the same primary key. Works like UPDATE if a line already exists with the same primary key. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;MODIFY for any Internal Table&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Changes the content of lines in internal tables of any type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;Syntax&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MODIFY TABLE &amp;lt;itab&amp;gt; FROM &amp;lt;wa&amp;gt; [TRANSPORTING &amp;lt;f1&amp;gt; &amp;lt;f 2&amp;gt;...]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;                              &lt;STRONG&gt;[ASSIGNING &amp;lt;FS&amp;gt; | REFERENCE INTO &amp;lt;dref&amp;gt;].&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;             Copies the work area &amp;lt;wa&amp;gt; into the line of the internal table with the same table key as &amp;lt;wa&amp;gt;. If you use ASSIGNING or INTO REFERENCE, field symbol &amp;lt;FS&amp;gt; refers to the modified line or the relevant data reference is stored in &amp;lt;dref&amp;gt; after the statement. You can use the TRANSPORTING addition to specify the exact components that you want to change. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;UPDATE&lt;/STRONG&gt; - Will update the table, errors out if the data is not found&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;UPDATE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Changes entries in database tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;Syntax&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;UPDATE &amp;lt;dbtab&amp;gt; SET  &amp;lt;si&amp;gt; = &amp;lt;f&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;                   &lt;STRONG&gt;|&amp;lt;si&amp;gt; = &amp;lt;s i&amp;gt; + &amp;lt;f&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;                   &lt;STRONG&gt;|&amp;lt;si&amp;gt; = &amp;lt;s i&amp;gt; - &amp;lt;f&amp;gt; [WHERE &amp;lt;cond&lt;/STRONG&gt;&amp;gt;].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The value in the column &amp;lt;si&amp;gt; is set to the value &amp;lt;f&amp;gt;, increases it by &amp;lt;f&amp;gt;, or decreases it by &amp;lt;f&amp;gt; for all lines selected. The WHERE clause specifies the lines that are changed. If you omit the WHERE clause, all lines are changed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;Syntax&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;UPDATE &amp;lt;dbtab&amp;gt; FROM &amp;lt;wa&amp;gt;.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;UPDATE &amp;lt;dbtab&amp;gt; FROM TABLE &amp;lt;itab&amp;gt;.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This deletes the line that has the same primary key as the work area &amp;lt;wa&amp;gt;, or deletes all the lines in the database that have the same primary key as a line in the internal table &amp;lt;itab&amp;gt;. The work area &amp;lt;wa&amp;gt; or the lines of the internal table &amp;lt;itab&amp;gt; must have at least the same length and alignment as the lines of the database table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;kavitha.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: kavitha koppada on Mar 5, 2008 5:31 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: kavitha koppada on Mar 5, 2008 5:32 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2008 04:30:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-modify-and-update/m-p/3469329#M833964</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-05T04:30:30Z</dc:date>
    </item>
    <item>
      <title>Re: regarding modify and update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-modify-and-update/m-p/3469330#M833965</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;MODIFY for Database Tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inserts or changes lines in database tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY &amp;lt;dbtab&amp;gt; FROM &amp;lt;wa&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY &amp;lt;dbtab&amp;gt; FROM TABLE &amp;lt;itab&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Works like INSERT for database tables, if there is not yet a line in the table with the same primary key. Works like UPDATE if a line already exists with the same primary key. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY for any Internal Table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Changes the content of lines in internal tables of any type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY TABLE &amp;lt;itab&amp;gt; FROM &amp;lt;wa&amp;gt; [TRANSPORTING &amp;lt;f1&amp;gt; &amp;lt;f 2&amp;gt;...] &lt;/P&gt;&lt;P&gt;                              [ASSIGNING &amp;lt;FS&amp;gt; | REFERENCE INTO &amp;lt;dref&amp;gt;].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Copies the work area &amp;lt;wa&amp;gt; into the line of the internal table with the same table key as &amp;lt;wa&amp;gt;. If you use ASSIGNING or INTO REFERENCE, field symbol &amp;lt;FS&amp;gt; refers to the modified line or the relevant data reference is stored in &amp;lt;dref&amp;gt; after the statement. You can use the TRANSPORTING addition to specify the exact components that you want to change. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY &amp;lt;itab&amp;gt; FROM &amp;lt;wa&amp;gt; TRANSPORTING &amp;lt;f1&amp;gt; &amp;lt;f 2&amp;gt;... WHERE &amp;lt;logexp&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Copies the work area &amp;lt;wa&amp;gt; into the line of the internal table for which the logical expression is true. In each comparison of the logical expression, the first operand must be a component of the line structure. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY for Index Tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Changes the content of lines in index tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY &amp;lt;itab&amp;gt; FROM &amp;lt;wa&amp;gt; [INDEX &amp;lt;idx&amp;gt;] [TRANSPORTING &amp;lt;f1&amp;gt; &amp;lt;f 2&amp;gt;...] &lt;/P&gt;&lt;P&gt;                        [ASSIGNING &amp;lt;FS&amp;gt; | REFERENCE INTO &amp;lt;dref&amp;gt;].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Copies the work area &amp;lt;wa&amp;gt; into the line of the internal table with the index &amp;lt;idx&amp;gt;. If you omit the INDEX addition, you can only use the statement within a LOOP. In this case, you change the current loop line If you use ASSIGNING or INTO REFERENCE, field symbol &amp;lt;FS&amp;gt; refers to the modified line or the relevant data reference is stored in &amp;lt;dref&amp;gt; after the statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY for Lists&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Changes a list line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY LINE &amp;lt;n&amp;gt; [INDEX &amp;lt;idx&amp;gt;] [OF CURRENT PAGE|OF PAGE &amp;lt;p&amp;gt;]&lt;/P&gt;&lt;P&gt;      |CURRENT LINE&lt;/P&gt;&lt;P&gt;      LINE FORMAT &amp;lt;option1&amp;gt; &amp;lt;option2&amp;gt;... &lt;/P&gt;&lt;P&gt;      FIELD VALUE &amp;lt;f1&amp;gt; [FROM &amp;lt;g1&amp;gt;] &amp;lt;f2&amp;gt; [FROM &amp;lt;g2&amp;gt;]... &lt;/P&gt;&lt;P&gt;      FIELD FORMAT &amp;lt;f1&amp;gt; &amp;lt;options1&amp;gt; &amp;lt;f2&amp;gt; &amp;lt;options2&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Changes either line &amp;lt;n&amp;gt; on the current or specified list (or page), or the last line to be chosen. The exact nature of the change is specified in the additions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY SCREEN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Changes the SCREEN table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY SCREEN...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like changing an internal table. The system table SCREEN contains the names and attributes of all of the fields on the current screen. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPDATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Changes entries in database tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPDATE &amp;lt;dbtab&amp;gt; SET  &amp;lt;si&amp;gt; = &amp;lt;f&amp;gt; &lt;/P&gt;&lt;P&gt;                   |&amp;lt;si&amp;gt; = &amp;lt;s i&amp;gt; + &amp;lt;f&amp;gt; &lt;/P&gt;&lt;P&gt;                   |&amp;lt;si&amp;gt; = &amp;lt;s i&amp;gt; - &amp;lt;f&amp;gt; [WHERE &amp;lt;cond&amp;gt;].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The value in the column &amp;lt;si&amp;gt; is set to the value &amp;lt;f&amp;gt;, increases it by &amp;lt;f&amp;gt;, or decreases it by &amp;lt;f&amp;gt; for all lines selected. The WHERE clause specifies the lines that are changed. If you omit the WHERE clause, all lines are changed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPDATE &amp;lt;dbtab&amp;gt; FROM &amp;lt;wa&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPDATE &amp;lt;dbtab&amp;gt; FROM TABLE &amp;lt;itab&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This deletes the line that has the same primary key as the work area &amp;lt;wa&amp;gt;, or deletes all the lines in the database that have the same primary key as a line in the internal table &amp;lt;itab&amp;gt;. The work area &amp;lt;wa&amp;gt; or the lines of the internal table &amp;lt;itab&amp;gt; must have at least the same length and alignment as the lines of the database table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Priya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2008 04:30:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-modify-and-update/m-p/3469330#M833965</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-05T04:30:53Z</dc:date>
    </item>
  </channel>
</rss>

