<?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: IPRM0003 exit, Function module EXIT_SAPLIWOL_031 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/iprm0003-exit-function-module-exit-sapliwol-031/m-p/6919738#M1484062</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@takeabyte&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For ECC 6.0, to me it seems yes you are supposed to append structure STCI_MPOS  OR I think you create the structure CI_MPOS because it seems it doesn't exist as a default!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then the user-exit will take your new fields to the program. The field names must be one of the field name of type WC_WMPOS of type group WC.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Apr 2010 16:42:02 GMT</pubDate>
    <dc:creator>TuncayKaraca</dc:creator>
    <dc:date>2010-04-28T16:42:02Z</dc:date>
    <item>
      <title>IPRM0003 exit, Function module EXIT_SAPLIWOL_031</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iprm0003-exit-function-module-exit-sapliwol-031/m-p/6919737#M1484061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement to add some custom fields to the Customer Enhancement tab via this exit. I followed the documentation to get the customer tab added, and the screen fields are now visible. I also created the CI_MPOS structure and added the necessary fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To my understanding, the function module EXIT_SAPLIWP3_002 is used to get the screen fields and add them to the MPOS table, which I programmed already. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I need now is to use 031 "for data transfer of the customer-specific fields to the call object notification," but I'm not sure how to do this. The fields it imports are a VIQMEL structure, a WC_WMPOS structure, and it exports STCI_QMEL, but the exporting parameter does not include the custom fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The question is, am I supposed to use Append structure to add CI_MPOS to STCI_QMEL in order to add my fields to the notification?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Juan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: takeabyte on Apr 28, 2010 5:22 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Apr 2010 15:18:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iprm0003-exit-function-module-exit-sapliwol-031/m-p/6919737#M1484061</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-28T15:18:51Z</dc:date>
    </item>
    <item>
      <title>Re: IPRM0003 exit, Function module EXIT_SAPLIWOL_031</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iprm0003-exit-function-module-exit-sapliwol-031/m-p/6919738#M1484062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@takeabyte&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For ECC 6.0, to me it seems yes you are supposed to append structure STCI_MPOS  OR I think you create the structure CI_MPOS because it seems it doesn't exist as a default!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then the user-exit will take your new fields to the program. The field names must be one of the field name of type WC_WMPOS of type group WC.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Apr 2010 16:42:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iprm0003-exit-function-module-exit-sapliwol-031/m-p/6919738#M1484062</guid>
      <dc:creator>TuncayKaraca</dc:creator>
      <dc:date>2010-04-28T16:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: IPRM0003 exit, Function module EXIT_SAPLIWOL_031</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iprm0003-exit-function-module-exit-sapliwol-031/m-p/6919739#M1484063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Tuncay for your quick reply, but I think you may have misunderstood my question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The fields already appear in the standard transactions, and I can retrieve the values from the user; the question now is sending those values to the notification via EXIT_SAPLIWOL_031.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not sure if I'm supposed to add my include (CI_MPOS with the new fields) to this structure, and then just simply copy them over to the exporting parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edit: This is in ECC 6.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: takeabyte on Apr 29, 2010 4:21 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Apr 2010 17:02:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iprm0003-exit-function-module-exit-sapliwol-031/m-p/6919739#M1484063</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-28T17:02:02Z</dc:date>
    </item>
    <item>
      <title>Re: IPRM0003 exit, Function module EXIT_SAPLIWOL_031</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iprm0003-exit-function-module-exit-sapliwol-031/m-p/6919740#M1484064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just tried appending the CI_MPOS include to the stci_viqmel structure with no luck...I imagine I would need to create a structure the same as the ci_mpos include and then try to include that instead of the ci_mpos include directly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I still don't know if this is the correct way to copy the maintenance fields to the notification though.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Apr 2010 17:28:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iprm0003-exit-function-module-exit-sapliwol-031/m-p/6919740#M1484064</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-29T17:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: IPRM0003 exit, Function module EXIT_SAPLIWOL_031</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iprm0003-exit-function-module-exit-sapliwol-031/m-p/6919741#M1484065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Juan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you finally found a solution to your problem? I am in the same situation and not sure if I should do that append. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Appreciate your help on this topic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ganesh Khumse&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2012 04:48:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iprm0003-exit-function-module-exit-sapliwol-031/m-p/6919741#M1484065</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-10-08T04:48:10Z</dc:date>
    </item>
  </channel>
</rss>

