<?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 Dialog program events in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-program-events/m-p/2327462#M511657</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends, can any one give me the events of dialog program(events used for dialog program).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Jun 2007 12:50:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-12T12:50:17Z</dc:date>
    <item>
      <title>Dialog program events</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-program-events/m-p/2327462#M511657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends, can any one give me the events of dialog program(events used for dialog program).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jun 2007 12:50:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-program-events/m-p/2327462#M511657</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-12T12:50:17Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog program events</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-program-events/m-p/2327463#M511658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are 4 events for Dialog Programing.&lt;/P&gt;&lt;P&gt;1. Process Before Output (PBO)&lt;/P&gt;&lt;P&gt;2. Process After Input (PAI)&lt;/P&gt;&lt;P&gt;3. Process on Value Request (POV)&lt;/P&gt;&lt;P&gt;4. Process on Help Request (POH)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First two events are defined internally by the SAP. 3rd &amp;amp; 4th Events needs to be provided explicitly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points for helpful answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ashven&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jun 2007 12:56:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-program-events/m-p/2327463#M511658</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-12T12:56:21Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog program events</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-program-events/m-p/2327464#M511659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The events are...&lt;/P&gt;&lt;P&gt;Process Before Output(PBO)&lt;/P&gt;&lt;P&gt;Processing before the screen is displayed (PBO). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Examples &lt;/P&gt;&lt;P&gt;Initializing screen fields, inserting default values, positioning the cursor, showing and hiding fields and changing field attributes dynamically. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Process After Input(PAI)&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Processing after user input. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Examples &lt;/P&gt;&lt;P&gt;Checking values where there is no automatic check, processing the cursor position, processing correct entries or triggering an error dialog. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Process on Value-request(POV)&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Event in user-programmed help that occurs when the user presses F4 with the cursor positioned on a screen field. The modules specified in the subsequent FIELD statements are called instead of the SAP help system. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example &lt;/P&gt;&lt;P&gt;FIELD XY MODULE XYZ &lt;/P&gt;&lt;P&gt;Module XYZ determines the value of field XY and places it in the input field on the screen. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Process on Help-Request(POH)&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;POH event for user-programmed help. Modules in this event are processed when the user presses F1 with the cursor positioned on a screen field. In the subsequent FIELD statements, you can specify a data element supplement (or determine one in an application module). The texts are then displayed by the help system. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Examples &lt;/P&gt;&lt;P&gt;FIELD XY WITH '0001'. &lt;/P&gt;&lt;P&gt;Displays data element addition 0001 for field XY. &lt;/P&gt;&lt;P&gt;FIELD XY WITH variable. &lt;/P&gt;&lt;P&gt;Displays the data element supplement with the number contained in variable for the field XY. &lt;/P&gt;&lt;P&gt;FIELD XY MODULE XYZ WITH variable . &lt;/P&gt;&lt;P&gt;The relevant data element supplement is determined in module XYZ, where it is placed in variable. Use this procedure whenever you cannot determine the correct data element supplement until the F1 event. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jun 2007 19:36:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-program-events/m-p/2327464#M511659</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-12T19:36:37Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog program events</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-program-events/m-p/2327465#M511660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Refer this link :&lt;/P&gt;&lt;P&gt;&lt;A href="http://sap.mis.cmich.edu/sap-abap/abap09/index.htm" target="test_blank"&gt;http://sap.mis.cmich.edu/sap-abap/abap09/index.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jun 2007 19:39:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-program-events/m-p/2327465#M511660</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-12T19:39:51Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog program events</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-program-events/m-p/2327466#M511661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arun,&lt;/P&gt;&lt;P&gt;Dialog Program Events are four as follows:&lt;/P&gt;&lt;P&gt;PBO [Process Before Output]&lt;/P&gt;&lt;P&gt;PAI  [Process After Input]&lt;/P&gt;&lt;P&gt;POV [Process on Value Request]&lt;/P&gt;&lt;P&gt;POH [Process on Help Request]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And you go thru the following links for detail knowledge on Dialog Progrmming and Events of it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&amp;lt;u&amp;gt;What is Dialog Progrmming.&amp;lt;/u&amp;gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb2d40358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb2d40358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&amp;lt;u&amp;gt;This link Give you all details about Modulepool&amp;lt;/u&amp;gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://sap.mis.cmich.edu/sap-abap/abap09/index.htm" target="test_blank"&gt;http://sap.mis.cmich.edu/sap-abap/abap09/index.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With Regards,&lt;/P&gt;&lt;P&gt;Naveen Kumar Mutyapu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 07:26:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-program-events/m-p/2327466#M511661</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T07:26:04Z</dc:date>
    </item>
  </channel>
</rss>

