<?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: Text fields in the selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-fields-in-the-selection-screen/m-p/4264309#M1017481</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 store all the TEXT elements in English and make sure there are no translation avaliable for that. Then Automatically it will be shown in english.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sumit Agarwal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Jul 2008 07:33:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-29T07:33:36Z</dc:date>
    <item>
      <title>Text fields in the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-fields-in-the-selection-screen/m-p/4264307#M1017479</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;In my report program, I need all the text elements in the selection screen including menu bar should be appeared in English only evenif I am logging in a different language. Is there any settings option for that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me in this regard. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 07:27:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-fields-in-the-selection-screen/m-p/4264307#M1017479</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T07:27:31Z</dc:date>
    </item>
    <item>
      <title>Re: Text fields in the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-fields-in-the-selection-screen/m-p/4264308#M1017480</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;     While using the text elements like &lt;STRONG&gt;'Company Code'(001).&lt;/STRONG&gt;, then if the login language doesn't contain any text element, then it will be display in English only (what u have written).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     To use for selection screen you can use the 'selection-screen comment, line...' and place the text for the selection screen parameter/range and use the comments in english.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this example code:&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT /1(50) comm1 MODIF ID mg1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN ULINE.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT /1(30) comm2.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN ULINE /1(50).&lt;/P&gt;&lt;P&gt;PARAMETERS: r1 RADIOBUTTON GROUP rad1,&lt;/P&gt;&lt;P&gt;            r2 RADIOBUTTON GROUP rad1,&lt;/P&gt;&lt;P&gt;            r3 RADIOBUTTON GROUP rad1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN ULINE /1(50).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;  comm1 ='Selection Screen'.&lt;/P&gt;&lt;P&gt;  comm2 ='Select one'.&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF screen-group1 = 'MG1'.&lt;/P&gt;&lt;P&gt;       screen-intensified = '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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Ravi Kumar on Jul 29, 2008 9:47 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 07:30:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-fields-in-the-selection-screen/m-p/4264308#M1017480</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T07:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: Text fields in the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-fields-in-the-selection-screen/m-p/4264309#M1017481</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 store all the TEXT elements in English and make sure there are no translation avaliable for that. Then Automatically it will be shown in english.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sumit Agarwal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 07:33:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-fields-in-the-selection-screen/m-p/4264309#M1017481</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T07:33:36Z</dc:date>
    </item>
    <item>
      <title>Re: Text fields in the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-fields-in-the-selection-screen/m-p/4264310#M1017482</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;When you are creating a text element in English ,make sure that that you do not give assign any translation.Then the text elements would appear in english only.&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;Bhumika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 07:42:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-fields-in-the-selection-screen/m-p/4264310#M1017482</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T07:42:21Z</dc:date>
    </item>
  </channel>
</rss>

