<?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: code help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-help/m-p/1123225#M109468</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;SAP will call the modification of your table in background mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgd&lt;/P&gt;&lt;P&gt;Frédéric&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Feb 2006 16:15:49 GMT</pubDate>
    <dc:creator>FredericGirod</dc:creator>
    <dc:date>2006-02-23T16:15:49Z</dc:date>
    <item>
      <title>code help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-help/m-p/1123223#M109466</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody just explain me the functionality ,my table is ZTVV6T and what will happen if i substitute the table name in the below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM KNVV_CHANGE_UPDATE.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Example: update additional table ZZZZ in a USER-function&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;The user-functions should be called 'IN UPDATE TASK'.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;CALL FUNCTION 'UPDATE_TABLE_ZZZZ' IN UPDATE TASK&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    EXPORTING TABLE_ZZZZ = ZZZZ.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Praneeth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 16:12:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-help/m-p/1123223#M109466</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-23T16:12:49Z</dc:date>
    </item>
    <item>
      <title>Re: code help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-help/m-p/1123224#M109467</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION update_function IN UPDATE TASK &lt;/P&gt;&lt;P&gt;                             [EXPORTING p1 = a1 p2 = a2 ...] &lt;/P&gt;&lt;P&gt;                             [TABLES t1 = itab1 t2 = itab2 ...]. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Extras: &lt;/P&gt;&lt;P&gt;1. ... EXPORTING p1 = a1 p2 = a2 ... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. ... TABLES t1 = itab1 t2 = itab2 ... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;This statement registers the update function module specified in update_function. update_function must be a character-type field, which during execution of the statement contains the name of an update function module in uppercase letters. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An update function module is a function module, for which in the Function Builder the property update module is marked. The registration of an update function module is an essential part of the update task. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The function module is not executed immediately, but is scheduled for execution in a special work process (update work process). For this purpose, the name of the function module including the passed actual parameters is stored as a log record in the database table VBLOG. If the statement is executed during the update task, the addition IN UPDATE TASK is ignored. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The actual execution is triggered by the statement COMMIT WORK. The formal parameters of the function module receive the values of the actual parameters from table VBLOG. A function module that is registered several times will also be excuted several times with the respective parameter values. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 1 &lt;/P&gt;&lt;P&gt;... EXPORTING p1 = a1 p2 = a2 ... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 2 &lt;/P&gt;&lt;P&gt;... TABLES t1 = itab1 t2 = itab2 ... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;The additions EXPORTING and TABLES have the same syntax and meaning as in the parameter_list of the general function module call, except that for EXPORTING, you can specify only actual parameters with a flat data type. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is quite clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shekhar Kulkarni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 16:15:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-help/m-p/1123224#M109467</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-23T16:15:32Z</dc:date>
    </item>
    <item>
      <title>Re: code help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-help/m-p/1123225#M109468</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;SAP will call the modification of your table in background mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgd&lt;/P&gt;&lt;P&gt;Frédéric&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 16:15:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-help/m-p/1123225#M109468</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2006-02-23T16:15:49Z</dc:date>
    </item>
    <item>
      <title>Re: code help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-help/m-p/1123226#M109469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That function module will update your ZTable in background.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 16:22:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-help/m-p/1123226#M109469</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-23T16:22:05Z</dc:date>
    </item>
  </channel>
</rss>

