Insert new font

Hello, i need to insert a new font for using it in a smartform. I use SPAD transaction -> font administration and upload the font. But when i try to use it in my smartform it doesn´t appear.
Do i need to do anything else?
Thank you!

Please follow the steps...
Use T-code SE73 to maintain / upload new fonts in SAP
Display/Change Font Families by clicking on the font families button and change/display as required
To install a new font, for example Arial:
Click the truetype-font install button
Then Type the font name as Arial
Give Name of the font file as : C:\WINDOWS\Fonts or C:\WINNT\Fonts > press F4 it will take u to Fonts directory Select the one u wanted.... Bold..Italic..or Simple font ---> Press Open..
All font files will have .TTF extension
Next enter the RTF font info --> Just like Test Description
You will also need to create/confirm a transport request number.
The font install should complete in a few minutes.
If you go to the style selector now you would only be able to use the regular font without Bold or Italic attributes, to be able to use either Bold or Italic attributes, you will need to repeat the procedure of uploading the font again but select either one check box or both for the respective attributes.
This should work as u wanted...
<<Text removed by moderator>>
Reagrd's,
Lokesh N B
Edited by: Matt on Dec 3, 2008 3:57 PM

Similar Messages

  • New Fonts Not Installing In System

    Good Morning All:
    I have a disk of fonts that I need to install that are a part of a visual identity package from my University. I am trying to use them in LiveType to no avail. They just come up as .exe instead of the font. The instructions tell me to simply copy them to the library.
    Any help would be appreciated

    1. Insert the disc that contains the new font, or copy the font to your hard disk from another location.
    2. Double-click the icon for the font in the Finder. Font Book opens and displays the font so you can see what the font looks like.
    3. Click Install Font.
    It should then be available in the list of fonts in Live Type or the text fonts in FCP

  • New font in Captivate

    Hi Captivate Gurus
    Can you please let me know how to insert/install a new font (ttf file) in Captivate 4.0?
    Thanks
    Varun

    Hi there
    I'm pleased you sorted it. But isn't this standard behavior for pretty much any application that runs on the Windows operating system?
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Adobe indesign cs4 (New font instalation)

    How can I install new font from adobe Indesgn cs4?
    Please help me to the procedure of install the new font!
    I have use the following steps---
    Windows>Control Panel>fonts>Install new fonts
    But Its does not work.

    >I have use the following steps---
    >Windows>Control Panel>fonts>Install new fonts
    That's not the way to do it, you need a couple more steps.
    Insert the CS4 'Extras' DVD (something like that; it's clearly labeled). From within the "Install new fonts" dialog, browse to the DVD and in there to the folder containing the fonts you want to install. If you are there, wait a bit while the list is being read. If the list fills up, select the ones you want to install (or simply choose "Select All") and press OK.
    (Note that this has
    i nothing
    to do with InDesign. It's your basic Windows base. Buy any guide and you'll find it there.)

  • Refresh jTable after inserting new data into the Database

    Hey all,
    I'm using Netbeans 6.5 to create a Desktop Application which is connected to a Java DB (Derby).
    The first simple steps were all very successfull:
    Create the jTable and bind it to the Database => everything works fine. When the application starts it correctly shows all data from the database.
    The problem starts when I try to insert new data to the database.
    For that reason I've created textfields and a button "Save". When I press the button it successfully inserts the data to the database but they are not displayed in the jTable (when the application starts they are all there, they are not updated at runtime) . I've tried table.invalidate() and table.repaint() but they just don't work.
    Any help will be GREATLY appreciated. But please have in mind that most of the code is Netbeans-generated and most of it not editable.
    Many thanks in advance.
    George

    Once again you are right my friend. I jumped to conclusion way too fast, when I shouldn't. (Give me a break, I've been busting my head with this well over a week). The response I saw when I did that was that indeed a line is added to the jTable. Because I falsly set the index of the object to be added to be second to last the row appeared on the table, what I didn't see at the time was that the last one disappeared. Hmm...
    A new adventure begins...
    So after a few hours of messing around with it here are my observations:
    1) It was not an observable list. When I add the new element with employeesList.add(newEmp); , the table gets notified but a get a bunch of exceptions:
    xception in thread "AWT-EventQueue-0" java.lang.IndexOutOfBoundsException: Index: 84, Size: 84
            at java.util.ArrayList.RangeCheck(ArrayList.java:546)
            at java.util.ArrayList.get(ArrayList.java:321)
            at org.jdesktop.swingbinding.impl.ListBindingManager$ColumnDescriptionManager.validateBinding(ListBindingManager.java:191)
            at org.jdesktop.swingbinding.impl.ListBindingManager.valueAt(ListBindingManager.java:99)
            at org.jdesktop.swingbinding.JTableBinding$BindingTableModel.getValueAt(JTableBinding.java:713)
            at javax.swing.JTable.getValueAt(JTable.java:1903)
            at javax.swing.JTable.prepareRenderer(JTable.java:3911)
            at javax.swing.plaf.basic.BasicTableUI.paintCell(BasicTableUI.java:2072)
            at javax.swing.plaf.basic.BasicTableUI.paintCells(BasicTableUI.java:1974)
            at javax.swing.plaf.basic.BasicTableUI.paint(BasicTableUI.java:1897)
            at javax.swing.plaf.ComponentUI.update(ComponentUI.java:154)
            at javax.swing.JComponent.paintComponent(JComponent.java:743)
            at javax.swing.JComponent.paint(JComponent.java:1006)
            at javax.swing.JViewport.blitDoubleBuffered(JViewport.java:1602)
            at javax.swing.JViewport.windowBlitPaint(JViewport.java:1568)
            at javax.swing.JViewport.setViewPosition(JViewport.java:1098)
            at javax.swing.plaf.basic.BasicScrollPaneUI$Handler.vsbStateChanged(BasicScrollPaneUI.java:818)
            at javax.swing.plaf.basic.BasicScrollPaneUI$Handler.stateChanged(BasicScrollPaneUI.java:807)
            at javax.swing.DefaultBoundedRangeModel.fireStateChanged(DefaultBoundedRangeModel.java:348)
            at javax.swing.DefaultBoundedRangeModel.setRangeProperties(DefaultBoundedRangeModel.java:285)
            at javax.swing.DefaultBoundedRangeModel.setValue(DefaultBoundedRangeModel.java:151)
            at javax.swing.JScrollBar.setValue(JScrollBar.java:441)
            at javax.swing.plaf.basic.BasicScrollBarUI.scrollByUnits(BasicScrollBarUI.java:907)
            at javax.swing.plaf.basic.BasicScrollPaneUI$Handler.mouseWheelMoved(BasicScrollPaneUI.java:778)
            at javax.swing.plaf.basic.BasicScrollPaneUI$MouseWheelHandler.mouseWheelMoved(BasicScrollPaneUI.java:449)
            at apple.laf.CUIAquaScrollPane$XYMouseWheelHandler.mouseWheelMoved(CUIAquaScrollPane.java:38)
            at java.awt.Component.processMouseWheelEvent(Component.java:5690)
            at java.awt.Component.processEvent(Component.java:5374)
            at java.awt.Container.processEvent(Container.java:2010)
            at java.awt.Component.dispatchEventImpl(Component.java:4068)
            at java.awt.Container.dispatchEventImpl(Container.java:2068)
            at java.awt.Component.dispatchMouseWheelToAncestor(Component.java:4211)
            at java.awt.Component.dispatchEventImpl(Component.java:3955)
            at java.awt.Container.dispatchEventImpl(Container.java:2068)
            at java.awt.Component.dispatchEvent(Component.java:3903)
            at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4256)
            at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3965)
            at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3866)
            at java.awt.Container.dispatchEventImpl(Container.java:2054)
            at java.awt.Window.dispatchEventImpl(Window.java:1801)
            at java.awt.Component.dispatchEvent(Component.java:3903)
            at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
            at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:269)
            at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:190)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:184)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:176)
            at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    Exception in thread "AWT-EventQueue-0" java.lang.IndexOutOfBoundsException: Index: 84, Size: 84
            at java.util.ArrayList.RangeCheck(ArrayList.java:546)
            at java.util.ArrayList.get(ArrayList.java:321)
            at org.jdesktop.swingbinding.impl.ListBindingManager$ColumnDescriptionManager.validateBinding(ListBindingManager.java:191)
            at org.jdesktop.swingbinding.impl.ListBindingManager.valueAt(ListBindingManager.java:99)
            at org.jdesktop.swingbinding.JTableBinding$BindingTableModel.getValueAt(JTableBinding.java:713)
            at javax.swing.JTable.getValueAt(JTable.java:1903)
            at javax.swing.JTable.prepareRenderer(JTable.java:3911)
            at javax.swing.plaf.basic.BasicTableUI.paintCell(BasicTableUI.java:2072)
    ... and a lot morewhich from my poor understanding means that the jTable succesfully notices the change but it is not able (??) to adjust to the new change. What is more interesting is that when I plainly add the element to the end of the list (without an idex that is), a blank row appears at the end of my Table. The weird thing is that I've bound the table to some text fields below it, and when I select that empty row all the data appear correctly to the text fields.
    I tried going through:
                    org.jdesktop.observablecollections.ObservableCollections.observableList(employeesList).add(newEmp);as well as
                    help = org.jdesktop.observablecollections.ObservableCollections.observableListHelper(employeesList);
                    help.getObservableList().add(newEmp);
                    help.fireElementChanged(employeesList.lastIndexOf(newEmp));and
                    obsemployeesList = org.jdesktop.observablecollections.ObservableCollections.observableList(employeesList);
                    obsemployeesList.add(newEmp);and I still get the same results (both the exeptions and the mysterious empty row at the end of the table
    So, I'm again in terrible need of your advice. I can't thank you enough for the effort you put into this.
    Best regards,
    George
    Edited by: tougeo on May 30, 2009 11:06 AM
    Edited by: tougeo on May 30, 2009 11:21 AM
    Edited by: tougeo on May 30, 2009 11:30 AM

  • DSO or ODS "Insert New Hierarchy Nodes" under Data Fields

    When you insert info objects under the Data Fields in DSO right mouse click on the Data Fields icon and you will find Insert New Hierarchy Nodes . I created a hierarchy node with infoobjects associating with it which will be visible under the Filters Folder in BEx Query designer as a seperate folder. I can add them to the infoobjects from this folder into the query. I did not know how to apply this functionality in Queries and what it really does. My guess was you can create dynamic hierarchy using characteristic infoobjects from transactional data.Any ideas or links to documentation. This option was available from 7.X in DSO's and i think even in 3.x ODS.

    Hi,
    May help you:----
    http://help.sap.com/saphelp_nw70/helpdata/en/4a/e71f39488fee0ce10000000a114084/content.htm
    You could feel the flexibility of using this hierarchial display in the Query. Try to create any Query on this DSO.
    Regards,
    Suman

  • ODI - SCD Type 2 - Insert new row error

    Hi All,
    For Dimension I have a surrogate key, a natural key, and a column with "overwrite on change", start_date, end_date, current_record_ind. When I run the interface with the default SCD Type 2 for SQl server, this runs fine. But when I change that one column from "overwrite on change" to "insert new row", it fails on the update step. What should I be looking for anf fixing.
    Thanks for your time and help.

    DB: SQL Server 2008.
    IKM = IKM MSSQL Slowly Changing Dimension
    Error Message: ODI-1228 - Incorrect syntax near the keyword from.
    Code: update T
    set
    from database.dbo.Dim_type as T,
    database.dbo.I$_Dim_type as S
    where T.Cd = S.Cd
    and T.Current_rec_ind = 1
    and IND_UPDATE = 'U'
    To overcome the issue, I have commented the update code in the Knowledge module and the insert works, but for this one it is ok, but I have requirements where one column needs to be overwritten and other column changes will require to add a new record. How to handle both?
    Thanks for your time.

  • Issue with adding new fonts in Lion

    I'm trying install two new fonts on my Mac Book Air and cannot get it to allow me to add them to the Font Book. (I've just successfully added the same fonts on to my Mac Book Pro which runs Snow Leopard, so this is definitely a Lion issue.)
    I've created a new font library and then tried adding the fonts to it but it refuses to validate the font saying that '1 serious error was found. Do not use.'  Any ideas of how to remedy this as I urgently need to use the font?
    Many thanks.

    Derp Derp Derp?? TestDerp Then Derpy Derp Derp

  • How to add a new font into Report Builder and Oracle Forms/Reports Server?

    Hi,
    I've searched the forum and can't find this being discussed.
    My developers run Report Builder 10.1.2.0.2 on their XP laptops.
    Their reports run (in production) on Oracle Forms/Reports Server 10.1.2.0.2.
    This server runs on MS Windows 2003, SP2.
    They've got a client who wants reports using the "Garamond Western" font.
    So....how do I get this font onto the developer's Report Builder laptops, and onto the Oracle Forms/Reports Server?
    I've moved various 'Garamond' fonts into C:\WINDOWS\FONTS on both the laptops and the server, but neither seem to recognize it.
    Thanks for your help.

    Thanks.
    This answers 1/2 of my question.
    The developer can now use Report Builder on his laptop, with the new fonts.
    But when he moves this new Report to the Oracle Application Server/Forms-Reports Server, it fails to use the new fonts.
    The Oracle App Server/Forms-Report Server is Version 10.1.2.0.2. It runs on MS Windows 2003, SP2.
    I have installed the exact same fonts on this server, into C:\WINDOWS\Fonts.
    I have used REGEDIT to change REPORTS_PATH....and placed C:\WINDOWS\Fonts; as the first value in this field.
    I have then stopped and restarted the Forms-Reports Server.

  • Can we insert new Detail Section After Report Footer in Crystal Report

    Hi All,
                Is it possible to  insert new  'detail' section  after  ' Report Footer' in the Crystal Report, i know this  is possible in 'detail' section where you can insert new detail one after another, but i want to  insert another  ' detail' section after Report Footer according  my required  result.
    Regards
    Rahul

    Hi Rahul...........
    Open Crystal Report and go to Insert option and select SubReport. From here you can create Subreport........
    Check below links....
    http://msdn.microsoft.com/en-us/library/ms227520%28v=vs.80%29.aspx
    http://www.youtube.com/watch?v=JVNkhj_rnMY
    Regards,
    Rahul

  • New fonts look fine in Font Book don't work in apps

    I need someone's help. I understand that to install new fonts I can either bring them into my font book (and chose whether they apply to a user or to the system) or can drag them directly into library/fonts or user/library/fonts. I am looking for some new foreign language fonts (e.g. hebrew - cursive, for example). I found some possibilities - ttf fonts - downloaded them, put them into my font book, they validated fine and within the font book they look right (i.e. as they are supposed to). I then quit the font book and go into my app, and it's not happening. When I go into MS word (2008), they don't all appear in the various menus (e.g. I made a font collection for one set, and only two appear in that collection), and when I go to use the ones that appear the font does not look much different from the latin alphabet font that was there before. So, I then tried Apple Mail and, while all the fonts appear in the font collection folder, when I choose any of them, same thing, my test letters are still in the same alphabet - size and intensity a little different, that's all.
    Someone told me that for MS Office that there is a separate folder somewhere for office fonts - is that true - where is that? Also, why aren't any of my fonts doing what they're supposed to do in a native Mac application, Apple Mail, despite the fact that they look as advertised in my font books?
    Frustrated & confused...

    my test letters are still in the same alphabet
    To generate non-Latin text in a modern OS you can't just change the font, you need to change the keyboard layout. Go to system prefs/international/input menu and check the box for Hebrew or whatever you want, plus the box for "show input menu in finder." Then select Hebrew in the "flag" menu at the top right of the Finder and type.
    You need to make sure you use Unicode fonts. Also MS Word does not yet support correct Hebrew, so use another app. For that script, Mellel is the best. See the applications section of this note:
    http://homepage.mac.com/thgewecke/TypingHebrew.html

  • How do I add a new font to the list?

    In "Tools/Options/Content/Advanced" how do I add a new font to the list? I have "Comic Sans MS" listed for one of the options, but the drop-down menu does not contain that option, so I can't select it for another font option.

    Thanks for your reply.
    As to your question: No, of course I wouldn't scroll down, it's in alphabetical order, so why would "C" for Comic Sans MS be anywhere but between B and D on the list?
    Now a question for you: If person or group was going to alphabetize a list and then break it down into sublists, why would he, she, they not include headers for each portion and maybe even indent each font name, so a person might have a chance of getting the drift?
    Also, how do you add new fonts to the list?

  • How do i download a new font from the web then add it so i can use it freely in 'word'?

    I am having terrible difficulty using a font that i down loaded on to my macbook pro. I can see it in my font book but no matter what i do it does not appear in my 'Word' font library. Its in Font Book but it seems set to stay there and do nothing. Im tearing my hair out here! In simple simple simple terms can anybody give me step by step info on how to down load a new font then get it so it can be used just like all the pre list fonts?

    Have you tried restarting the MBP? (Btw, you should post this question in the Snow Leopard forum -- there's nothing here specific to the MBP.)

  • How can I add a new font to pages?

    I want to add a new font to page.  How do I do that?

    Download new fonts from the Internet (e.g. 1001fonts.com), and then open the file once downloaded. This will launch the application FontBook. It will ask "Install the font?" Click "OK", and you will be able to use the new font in Pages, TextEdit or other word processors. (You may have to re-start the application for it to recognize it.)
    Bonus info: pressing command–t in many applications opens you computer's font control panel.

  • How to insert new line in the copied schema with transaction code PE01?

    Dear Experts,
             I have copied HKT0 to ZKT0 , i want to insert new line between  line 150 and line 160 in ZKT0, I don't know how to insert new line 160, who can tell me ?
             Looking forward to your reply.
    Best Regards,
    Merry

    Hi,
    1. Open your schema,
    2. In first colume "Line" select line where you want to add new line,
    3. Replace first value in the column field (that indicates number of line) with character I (means insert),
    4. Press enter
    The line will be added. The same way you can add lines to PCR.
    To delete use character D.
    Cheers

Maybe you are looking for

  • How to add a 2nd ipod to PC

    I just purchased my second ipod, an 80G classic video pod. When I try to add it to ITunes, I get the Software Agreement but does not allow me to continue to register it to the same PC where my older ipod is installed. Help please.

  • Return CAsh DownPayment  back to customer

    Hello Guru: how to return cash downpayment back to customer suppose when contract ended. Which menu please. Thx in advance.

  • Problems reporting work completition in a evaluation

    Hi Experts, I am trying to extract in an <b>evaluation</b> the <b>percentage of work completed</b> in a task. I found an attribute called <b>WORK_COMPLETE</b> but is not showing any results over a project that has this field filled out (in the evalua

  • Windows 8 usb problems

    The HP laptop usb drivers dont work with windows 8.  They work when fyou install the OS, but, once you restart, they dont work anymore.

  • ERR-7620 Could not determine workspace

    Hola Todos, Estoy tratando de hacer un import de una aplicacion en una Base de Datos oracle 10g r2 ( SOLARIS ) y me sale este mensaje. ERR-7620 Could not determine workspace for application (). El export fue realizado en XE-WINDOWS. No se que hacer..