<?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: hadcoding selection screen text not in text elements in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hadcoding-selection-screen-text-not-in-text-elements/m-p/5802383#M1311939</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Matt &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So can u please help me about copying texts to english...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 Jul 2009 14:24:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-07-01T14:24:38Z</dc:date>
    <item>
      <title>hadcoding selection screen text not in text elements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hadcoding-selection-screen-text-not-in-text-elements/m-p/5802381#M1311937</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;Is there any ways to hardcode the selection text into the selection rather then including it in a text element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2009 14:14:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hadcoding-selection-screen-text-not-in-text-elements/m-p/5802381#M1311937</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-01T14:14:02Z</dc:date>
    </item>
    <item>
      <title>Re: hadcoding selection screen text not in text elements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hadcoding-selection-screen-text-not-in-text-elements/m-p/5802382#M1311938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No.  Why would you want to, anyway?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;well, theoretically you could by doing your own screen design, but what would be the point - it'd be painful and you wouldn't achieve much.  If you're concerned about the appearance when logging in on another language, it's easy enough to write a program that will copy English texts, for example, to the other language in the text pool, if no such text already exists.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2009 14:20:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hadcoding-selection-screen-text-not-in-text-elements/m-p/5802382#M1311938</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2009-07-01T14:20:52Z</dc:date>
    </item>
    <item>
      <title>Re: hadcoding selection screen text not in text elements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hadcoding-selection-screen-text-not-in-text-elements/m-p/5802383#M1311939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Matt &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So can u please help me about copying texts to english...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2009 14:24:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hadcoding-selection-screen-text-not-in-text-elements/m-p/5802383#M1311939</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-01T14:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: hadcoding selection screen text not in text elements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hadcoding-selection-screen-text-not-in-text-elements/m-p/5802384#M1311940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;it's possible to fill the selection texts dinamically in the INITIALIZATION event of you report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The statement to fill the selection text:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
%_&amp;lt;NAME OF PARAMETER/SELECT OPTIONS&amp;gt;_%_app_%-text = 'Text from INITIALIZATION'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hereafter an example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECT-OPTIONS: strkorr  FOR w_aux_strkorr ,  "Request
                spgmid   FOR w_aux_pgmid,     "Program ID
                sobject  FOR w_aux_object,    "Object Type
                sobjname FOR w_aux_obj_name.  "Object Name
SELECTION-SCREEN SKIP 1.
PARAMETERS: rfcdes TYPE  rfcdes-rfcdest OBLIGATORY . "Remote Destination

INITIALIZATION.

* Fill Dynamic texts
  %_strkorr_%_app_%-text  = 'Request'.
  %_spgmid_%_app_%-text   = 'Program ID'.
  %_sobject_%_app_%-text  = 'Object Type'.
  %_sobjname_%_app_%-text = 'Object Name'.
  %_rfcdes_%_app_%-text   = 'Remote Dest.'.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards.&lt;/P&gt;&lt;P&gt;Andrea&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Andrea Olivieri on Jul 1, 2009 5:39 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2009 15:33:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hadcoding-selection-screen-text-not-in-text-elements/m-p/5802384#M1311940</guid>
      <dc:creator>andrea_olivieri</dc:creator>
      <dc:date>2009-07-01T15:33:42Z</dc:date>
    </item>
  </channel>
</rss>

