ASO Application with Unicode-mode Support??

<p>Hi All,</p><p> </p><p>I would like to know if its possible to create an ASOapplication with Unicode-mode support.</p><p> </p><p>I see BSO can be created as as Unicode-mode application ( bychecking the option) but none is available for ASO application inversion 7.1.5 Essbase Analytics.</p><p> </p><p>Please explain why this difference is there and if ASO isprogrammed to be Unicode-mode application by defualt.</p><p> </p><p> </p><p>Thanks,</p><p> </p><p>EssbaseWorld</p>

Got answer to my earlier question. ASO Application cannot support Unicode-Mode Apps at this time.

Similar Messages

  • URGENT: building Unicode ASO application from Unicode BSO application?

    Hello Experts,
    Is there other options available for building Unicode ASO application from Unicode BSO application?
    As per readme documentation of version 11.1.1.3.00,
    http://download.oracle.com/docs/cd/E12825_01/epm.111/esb_1111300_readme.pdf
    Block storage non-Unicode outlines can be converted to aggregate storage non-Unicode outlines; however, block storage Unicode outlines cannot be converted to aggregate storage Unicode outlines. [8208584]
    Can anyone suggest how to extract the Unicode Block Storage Outline and build as Unicode Aggregate Storage Outline? Thanks in advance.
    Regards,
    Sudhir

    Hi,
    You could use the [Outline Extractor|http://www.appliedolap.com/free-tools/outline-extractor] or ODI to extract the metadata from an outline and then use it to load into another database.
    Or use the same methods you built the metadata in the original BSO database.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Re:open an application with restore mode

    hi friends
    i need to open an application in restore mode how can i do this , for example i need to open a powerpoint in restore mode
    please tell me it so urgent
    thanks in advance
    regards
    vino

    Look for "System Exec", it's in the Communications palette.
    LabVIEW Champion . Do more with less code and in less time .

  • OpenSource Java/JSP forum software with threded mode support ?

    Hello, could you please help me with finding some (not alfa/beta version) openSource forum software package in Java, which would support tree mode (threaded mode) view over the forum ? I went through all http://java-source.net forums, but with no success.

    I would either complain to Belkin for a fix if there is one or return the card and try a different one. You should not have the problem, but Belkin USB hubs and cards appear to have more problems like yours than other manufacturers' products.
    You might try Sonnet's Tango FW400/USB 2.0 multi-card, for example, or Firewire Direct's 6-port FW800/USB 2.0 card.
    You may also want to check this page for some user reports on related products.

  • Good word processing software with unicode font support?

    If this is the wrong place, apols and please redirect me.
    I stopped using MS Word v.x (2001) as it doesn't support Unicode fonts, which I absolutely need. I assume the latest Word/Office for Mac supports Unicode fonts (?), but it's too expensive, and also I always found that Word crashed a lot and I don't want to support Microsoft.
    I've been using the cheap Mellel for several months. I applaud its producers, but it's far too lacking in features (e.g. no alphabetical sorting) and even after months of use is very counter-intuitive.
    Can anyone recommend a good all-round word processor for Leopard on a Macbook Pro which is stable, supports unicode fonts, doesn't break the bank, and has comparable features to MS Word but preferably isn't MS Word?

    Can anyone recommend a good all-round word processor for Leopard on a Macbook Pro which is stable, supports unicode fonts, doesn't break the bank, and has comparable features to MS Word but preferably isn't MS Word?
    Of all the word processors you are likely to come across, I think only Word X and AppleWorks, both essentially obsolete, do not support Unicode. Here is a list with summary info on each app that may be helpful:
    http://www.pure-mac.com/textword.html

  • Unicode strings support

    Anyone else have problems with unicode strings with ADFm?
    I found very strange behavior (bug?) with unicode strings passed through ADFm bindings to EJB method parameters.
    The method is invoked only once when non-unicode (plain ASCII) characters involved.
    The same PageDef invokes method twice(?!) when parameter receives unicode characters from page! Not only that, but the second time method is invoked with completely messed-up string values (two-byte unicode chars replaced with ?).
    Obviously this behavior is making any globalized application (with unicode inputs) development impossible.
    Am I doing something wrong here?
    In several other threads I found complains on JDev (even 11g) not handling Unicode/UTF-8 properly. But I could not find any Oracle statements on this issue and commitment to true and easy Unicode application development support.

    Hi Steve,
    I have just sent you an email with test-case. You are the 5th person from Oracle I'm sending this same email. :)) But never received any answer, comment, confirmation or even rejection of the case. Please, understand that for use from non-ASCII regions this issue is BIG issue. If I cannot have my local letters in ADF then everything else is not relevant. No one will buy my SW even if I give it for free (and especially if they have to pay for Oracle licenses which are somehow far from free).
    Kind regards,
    Pavle

  • How to use non-Unicode mode in VB6 with ADO.

    I'm using ADO on top of OraOLEDB to connect to Oracle 9.2. The database characterset is AL32UTF8. Since my client can't handle Unicode characters, I need a character conversion. However, arcording to the OraOLEDB document( which can be obtained here http://download-west.oracle.com/docs/cd/B10501_01/win.920/a95498/using.htm#1010255):
    "How Oracle Unicode Support Works
    OraOLEDB works in two modes, Unicode mode and non-Unicode mode. When the client character set is not a superset of
    the server character set, OraOLEDB automatically enables the Unicode mode. In this mode, OraOLEDB stores the data in its cache in the UCS2 encoding scheme. The user should ensure that the database's character set is UTF8 in order to prevent any data loss.
    If the client character set is a superset of the server's, the provider operates in the non-Unicode mode. This mode provides slightly better performance as it does not have to deal with larger character buffers required by the UCS2 encoding."
    My client can only use NLS_LANG VN8VN3, which is NOT a superset of AL32UTF8, so "OraOLEDB automatically enables the Unicode mode". So if I code like this:
    Text1.Font="Some Vietnamese Font"
    Text1.Text= rs1.Fields("Name").Value
    the display is bad ('?' all over the place). This is because rs1.Fields("Name").Type is adVarWChar, so rs1.Fields("Name").Value is encoded in UCS2. What I need is to make rs1.Fields("Name").Type is adVarChar, but it seems to be impossible since Field.Type is readonly.
    When I use MS provider for Oracle, I found out that rs1.Fields("Name").Type is adVarChar, so Oracle do the conversion from/to AL32UTF8 (database character set) and VN8VN3(NLS_LANG) for me.
    Since I use LOB and things that MS does not support, I want to use OraOLEDB, so anyone can help me out? It's ugent.
    I can see that some 3rd program like SQLNavigator4.3 work well with NLS_LANG = VN3VN8 and DATABASE_CHARACTERSET=AL32UTF8 (i.e the program convert between the 2 characterset).
    Please correct me if I misunderstood anything.
    I need this ugently. Any help would be appreciated. If I don't make myself clear enough, please let me know.
    Thanks in advance.

    Thank you for your reply. I started to think that everybody is out on holidays...
    The Oracle9i Client version is 9.2.0.1.0
    Oracle Provider for OLEDB version is 9.2.0.4.0
    Oracle Net version is 9.2.0.1.0, in case you need it.
    The Oracle9i Database version is 9.2.0.1.0
    But I don't think it is a version problem, is it?

  • Do essbasse ASO applications support never consolidate(^) operator?

    I do not want Tax Rate measure to be aggregated accross any entities, I have assigned never consolidate operator on this member. Though it is being rolled up to parent members across Enity dimension members.
    I few forum I have found that never consolidate operator(^) is not supported and there is no clear explanation on this.
    Do essbasse ASO applications support never consolidate(^) operator?
    Thanks
    Vijay

    There was a discussion on network54 and TimG did some testing on it.
    So to answer the question
    Can you add a member with ^ in ASO, yes you can add it.
    Will it behave like BSO ^ no it just behaves as "~". We might need a documentation update saying it won't work in ASO (How can never consolidate work on a consolidation cube!!!!)
    Regards
    Celvin
    http://www.orahyplabs.com

  • Please help with "You can't open the application NovamediaDiskSupressor because PowerPC applications are no longer supported." I have seen other responses on this but am not a techie and would not know how to start with that solution.

    Please help with the message I am receving on startup ""You can't open the application NovamediaDiskSupressor because PowerPC applications are no longer supported."
    I have read some of the replies in the Apple Support Communities, but as I am no techie, I would have no idea how I would implement that solution.
    Please help with what I need to type, how, where, etc.
    Many thanks
    AppleSueIn HunterCreek

    I am afraid there is no solution.
    PowerPC refers to the processing chip used by Apple before they transferred to Intel chips. They are very different, and applications written only for PPC Macs cannot work on a Mac running Lion.
    You could contact the developers to see if they have an updated version in the pipeline.

  • Have an Epson workforce 600 worked fine until new router and Lion installed.  Now when I try and scan with the all in one I get a "POWER PC APPLICATIONS ARE NO LONGER SUPPORTED"  and my IMAC does not recognize that the Epson is a multi function printer.

    Installed a new router.  Installed Lion. Have an Epson Workforce 600 multi function printer.  Two problems. 
    1. I cannot get Lion to recognize that the Epson is a multi function printer.  There is no scan option on the "print/Scan" popup window.
    2. When I try and use the epson scan utility I get:  POWER PC APPLICATIONS ARE NOT LONGER SUPPORTED.
    I have tried EPSON support with no real luck as they say it is Apple upgrades that are the problem.
    Apple support was quite rude..said it was not their problem and that I should call epson.  Told the I did but it made no difference just got the same reply.
    Have no idea what to do.....seems I cannot find out which multi-function printers Lion supports. 

    daolbuzzard1 wrote:
    Epson Workforce 600 multi function printer
    Not to give you another run around, but you need new printer drivers from Epson for your printer so it works in Lion.
    Now it could be that they are working on it, or that they could have decided not to provide new drivers in order for you to force upgrade.
    The only thing a user can do is decide very carefully BEFORE upgrading to a newer Apple operating system, make sure that all their current hardware and software works and make a decision for themselves.
    Since you upgraded to Lion, you can go back to Snow Leopard and your PPC software will work.
    Do you need instructions?

  • FIle Creation in the Application Server With Unicode-8 and Byte-Order Mark

    Hi Guys,
    I've requirement of creating a file in the Application server with the Data.
    The Data Format Should be in UTF-8 and Byte-Order Mark.
    I need to supply this data from SAP to PRMS.
    I'm able to create a file with Unicode, but any of the guys have worked on Umicode with Byte-Order Mark, please let me know.
    Thanks,
    Adi.

    Hi Mathieu,
    If you haven't found an aswer yet, you can check in transaction SE24 CL_ABAP_FILE_UTILITIES method CREATE_UTF8_FILE_WITH_BOM. You can check the code of the method (it's very short) so you can understand how it works. It's also a static method so you can call it directly in your program.
    Ex:
    CALL METHOD cl_abap_file_utilities=>create_utf8_file_with_bom(your_file_name).
    I hope this helps.
    Pax Vobiscum.
    ~ Eric

  • Tried to run a CD I had run with Snow Leopard. Now (with Lion) getting a message that PowerPC applications are no longer supported.. How do I overcome this? Thanks

    Tried to run a CD I had run with Snow Leopard. Now (with Lion) getting a message that PowerPC applications are no longer supported.. How do I overcome this? Thanks

    Well Lion does not support power PC applications.  They only way is to upgrade the application, or if your have SL disks, reinstall SL.

  • Does photoshop cs5 sdk support file names with unicode characters?

    Hi,
    For the export module, does the windows sdk have support for filenames with unicode characters?
    The ExportRecord struct in PIExport.h has an attribute filename declared as char array.
    So I have a doubt whether filenames with unicode characters will be supported for export module.
    Thanks in advance,
    Senthil.

    SPPlatformFileSpecificationW is not available in ReadImageDocumentDesc.
    It has SPPlatformFileSpecification_t which is coming as null for export module.
    I am using phostoshop cs5 sdk for windows.
    Thanks,
    Senthil.

  • I face a problem with my macbook air or i think it's from the lion OS cause i didn't happen with snow leopard OS the massage says ( you can't open the application ....... because powerPC applications are no longer supported) any advice ??

    I face a problem with my macbook air or i think it's from the lion OS cause i didn't happen with snow leopard OS the massage says ( you can't open the application ....... because powerPC applications are no longer supported). any advice ??

    Mac OS X Lion has dropped support for Rosetta, the feature that allowed you to run PowerPC apps on previous OS X systems. Check if you can find a newer version of the app you are trying to run that supports Intel processors.
    What application are you trying to run? Maybe I can help you find a version that runs on Lion.

  • Unicode mode for Planning applications

    Is Unicode mode for Planning applications allowed in 11.1.2.1? If so how do you allow it?
    Seems that it is not allowed but the documentation is ambigious, and a search on the forum does not give clear answer.

    Thanks!
    But then why does the 8-character limit apply to unicode planning application names?
    Shouldn't ticking that checkbox enable longer application names?
    What's the limit for unicode Essbase applications, 32 characters? Then one should also be able to give a new unicode planning application a 32 character long name when in the create new planning application dialogue box, given that the data source is 'unicode'.
    Edited by: Markus on Aug 4, 2011 5:06 AM

Maybe you are looking for