<?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: Dialog Programming problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376618#M1041272</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for all those answers. I am asking for when the user hits the "Enter" button of the key board than the description and the data i require should be displayed on to the screen fields .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nishant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 26 Aug 2008 07:01:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-26T07:01:07Z</dc:date>
    <item>
      <title>Dialog Programming problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376609#M1041263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new to this community and hope that i can explain my problem.&lt;/P&gt;&lt;P&gt;The problem :-&lt;/P&gt;&lt;P&gt;i am developing an interface for the end users were in they put the material number(matnr).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now what i want to do is when the user hits the "Enter" button of the key board than the description and the data i require should be displayed on to the screen fields .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nishant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2008 06:20:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376609#M1041263</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-26T06:20:02Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog Programming problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376610#M1041264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi nishant,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create one internal table of your fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create different work areas for your internal table fields on to the screen.&lt;/P&gt;&lt;P&gt; create one push button for Enter &amp;amp; give a function code for the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write a select query in the PAI of the screen.&lt;/P&gt;&lt;P&gt; like&lt;/P&gt;&lt;P&gt;Case sy-ucomm.&lt;/P&gt;&lt;P&gt; when' Enter'.&lt;/P&gt;&lt;P&gt;   select * from "your table" into "internal table"  where matnr = itab-matnr.&lt;/P&gt;&lt;P&gt;endcase,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;mudit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2008 06:25:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376610#M1041264</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-26T06:25:26Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog Programming problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376611#M1041265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ,&lt;/P&gt;&lt;P&gt;      write the logic in the PAI part of the flow logic.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2008 06:26:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376611#M1041265</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-26T06:26:19Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog Programming problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376612#M1041266</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;In AT SELECTION-SCREEN&lt;/P&gt;&lt;P&gt;*Get Material description&lt;/P&gt;&lt;P&gt;  SELECT SINGLE&lt;/P&gt;&lt;P&gt;         Maktx&lt;/P&gt;&lt;P&gt;         FROM&lt;/P&gt;&lt;P&gt;         MAKT&lt;/P&gt;&lt;P&gt;         INTO p_maktx&lt;/P&gt;&lt;P&gt;         WHERE spras = sy-langu&lt;/P&gt;&lt;P&gt;         AND&lt;/P&gt;&lt;P&gt;         matnr = p_matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P_matnr,p_maktx are slection screen parameters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you need more info reply, otherwise&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;jana&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Janardhan Reddy on Aug 26, 2008 11:59 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2008 06:26:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376612#M1041266</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-26T06:26:45Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog Programming problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376613#M1041267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Nishant,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;According to matnr no mentioned by the user fetch material description(maktx) from the mara table.&lt;/P&gt;&lt;P&gt;Write this select query in PAI module of that screen.Create an internal table corresponding to the values you need to fetch from the table.&lt;/P&gt;&lt;P&gt;case sy-ucom.&lt;/P&gt;&lt;P&gt;when 'ENTER'.&lt;/P&gt;&lt;P&gt;select maktx from mara into table itab where matnr = zmatnr.&lt;/P&gt;&lt;P&gt;similary write selct query for fetching data from other tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fetch these values into the workarea n it will be displayed on next screen.Make sure to use same screen fields name as given in ur internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks, Payal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2008 06:38:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376613#M1041267</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-26T06:38:18Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog Programming problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376614#M1041268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for all those answers. I am asking for when the user hits the "Enter" button of the key board than the description and the data i require should be displayed on to the screen fields .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nishant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2008 06:52:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376614#M1041268</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-26T06:52:19Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog Programming problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376615#M1041269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for all those answers. I am asking for when the user hits the "Enter" button of the key board than the description and the data i require should be displayed on to the screen fields .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nishant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2008 07:00:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376615#M1041269</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-26T07:00:32Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog Programming problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376616#M1041270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for all those answers. I am asking for when the user hits the "Enter" button of the key board than the description and the data i require should be displayed on to the screen fields .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nishant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2008 07:00:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376616#M1041270</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-26T07:00:41Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog Programming problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376617#M1041271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for all those answers. I am asking for when the user hits the "Enter" button of the key board than the description and the data i require should be displayed on to the screen fields .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nishant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2008 07:00:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376617#M1041271</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-26T07:00:53Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog Programming problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376618#M1041272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for all those answers. I am asking for when the user hits the "Enter" button of the key board than the description and the data i require should be displayed on to the screen fields .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nishant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2008 07:01:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376618#M1041272</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-26T07:01:07Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog Programming problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376619#M1041273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nishan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have posted answer for same your requirement check once,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;jana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2008 07:12:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376619#M1041273</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-26T07:12:46Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog Programming problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376620#M1041274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Nishant,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just go through this code snippet. It will work..(Let zvbap_101941 is a z table, itab is an internal table and make corresponding i/o fields on layout also)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PUT THIS CODE IN TOP INCLUDE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;         zmatnr type  zvbap_101941-zmatnr,&lt;/P&gt;&lt;P&gt;         zmaktx type  zvbap_101941-zmaktx,&lt;/P&gt;&lt;P&gt;         end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AND PUT THIS CODE IN PAI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-datar eq 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single zmaktx from zvbap_101941 into itab-zmaktx&lt;/P&gt;&lt;P&gt;where zmatnr eq itab-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nitesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2008 07:15:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376620#M1041274</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-26T07:15:03Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog Programming problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376621#M1041275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nishant,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You mean pressing 'ENTER' on the keyboard without using any push button in the screen, description and other field's data should get display on the same screen and I hope you dont have next screen. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please ensure this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ahmed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2008 07:43:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376621#M1041275</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-26T07:43:06Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog Programming problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376622#M1041276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; Your requirement is to get material description on corresponding field basing on material number in the screen after pressing enter by the user. if  that is the case first check for sy-ucomm in PAI event if that is equal to SPACE ( function code for enter ) then call a perform which performs your required action. In that perform Write select statement from desired table into desired table basing on material number given by the user. to check the material number in where condition you can directly use screen I/O field for the corresponding material number field. If the select statement is successful then push the corresponding value form the table into desired screen I/O field ( i.e., material description field).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will give you some idea,&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Aswini.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2008 07:51:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376622#M1041276</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-26T07:51:35Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog Programming problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376623#M1041277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In PAI Module...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module get_texts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in this module write this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single maktx into txtmaktx from makt where matnr = txtmatnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;note the txtmaktx is a screen field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2008 08:03:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376623#M1041277</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2008-08-26T08:03:57Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog Programming problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376624#M1041278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nishant,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you have created material number and material description screen fields on screen..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;suppose material number is MATNR and description is MAKTX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then write below code in your screen flow logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;process after input.&lt;/P&gt;&lt;P&gt;field MATNR module get_desc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then in module get_desc write below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module get_desc input.&lt;/P&gt;&lt;P&gt;if matnr is not initial.&lt;/P&gt;&lt;P&gt;select single maktx form makt where matnr = matnr.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;clear maktx.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;end module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it will help you..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Meet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2008 08:51:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-problem/m-p/4376624#M1041278</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-26T08:51:01Z</dc:date>
    </item>
  </channel>
</rss>

