<?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 at selection-screen level in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-at-selection-screen-level/m-p/2810567#M656996</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kiran,&lt;/P&gt;&lt;P&gt;This is possible.... but you need to know what event this has to trigger...&lt;/P&gt;&lt;P&gt;The values will be populated only when the user selects the key boad function ENTER.....&lt;/P&gt;&lt;P&gt;If you what to populate without user action then you have to code in F4 help of your own and use the FM's "DYNP_VALUES_READ" and "DYNP_VALUES_UPDATE"&lt;/P&gt;&lt;P&gt;Or you can create a search help and import the unit value when you choose the material....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the hint is useful&amp;#133; Say thanks by reward&amp;#133;.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prabhu Rajesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 06 Oct 2007 05:00:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-06T05:00:37Z</dc:date>
    <item>
      <title>Text at selection-screen level</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-at-selection-screen-level/m-p/2810559#M656988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks,&lt;/P&gt;&lt;P&gt;I have a selection-screen having the matnr and quantity.&lt;/P&gt;&lt;P&gt;MATNR is going to be fetched from the table but the quantity is going to be given by the user at the selection screen level.Now if the user enters say&lt;/P&gt;&lt;P&gt;part4 as matnr&lt;/P&gt;&lt;P&gt;10 as quantity,the unit of measure of this part4 should get displayed besides the Quantity field in the selection-screen.Can anyone here please let me know how to achieve this.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;K.Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2007 11:07:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-at-selection-screen-level/m-p/2810559#M656988</guid>
      <dc:creator>kiran_k8</dc:creator>
      <dc:date>2007-10-05T11:07:42Z</dc:date>
    </item>
    <item>
      <title>Re: Text at selection-screen level</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-at-selection-screen-level/m-p/2810560#M656989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Kiran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls. see the following code. Pls. note that this is for period and text that will appear is the name of the month, but I think that the concept is the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;ec&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS :     p_mon   TYPE poper DEFAULT '012' OBLIGATORY&lt;/P&gt;&lt;P&gt;                         VISIBLE LENGTH 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 37(15) lv_monat FOR FIELD p_mon.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM get_buper USING    p_gjahr&lt;/P&gt;&lt;P&gt;                             p_mon&lt;/P&gt;&lt;P&gt;                    CHANGING lv_monat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM get_buper USING    i_jahr   TYPE any&lt;/P&gt;&lt;P&gt;                        i_monat  TYPE any&lt;/P&gt;&lt;P&gt;               CHANGING p_monam  TYPE any.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  lv_period = i_monat.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'G_POSTING_DATE_OF_PERIOD_GET'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      period              = lv_period&lt;/P&gt;&lt;P&gt;      variant             = 'L1'&lt;/P&gt;&lt;P&gt;      year                = i_jahr&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      from_date           = lv_date&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      period_not_defined  = 1&lt;/P&gt;&lt;P&gt;      variant_not_defined = 2&lt;/P&gt;&lt;P&gt;      OTHERS              = 3.&lt;/P&gt;&lt;P&gt;  IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;    lv_period = lv_date+4(2).&lt;/P&gt;&lt;P&gt;    SELECT SINGLE monam INTO p_monam FROM  t015m&lt;/P&gt;&lt;P&gt;            WHERE  spras  = sy-langu&lt;/P&gt;&lt;P&gt;            AND    monum  = lv_period.&lt;/P&gt;&lt;P&gt;    IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;      CLEAR p_monam.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " GET_BUPER&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DON'T reward if NOT useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2007 11:44:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-at-selection-screen-level/m-p/2810560#M656989</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2007-10-05T11:44:18Z</dc:date>
    </item>
    <item>
      <title>Re: Text at selection-screen level</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-at-selection-screen-level/m-p/2810561#M656990</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;run the code given below and see if it fulfills ur requirement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters:&lt;/P&gt;&lt;P&gt;p_matnr like mara-matnr,&lt;/P&gt;&lt;P&gt;p_MENGE like mseg-menge,&lt;/P&gt;&lt;P&gt;p_meins like mara-meins.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen OUTPUT.&lt;/P&gt;&lt;P&gt;  loop at screen.&lt;/P&gt;&lt;P&gt;    if screen-name = 'P_MEINS'.&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;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;  IF P_MATNR IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;    SELECT SINGLE MEINS FROM MARA&lt;/P&gt;&lt;P&gt;    INTO P_MEINS WHERE&lt;/P&gt;&lt;P&gt;    MATNR EQ P_MATNR.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful, get back in case of query...&lt;/P&gt;&lt;P&gt;Cheers!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2007 11:57:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-at-selection-screen-level/m-p/2810561#M656990</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-05T11:57:54Z</dc:date>
    </item>
    <item>
      <title>Re: Text at selection-screen level</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-at-selection-screen-level/m-p/2810562#M656991</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tripat,&lt;/P&gt;&lt;P&gt;It is working but it is displaying the P_MEINS at the selection screen if and only if I fill in the other selection screen fields which are following P_MEINS.But what I want is once the user enter the MATNR then automatically the P_MEINS should get populated without pressing ENTER.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;K.Kiran.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Kiran K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Oct 2007 03:06:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-at-selection-screen-level/m-p/2810562#M656991</guid>
      <dc:creator>kiran_k8</dc:creator>
      <dc:date>2007-10-06T03:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: Text at selection-screen level</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-at-selection-screen-level/m-p/2810563#M656992</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks.&lt;/P&gt;&lt;P&gt;Once the user enter value in P_matnr I want the corresponding meins to be displayed as text besides P_MATNR.&lt;/P&gt;&lt;P&gt;Can anyone here please help me with this.&lt;/P&gt;&lt;P&gt;REPORT  ZSELECTIONSCREEN                        .&lt;/P&gt;&lt;P&gt;tables:mara.&lt;/P&gt;&lt;P&gt;DATA: L_MEINS(05) TYPE C,&lt;/P&gt;&lt;P&gt;      T_MEINS(05) TYPE C.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.&lt;/P&gt;&lt;P&gt;PARAMETERS:P_WERKS  LIKE ZMMSTORAGEBIN-WERKS OBLIGATORY,&lt;/P&gt;&lt;P&gt;           P_MATNR  LIKE MARA-MATNR OBLIGATORY,&lt;/P&gt;&lt;P&gt;           P_MEINS  LIKE MARA-MEINS,&lt;/P&gt;&lt;P&gt;           QUANT LIKE MSEG-MENGE ,&lt;/P&gt;&lt;P&gt;           LABEL(03) TYPE C .&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK B1.&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF SCREEN-NAME = 'P_MEINS'.&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;select meins from mara into (t_meins) where matnr = p_matnr.&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;IF P_MATNR IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;P_MEINS = T_MEINS.&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;K.Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Oct 2007 04:31:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-at-selection-screen-level/m-p/2810563#M656992</guid>
      <dc:creator>kiran_k8</dc:creator>
      <dc:date>2007-10-06T04:31:41Z</dc:date>
    </item>
    <item>
      <title>Re: Text at selection-screen level</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-at-selection-screen-level/m-p/2810564#M656993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to press ENTER in order to trigger event AT SELECTION-SCREEN OUTPUT. Once this event is triggered, if condition is satisfied, it will display unit next to Material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;System will get to know to trigger this logic if and only if user presses ENTER. That is the limitation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ashish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Oct 2007 04:37:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-at-selection-screen-level/m-p/2810564#M656993</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-06T04:37:36Z</dc:date>
    </item>
    <item>
      <title>Re: Text at selection-screen level</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-at-selection-screen-level/m-p/2810565#M656994</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ashish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got it but a minor problem with syntax&lt;/P&gt;&lt;P&gt;REPORT  ZSELECTIONSCREEN                        .&lt;/P&gt;&lt;P&gt;tables:mara.&lt;/P&gt;&lt;P&gt;DATA: L_MEINS(05) TYPE C,&lt;/P&gt;&lt;P&gt;      T_MEINS(05) TYPE C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.&lt;/P&gt;&lt;P&gt;PARAMETERS:P_WERKS  LIKE ZMMSTORAGEBIN-WERKS OBLIGATORY,&lt;/P&gt;&lt;P&gt;           P_MATNR  LIKE MARA-MATNR OBLIGATORY.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;SELECTION-SCREEN COMMENT 1(01) UOM FOR FIELD p_mATNR.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: P_MEINS  LIKE MARA-MEINS,&lt;/P&gt;&lt;P&gt;           QUANT LIKE MSEG-MENGE ,&lt;/P&gt;&lt;P&gt;           LABEL(03) TYPE C .&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK B1.&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF SCREEN-NAME = 'P_MEINS'.&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;select meins from mara into (t_meins) where matnr = p_matnr.&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;IF P_MATNR IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;UOM = T_MEINS.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please let me  know how to correct this comment 1(01).&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;K.Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Oct 2007 04:42:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-at-selection-screen-level/m-p/2810565#M656994</guid>
      <dc:creator>kiran_k8</dc:creator>
      <dc:date>2007-10-06T04:42:47Z</dc:date>
    </item>
    <item>
      <title>Re: Text at selection-screen level</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-at-selection-screen-level/m-p/2810566#M656995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you need to add comment to selection screen next to parameter, you need to use begin of line syntax.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this code and make changes accordingly to your code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of line.&lt;/P&gt;&lt;P&gt;selection-screen comment (20) matnr .&lt;/P&gt;&lt;P&gt;parameters: p_matnr type mara-matnr obligatory.&lt;/P&gt;&lt;P&gt;selection-screen comment (40) maktx .&lt;/P&gt;&lt;P&gt;selection-screen end of line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can check this link for more details -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba7a135c111d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba7a135c111d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also in your code if you make this change, it will work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 1(1) UOM FOR FIELD p_mATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Comments&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To place comments on the selection screen, you use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT [/]&amp;lt;pos(len)&amp;gt; &amp;lt;comm&amp;gt; [FOR FIELD &amp;lt;f&amp;gt;]&lt;/P&gt;&lt;P&gt;[MODIF ID &amp;lt;key&amp;gt;].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement writes the &amp;lt;comm&amp;gt; comment on the selection screen. For &amp;lt;comm&amp;gt;, you can specify a text symbol or a field name with a maximum length of eight characters. This character field must not be declared with the DATA statement, but is generated automatically with length &amp;lt;len&amp;gt;. The field must be filled before the selection screen is called. You must always specify the &amp;lt;pos(len)&amp;gt; addition. Only if there are several elements in one line, can you omit &amp;lt;pos&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Ashish Gundawar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Oct 2007 04:47:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-at-selection-screen-level/m-p/2810566#M656995</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-06T04:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: Text at selection-screen level</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-at-selection-screen-level/m-p/2810567#M656996</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kiran,&lt;/P&gt;&lt;P&gt;This is possible.... but you need to know what event this has to trigger...&lt;/P&gt;&lt;P&gt;The values will be populated only when the user selects the key boad function ENTER.....&lt;/P&gt;&lt;P&gt;If you what to populate without user action then you have to code in F4 help of your own and use the FM's "DYNP_VALUES_READ" and "DYNP_VALUES_UPDATE"&lt;/P&gt;&lt;P&gt;Or you can create a search help and import the unit value when you choose the material....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the hint is useful&amp;#133; Say thanks by reward&amp;#133;.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prabhu Rajesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Oct 2007 05:00:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-at-selection-screen-level/m-p/2810567#M656996</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-06T05:00:37Z</dc:date>
    </item>
    <item>
      <title>Re: Text at selection-screen level</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-at-selection-screen-level/m-p/2810568#M656997</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi kiran,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;        Just go through this code, this will help u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES:mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: l_meins(05) TYPE c,&lt;/P&gt;&lt;P&gt;t_meins(05) TYPE c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;PARAMETERS:p_werks LIKE marc-werks OBLIGATORY,&lt;/P&gt;&lt;P&gt;           p_matnr LIKE mara-matnr OBLIGATORY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 1(01) uom FOR FIELD p_matnr.&lt;/P&gt;&lt;P&gt;PARAMETERS: p_meins LIKE mara-meins,&lt;/P&gt;&lt;P&gt;            quant LIKE mseg-menge ,&lt;/P&gt;&lt;P&gt;            label(03) TYPE c .&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&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;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF screen-name = 'P_MEINS'.&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;&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT meins FROM mara INTO (t_meins) WHERE matnr = p_matnr.&lt;/P&gt;&lt;P&gt;  ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF NOT p_matnr IS INITIAL.&lt;/P&gt;&lt;P&gt;    uom = t_meins.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;please reward points if helpfull.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;radhika kolluru.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Oct 2007 06:35:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-at-selection-screen-level/m-p/2810568#M656997</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-06T06:35:06Z</dc:date>
    </item>
  </channel>
</rss>

