<?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: Function module - Update module - import parameter - Dynamic - (Update task) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-update-module-import-parameter-dynamic-update-task/m-p/698644#M31666</link>
    <description>&lt;P&gt;Dear Keller,&lt;/P&gt;
  &lt;P&gt;Yes i have tried as you suggested by passing as XSTRING in the IMPORT parameter.&lt;/P&gt;
  &lt;P&gt;Whenever i try in debugging it is updating the table. But if i execute it is not updating the table.&lt;/P&gt;</description>
    <pubDate>Wed, 08 Aug 2018 15:16:11 GMT</pubDate>
    <dc:creator>ragunathan1985</dc:creator>
    <dc:date>2018-08-08T15:16:11Z</dc:date>
    <item>
      <title>Function module - Update module - import parameter - Dynamic - (Update task)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-update-module-import-parameter-dynamic-update-task/m-p/698640#M31662</link>
      <description>&lt;P&gt;Dear Experts,&lt;/P&gt;
  &lt;P&gt;I have created the function module with the type 'UPDATE MODULE - START IMMEDIATE' Option in attribute tab of the function module.&lt;/P&gt;
  &lt;P&gt;To handle the data base operation INSERT and DELETE in a single SAP LUW to have the database consistency for the updates.&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;But this function module should have the IMPORT parameter dynamic to update the tables. Since in the program flow only the table name for which INSERT or DELETE have to be taken place will be decided. &lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;In the import tab it is not allowing the generic type declaration (ex. TYPE any or table). &lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;1) Is there any other work around possible to achieve this scenario using the function modules - update module - start immediate ?&lt;/P&gt;
  &lt;P&gt;2) Any other concept available to achieve the requirement.&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;Thanks in Advance.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2018 07:09:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-update-module-import-parameter-dynamic-update-task/m-p/698640#M31662</guid>
      <dc:creator>ragunathan1985</dc:creator>
      <dc:date>2018-08-07T07:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: Function module - Update module - import parameter - Dynamic - (Update task)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-update-module-import-parameter-dynamic-update-task/m-p/698641#M31663</link>
      <description>&lt;P&gt;There are many ways to achieve such tasks but you need some ABAP skills.&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;E.g., your IMPORT parameter could be an XSTRING to which you EXPORT or serialize everything you need and you IMPORT or deserialize it in the FM from that data cluster again. Then, you create your internal tables from that data.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2018 07:53:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-update-module-import-parameter-dynamic-update-task/m-p/698641#M31663</guid>
      <dc:creator>retired_member</dc:creator>
      <dc:date>2018-08-07T07:53:55Z</dc:date>
    </item>
    <item>
      <title>Re: Function module - Update module - import parameter - Dynamic - (Update task)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-update-module-import-parameter-dynamic-update-task/m-p/698642#M31664</link>
      <description>&lt;P&gt;I think i found a blog which does similar to what Keller said.&lt;/P&gt;
  &lt;P&gt;&lt;A href="https://blogs.sap.com/2012/02/23/abap-objects-model-processing-luw-via-update-task/" target="test_blank"&gt;https://blogs.sap.com/2012/02/23/abap-objects-model-processing-luw-via-update-task/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2018 10:08:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-update-module-import-parameter-dynamic-update-task/m-p/698642#M31664</guid>
      <dc:creator>maheshpalavalli</dc:creator>
      <dc:date>2018-08-07T10:08:02Z</dc:date>
    </item>
    <item>
      <title>Re: Function module - Update module - import parameter - Dynamic - (Update task)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-update-module-import-parameter-dynamic-update-task/m-p/698643#M31665</link>
      <description>&lt;P&gt;Hi, Consider TYPE REF TO Data as well as field-symbols (Standard Table) to assign it&lt;/P&gt;
  &lt;P&gt; in FM as below example.&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;...
*Interface Parameter 
it_table TYPE REF TO data 
...
*ABAP Statements
FIELD-SYMBOLS: &amp;lt;lfs_table&amp;gt; TYPE STANDARD TABLE.
ASSIGN it_table-&amp;gt;* TO &amp;lt;lfs_table&amp;gt;.
...&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2018 17:14:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-update-module-import-parameter-dynamic-update-task/m-p/698643#M31665</guid>
      <dc:creator>roberto_forti</dc:creator>
      <dc:date>2018-08-07T17:14:40Z</dc:date>
    </item>
    <item>
      <title>Re: Function module - Update module - import parameter - Dynamic - (Update task)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-update-module-import-parameter-dynamic-update-task/m-p/698644#M31666</link>
      <description>&lt;P&gt;Dear Keller,&lt;/P&gt;
  &lt;P&gt;Yes i have tried as you suggested by passing as XSTRING in the IMPORT parameter.&lt;/P&gt;
  &lt;P&gt;Whenever i try in debugging it is updating the table. But if i execute it is not updating the table.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Aug 2018 15:16:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-update-module-import-parameter-dynamic-update-task/m-p/698644#M31666</guid>
      <dc:creator>ragunathan1985</dc:creator>
      <dc:date>2018-08-08T15:16:11Z</dc:date>
    </item>
  </channel>
</rss>

