<?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: dynamic display of value in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-display-of-value/m-p/7151020#M1514580</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In module pool, the fields can be got from dictionary. If the fields customer &amp;amp; the description are both got from dictionary, then if you use F4, automatically the description will also be picked.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Aug 2010 09:22:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-08-12T09:22:10Z</dc:date>
    <item>
      <title>dynamic display of value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-display-of-value/m-p/7151016#M1514576</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 the module pool programming i am having customer , material fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at customer field if i select one customer from f4 help popup&lt;/P&gt;&lt;P&gt; i need to display corresponding customers description in another field.&lt;/P&gt;&lt;P&gt;can any suggest me how to do it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;same wise for material also.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Aug 2010 04:11:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-display-of-value/m-p/7151016#M1514576</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-09T04:11:53Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic display of value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-display-of-value/m-p/7151017#M1514577</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;You can use following Function modules:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DYNP_VALUES_READ&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DYNP_UPDATE_FIELDS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Aug 2010 09:17:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-display-of-value/m-p/7151017#M1514577</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-09T09:17:18Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic display of value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-display-of-value/m-p/7151018#M1514578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kalpanak,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All you need to do is, once you have selected the customer from F4 help, the customer code will be saved in some field on the screen, you just need to write a query&lt;/P&gt;&lt;P&gt;for example&lt;/P&gt;&lt;P&gt;select name1&lt;/P&gt;&lt;P&gt;from kna1&lt;/P&gt;&lt;P&gt;into wa_tabctrl-name1 --&amp;gt; this would be your field of customer description on your screen&lt;/P&gt;&lt;P&gt;where kunnr = wa_tabctrl-kunnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cordially,&lt;/P&gt;&lt;P&gt;Danish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Aug 2010 17:48:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-display-of-value/m-p/7151018#M1514578</guid>
      <dc:creator>Danish</dc:creator>
      <dc:date>2010-08-10T17:48:38Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic display of value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-display-of-value/m-p/7151019#M1514579</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;You can use following selection screen event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At selection screen output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If Screen-group=  '  '&lt;/P&gt;&lt;P&gt;  if val = 1&lt;/P&gt;&lt;P&gt;     screen-input = 1.&lt;/P&gt;&lt;P&gt;    modify screen.&lt;/P&gt;&lt;P&gt;elseif val = 0.&lt;/P&gt;&lt;P&gt;  screen-input =  0 .&lt;/P&gt;&lt;P&gt;  modify screen.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will help full  to u .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Aug 2010 07:07:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-display-of-value/m-p/7151019#M1514579</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-12T07:07:09Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic display of value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-display-of-value/m-p/7151020#M1514580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In module pool, the fields can be got from dictionary. If the fields customer &amp;amp; the description are both got from dictionary, then if you use F4, automatically the description will also be picked.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Aug 2010 09:22:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-display-of-value/m-p/7151020#M1514580</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-12T09:22:10Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic display of value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-display-of-value/m-p/7151021#M1514581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Suppose kna1-kunnr and kna1-name1 are the fields on screen.&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 your PAI  write : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Field : kna1-kunnr
module fill_cust.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;module fill_cust input.
select single *
  from kna1
  into it_kna1
  where kunnr eq kna1-kunnr.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;move it_kna1-name1 to kna1-name1.
endmodule.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;                 " FILL_CUST  INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rachana Pouras on Aug 13, 2010 2:14 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Aug 2010 09:25:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-display-of-value/m-p/7151021#M1514581</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-13T09:25:58Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic display of value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-display-of-value/m-p/7151022#M1514582</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;after taking f4 values, the value is in your screen field. now under PAI write the select query to fetch the description from the screen field values i.e may be customer no or material no. when we enter the values in the screen field and take enter the description field is also filled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;sirisha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Aug 2010 12:32:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-display-of-value/m-p/7151022#M1514582</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-14T12:32:07Z</dc:date>
    </item>
  </channel>
</rss>

