<?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 user exit in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/2406990#M536601</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;helllo &lt;/P&gt;&lt;P&gt;  i have to create a pop-up in iw22 transaction,this pop-up triggers when i click on notification continue or closure button. in that pop-up there r 2 pushbuttons.when i click on one of the pushbuttons a check box(breakdown indicator) has to be checked in the same transaction and it should be displayed in the same screen.&lt;/P&gt;&lt;P&gt;how to handle this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 03 Jul 2007 12:11:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-03T12:11:33Z</dc:date>
    <item>
      <title>user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/2406990#M536601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;helllo &lt;/P&gt;&lt;P&gt;  i have to create a pop-up in iw22 transaction,this pop-up triggers when i click on notification continue or closure button. in that pop-up there r 2 pushbuttons.when i click on one of the pushbuttons a check box(breakdown indicator) has to be checked in the same transaction and it should be displayed in the same screen.&lt;/P&gt;&lt;P&gt;how to handle this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jul 2007 12:11:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/2406990#M536601</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-03T12:11:33Z</dc:date>
    </item>
    <item>
      <title>Re: user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/2406991#M536602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;          Here is some sample code to popup a dialog and recieve values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report zrich_0001 .&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;data: ivals type table of sval with header line.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;data: x_datum type sy-datum,&lt;/P&gt;&lt;P&gt;      x_uzeit type sy-uzeit.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  ivals-tabname = 'SYST'.&lt;/P&gt;&lt;P&gt;  ivals-fieldname = 'DATUM'.&lt;/P&gt;&lt;P&gt;  append ivals.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  ivals-tabname = 'SYST'.&lt;/P&gt;&lt;P&gt;  ivals-fieldname = 'UZEIT'.&lt;/P&gt;&lt;P&gt;  append ivals.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  call function 'POPUP_GET_VALUES'&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_VALUE_CHECK        = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      popup_title           = 'Enter Date &amp;amp; Time'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  START_COLUMN          = '5'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  START_ROW             = '5'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  RETURNCODE            =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    tables&lt;/P&gt;&lt;P&gt;      fields                = ivals&lt;/P&gt;&lt;P&gt;   exceptions&lt;/P&gt;&lt;P&gt;     error_in_fields       = 1&lt;/P&gt;&lt;P&gt;     others                = 2&lt;/P&gt;&lt;P&gt;            .&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  read table ivals with key fieldname = 'DATUM'.&lt;/P&gt;&lt;P&gt;  if sy-subrc  = 0.&lt;/P&gt;&lt;P&gt;    x_datum = ivals-value.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  read table ivals with key fieldname = 'UZEIT'.&lt;/P&gt;&lt;P&gt;  if sy-subrc  = 0.&lt;/P&gt;&lt;P&gt;    x_uzeit = ivals-value.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Write:/ x_datum, x_uzeit.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jul 2007 12:31:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/2406991#M536602</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-03T12:31:28Z</dc:date>
    </item>
  </channel>
</rss>

