<?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: EVENT PARAMETER VALUES. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/event-parameter-values/m-p/985676#M72935</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;What you have to do then is, create an element in your event container of type BUS2105 (purch req).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then create an instance in your user exit for this purch req with&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lv_objkey = purchreqnumber &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SWC_CREATE_OBJECT lo_purchreq 'BUS2105' lv_objkey.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then pass this object to event container&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Aug 2005 11:22:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-08-25T11:22:39Z</dc:date>
    <item>
      <title>EVENT PARAMETER VALUES.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/event-parameter-values/m-p/985673#M72932</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;Cud anyone guide me as to how to pass values to the event parameters created by me in a BUSINESS OBJECT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To be more precise: I have created an event with some parameters in it in a Z-Object. Now thru Select query, want to assign values to the event parameters from DB-tables. But unable to access event parameters in the object-program thru object-(parameter-name).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cud anyone guide me as to how to do the same else any other way out?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sudipto.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Aug 2005 10:51:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/event-parameter-values/m-p/985673#M72932</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-25T10:51:13Z</dc:date>
    </item>
    <item>
      <title>Re: EVENT PARAMETER VALUES.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/event-parameter-values/m-p/985674#M72933</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;You can use the FM SWE_EVENT_CREATE to trigger the event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When calling you can use the tables parameter EVENT_CONTAINER to populate the event container.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With the macro below you initialize the event container&lt;/P&gt;&lt;P&gt;SWC_CREATE_CONTAINER event_contaier&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with the macro below you add/set elements to the container&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SWC_SET_ELEMENT event_container 'ELEMENT1' 'VALUE1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This must be it...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Aug 2005 11:06:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/event-parameter-values/m-p/985674#M72933</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-25T11:06:13Z</dc:date>
    </item>
    <item>
      <title>Re: EVENT PARAMETER VALUES.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/event-parameter-values/m-p/985675#M72934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually event is getting triggered from MIGO User Exit. But I want the values of the Purchase Requisitioner's id to be passed to my workflow. So have to program the same in my Object's program .ie. ZMKPF's program. But unable to access the same in the obejct program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So cud anyone suggest how to access the same.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Aug 2005 11:13:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/event-parameter-values/m-p/985675#M72934</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-25T11:13:30Z</dc:date>
    </item>
    <item>
      <title>Re: EVENT PARAMETER VALUES.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/event-parameter-values/m-p/985676#M72935</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;What you have to do then is, create an element in your event container of type BUS2105 (purch req).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then create an instance in your user exit for this purch req with&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lv_objkey = purchreqnumber &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SWC_CREATE_OBJECT lo_purchreq 'BUS2105' lv_objkey.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then pass this object to event container&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Aug 2005 11:22:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/event-parameter-values/m-p/985676#M72935</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-25T11:22:39Z</dc:date>
    </item>
    <item>
      <title>Re: EVENT PARAMETER VALUES.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/event-parameter-values/m-p/985677#M72936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;&lt;P&gt;Cudn't test it but feel ur solution will solve my prob.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SuB.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Aug 2005 06:14:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/event-parameter-values/m-p/985677#M72936</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-29T06:14:22Z</dc:date>
    </item>
  </channel>
</rss>

