<?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 Urgent!!!!!!!!!!!!!!1 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-urgent-1/m-p/2007376#M409301</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;   May I know where r u passing the value to the variable l_text1 to fetch data?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; As far as i understand, u should either declare l_text1 as a screen field or should pass a value to it in the program prior to the data selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Mar 2007 15:36:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-12T15:36:07Z</dc:date>
    <item>
      <title>dialog programming Urgent!!!!!!!!!!!!!!1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-urgent-1/m-p/2007375#M409300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The value is not passing to l_text1 field from transaction code screen field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: l_text1 TYPE vekp-exidv,&lt;/P&gt;&lt;P&gt;        l_vekp TYPE vekp-exidv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF l_text1 IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;    SELECT SINGLE exidv FROM vekp INTO l_vekp WHERE exidv EQ l_text1.&lt;/P&gt;&lt;P&gt;    IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      PERFORM f_check_mtype.&lt;/P&gt;&lt;P&gt;      PERFORM f_move.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    MESSAGE i000(8i) WITH text-001.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2007 15:19:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-urgent-1/m-p/2007375#M409300</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-12T15:19:58Z</dc:date>
    </item>
    <item>
      <title>Re: dialog programming Urgent!!!!!!!!!!!!!!1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-urgent-1/m-p/2007376#M409301</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;   May I know where r u passing the value to the variable l_text1 to fetch data?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; As far as i understand, u should either declare l_text1 as a screen field or should pass a value to it in the program prior to the data selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2007 15:36:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-urgent-1/m-p/2007376#M409301</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-12T15:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: dialog programming Urgent!!!!!!!!!!!!!!1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-urgent-1/m-p/2007377#M409302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in PBO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;l_text1 = screen-field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2007 15:38:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-urgent-1/m-p/2007377#M409302</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-12T15:38:33Z</dc:date>
    </item>
    <item>
      <title>Re: dialog programming Urgent!!!!!!!!!!!!!!1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-urgent-1/m-p/2007378#M409303</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;Here u r declaring the field&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;If u u passing the value in PBO then why u r declaring the field again in PAI.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;DATA: l_text1 TYPE vekp-exidv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At this point  l_text1 will be initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2007 15:39:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-urgent-1/m-p/2007378#M409303</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-12T15:39:04Z</dc:date>
    </item>
    <item>
      <title>Re: dialog programming Urgent!!!!!!!!!!!!!!1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-urgent-1/m-p/2007379#M409304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the code above is really what you got then it is obvious that l_text1 is not carrying any value:&lt;/P&gt;&lt;P&gt;you define it but don't pass anything to it.&lt;/P&gt;&lt;P&gt;Or do you have a field with the same name defined on a dialog screen?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Guenther&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2007 15:42:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-urgent-1/m-p/2007379#M409304</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-12T15:42:50Z</dc:date>
    </item>
    <item>
      <title>Re: dialog programming Urgent!!!!!!!!!!!!!!1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-urgent-1/m-p/2007380#M409305</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 SAP, the local variable take precedence over global variable. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So if you have variable l_text1 defined globally and you assign value in PBO but if you define same variable locally in PAI module, these are &amp;lt;b&amp;gt;two seperate variable with same name&amp;lt;/b&amp;gt;. Whenever you try to access l_text1 in PAI, it will return whatever value it holds in PAI module and when you access l_text1 in PBO, it will return the value it holds in PBO. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope i clarify your doubt. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2007 18:01:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming-urgent-1/m-p/2007380#M409305</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-12T18:01:08Z</dc:date>
    </item>
  </channel>
</rss>

