Add new font types to SAP GUI

Hi,
I'm trying to add new font types to SAP GUI to be available to edit smartforms and mail forms, but, after I do the upload in SAP system (by SE73 transaction)of ARIAL font, when I associate it to a smartstyle, what really appears with ARIAL name is a Times New Roman font example.
Greetings,
Nuno Moreira

Hi Nuno,
  Maybe this question isnt corresponding with this forum. But I have a thread with the answer... look at
Re: Adding a new font for SAPscript/SMARTFORM output
Regards.
Manuel

Similar Messages

  • How do I add new fonts I've downloaded to Microsoft Word? It's in my font book but not usable on MW., How do I add new fonts I've downloaded to Microsoft Word? It's in my font book but not usable on MW.

    How do I add new fonts I've downloaded to Microsoft Word? It's in my font book but not usable on MW.,

    Typical issue with Font Book.
    Restart your Mac and immediately hold down the Shift key when you hear the startup chime to boot into Safe Mode. Keep holding the Shift key until you see a progress bar towards the bottom of the screen. You can let go of the Shift key at that point.
    OS X asks you to log in (you will get this screen on a Safe Mode boot even if your Mac is set to automatically log in). Let the Mac finish booting to the desktop and then restart normally. This will clear Font Book's database and the cache files of the user account you logged into in Safe Mode.

  • How to add new data type

    I need to add new data type like SDO_GEOMETRY in spatial Oracle.
    I don't mean the User-Defined Datatype but new datatype imbed in the database.
    It might be written in C++ or Java but I do not know how.
    Any hints and help will be appreciated. Thanks,

    > It is not simply defining new VARCHAR3.
    I will compare embedded new built-in data type and UDT as part of my research.
    What I really meant was what do you want from your new type that a user-defined object can't give you? (Apart from the obvious shortcomings of Oracle object types being addressed, but that could take a while.) You specifically said "I don't mean the User-Defined Datatype but new datatype imbedded in the database" and I wondered what you meant by that.

  • Need to add new condition type using   BAPI_SALESORDER_CHANGE

    Hi all,
    I am using BAPI_SALESORDER_CHANGE to add new condition type for an order item.
    I am able to add it, but problem here is, that i want that condition type to be manually changable. Here, in BAPI, after execution, condition type field becomes disable.
    My code is as follows:
                    MOVE 'B' TO wa_logic-pricing.
                      MOVE 'X' TO wa_logic-cond_handl.
                      wa_cond-itm_number = wa_vbap-posnr.
    *                  wa_cond-cond_st_no = it_konv1-stunr.
    *                  wa_cond-cond_count = it_konv1-zaehk.
                      wa_cond-cond_type =  it_discount-kschl.
                      wa_cond-CONDORIGIN = 'C'.
                      APPEND wa_cond TO i_cond.
                      CLEAR: wa_cond.
                      wa_condx-itm_number = wa_vbap-posnr.
    *                  wa_condx-cond_st_no = it_konv1-stunr.
    *                  wa_condx-cond_count = it_konv1-zaehk.
                      wa_condx-cond_type =  it_discount-kschl.
                      wa_condx-updateflag = 'I'.
                      wa_condx-COND_VALUE = 'X'.
                      APPEND wa_condx TO i_condx.
                      CLEAR: wa_condx.
    FORM f_update_order .
      CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
        EXPORTING
          salesdocument    = salesdocument
          order_header_in  = wa_headerdata
          order_header_inx = wa_headerdatax
          logic_switch     = wa_logic
        TABLES
          return           = it_return
          order_item_in    = i_itemdata
          order_item_inx   = i_itemdatax
          conditions_in    = i_cond
          conditions_inx   = i_condx.
      IF NOT it_return[] IS INITIAL.
        PERFORM f_commit_or_rollback.
      ENDIF.
    ENDFORM.
    Please let me know, if it could be achievable.
    Best regards,
    Meena
    Moderator Message: Corrected the code tags. You need to use flower brackets.
    Edited by: kishan P on Aug 25, 2010 6:04 PM

    Hi,
    This is the demo code i am writing:
    Even Change manual entry field in BAPI did not helped me.
    [code]REPORT  ZTESTM1.
    data: l_knumv type knumv.
    DATA: it_return        TYPE STANDARD TABLE OF bapiret2,         "Internal table for t_txt_ret
           wa_return        type  bapiret2.
    data: begin of it_konv occurs 0.
           include structure konv.
           data: end of it_konv.
    data: logic_switch type standard table of    BAPISDLS,
          wa_logic type BAPISDLS.
    data:itemdata type STANDARD TABLE OF BAPISDITM,
          wa_item type   BAPISDITM.
    data : salesorder type BAPIVBELN-VBELN.
    data:itemdatax type STANDARD TABLE OF BAPISDITMx,
          wa_itemx type   BAPISDITMx.
    data: wa_header type BAPISDH1,
          wa_headerx type BAPISDH1X.
    data: i_cond type STANDARD TABLE OF BAPICOND,
          wa_cond type BAPICOND.
    data: i_condx type STANDARD TABLE OF BAPICONDX,
          wa_condx type BAPICONDX.
    move '0060008601' to salesorder.
    move '000010'  TO wa_item-itm_number.
    append wa_item to itemdata.
    move ' '  to wa_header-BILL_BLOCK.
    move   'U'  to wa_headerx-UPDATEFLAG.
    move  'X' to wa_headerx-BILL_BLOCK.
    MOVE: 'U'  to wa_itemx-UPDATEFLAG,
         '000010'  TO wa_itemx-itm_number.
         append wa_itemx to itemdatax.
    move 'B' to wa_logic-PRICING.
    move 'X' to wa_logic-COND_HANDL.
    select single knumv from vbak into l_knumv where vbeln = '0060008601'  .
    select * from konv into table it_konv where knumv = l_knumv  and kposn = '000010'.
          wa_cond-ITM_NUMBER = it_konv-kposn.
          wa_cond-cond_type = 'Z550'.
          wa_cond-CONDCHAMAN = 'X'.
           append wa_cond to i_cond.
           clear: wa_cond.
    wa_condx-ITM_NUMBER = it_konv-kposn.
    wa_condx-COND_TYPE = 'Z550'.
    wa_condx-UPDATEFLAG = 'L'.
    append wa_condx to i_condx.
    clear: wa_condx.
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
      EXPORTING
        salesdocument               = salesorder
       ORDER_HEADER_IN             = wa_header
        order_header_inx            = wa_headerx
       LOGIC_SWITCH                = wa_logic
      tables
        return                      = it_return
       ORDER_ITEM_IN               = itemdata
       ORDER_ITEM_INX              = itemdatax
       CONDITIONS_IN               =   i_cond
       CONDITIONS_INX              =   i_condx
      EXTENSIONIN                 =
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.[code]
    Thank you.
    Meena

  • How can I add new font to java available font list?

    how to edit font.properties file to add new font?
    thanks for any suggest.

    Can you help me, pls?

  • To add new file type in SharePoint

    Hi,
    I am trying to add new file type for sharepoint site like MSWord, PDF etc.,
    Are there any ways to create new file types in SharePoint? My requirement is to create a file type for AutoCAD drawings (.dwg format).
    Please note, we are using SharePoint 2007 version!
    Thanks

    Browse to the Central Admin site
    Select the Operations tab
    Under the Security Configuration section, click the link for
    Blocked file types
    Select the Web Application that you would like to modify from the drop down list
    Each blocked file extension displayed in the list is blocked by SharePoint.  To enable the blocked file extension, simply remove it from the list.
    Check with your type and if its there unblock it.
    Regards, Dharnendra Shah "strong belief is the only way to success"

  • Add New File type to Symbian os 9.1 ?

    Hi all
    I wanna Know is there any way to add new file type (for example AVI Filetype) in S60v3
    - I know that Y-Task (Filetype) can modify File Association (But only for Known file types by Symbian os & cant add New file type)
    Is there another app or trick?
    Thanks in advance

    I don't think there is any trick yet available. But there are 2-3 applications that play AVI media files.

  • Add New Font

    I want to add new "font" to my  bb curve 9300 and my os verison is 6.0 bundle 2342.Pls help me out.

    rajkannan90 wrote:
    I want to add this font "Eltpan-n" to my deivce.
    And how to check wether my device support's  All language pack or multilanguage OS pack ???
    Hello rajkannan90,
    Here's how to add new font on your BlackBerry:
    Plug your BlackBerry in your Desktop and copy the font in your SD card / Device
    On your BlackBerry, go to your Media, BB Menu > Explore > BB Menu > Show Hidden.
    Now, on your BlackBerry, copy the font where you saved it and paste to this location: device/appdata/rim/fonts/
    Now, paste it and perform hard reset by pulling your battery while your BlackBerry is ON and reinsert again.
    And its done.
    Good luck!
    Please thank those who help you by clicking the button.
    If your issue has been solved, please resolve it by marking "Accept as Solution"

  • ADD NEW FONTS

    Hi every body
    how can i add new fonts to be supported by oracle,
    because i have some fonts i windows that does not support by oracle

    ANY HELP PLEASE

  • Possible? To add new file types to Bridge?

    When a file isn't listed in the file type list in the preferences, then Bridge (in Vista) doesn't allow me any changes for the "open with" function. It seems that I MUST live with Bridge's own handling for this file, even when it is false. (e.g. I already posted that Bridge falsely opens MindManager files using Safari)
    From other management software I know that it is sometimes possible, to manually add new file types to the preferences, e.g. editing an ASCII/txt file where they are listed. This is less elegant, but I would do it, if no other choice. Is there such a file in Bridge? Or do you know an other way to add new file types?
    Thanks, Michael

    Hi,
    You can not extend Oracle Data Mining to have your own algorithm.
    However, you can integrate mining implementations within the DB via SQL, PL/SQL among others.
    Thanks, Mark

  • How do i add new font to sap(smartform)

    hi, all!
    now, i have one thing to be solved!
    i'm using smartforms for developing form program.
    i can't find what i want to use new font in sap.
    so i added new font to sap using se73 t-code. but some are missing, for example i can't use bold...
    so, if anybody have these experience... tell me how to...
    best regards,
    gy cho.

    hi,
    For SE73, on screen
    There is a button 'True Type-Font Importian'.
    On pressing this button you will go to next screen.
    Give unique name of font and .ttf file of your computer.
    If you select Bold or Italic, select different font file respectivly.
    and Execute.
    Fonts are centralized for SAP.
    if you are not authorized to do cross-client activity, it will not allow you.
    Usually Basis Team does this for developers.

  • How to add new fonts into SAP

    hi experts,
                  I have a font in my system but it is not coming in SAP .How to bring it into SAP.like picture we have to export it ????
    thanks in advance
    mani

    Hi,
    You need to upload the fonts in SE73 - SAP FONT MAINTENANCE transaction.
    Cheers
    VJ

  • Add new  fonts in IC Webclient

    Hello everyone,
    Anyone knows if it's possible to add/configure new fonts, to be available IC Webclient (HTML e-mail editor)?
    Thanks and regards

    This might help:
    http://help.sap.com/saphelp_crm40/helpdata/en/4f/74cfcd47704f30b872e938ed6bde2d/content.htm
    http://help.sap.com/saphelp_crm40/helpdata/en/7b/37b3232f0247198126e9b15e59936b/content.htm
    Also check out section 5.6 in IC webclient cookbook 4.0 on subject "User Interface Design Extras".
    Regards,
    Kaushal

  • Can we add new Payment means in SAP Business One Payments

    Dear Experts,
    Can we new Payment means in SAP Business One Payments?
    Currently, I am having 4 Payment means as Cash, Cheque, Bank Transfer and Credit Card.
    I need one more Payment means as Coupons.
    These are the Discount coupons which will be issued to our regular customers on Purchase of amount above certain limit.
    Thanks & Regards,
    Amrut Sabnis

    Hi Amrut,
    you can't add a payment means, but you can book the new payment means as an additional creditcard name for example "coupons"
    Kind regards
    Ad

  • Add new manager field in SAP Query

    Hi All,
    I need to find manager for the employee. Is RH_GET_LEADING_POSITION right function module?
    After finding the manager I need to add new field 'Manger' in the existing SAP Query. Please can anyone help me inserting additional code into the SAP Query.
    Please kindly help me
    Thanks in advance.
    Archana.

    Thanks for the reply. But my question is there is no direct field called manager I need to write a piece of code to find the manager and insert in the existing sap query. I want to know is there any function module to find the manger where import parameters are pernr and export parameter I want manager objid or pernr.
    Please help me...
    Thanks,

Maybe you are looking for

  • Time capsule as back up & external hard drive, & transferring itunes to TC

    I have 90% of my itunes files on an external hard drive which I used as the location of my itunes library when I was using a pc. I now use a macbook 80GB. I cannot use my external hard drive with my macbook as it's filing system is NTFS, and so incom

  • Video recording issues (it jumps and the audio sto...

    Dear Support team, I was very satisfied with my phone for a couple of months but nowadays I've an annoying issue with the video recordings of my Nokia Lumia 920. I've noticed in the past few weeks that there's a "bleep" or a "jump" in each video I ta

  • Payment terms Text

    Hi,    while creating vendor i am giving the payment terms. based on the selected payment terms i have to retrieve the text and display it on the purchase order format. How can i do that one. please help me.

  • QueueId for HTTP Sender Adapter.

    Hi All: I modified the HTTP client and sending QoS = EOIO and queueid=test_queue. But I am getting an Error  : <i><b><b>Result:   <SAP:Error><SAP:Category>XIServer</SAP:Category><SAP:Code>INTERNAL.ATTRIBUTE_INITIAL</SAP:Code><SAP:P1>QUEUE_NAME</SAP:P

  • HT4623 Why don't Updates finish ?

    Why don't updates finish?