FLOWS_020200 decimal and comma setting, wrong definition for Croatian lang

Hi!
In what table (view) is definition that define for certain language that decimal point and comma.
Problem is that for Croatian language these two items are flipped. When we change language to German, these two chars are OK.
So we'd like to change value in some system table where is definition for Croatian language.
P.S.
For future versions please put that decimal point =',' and comma ='.' (opposite to current setting)
THX

Scott,
we have successfully solved NLS problem in a way that I have described before.
Now remaining problem is when we change language (hr-en) with code like:
  IF #OWNER#.tool.get_lang='hr' THEN
    :FSP_LANGUAGE_PREFERENCE := 'en';
    :G_PLEASE_WAIT := 'Searching...please wait!';
  ELSE
    :FSP_LANGUAGE_PREFERENCE := 'hr';
    :G_PLEASE_WAIT := 'Pretražujem...molim pričekajte!';
  END IF;
  htmldb_application.g_unrecoverable_error := true;
  htp.init;
owa_util.redirect_url('f?p='||:APP_ID||':'||:APP_PAGE_ID||':'||:APP_SESSION);then we get an error because it seems that redirect_url is noto working with alter session (which execute Before page header and Before computations and validations for the same page).
ORA-06502: PL/SQL: numeric or value error: character to number conversion errorlanguage change process is fired before "alter session" proceses...
For us it is unacceptable to show wrong number format signs on WEB page.
Is there any way to solve this problem?
So please is there any table where we can replace that ...
Just want to say that when we define "de" (German) as primary language (without our NLS_SETTING processes), that decimal and group format are OK as well as date format (DD.MM.YYYY).
So please, these settings are placed somewher in Apex table...which one?
THX!
Message was edited by:
Funky

Similar Messages

  • I am running OS10.6.8 and have a mail box duplication. I use gmail and when I open my mail I have both the Apple Mail and another set of boxes for Gmail. Both get all mail and when I delete from one, it deletes from the other. How can I get rid of the dup

    I am running OS10.6.8 and have a mail box duplication. I use gmail and when I open my mail I have both the Apple Mail and another set of boxes for Gmail. Both get all mail and when I delete from one, it deletes from the other. How can I get rid of the dup

    Hi,
    According to your descriptioin, I don't think this is system problem, it should be Intel driver problem. It would be contact Intel to confirm this issue whether this is their driver problem.
    Roger Lu
    TechNet Community Support

  • HT5787 i buy iphone 4sfrom some friend that's he got it from his friend in canada and me set up software for it from Itunes and it asking now for apple ID that's i don't used it for download apps and me can't open my Iphone right now !! what i should do ?

    i buy iphone 4sfrom some friend that's he got it from his friend in canada and me set up software for it from Itunes and it asking now for apple ID that's i don't used it for download apps and me can't open my Iphone right now !! what i should do ?

    It's not stolen ,that iphone came from canada to Egypt and me activeted it last night i got the acc from the owner
    Thanks for Replay Mr

  • How do I cut and paste sets of lines for use in various Math questions?

    How do I cut and paste sets of lines for use in various Math questions?

    Thank you for your reply. My problem is much simpler than you are thinking. As a teacher I prepare sheets with random number generators.
    EG. 256 + 389= ______    or         467
                                                 -  384
           469 + 753= ______     
    or  5)750
    On a PC I was able to start a page of A4 with one set and then drag and drop down and across the page.
    On my Macbook I can get the numbers in but the lines do not copy. I asked at one of my One to One sessions and it had my 'trainer' stumped. He said he would make enquiries but so far no news. I am using Numbers.
    I hope I have explained my 'problem' satisfactorily.

  • Home row computing sets wrong keys for XDM, can't log in.

    Hi,
    Yesterday I modified /usr/share/X11/xkb/symbols/us. I set CAPS to ISO_Level3_Shift and added Left, Right, Up, Down on the third column (AltGr), as explained here: https://superuser.com/questions/96299/m … ys-under-x
    Everything was working great and I could emulate the arrow keys by pressing CAPS + htnw (I'm on dvorak).
    Happines lasted for one day. Today I could not log in, because the XDM login screen would receive arrow keys instead of the h t n w keys (without pressing CAPS or any other modifier). Those letters were gone from my keyboard.
    Why would XDM assume CAPS is pressed? (or whatever it's doing). Any ideas how to solve this?
    Update: I forgot to mention the purpose of my tweak: map the arrow keys to the fingers on the resting position using CAPS as modifier, to avoid moving my hands so much. Same idea as in emacs or vi, but globally.
    Last edited by rokidakota (2015-02-14 09:54:38)

    Thank you for the suggestion. My phone had been connected to my wireless network since I got it in January. I replaced my router today and at one point this afternoon, was connected to the new router using WPA-PSK. Both my PC and my MBP are connected to the wireless network right now using the same password that I keep entering in my phone. I tried WPA2 and that didn't make a difference. I have reset the phone network settings, removed the sim card and put it back, rebooted phone, router and computer. I guess I will start from scratch and create a new network again and see if that fixes it.
    Can anyone confirm that trying to log in too many times is not a factor? I know if you try to log into your password protected phone 3 times, and get the wrong password, it locks you out for awhile. Gmail locks you out for 2 weeks.

  • Working on Localization - Decimal and Comma 'Decimal' Seperators

    Note: SQL Server 2008 (Do not have the PARSE and TRY_PARSE functions available from 2012.)
    Hello, I am currently working on a project to offer a localization of an existing product to other languages. This means I, unfortunately, have no say in how things were done in the past and I now have to work with what I have got.The product is a website that
    will need to accept numbers in the proper culture format. In the US we would write, '123456.78', however for the Spanish or French localization they may want to type '123456,78'. 
    Now is where the fun starts. These values will be passed to a stored procedure in their culture specific format, which will also be the regional format of the server (both will not be supported at the same time.) The issue is that T-SQL will only cast (implicitly
    or explicitly) a number in the decimal format, and it does not care what regional settings are used on the server.
    This leaves me with two options
    1) I write a stored procedure for the 'decimal' culture that makes no modifications to the input and a duplicate stored procedure that will be used when it is a culture that uses the comma format, in which a replace would be done to change the format into the
    decimal format. I would then need to rewrite the website to call the appropriate stored procedure based on language.
    2) Preferably, I could write a single stored procedure that does this dynamically based on the server's regional settings. If decimal, do nothing, if comma, perform replace. Ugly, but it would work. This leads me to..
    Is there any way to access the database server's regional setting through T-SQL to determine the number format? I suppose I could put this value in a config table then select it, however I was hoping to keep the solution dynamic.
    Any other thoughts that might help me with this?
    Thanks!

    I guess I'm confused as to why the client applications cannot do the conversion and pass the values as decimals to your stored procedures.  Some things SQL does very well, some things programming languages do well.
    Give me a day (with pay) and I think I could figure this out in TSQL.  Give me an hour with my limited .Net ability and I could figure out how to do this.
    Russel Loski, MCT, MCSE Data Platform/Business Intelligence. Twitter: @sqlmovers; blog: www.sqlmovers.com

  • Our daughter just got an iPad Mini and I set it up for her, but I originally set it up under my apple id in order to create an apple id for her.  Is there any way for me to switch it to her account as the main user?

    Our daughter just got an iPad mini and I originally set it up under my Apple ID in order to create an Apple ID for her (she's under 13 so I set up iCloud family)... is there any way to switch the main user to her so that she can use iMessage and such under her own account?  When she uses iMessage it's my account.  I can't find a solution anywhere.  Thank you!!

    Hi Maudluna,
    I understand you would like to sign out your Apple ID from an iPad. You can do this easily by following the steps in the article below. I have also linked to an article about Family Sharing which can help you create and manage multiple accounts:
    iOS: Sign in with a different Apple ID in the iTunes Store, App Store, and iBooks Store - Apple Support
    Start or join a family group using Family Sharing - Apple Support
    Family Sharing makes it easy for up to six people in your family to share each other’s iTunes, iBooks, and App Store purchases without sharing accounts. Pay for family purchases with the same credit card and approve kids’ spending right from a parent’s device. And share photos, a family calendar, and more to help keep everyone connected.
    Thank you for contributing to Apple Support Communities.
    Take care,
    Bobby_D

  • Convert String and set as displayname for mailbox in bulk

    Hi All,
    Need a favor to convert the existing displaynames to right format and then set the displayname for bulk mailboxes.
    Current Displayname - "Ranji Rock MBA\DBA\RISK\FIN"
    I need a script to convert the above text to "Ranji Rock MbaDbaRiskFin" and set it as displayname. Could someone help me to remove those slashs in the text and adding the first letter in caps??
    Never giveup till you get what to want.

    This should work, or give you a direction to head to, but please test it on a test OU first!!!
    $users = Get-ADUser -SearchBase "OU=Users,OU=To,OU=Path,DC=Here,DC=Company,DC=your" -Filter * | select sAMAccountName, Name, Displayname, 
    ForEach ($User in Users){
    $ExistingDisplayName = $User.Displayname
    $Newdisplayname = $ExistingDisplayName -replace "\\","" #Need the \\ as \ is an escape Charactor
    Set-ADUser -Identity $User.sAMAccountName -Displayname $Newdisplayname
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. If you find an answer helpful
    then please "Vote As Helpful"
    Adam - the OP is looking to rename the displayname of mailboxes, not the AD accounts.
    Don't retire TechNet! -
    (Don't give up yet - 13,225+ strong and growing)

  • Could someone please help me, I bought my daughter an iphone 4s for my daughters birthday yesterday and set it up for her so she could use it straight away, now we share emails, facetime and when i download an app she gets it too,

    Could someone please help me, I bought my daughter an iphone 4s for her birthday yesterday and I set it up for her so she could use it straight away, now we share emails, facetime and when i download an app she gets it too, very annoying for us both.

    you can use the same apple id for purchasing apps and music if you want, but turn off automatic downloads. it may be better to have separate ones, but if you want the same app you'd have to pay twice. that's something you'll have to think about. for all the other stuff like facetime and messages and icloud you need to have separate icloud id's. see the apple link below.
    http://support.apple.com/kb/HT4895?viewlocale=en_US&locale=en_US

  • Timing setting in BIOS for Corsair DDR3 on P35D3?

    I'm having problems getting my new P35D3 MS-7356 to boot correctly (see symptoms below).
    MSI tech wrote: "...contact manufacture of ram for possible timing setting recommendation in bios."
    I have (1) 1024MB  stick of Corsair DDR3 1066MHz PC8500 Dual Channel kit, TWIN3x2048-1066C7 G Memory Retail in the #1 & and another in the #3 slot .
    The BIOS is version 1.1.0.L53.
    I have no experience overclocking. I've been trying to boot using the "Load Optimize Default."
    Anyone know what timing setting I should be using that the tech is talking about?
    Description of the problem:
    Installed MOBO and
    graphics card
    one HDD
    two MB memory
    1 USB keyboard
    1 USB mouse
    ViewSonic 20” LCD monitor
    The HDD is powered by a SATA power cable and is plugged into the board via a SATA cable.
    This is what happened with the very first boot attempt:
    I plugged in the power supply cord
    I turned on the power supply and the red LED light on the board comes on.
    I press the power-on button on the front of the case and the HDD LED and power switch LED come on.
    The power supply fan, the CPU Fan, and the Sys Fan1 (case exhaust fan), start running for two seconds and then stop.
    After two more seconds the fans start again and the monitor displays 4 lines of info about the nVidia card and that's it. No BIOS info.
    The LCD screen turns black and reverts to "No Signal".
    The fans stop for 3-5 seconds and the process repeats itself indefinitely.
    If I press the CMOS button I get:
    4 lines of nVidia info appear and then the MSI Logo with the option to Set BIOS followed with:
    CMOS setting Wrong
    Date and Time setting wrong
    Press F1 to run setup
    Press F2 to load default values
    I press F1 and enter the time and date and Optimize for Default and press Save and Windows Vista Ultimate loads. I’m able to work in Vista for as long as I wish.
    Then I try to reboot and I have to go through the above steps again, in other words the BIOS does not retain the date and time.
    I booted with just one stick installed and then again with the other stick in the #1 slot and, providing I do the above mentioned CMOS reset (& re enter date and time), the PC boots into Vista.
    I have tried F2 "Load default values," and Vista loads but the date and time in Vista are incorrect and then my virus software won't download the latest versions.
    MSI recommended swapping out the mem, HDD, PS, CPU, and graphics card, or, taking it to a local tech but none of those are realistic options from here on the Big Isle of Hawaii.
    Any suggestions will sure be appreciated.
    Thanks,
    Kerry

    Hi Del,
    Re: “...battery.” I did check the Lithium batt and it’s new & fully charged. I did the same for the first board I received before I RMA’d it.
    Re: “PSU.” It is an ULTRA X3 600W Energy Efficient Modular ULT40073 Power Supply. I’ve written to Ultra describing the problem, telling them that MSI thinks the problem might be their PSU (no reply yet).
    Re: “BIOS for update.” The first board came with v. 1.0 installed. After getting the described boot problem I updated the BIOS to v1.1 and got the exact same results. The RMA’d board came with 1.1.0.L53 installed. MSI’s driver download page shows that this is their latest version. [As an aside. Forum members say that I’m the only one they know of who has this new MOBO. ZipZoomFly.com, the vendor, wrote, "You're the only one who's having this problem with this MOBO." 
    Re: “I would also not mix memory, either go dual channel or single 1Gb” I’m confused. I have CORSAIR 2048MB (2x1024MB) DDR3 1066MHz PC8500 Dual-Channel Kit One stick in the # 1 slot and one stick in the #3 slot. I was advised to test the mem by taking out the #3 stick and seeing if it would boot with just the one stick in the #1 slot.  It did. I then exchanged the sticks, again leaving the #3 slot empty, and again I could boot but ...with both tests I had to do the same reset the CMOS procedure. This test was supposed to eliminate the ram as the problem. However, after reporting the results of the test to MSI they said to contact Corsair and ask their timing setting recommendation in bios."  I’m awaiting a reply to my post on Corsair’s Forum.
    Thanks,
    Kerry

  • Howto set tool tip for a row in JTable

    I want to set a seperate tool tip for each of the rows in JTable. I tried getting cell renderer of all columns in a row and then setting tool tip for them. I expected that setting tool tip for a cell renderer will set tool tip for that cell. Thus setting tool tip for all the cells in a row will indirectly set tool tip for that row. But it does not happen that way. By setting a tool tip for a renderer it will use that tool tip for all those cells which use that renderer.
    Is there any problem in my approach or we cannot do this in Java.
    regards.

    Thanks.You're wellcome.
    >
    I just saw this method in JComponent and realized this
    solution.
    But then thought that for doing this i'll have to
    create my JTable class for just overiding one method
    thereby increasing one more level of abstraction.Well, you could override the method in an inner class if I understand you correctly in assuming that you don't want to create a JTable as new separate class. You could do this:
    JTable yourtable = new JTable() {
      public String getToolTipText( MouseEvent e ) {
        return getToolTipForRow( rowAtPoint( e.getPoint() ));
    // some where else in your class
    getToolTipForRow( int row ) {
      // determine your tooltip here
    }I think this would be a bit nicer and slightly faster approach because as far as I understand the getToolTipText() method is called after a similar MouseEvent for every JComponent i.e. a small pause of cursor movement over the component in question. I admit that I haven't tested either approach myself but noticed that JTable actually overrides the getToolTipText( MouseEvent e) method already. In your code you determine and set the tooltip every time the mouse moves. If you override getToolTipText( MouseEvent e) you have to determine the tooltip text only when the tooltip is actually about to be shown.
    Regards, JMorko

  • Just got my other new ipad yesterday and am setting it up.  Wanting to use the same e-mail address but won't let me.  Any idea's.  We would like to be able to get into e-mails on both ipads. Thanks.

    Just got my other ipad2 yesterday and would like to use the same e-mail that I use on the other one, but it won't let me. Any idea how to set that up.  I thought you could have like 5 on one acct.  Thanks.

    No it's not stealing. They have an allowance that you can share with so many computers/devices. You'll have to authorize her computer to play/use anything bought on your acct. You can do this under the Store menu at top when iTunes is open on her computer.
    As far as getting it all on her computer....I think but I am not sure (because I don't use the feature) but I think if you turn on Home Sharing in iTunes it may copy the music to her computer. I don't know maybe it just streams it. If nothing else you can sign into your acct on her computer and download it all to her computer from the cloud. Not sure exactly how to go about that, I haven't had to do that yet. I wonder if once you authorize her computer and then set it up for automatic downloads (under Edit>Preferences>Store) if everything would download. Sorry I'm not much help on that.

  • I used the wrong ID for iCloud on my iphone 5. It is linked to an email that no longer exists. Do I have to delete my iCloud completely and set it up all over again?

    I used the wrong ID for iCloud on my iphone 5. It is linked to an email that no longer exists. Do I have to delete my iCloud completely and set it up all over again?

    You can change the linked email/sign in email for your iCloud and Apple ID accounts from 1 site,
    https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/
    Go to Manage your Apple ID
    Sign in with your current creditals
    On the left, click Name, ID and Email Addresses
    Under Apple ID and Primary Email Address, click Edit
    Type in your new Email.
    Go to Apple ID, click Edit
    Type in your new Email

  • How to print space as thousand seperator and comma as decimal seperator

    Hi All,
    I have requirement where I need to print the amounts with space as thousand seperator and comma as decimal seperator.
    I have a field wrshb which is of type mhnd-wrshb. currently I am printing this. In the adobe layout I have declared this coloumn as Decimal field.
    Now in the output it is printing as comma as thousand seperator and dot as decimal seperator.
    For example ,currently the value is printing as 32,811.41
    but I want the amount as 32 811,41
    I have declared the variable as char16,  using write statement in the interface I moved the value from currency field to char field.
    Then in debugging i checked the value comes as 32,811.41 and it goes to dump with teh reason-cannot interpret as a number.
    Can anyone help me in fixing this?
    Thanks and Regards,
    Karthik Ganti.

    Hi Adam,
    As per initial requirement, I have set the format such that the amount is printing in below format as required.
    Locale---Italian.
    Space as thousand seperator and comma as decimal seperator.
    for example 1 234,45
    As some of the Currencies will not have decimals, now users would like to print amount without decimals. For example in my case amount  printing in KRW ( Korean currency ) is also similar to the above format which is wrong.
    for example Now amount is printing as 55 000,00. But actually it should be 550 000. Similarly for JPY currency also, as it doesnot haves decimals ( checked in TCURX table ).
    I have written some logic in the interface. below is the logic.
    WRITE:
        wa_mhnd1-wrshb to wa_item-wrshb CURRENCY WA_ITEM-WAERS.
    *READ TABLE lt_tcurx INTO lwa_tcurx WITH KEY currkey = wa_item-waers BINARY SEARCH.
      IF sy-subrc  = 0.
      IF lwa_tcurx-currdec = '0'.
      REPLACE ',' WITH SPACE INTO WA_ITEM-WRSHB.
      REPLACE ',' WITH SPACE INTO WA_ITEM-WRSHB.
      else.
       REPLACE ',' WITH SPACE INTO WA_ITEM-WRSHB.
        REPLACE ALL OCCURRENCES OF '.' in  wa_item-wrshb WITH ','.
    endif.
    ENDIF.
    a. when the write statement gets executed amount will be in ,. ( 1,234.45 )format. Then my logic gets executed correctly. In this company code is CH10 ( EUR ) and KR10.
    b. But sometimes after the write statement gets executed amount will be in ., format ( 1.234.45 ). In this case my logic works, but gives the wrong value. In this case company code is VN10 ( EUR )
    In both the cases currency is EUR.
    Will the decimal format change accordingly based on the company code code currency.Can you please tell me why write statement behaved differently.
    Do I need to change any locale in the adobe form, or any other logic to be written in interface. ?  I am trying it out from long time, but not able to fix it.
    Can  you please help me how to achieve this ?
    Thanks and Regards,
    Karthik Ganti.

  • Errors in the high-level relational engine. The data source view does not contain a definition for the table or view. The Source property may not have been set.

    Hi All,
    I have a cube in which i'm using the TIME DIM that i created in the warehouse. But now i wanted a new measure in the cube which is Average over time and when i wanted to created the new measure i got a message that no time dim was defined, so i created a
    new time dimension in the SSAS using wizard. But when i tried to process the new time dimension i'm getting the follwoing error message
    "Errors in the high-level relational engine. The data source view does not contain a definition for "SSASTIMEDIM" the table or view. The Source property may not have been set."
    Can anyone please tell me why i cannot create a new measure average over the time using my time dimension? Also what am i doing wrong with the SSASTIMEDIM, that i'm getting the error.
    Thanks

    Hi PMunshi,
    According to your description, you get the above error when processing the time dimension. Right?
    In this scenario, since you have updated the DSV, it should have no problem on the table existence. One possibility is that table has been specified for tracking in the notifications for proactive caching, but isn't available any more for some
    reason. Please change the setting in Proactive Caching into "MOLAP".
    Reference:
    How To Implement Proactive Caching in SQL Server Analysis Services SSAS
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou
    TechNet Community Support

Maybe you are looking for

  • How do I transfer my iphone songs to a newly restored computer?

    My computer was recently formatted. All of my data was lost. I am using the same computer, and I am wondering how I can transfer my songs on my Iphone to my computer. I am not sure how to access the library my iphone is synced to, because that librar

  • Digital Video Camera not showing up as device on desktop

    I have a 6 year old sony digital video camera. I am able to connect via firewire and upload video using imovie without a problem. It shows up as an option in imovie as dv-vcr. However the video camera does not show up in the desktop and when it is co

  • Native SQL to an external oracle database

    Hello experts,      I like to read some data from an external oracle database with native sql statements. Which prerequisites are neccessary to do so? In detail: which customizing must be performed? Wich authorizations are necessary on the local SAP-

  • New issue with blank frame at end of coverted .avi

    Here is the project (scenario details): I have 2 .swf files. Both are 30 fps. Call them "chapter1" and "chapter2". Frame count is 3600 and 9600 respectfully. The last frame of "chapter1" contains the same image as the first frame of "chapter2" - basi

  • Dump in ecc6

    hello! During upgrade to ECC6 , i came across a problem i  function group Z_MM. there is new include WSTR_LMEDRUCKF1H, this include is missing in our prod syst in 46C. In this include there is field USER_EXIT_EINE  which is not defined, and is part o