Adding Symbol for New Currency

Hello All-
I have a multi currency Planning application. I want to add a new currency to the system. When i was adding the currency in it i found that the symbol for the currency is not present in the predefined list that exist in Hypeiron. Is there a
way to add a new symbol to it? If yes what should i be doing to make tha change ?
Thanks!

Hi Mike,
As per note 892949, in order to import or update the price list price for items, we need to fill the LineNum field. In addition, the LineNum does not correspond to the position of the price list in the drop list of the Item Master Data window. The LineNum is the line number shown in the Price Lists window minus 1 (which means 0 for the price list 1, 1 for the price list 2 and so on).                                    
hope it helps,
Regards,
Ladislav
SAP Business One Forum Team

Similar Messages

  • Did they remove the 'just added' link for new releases over the last 4 weeks on itunes?

    they keep moving and burying it but i cannot find it at all anymore.

    confirmed this has been removed:
    Dear Jonathan,
    Greetings from Apple. I hope you are well, and thank you for taking the time to contact us. Before we continue, I would like to quickly introduce myself.  My name is Raul and I'm an advisor for the iTunes Store.
    It's my understanding that you are inquiring about the missing "New Releases" link on iTunes. I apologize for any inconvenience this may have caused you, and I will be glad to address this for you.
    As of right now, the "New Releases" link is not available via iTunes like it was before with the "Just Added" on the top right navigation menu on the music homepage.
    Apple recognizes that no one is better qualified to provide feedback about our products and services than the people who use them. I encourage you to submit your feedback regarding this matter using the following form.
    http://www.apple.com/feedback/itunesapp.html
    As an alternative for the time being, you can sign up for the New on iTunes subscription via the link below
    http://mynews.apple.com/cgi-bin/WebObjects/Subscriptions.woa
    Again I apologize the inconvenience or disappointment this may have caused you, and I thank you for being an Apple customer. Have a safe day.
    Sincerely,
    Raul
    iTunes Store / Mac App Store Customer Support

  • Can i create a new currency symbol in adobe acrobat XI pro

    the symbol for malaysian ringett does not existing in adobe.  i am creating a form where currency amounts are added.  can i create the symbol, and how?

    OK, to add a new document-level JavaScript, select: Tools > JavaScript > Document JavaScripts
    and in the dialog that comes up, enter a Script Name (e.g., "formats"), and replace what it gives you by default with the following:
    // Document-level JavaScript
    function RM_Format() {
        AFNumber_Format(2, 0, 0, 0, "RM ", true);
    function RM_Keystroke() {
        AFNumber_Keystroke(2, 0, 0, 0, "RM ", true);
    Then edit the text field and select the Format tab, and set the custom Format script to:
    // Custom Format script
    RM_Format();
    and the custom Keystroke script to:
    // Custom Keystroke script
    RM_Keystroke();
    and that should do it.
    If you don't see the Tools > JavaScript item, click the tiny "Show or hide panels" icon on the far right of the darker gray bar that appears under the Tools button after it's clicked and select it from the list of panels.

  • Adding new currency to SAP R/3

    Hi,
    All Experts.
    I am adding to new currency RON to SAP R/3 all the DO's & DONT's  given in system. I am stuck up at one point that is Define translation ratios for currency translation. The process in SAP Note is given like this....
    Under the customizing point "Define translation ratios for currency translation" (Transaction OBBS), choose the menu point Selection criteria -- > By Contents.
    In the pop-up, choose the fields "From currency" and "To currency". In the next pop-up, enter the field contents ROL for both the "From currency" and the "To currency" as well as the Oper. "OR". Press the button "Choose".
    You should now have selected all ratios where either the "from" or the "to" currency is ROL. Now select all found entries using the menu point Edit -- > Selections -- > Select All.
    Copy the currency pairs to new keys replacing ROL with RON. In most cases, you will also want to set the ratios to 1 to 1.
    SAP Note way out is quite tedious and I am not getting it....
    OR I want to try the same as NEW ENTRIES option. which one to opt. Can I go to simply for New Entries ? Will it hamper system ?
    Expert guidance will be helpful on this.
    Regards,
    Sharvari Joshi.

    Hi,
    Murali.
    Thanks again for help & guidance !
    One more question.
    SAP Note it is saying that :-
    The New Romanian Leu will have two decimal places. NO entry should be made under the customizing point "Set decimal places for currencies". (Transaction OY04). So, this is by default, do not make the entry by copying the old currency.
    Means that I need to skip the step Set decimal places for currencies completely ! Further more if I mention the amount in RON system will consider the TWO decimal places automatically. Right ?
    E.g. :- RON 100.00 Is it like this ?
    Regards,
    Sharvari Joshi.

  • ALV Grid default values for new rows added with Add/Insert buttons

    Hi!
    Help, please,  to find a way how to set default values for new rows added with Add/Insert buttons in
    ALV Grid.

    I have found salution:
    ALV Grid u2013 Insert row function
    Sometimes we need to assign some default values when we create a new row in a grid using standard ALV Append row button. In our scenario we will see how to assign default values to Airline Code (CARRID), Flight Connection Number (CONNID) and Flight date (FLDATE) when a new row is created. To do that we need to handle DATA_CHANGED event in the program like mentioned below.
    Definition of a class:
    Code:
          CLASS lcl_event_receiver DEFINITION
    CLASS LCL_EVENT_RECEIVER DEFINITION.
      PUBLIC SECTION.
    METHODS:
         handle_data_changed
         FOR EVENT data_changed OF cl_gui_alv_grid
         IMPORTING er_data_changed
                           e_ucomm.
    ENDCLASS.                    "lcl_event_receiver DEFINITION
    Implementation of a class:
    Code:
    CLASS LCL_EVENT_RECEIVER IMPLEMENTATION.
      METHOD HANDLE_DATA_CHANGED.
        DATA: dl_ins_row TYPE lvc_s_moce.   " Insert Row
          FIELD-SYMBOLS: <fs> TYPE table.    " Output table
    Loop at the inserted rows table and assign default values
        LOOP AT er_data_changed->mt_inserted_rows INTO dl_ins_row.
          ASSIGN er_data_changed->mp_mod_rows->* TO <fs>.
          loop at <fs> into ls_outtab.
            ls_outtab-carrid  = 'LH'.
            ls_outtab-connid  = '400'.
            ls_outtab-fldate  = sy-datum.
            MODIFY <fs> FROM ls_outtab INDEX sy-tabix.
          endloop.
        endloop.
      ENDMETHOD.                    "handle_data_changed
    ENDCLASS.                    "lcl_event_receiver IMPLEMENTATION
    Register the events to trigger DATA_CHANGED event when a new row is created.
    Code:
        CALL METHOD OBJ_GRID->REGISTER_EDIT_EVENT
          EXPORTING
            I_EVENT_ID = CL_GUI_ALV_GRID=>MC_EVT_ENTER.
        CALL METHOD OBJ_GRID->REGISTER_EDIT_EVENT
          EXPORTING
            I_EVENT_ID = CL_GUI_ALV_GRID=>MC_EVT_MODIFIED.

  • Old computer I had is OSX Snow Leopard with Entourage. New one is OSX Mavericks. Using Mail where are my addresses and old address book. Transferred old computer backup by Time Machine and other things work? Can't see a symbol for address book.

    Old computer I had is OSX Snow Leopard with Entourage. New one is OSX Mavericks. Using Mail where are my addresses and old address book. Transferred old computer backup by Time Machine and other things work? Can;t see a symbol for address book.

    Where are addresses kept on MAIL?  I don;t like the new format at all. Frances
    Begin forwarded message:
    From: Frances Topping <[email protected]>
    Subject: Re: - Old computer I had is OSX Snow Leopard with Entourage. New one is OSX Mavericks. Using Mail where are my addresses and old address book. Transferred old computer backup by Time Machine and other things work? Can't see a symbol for address book.
    Date: August 25, 2014 at 9:46:01 AM EDT
    To: discussions-replies <[email protected]>
    Old Entourage is POP and new Mavericks MAIL  is IMAP I believe. I don;t know how to export in the forms you mention. Frances

  • Currency Symbol for each amount

    Hello People,
    I have to include currency symbol infront of each amount in my web dynpro application display.
    Example, there is an amount in USD, currency symbol for USD must be published there and
    if there is an amount in EUR, currency symbol for EUR must be published there and so on...
    Can someone help to know me how can I do that?
    Thanks,
    Megha

    Hi Megha,
    If you are going to store the symbols as graphic/icons  I would store them in the mimes folder and then reference the the mime name in your custom table. So two fields in your table, currency and mime name.
    I think you might find that if using a Unicode system that you can just type the symbol into the table - e.g. $ £ ₧ u20AC rather than having to use any graphics. I suppose it depends on how many symbols you need.
    Again - I'm not aware of anything SAP standard that does this.
    Good luck,
    Chris

  • How to create new text symbols for the standard program.

    Based on the customer's requirement, I need to create a new implicit enhancement for the selection screen.
    I want to create new text symbols for the parameters and blocks, but I cannot change the standard ones.
    Does anybody know something about that? Thank you.

    hi ming yu,
    example : %_MATNR_%_APP_%-TEXT -> this is the material  description name in mb5b
    change the description in ur enhancement implementation
    %_MATNR_%_APP_%-TEXT = 'Material'
    it is works only input/output field
    Thanks&Regards,
    naveen

  • How add new currency symbol in pages 5.1?

    i couldnt find a way to custom add new currency symbol to pages or numbers. If anyone knows how to do, let me know. Thanks.

    Are you talking about in Tables?
    The list seems to be the list.
    In Pages '09 there is more flexibility you can have a Custom format and add your own prefix.
    Peter

  • How can i Change the currency symbols for swiss francs?

    Hi,
    i use Numbers '09.
    How can i change the  currency symbol for swiss franks from SFr to CHF. Because the international ISO abbreviation is CHF and not SFr.
    Thanks,
    Bye

    Switch to Lion.
    I checked several currencies and now they are OK.
    Yvan KOENIG (VALLAURIS, France) samedi 8 octobre 2011 23:24:26
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • IPhone 4 won't slide to unlock . I tried everything possible and even got my phone replaced fora new one costing me 10,282 Rupees . The new phone is again having the same problem even without adding any apps or taking data backup

    iPhone 4 won't slide to unlock . I tried everything possible and even got my phone replaced fora new one costing me 10,282 Rupees . The new phone is again having the same problem even without adding any apps or taking data backup

    Yeah, first my thought was also that... that's why I've gone to Apple and they already switched the phone twice!!!
    Last time was yesterday... I posted this here because I came from Apple and with a new iPhone 5, although I didn't restore anything from iCloud, I hadn't even logged in to iCloud / AppStore, and without any event on the lockscreen my iPhone 5 was already "locked" on the unlock screen... after a mere 45m after I used it without a single App!! Just a couple of SMS / 1 or 2 calls... I'm going to Apple again on monday, but tried to post here to see if this has happened before to anyone with 3 new iPhones!!!

  • Symbols for currency

    Hi ,
               I would like to know whether symbols for currencies are maintained in sap systems.For e.g the sign '$' for currency 'USD'.
    If so where is it maintained. Please guide.
    Regards,
    Ruby.

    Hi Ruby,
    Have a look at table TCP01. There you can find the character set definitions.
    The Euro / Dollar / Pound signs are there.
    It depends on what codepage is bering used.
    Kind Regards

  • A new team member is added (CC for teams) but his apps remain in Trial Mode?

    A new team member is added (CC for teams) but his apps remain in Trial Mode?
    Where do I find OUR serial number?
    b.

    Hi Ben Urbian,
    Welcome to Adobe Support,
    If the invite has been accepted, you can log out & log back of the CC Desktop App, if the issue is still there
    Then please check the following link,
    http://helpx.adobe.com/creative-cloud/kb/creative-cloud-trial-mode.html
    http://helpx.adobe.com/creative-suite/kb/trial--1-launch.html
    In case the issue is not resolved, please contact Adobe at
    http://adobe.ly/yxj0t6
    Regards,
    Rajshree
    http://adobe.ly/yxj0t6

  • Help on showing currency symbol for '?'

    SQL>select * from nls_database_parameters;
    PARAMETER VALUE
    NLS_NCHAR_CHARACTERSET UTF8
    NLS_LANGUAGE AMERICAN
    NLS_TERRITORY AMERICA
    NLS_CURRENCY $
    NLS_ISO_CURRENCY AMERICA
    NLS_NUMERIC_CHARACTERS .,
    NLS_CHARACTERSET UTF8
    NLS_CALENDAR GREGORIAN
    NLS_DATE_FORMAT DD-MON-YYYY HH24:MI:SS
    NLS_DATE_LANGUAGE AMERICAN
    NLS_SORT BINARY
    NLS_TIME_FORMAT HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY $
    NLS_COMP BINARY
    NLS_LENGTH_SEMANTICS BYTE
    NLS_NCHAR_CONV_EXCP FALSE
    NLS_RDBMS_VERSION 9.2.0.7.0
    20 rows selected.
    SQL> select * from xxx_currency;
    CUR CUR
    USD $
    USD $
    JPY Y
    GBP #
    CAD $
    EUR ?
    AUD $
    RMB X
    EUR ?
    CHF ?
    10 rows selected.
    how can i see the actual curency symbol for the eur,chf which is coming as '?'.
    Thanks

    There are (at least) two potential issues:
    1. The NLS_LANG settings of the client who has stored the data in the database was wrong and therefore the data in the database is not stored correctly.
    2. The NLS_LANG setting of your client that you're using to retrieve the data has the wrong NLS_LANG setting. Therefore an incorrect or no conversion is performed from server to client.
    What client are you using? Probably Windows?
    You can retrieve your current NLS_LANG setting by using the following command in SQL*Plus:
    @[%NLS_LANG%]This will show you something like:
    Unable to open file "[GERMAN_GERMANY.WE8MSWIN1252]"which shows you within the square brackets the current client NLS_LANG setting which is probably coming from the registry under Windows. It's only rarely defined as environment variable which would take precedence over the registry setting if defined.
    Regards,
    Randolf
    Oracle related stuff blog:
    http://oracle-randolf.blogspot.com/
    SQLTools++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676/
    http://sourceforge.net/projects/sqlt-pp/

  • How long does it take for new episodes to be added?

    I'm a newbie at podcasting, and I'm just wondering how long it will take for a new episode to appear on iTunes.

    When you add a new episode to your feed and upload it, it appears immediately for subscribers because their iTunes application reads the feed directly and the Store is not involved.
    However because of the huge number of podcasts in the Store (thousands) the Store caches the feed and checks it for updates periodically. For this reason it usually takes 1-2 days for new episodes to appear in the Store: sometimes it can be less, and occasionally the whole process seems to get stuck and it can take several days.
    You should check your feed by subscribing, either from the Store page or manually from the 'Advanced' menu in iTunes, to see that your new episodes are there. If not, then you have an error of some sort (such as a duplicated 'guid' tag). If all your episodes appear when subscribing then the Store should catch up after a bit.

Maybe you are looking for