<?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 changed text on selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-changed-text-on-selection-screen/m-p/1590878#M265894</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This may give some idea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

REPORT ZRICH_0002 .


selection-screen begin of block b1 with frame title text-001 .
selection-screen begin of line.
&amp;lt;b&amp;gt;selection-screen comment 1(20) text_com for field p_expl.&amp;lt;/b&amp;gt;selection-screen position 33.
parameters: p_expl as checkbox.
selection-screen end of line.
selection-screen end of block b1.


&amp;lt;b&amp;gt;at selection-screen output.

text_com = 'This is the text'.  " you can change this at runtime.&amp;lt;/b&amp;gt;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 26 Sep 2006 15:10:13 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2006-09-26T15:10:13Z</dc:date>
    <item>
      <title>Dynamic changed text on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-changed-text-on-selection-screen/m-p/1590877#M265893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I wanna to implement on the selection screen (1000) such functionality as you can see in transaction SO10.&lt;/P&gt;&lt;P&gt;In this transaction when U select TextID and then press ENTER text relevant to TextID is changing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to implement this on selection screen?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Tomek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 15:04:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-changed-text-on-selection-screen/m-p/1590877#M265893</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T15:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic changed text on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-changed-text-on-selection-screen/m-p/1590878#M265894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This may give some idea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

REPORT ZRICH_0002 .


selection-screen begin of block b1 with frame title text-001 .
selection-screen begin of line.
&amp;lt;b&amp;gt;selection-screen comment 1(20) text_com for field p_expl.&amp;lt;/b&amp;gt;selection-screen position 33.
parameters: p_expl as checkbox.
selection-screen end of line.
selection-screen end of block b1.


&amp;lt;b&amp;gt;at selection-screen output.

text_com = 'This is the text'.  " you can change this at runtime.&amp;lt;/b&amp;gt;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 15:10:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-changed-text-on-selection-screen/m-p/1590878#M265894</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-09-26T15:10:13Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic changed text on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-changed-text-on-selection-screen/m-p/1590879#M265895</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;check this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward to all helpful answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables: mara, makt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;matnr like mara-matnr,&lt;/P&gt;&lt;P&gt;end of itab.&lt;/P&gt;&lt;P&gt;data : begin of btab occurs 0,&lt;/P&gt;&lt;P&gt;maktx like makt-maktx,&lt;/P&gt;&lt;P&gt;end of btab.&lt;/P&gt;&lt;P&gt;data mak like makt-maktx.&lt;/P&gt;&lt;P&gt;DATA : return like ddshretval occurs 0 with header line.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 1(20) text FOR FIELD p_matnr.&lt;/P&gt;&lt;P&gt;parameters: p_matnr like mara-matnr.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 40(35) text1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Initialization.&lt;/P&gt;&lt;P&gt;text = 'Material Number'.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_matnr.&lt;/P&gt;&lt;P&gt;REFRESH ITAB.&lt;/P&gt;&lt;P&gt;SELECT matnr FROM mara INTO TABLE ITAB.&lt;/P&gt;&lt;P&gt;call function 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;retfield = 'MATNR '&lt;/P&gt;&lt;P&gt;dynprofield = 'P_MATNR '&lt;/P&gt;&lt;P&gt;dynpprog = sy-REPID&lt;/P&gt;&lt;P&gt;dynpnr = sy-dynnr&lt;/P&gt;&lt;P&gt;value_org = 'S'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;value_tab = ITAB&lt;/P&gt;&lt;P&gt;return_tab = return.&lt;/P&gt;&lt;P&gt;select single maktx from makt into  mak where matnr = return-fieldval.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;p_matnr = return-fieldval.&lt;/P&gt;&lt;P&gt;text1 = mak.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;refresh return.&lt;/P&gt;&lt;P&gt;clear return.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 15:20:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-changed-text-on-selection-screen/m-p/1590879#M265895</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T15:20:25Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic changed text on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-changed-text-on-selection-screen/m-p/1590880#M265896</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;Try this ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: ttxit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 1(6) v_text FOR FIELD p_textid.&lt;/P&gt;&lt;P&gt;PARAMETERS: p_textid TYPE ttxit-tdid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 13(35) v_text1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;  v_text = 'TextID'.&lt;/P&gt;&lt;P&gt;  v_text1 = ' '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;  IF NOT p_textid IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    SELECT SINGLE * FROM ttxit&lt;/P&gt;&lt;P&gt;           WHERE tdspras = sy-langu&lt;/P&gt;&lt;P&gt;           AND   tdobject = 'TEXT'&lt;/P&gt;&lt;P&gt;           AND   tdid = p_textid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      v_text1 = ttxit-tdtext.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 15:24:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-changed-text-on-selection-screen/m-p/1590880#M265896</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T15:24:13Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic changed text on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-changed-text-on-selection-screen/m-p/1590881#M265897</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 give a material as input and press enter, we get the material description to the right of that parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;selection-screen begin of block b1.
selection-screen begin of line.
parameters: p_matnr like mara-matnr.
selection-screen comment  30(10) v_maktx.
selection-screen end of line.
selection-screen end of block b1.
at selection-screen output.

select single maktx from makt into v_maktx
         where matnr = p_matnr and spras = 'E'.
if sy-subrc &amp;lt;&amp;gt; 0.
 clear v_maktx.
endif.

at selection-screen.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sailaja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 15:27:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-changed-text-on-selection-screen/m-p/1590881#M265897</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T15:27:58Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic changed text on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-changed-text-on-selection-screen/m-p/1590882#M265898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    use FM read_text,create_text,edit_text,save_text.&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;amole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 15:37:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-changed-text-on-selection-screen/m-p/1590882#M265898</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T15:37:24Z</dc:date>
    </item>
  </channel>
</rss>

