Selection screen font

Hi,
  Can anyone let me know how can I make a text or comment in a selection screen
(SELECTION-SCREEN: COMMENT /1(65) TEXT-005.) to a different color or make it bold?
Thanks.
Uma.
Message was edited by:
        Uma

HI,
  Can you highlight the comment. Use the below code
SELECTION-SCREEN: COMMENT /1(65) TEXT-005 FOR FIELD P_BUKRS MODIF ID SC1
AT SELECTION-SCREEN OUTPUT.
  LOOP AT SCREEN.
    IF SCREEN-GROUP1 = 'SC1'.
      SCREEN-INTENSIFIED = 1.
      MODIFY SCREEN.
    ENDIF.
  ENDLOOP.
the above code would highlight your comments. Usually the highlighted text would be in Red or blue color.
Regards,
Vara

Similar Messages

  • How to Change the Font Size in Module Pool Selection Screen?

    Hi,
    There is a module pool, and I need to change the font size mentioned in the selection screen. Could you plaese tell me, how will I be able to do that?

    Hi ,
    If you are asking for text field , then check the options avaliable in Display tab of Attributes.
    Hope this helps you.

  • Is there any option to display selection screen text in bold or big font?

    Hi all,
    Is there any option to display selection screen text in bold letters or with increase font size?
    Thanks n Regards

    Hi,
    Just give atry in this way..
    open the same program ans selection-screen screen no will be 1000 in se51 screen painter,
    go to properties of the texts u want to change then go to display tab and check the checkbox bright.
    it may or may not work but this will work in module pool .
    just give a try...
    Regards,
    Suresh.

  • Selection screen COMMENT font

    Hello,
    In a screen I have a SELECTION-SCREEN line which contains a comment, followed by a PARAMETER, followed by another comment, followed by a PARAMETER.
    Here is the example code:
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(14) text-s01 FOR FIELD p_1.
    SELECTION-SCREEN POSITION 33.
    PARAMETERS: p_1 LIKE sy-uzeit DEFAULT '000001'.
    SELECTION-SCREEN COMMENT 52(3) text-s02 FOR FIELD p_2.
    SELECTION-SCREEN POSITION 58.
    PARAMETERS: p_2 LIKE sy-uzeit DEFUALT '240000'.
    SELECTION-SCREEN END OF LINE.
    For some reason the second COMMENT is showing with a different font. Can anyone help me understand why?
    Thank you,
    Nuno Silva

    Hi
    I test it on my system and noticed the same behavior.
    text-s01 = 'TOX'
    text-s02 = 'TOX'
    We can notice differences between the O and X.
    No idea why.
    That is SAP
    If you found a solution, please post it.
    Regards
    DSTJ

  • Fonts At Selection Screen

    Hey, there.
    Does anyone know a way of defining fonts within a selection screen's objects ?
    I want to make the labels with a larger font.
    Thanks in advance.

    Hi,
    BOLD
    FORMAT INTENSIFIED ON.
    WRITE : / 'ABAP'.
    FORMAT INTENSIFIED OFF.
    Font Size.
    By using print controls we can do it.
    check the link below for further information
    http://help.sap.com/saphelp_nw04/helpdata/en/d9/4a95e351ea11d189570000e829fbbd/content.htm
    You can increase the font size during printing dynamically. In the Device Types -> formats, which ever format you are using, you can ask your Basis person to edit the format and increase the font size. Also the page setup like portrait, landscape, CPI, etc can be done there itself.
    http://www.sap-img.com/basis/how-can-i-print-a3-format-in-sap.htm
    regards,
    venkat.

  • How to add customize message on the variable selection screen in the query

    Hi all,
    Can we add an customise message on the variable selection screen in the query? If yes please let me know how it can be achevied?
    Thanks,
    Rani

    Hi Rani,
    I faced a similar issue (for what I understand your request is).
    My requirement for the Variable Screen was to do:
       1) place a link to a ppt file
       2) remove buttons "Save", "Save As...), "Delete"... the standard buttons come when running the Query or WebTempl
    We were using a Web Templ for BI7.0
    I struggled trying to find out how to do it. My conclusions are:
    - WAD, not sure we can accomplish it using a Web Template but i did not "play" a lot with the Web_Template Properties in order to know
    - XHTML, I was told in my post HTML modification was the way, but I have close to nil background in HTML and couold not find the way of accessing the Variable Entry screen
    For instance, I had to remove similar buttons and change some font size from a link on the Web Template (WAD), which was pretty straight forward. In WAD the buttons come with its own icon and to increase the Font size for that link we used XHTML (<font size="2" >). But the heck of the variable screen...well, i just did not get trhough to it to modify it in any way.
    Good luck,
    Definetly in a Query I would say that no.
    alex
    PS: If anyone had a better insight, please feel free to share it.

  • Trailing space when using SELECTION-SCREEN COMMENT

    Hi All,
    I need to display a continuous text (length :130) in selection screen. I am trying with SELECTION-SCREEN COMMENT option and i m aware that we can display max of 79 characters. So i split the text into length: 70 & 60 and coded as below
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(70) text-001.
    SELECTION-SCREEN POSITION 73.
    SELECTION-SCREEN COMMENT 73(60) text-002.
    SELECTION-SCREEN END OF LINE.
    Problem is: After displaying first text (text-001), there is a gap of 10-15 characters, then second text starts (text-002). I mean, there is a trailing space.
    If i give all text-001 in CAPS, then there is no trailing space. But i dont need to display the text in CAPS.
    Do i need to proceed in any other way?, please provide your inputs
    Vinoth

    Your SAPgui to use a proportional font for texts and descriptions (where "i" is much shorter than "W") when it use a non-proportional for input fields. But it use this non-proportional font for input fields even if input is not allowed.
    Try this sample to solve your problem. (But your text will be in a box)
    REPORT zfontst.
    CONSTANTS ctxt TYPE c LENGTH 80 VALUE 'AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz'.
    PARAMETERS: p1 TYPE c LENGTH 56.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT (2) p2a.
    SELECTION-SCREEN POSITION POS_LOW.
    SELECTION-SCREEN COMMENT (56) p2.
    SELECTION-SCREEN END OF LINE.
    PARAMETERS: p3 TYPE c LENGTH 56 MODIF ID dsp.
    AT SELECTION-SCREEN OUTPUT.
      p1 = ctxt.
      p2 = ctxt.
      p2a = 'P2'.
      p3 = ctxt.
      LOOP AT SCREEN.
        CASE screen-group1.
          WHEN 'DSP'.
            screen-input = '0'.
        ENDCASE.
        MODIFY SCREEN.
      ENDLOOP.
    Regards,
    Raymond

  • Sometimes when I scroll up and down, the screen font gets funky.

    Sometimes when I scroll down a page on a website, the screen font goes from being clear to blurry and kind of funky looking, like when you don't use Clear Type. Is there some setting I can change to prevent this from happening? With very small fonts, it sometimes becomes almost unreadable.

    Hello toekneesee, try disabling graphics hardware acceleration. Since this feature was added to Firefox, it has gradually improved, but there still are a few glitches.
    You might need to restart Firefox in order for this to take effect, so save all work first (e.g., mail you are composing, online documents you're editing, etc.).
    Then perform these steps:
    *Click the orange Firefox button at the top left, then select the "Options" button, or, if there is no Firefox button at the top, go to Tools > Options.
    *In the Firefox options window click the ''Advanced'' tab, then select "General".
    *In the settings list, you should find the ''Use hardware acceleration when available'' checkbox. Uncheck this checkbox.
    *Now, restart Firefox and see if the problems persist.
    Additionally, please check for updates for your graphics driver by following the steps mentioned in the following Knowledge base articles:
    [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]
    [[Upgrade your graphics drivers to use hardware acceleration and WebGL]]
    Did this fix your problems? Please report back to us!
    Thank you.

  • Setting only the TO field on the Created on Field in Selection screen to Current date

    Hello,
    We have a requirement to Set only the To date in the Created on Field in Selection screen to the Current date, I have tried through Dynamic variable option to set the Date calculation but I am able to see Options to set the Current date to From or From and To Created on Date fields instead of setting the Current date only to To created on Field.
    We are in 4.7 and are not supported with user defined variables, Appreciate your inputs on this.
    Thanks and Regards
    Mohammed Roshan

    >
    sunitha j wrote:
    > Hi ,
    >
    > It would br gr8..if u could give some more info about the usage of this class..i mean if i hav to implement it in my program....wat is the necessary data that needs to b copied...
    >
    > Thanx,
    > Sunitha
    what Text field you want to change.
    Since you are working with Dynpros , you have to split the screen in two parts, and one for the Showing differenet fonts and other your normal Dynpro information.
    you need to use the Method ADD_TEXT Did you check the program DD_STYLE_TABLE.

  • 6750 Mural Selection Key Font Color

    The color of the selection/soft key labels is dark blue which is sometimes difficult to view if your wallpaper is dark in that area.  When I change the Home screen font color, I'd expect the color of these labels to change though all that changes color is the date and profile name.  I'm guessing this is because the labels exist in more places than the home screen though I'd think the color could still be changed.  Am I missing a setting?
    Thanks!

    I have done that it the Properites panel but when I click
    CTRL and Enter and complete the email form myself, I can see there
    is a difference in fonts in one of the fields - although the
    Properties panel tell me otherwise.
    I just though AS would force the issue.
    Steve

  • TEXTEDIT -- 'screen font' size v. 'print font' size

    Does TEXTEDIT allow documents to be viewed in a different font size than the one used for printing? --
    -- i.e., e.g., is there any kind of 'zoom' feature that works strictly for the screen and is independent of printing?
    I often like to print in a small size font (8 pt.) and am used to being able to do that (e.g., in MS WORD) while still viewing text on-screen in a readable font. However, when I choose 8 pt. for printing from TEXTEDIT, the screen font size shrinks too much to be readable and I haven't seen any way to make it larger without also affecting the printout.
    Any cure for this?
    Thanks.
    (BTW, is there a better place -- i.e., discussion forum -- to ask TEXTEDIT questions?)

    It doesn't appear so. Textedit is a fairly basic word processor and because of that you won't find features that are on other more elaborate apps.
    I use an app. called Mariner Write for most of my main printing/word processing needs ...there are others out there as well (both free and not) - he's a site with a great selection and description of various 'word' apps...
    http://pure-mac.com/textword.html

  • On Selection Screen - Is it possible to show the text Blinking

    Hi,
    On selection screen - I have 3-4 Texts. (COMMENT)
    User wants to 'Highlight' one of them - If possible want this text 'Blinking'.
    How can I do it? Is it possible ?
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME.
    SELECTION-SCREEN COMMENT 1(70) text-004.
    PARAMETER: rb_exec RADIOBUTTON GROUP g1.
    SELECTION-SCREEN COMMENT 35(30) text-005 FOR FIELD rb_exec.     "This Text
    SELECTION-SCREEN ULINE.
    SELECTION-SCREEN SKIP 1.
    SELECTION-SCREEN COMMENT 1(70) text-006.
    PARAMETER: rb_smry RADIOBUTTON GROUP g1.

    For making highlighted, you can make it bold - please see below link:
    [Bold text|Bold character and font change in some portion of report;
    Blinking is not possible in report...
    Thanks

  • Regarding Selection Screen field making display field  in ALV report

    Hi All,
               In ALV Report,  at runtime how can i make the field as Display Field in selection screen .
    Thks & Regds
    Shailesh

    hii,
    Go to se38 and give the below progra name execute.... check the source code it is very easy to understand.
    1.demo_dynpro_modify_simple
    2.demo_dynpro_modify_screen
    if tou are using grid,u can refer to foll link
    sequencing / choosing fields in report screen at runtime,
    Display the Columns in the grid at run time
    rgrds,
    Shweta

  • Help Needed in At selection screen output

    Hi Experts,
    I need your help in AT SELECTION SCREEN OUTPUT event. My issue is i have 4 radio button and with each radio button couple of parameters that need to be filled in selection screen of report. My requirement is that sometimes user enters details in second radio button parameters but forgot to change the radio button to second one so kindly suggest a solution so that radio button gets selected as per user input in parameter like if user clicks on certain parameter to enter value then automatically corresponding radio button gets selected.
    Thanks in advance for all your help.

    example from a checkbox in one of my progs..but you can do same approach with radio butts
    parameters p_test as checkbox default abap_on user-command test.
    at selection-screen.
        if sy-ucomm = 'TEST'.
          perform birth_mnth_chck.
        endif.

  • Help needed in selection screen - Urgent

    Hi Experts,
    I have a selection screen. I have three radi buttons in that selection screen. Based on the selection of the radio buttons I need to activate corresponding selection screen parameters.
    e.g : if radiobutton1 is selected, njo activation needed,
           if radiobutton2 is selected, activate selection screen parameter p_one,
           if radiobutton3 is selected, activate selection screen parameter p_two.
    All three radiobuttons are attached to the same radio button group.
    I have assigned the parameters p_one, p_two, p_three to MODIF ID as follows.
    p_one - NULL
    p_two - t01
    p_three - t02.
    on the selection of a radio button I want the corresponding parameter to get activated.
    please help me.
    Regards,
    Arul jothi A.

    hi
    jothi
    AT SELECTION-SCREEN OUTPUT.                                      
      CASE SY-TCODE.                                                 
        WHEN 'ZEDI6'.                                                
          LOOP AT SCREEN.                                             
            CASE SCREEN-GROUP4.                                      
              WHEN '001'.                  "Sales order select       
                SCREEN-ACTIVE = '1'.       "1=Active, 0=Don't display
                MODIFY SCREEN.                                       
              WHEN '002'.                  "Delivery select          
                SCREEN-ACTIVE = '0'.       "1=Active, 0=Don't display
                MODIFY SCREEN.                                        
              WHEN '003'.                  "Invoice select           
                SCREEN-ACTIVE = '0'.       "1=Active, 0=Don't display
                MODIFY SCREEN.                                       
              WHEN '004'.                  "PO Select                
                SCREEN-ACTIVE = '0'.       "1=Active, 0=Don't display
                MODIFY SCREEN.                                       
    regards
    praveen

Maybe you are looking for

  • I can't open itunes message says you dont have the appropiate permission to acces the item

    i update itunes to the new update an appear a message saying  windows cannot acces the specified ,device,path or file you may not have the appropiate permission to acces the iten how can a fix it y desinstall itunes  and install it two times and stil

  • Camera rotation limits not right

    I have a camera rotating left/right/up/down, I am trying to limit the rotation to 150 degrees in any direction. I have this code working for the left/right: if gPanLeft then pCamera.rotate(0,1,0) pCamera.transform.rotation.z = max(-150, min(150,pCame

  • Benefit confirmation form on ESS

    Hello Expert, Would you please tell how to check which benefit enrollment confirmation form is called from the ESS side. We see the differences in the result when called from SAP and when called from ESS. Also could the ESS transaction be called from

  • I want to use PCK standalone and do one scenario of mail to file ?

    hi all Is it possible to use PCK standalone and do scenario of mail to file by using PCK mail and file adapters .if yes reply me thanks

  • Script "blocks" certain applications

    I'm running a script that runs from 15 minutes to an hour (or more). Many applications (web browser, office applications etc.) work fine while the script is running. (I'm using Windows 7/64) The script creates 50-200 indd files, and pdf files of thes