<?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 how to modify address window in sapscript in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-modify-address-window-in-sapscript/m-p/2363118#M522935</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have two doubts...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1 hw do we modify address window ? is there any standard procedure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2, hw do we dynamically assign selection screen values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vibha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Jun 2007 04:57:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-19T04:57:47Z</dc:date>
    <item>
      <title>how to modify address window in sapscript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-modify-address-window-in-sapscript/m-p/2363118#M522935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have two doubts...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1 hw do we modify address window ? is there any standard procedure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2, hw do we dynamically assign selection screen values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vibha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 04:57:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-modify-address-window-in-sapscript/m-p/2363118#M522935</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T04:57:47Z</dc:date>
    </item>
    <item>
      <title>Re: how to modify address window in sapscript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-modify-address-window-in-sapscript/m-p/2363119#M522936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Re: Regarding Address Window   &lt;/P&gt;&lt;P&gt;Posted: Apr 27, 2007 12:59 PM    in response to: Subramanyam Ses...       Reply      E-mail this post  &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;goto-&amp;gt;page-&amp;gt;right click-&amp;gt;select address&lt;/P&gt;&lt;P&gt;in the screen select the type of address which you want to display&lt;/P&gt;&lt;P&gt;1 organizational&lt;/P&gt;&lt;P&gt;2 Personnel&lt;/P&gt;&lt;P&gt;3 Work place&lt;/P&gt;&lt;P&gt;4 determine dynamically&lt;/P&gt;&lt;P&gt;select one of it&lt;/P&gt;&lt;P&gt;they goto address number -&amp;gt;specify the number by clicking f4  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. What you can do is to define fields which are initially in invisible mode and dynamically change them to visible on the button click.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt;if sy-ucomm = &amp;lt;Button Fcode&amp;gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-group1 = &amp;lt;screen group name for all the field&amp;gt;&lt;/P&gt;&lt;P&gt;screen-invisible = 0.&lt;/P&gt;&lt;P&gt;screen-active = 1.&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;endif&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, 19 Jun 2007 05:05:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-modify-address-window-in-sapscript/m-p/2363119#M522936</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T05:05:45Z</dc:date>
    </item>
    <item>
      <title>Re: how to modify address window in sapscript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-modify-address-window-in-sapscript/m-p/2363120#M522937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;1 hw do we modify address window ? is there any standard procedure&lt;/P&gt;&lt;P&gt;I didn't under ur question,modifying address window means do u want to modify address window of standard ,form in that case u have to copy the form to xform and make neccessary changes.&lt;/P&gt;&lt;P&gt;goto se71-&amp;gt;utilities copy from client-.specify form and ur zform and save.&lt;/P&gt;&lt;P&gt;now goto particular address window if u want to modify field displaying goto edit-&amp;gt; text element-&amp;gt;chage what ever u want -.save activate&lt;/P&gt;&lt;P&gt;2, hw do we dynamically assign selection screen values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 05:17:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-modify-address-window-in-sapscript/m-p/2363120#M522937</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T05:17:33Z</dc:date>
    </item>
    <item>
      <title>Re: how to modify address window in sapscript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-modify-address-window-in-sapscript/m-p/2363121#M522938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;solved by my own&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 05:21:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-modify-address-window-in-sapscript/m-p/2363121#M522938</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T05:21:34Z</dc:date>
    </item>
  </channel>
</rss>

