How to make the Text Color in Smartform

Hi All , I have couple of  things.
1)   I need to make text Red color for display in smartform.How can i go and display the text in the red color.
2) For the same text i need two languages.ie if the vendor is English then text need to be displayed in English  .if the vendor is German then text need to be displayed in German.
    If any one have solution for above issues please help us.
Regards
Channappa Sajjanar

Hi Channappa,
For langauge translatios you have to use SE63 tcode.
You have to choose red color for u r u r character formats.
That changes you have to do in smart styles.
To do the changes in u r smart style go to form attributes.Double click on form attributes.
In style u will see u r smart style.
Double click on smart style.
There u can give u r desired character format.
Let me know if you have any questions.
Edited by: vinay raj on Apr 29, 2009 2:55 PM

Similar Messages

  • How do change the text color in the variable screen ?

    Hi Experts ,
    I would like to know about , How do change the text color in the variable screen ?
    Using web templates (Analytical) can get the output. It has the variable screen contains 6 fields (Company code, Country , Region , COB, Plant and Purchasing Group). I want to make RED color text on Plant. Please help me .
    Thank you ,
    Prasad.

    Hi,
    I am looking for nearly the same. What I have found is that it seems to manipulate the SAP theme that is used in standard when template is executed in the portal. Just display the source code of the HTML and there you will see the included SAP theme (normally SAP_TRADESHOW). Then you have to go to the SAP portal and change this stuff. But for that you have to know where to find it and what impact this change has.
    I am not pretty sure if this is the right way. But as I want to change the standard layout of a whole template to a customer specific layout I think there is no other way in BI7.0.
    Regards,
    Peter

  • I cannot figure out how to make the text larger on an incoming email.  The finger method doesn't work and I cannot find any toolbar with which to do it.  I could find nothing in settings also.  Plese help and thank you.

    I cannot figure out how to make the text larger in a received email.  The finger method doesn't work and I can find no tool bar as I can for composing emails.  I can find nothing in settings.  Please help and thank you in advance.

    Hi there,
    Download a piece of software called TinkerTool - that might just solve your problem. I have used it myself to change the system fonts on my iMac. It is software and not an app.
    Good wishes,
    John.

  • How to make the text in sub-division

    Hi,
    I am usign text  module in my adobe forms.
    Text in text module contains sub-divisions as a), b) and c). Each sub-division are in a separate line.
    While in pdf, all the sub-division combines and comes a single paragraph.
    What  would be the problem for this issue? Any Idea?
    May I know how to make the text in sub-division as in text  module?
    Thanks,
    Thiyagu
    Edited by: Thiyagu on Oct 26, 2009 7:08 PM

    Hello, experiment with Object - Field tab. Do you have your text field with "allow multiple lines" checked? I guess so. And what about the field format? Plain text or Rich text? Please try:)) Regards, Otto

  • How to identify the text color in a word doc.?

    how to identify the text color in a word doc.?
    I need to read a word document using java code. which contains many strings with different colors.
    i need to identify the color and giving the marks accordingly like
    test in blue color so
    test marks=2
    how can i do this using java. i only want to know how can i identify the text color using java code.?

    morgalr wrote:
    I guarantee it is not pretty.Indeed.
    I created a Word doc that simply has the word "Blue" in blue, then a space, then the word "Red" in red, all in the default font that Word started with (Times New Roman). The resulting document is 24,064 bytes. It starts off with 80 bytes of various hex values, mostly 0x00.Then 432 bytes of just 0xFF. Then 2048 bytes of various hex values, mostly 0x00. Then the text "Blue Red" (which appears twice more in the file). And so on...
    Edited by: jverd on May 10, 2010 8:45 AM

  • How do make the text on a label Bold?

    Simple question: How do make the text on a label Bold?

    use html : label.setText("<html><body><b>TestText</b></body>/html>");
    regards,
    Tim

  • How to change the text color to red in a combo box?

    I'm writing a java program which have a combo box which shows all the name of the member from the database. However, I would like to change the text color of those member who have now currently on-line.
    Please help, it's URGENT. Thanks in advance.
    Clark

    hi,
    as i mentioned, you would require to use a custom renderer for this, for this
    //Class subclass the JFrame and has a JList in it
    import javax.swing.*;
    import java.awt.*;
    import java.util.Vector;
    public class ListRendererTest extends JFrame
         private JList lstMenu;
         private DefaultListModel defaultListModel;
         private JScrollPane scrollPane;
         private Vector listVector;
         public ListRendererTest()
              init();
              addComponents();
              showFrame();
         public void init()
              lstMenu = new JList();
              defaultListModel= new DefaultListModel();
              lstMenu.setModel(defaultListModel);
              scrollPane      = new JScrollPane(lstMenu);
              listVector = new Vector();
              MyListData m1 = new MyListData();
              m1.setName("Rakesh");
              m1.setOnline(false);
              listVector.addElement(m1);
              m1 = new MyListData();   //represents each User instance
              m1.setName("Makesh");
              m1.setOnline(true);
              listVector.addElement(m1);
              for (int i=0;i < listVector.size(); i++)
                   defaultListModel.addElement(((MyListData)listVector.elementAt(i)));
              lstMenu.setCellRenderer(new MyListRenderer());  //set custom renderer
         public void addComponents()
              getContentPane().add(scrollPane,BorderLayout.CENTER);
         public void showFrame()
              setTitle("List renderer test");
              setSize(300,300);
              setLocation(200,200);
              setVisible(true);
         public static void main(String args[])
              new ListRendererTest();
    }The above class is the Container which houses the JList in it, it uses two other classes, MyListData which is used to represent each user instance ( username, and information about whether he is online) and MyListRenderer (custom renderer).
    // Represents each user instance //
    public class MyListData
         private String name;
         private boolean online;
         public void setName(String name)
              this.name = name;
         public String getName()
              return name;
         public void setOnline(boolean online)
              this.online = online;
         public boolean isOnline()
              return online;
    //custom list renderer
    import javax.swing.*;
    import java.awt.*;
    public class MyListRenderer extends DefaultListCellRenderer
         private MyListData myListData;
         public Component getListCellRendererComponent(JList list, Object value, int index,  boolean isSelected, boolean cellHasFocus)
               myListData = (MyListData)value;
               setText(myListData.getName());
               setBackground(myListData.isOnline() ? Color.red: Color.white);  //check if online, if so show in different color
               setForeground(isSelected ? Color.blue : Color.black);
               return this;
    }hope that helps.
    cheerz
    ynkrish

  • How to make the text fields as mandatory (in 'notes and attachment' tab)?

    Hi,
    We have defined some Fixed Values for texts under IMG>SRM>SRM Server>Cross Application Basic Settings>Text Schema>Define Fixed Values for Texts, for a certain transaction type of RFx responses for a text schema.
    Because of this, the bidder can choose one of these fixed values for texts. This is perfectly working fine.
    Now the question is, we want to make the texts fields as mandatory. i.e. The bidder should not be able to submit the responses if certain texts are blank.
    Is there be any BadI for this?
    GH

    You can use BBP_DOC_CHECK_Badi for this field validation using a filter value RFx/Bid (I ont remember exact word).
    Regards,
    Jagadish.

  • How to change the text color of a label by using RGB values without changing the background colour?

    xCode interface builder:
    When I try to change the color property of a label's text by using the RGB values, the background color also changes to the same value automatically.
    in other words:
    While setting the RGB values for text colour of labels, the background colour also changes unless we use the sliders.
    How to make sure that only the color of text changes and not the background?

    You can simply do this.
        [labelname setTextColor:[UIColor colorWithRed:38/255.0f green:171/255.0f blue:226/255.0f alpha:1.0f]];

  • How to make the text of the toolbar smaller?

    I went to see some friends one weekend, an left my computer at home. No one touched the laptop in my absence, nor does anyone but myself use it.
    The text in the firefox toolbar was the right size to me, as well as the sizes of the windows that popped up from them (i.e, the options window that appears when customizing privacy and security from clicking 'options' on the 'tools' dropdown bar.)
    when I came back, the text of the toolbar and the windows that appear from them seemed larger than I wanted. (NOT the web page font, but the browsing toolbar font itself, such as the font for my bookmarks, the font for the tabs, etc.)
    How do I adjust this to make it smaller? The size they are now takes up too much space, and is not needed.

    Can you attach a screenshot?
    *http://en.wikipedia.org/wiki/Screenshot
    *https://support.mozilla.org/kb/how-do-i-create-screenshot-my-problem
    Use a compressed image type like PNG or JPG to save the screenshot.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • How to make the text bold in tablix

    Hi All,
    In a SSRS report I have one table
    one of the field value is like "MLA 2008 : Bandeppa Khashemp JDS " ,"MLA 2013 : Ashok Kheny KMP".
    My requirement is to display the value like "MLA 2008 : BANDEPPA
    KASHEMPUR JDS" ," MLA 2013 : ASHOK KHENY KMP
    Can anyone help me on this
    Thanks in Advance...
    Krishna.N

    If you can modify the field value, you can set it to "<b>MLA 2006 :</b> BANDEPPA ..." and then set the placeholder/textbox Markup Type to HTML.
    If you always have a fixed number of characters that will be bold, you can have a placeholder with the expression for example:
    =Left( Fields!MyValue.Value, 10 )
    and make that placeholder bold. Then have another placeholder to display the rest of the text.
    As a 3rd option, you can perhaps make a VB.net function in the report code, that takes the value and adds the <b> html tags to it based on some logic, but you need to determine yourself how and where to place the tags.
    Regards
    Andrew Borg Cardona

  • How to make the text and frames on a iweb-designed site look universally aligned?

    iweb was used to design my site which looks fine on my Mac but the site looks completely different on PC computers - parts of pages are cut off, text is jumbled, images are stretched out. How can the text   images be stabilized?

    What can be done to make sure the frame stays consistent no matter what browser or resolution accesses the website?

  • How to make the text flow in a table from on page to the next?

    hello,
    i wanted to know if its possible on pages to make a table so the text will flow from one page to the next?
    (for example, i write a content in the column on a specific raw, and if still have text when i reach the margins of the page, it automatically continues the text on the SAME raw on the next page)
    i couldn't imagine i would ask this, since this seems to be a default on Word, but i hope i explained it right, but just in case, ill add a picture to illustrate (notice that in raw 10 there is still text, its just continues and disappears, without flowing to the next page. on the next page it is just a new raw 11, and i wonder if its possible to make the remainder of the text from raw 10 flow to the next page)
    *and I'm new in mac, so please be as specific as possible
    thank you

    thank you Jerry,
    i did not understand where is that option you mentioned, because it seems that is exactly what i need!
    ill will add some snapshot to show you my "Format" and "Arrange" properties, because i couldn't find it
    *the only place i could find what you saying is on the right side of the screen, there is the "arrange" tab, but there "move with text" and "inline with text" were selected from the beginning

  • How to change the text color of a formLayoutColumnHeader ?

    Hi all,
    I'm working on a BSP on SAP NetWeaver 2004s and would need to change the (OTR) text color to red in a
    formLayoutColumnHeader, but there is no attribute about it. I searched for other threads and tried with the
    tag <font color=....>  before the OTR tag, but the tag is shown with the OTR text on the UI...
    Example:
        <phtmlb:formLayoutColumnHeader id   = "PublInfoGroupHeader"
                        text     = "<%= otr(xxxxxxxx) %>"  />
    Thx in advance, best regards.
    Angelo

    did you try
    text = "<font color='red'><%= otr(xxxxxxxx) %></font>"

  • How to set the text color in a Canvas?

    When I use (Graphics) g.setColor(255,255,255), then g.drawString("xxx", 0, 0, ....);
    the simulator works well but it can't work in my mobile phone (Nokia 7650).
    What's wrong?
    Thanks.

    do it like this
    g.setColor(255,255,255);//this will set the color for the canvas
    g.fillRect(0,0,ht,wd);//this will fill the rect(screen) with the above color,actually this will be BG color for ur app..ht,wd are the height and width of ur canvas...
    now specify color for the text
    g.setColor(r,g,b);//this color shud ofcourse be diff frm the color set for BG
    now draw the string
    g.drawString("xxx", 0, 0, ....);

Maybe you are looking for