Display both Arabic & English characters in the same BO report or not

Hi
Can  we display both Arabic & English characters in the same BO report or not?
if yes what will be the character settings/changes required.
thanks and regards
thomas
Edited by: yeldhot on Aug 23, 2010 4:04 PM

Kglad - I'm not sure I follow your instructions for the fix. I assume you want me to set the _visible property to false via Actionscript ( textInvisible._visible = false; ). What is the purpose of this second text field - does it need any specific content in it to function? It doesn't seem to work to fix the problem but maybe I'm misunderstanding.

Similar Messages

  • Can I put Chinese and English characters in the same dynamic text box?

    I'm translating a game into several different languages, one of which is Chinese. I've noticed that in a dynamic text box where English characters are included also, they aren't displayed when the .swf is exported. The font is embedded in the document with all characters selected. It seems like whatever language-character is first displayed in the text box, the other language cannot be. For instance, if there are Chinese characters first, then English, the English will not display, and vice-versa. Any work around on this? I am using Flash CS5 and Actionscript 2.0. Thanks!

    Kglad - I'm not sure I follow your instructions for the fix. I assume you want me to set the _visible property to false via Actionscript ( textInvisible._visible = false; ). What is the purpose of this second text field - does it need any specific content in it to function? It doesn't seem to work to fix the problem but maybe I'm misunderstanding.

  • BEx Query Formating - Displaying both Sum and Average in the same report

    Hi everybody,
    I need to create a BW report in the below format,
                          Company Code                                            Total       Total Average
                                   0001            0002      0003      0004
    Doc Type
        AV                        10               10         10         10            40                 10
        RV                        20               20         20         20            80                 20
    Getting the report till the 'Total' column is easy but having the 'Total Average' as a separate column is where I am stuck.
    Having the company code in the rows, and not clolumns, would have solved the issue but I need to keep the above format. Also I do not want to
    see the Total Average for every Company Code, just that of the 'Total'.
    In the Query Designer, in the Column section I have first the 'Company Code' and then the 'Count' in a structure, so whatever I add to this structure,
    is displayed for each Company Code, that means 2 columns for each Company code. This changes the format.
    I cannot use the Cell Definition method here, as then it would be a static structure and the number of Company Codes are not fixed.
    It would be great if somebody could provide some suggestions.
    Thank you,
    Ajay

    Hi Suman,
    Thanks for the quick reply.
    I have tried this, but again this will change the format. With the way you said, I will only get the report in the below 2 formats,
    1. Company code in Free Charac, later drill down to Rows,
    Doc Type  Company Code  
        AV                 0001                10
        AV                 0002                10
        AV                 0003                10
        AV                 0004                10
        Total                                      40
        RV                 0001                20
        RV                 0002                20
        RV                 0003                20
        RV                 0004                20
        Total                                      80
    or 2. Company code in Free Charac, later drill down to Column,
                      Company Code                                       
                               0001                     0002                     0003                     0004    
                        Total    Total Avg   Total   Total Avg   Total   Total Avg  Total   Total Avg
    Doc Type
        AV             10           10             10         10           10         10           10           10
        RV             20           20             20         20           20         20           20           20
    Both the above are different from the format that I need.

  • Handling Non-English characters in the payload

    Hi Gurus,
    We are currently facing an issue in XI with Non-English characters. When we are trying to process Non-English characters in the payload , they are getting converted in to Junk characters at the receiver end. This scenario inbound to SAP ( File to Idoc scenario ) . Is there a way that Non-English characters can be handled in XI.
    Regards,
    Nick

    Hi Nick,
    I have knowledge of some problems when showing some kind of chinese character when
    dusplaying XML messages. If it's the case, check notes:
    #1135671 - ITS HTML viewer: incorrect display of xml documents
    #1072127 - ITS HTML Control: xml file rendering problem
    With regards,
    Caio Cagnani

  • I want to open a folder in a separate window by clicking on it.  For some reason when I click on a folder it just replaces the one I was just in.  I want them both to be open at the same time without having to go through several steps.

    I want to open a folder in a separate window by clicking on it.  For some reason when I click on a folder it just replaces the one I was just in.  I want them both to be open at the same time without having to go through several steps. Old apple operating systems made it easy to have several folders open at one time. 

    Eric, thanks that works but seems like an extra added step also to do it that way.  I've got to move and organize a ton of files and I'm looking for a easy way to get this done.  I could also open the folder into a separate tab and then drag the tab out so it becomes an open window but thats a lot of fussing around also with extra steps.  Not sure why these newer operating system seems more confusing and less user friendly than what they used to.  In the past I could just click on any folder and it would open in a separate window making it really easy to copy or move files from one place to the other just by simply dragging them from one window to the other.  Seems like I'm going through several extra steps now to do a simple task. 

  • Can we use both INSERT and UPDATE at the same time in JDBC Receiver

    Hi All,
    I would like to know is it possible to use both INSERT and UPDATE at the same time in one interface because I have a requirement in which I have to perform both the task.
    user send the file which contains both new and old record and I need to save those in MS SQL database.
    If the record exist then use UPDATE otherwise use INSERT.
    I looked on sdn but didn't find any blog which perform both the things at the same time.
    Interface Requirement
    FILE -
    > PI -
    > JDBC(INSERT & UPDATE)
    I am thinking to use JDBC Lookup but not sure if it good to use for bulk record.
    Can somebody please suggest me something or send me the link of any blog or anything to solve this problem.
    Thanks,

    Hi ,
              If I have understood properly the scenario properly,you are not performing insert and update together. As you posted
    "If the record exist then use UPDATE otherwise use INSERT."
    Thus you are performing either an insert or an update which depends on outcome of a search if the records already exist in database or not. Obviously to search the tables you need " select * from ...  where ...." query. If your query returns some results you proceed with update since this means there are some old records already in database. If your query returns no rows  you proceed with "insert into tablename....." since there are no old records present in database.
      Now perhaps the best method to do the searching, taking a decision to insert or update, and finally insert or update operation is to be done by a stored procedure in MS SQL database.  A stored procedure is a subroutine available to applications accessing a relational database system. Here the application is PI server.   If you need further help on how to write and call stored procedure in MS SQL you can look into these links
    http://www.daniweb.com/web-development/databases/ms-sql/threads/146829
    http://www.sqlteam.com/article/stored-procedures-parameters-inserts-and-updates
    [ This part you can ignore, Since its not sure that you will face this situation
        Still you might face some problems while your scenario runs. Lets consider this scenario, after the stored procedure searches the database it found no rows. Thus you proceed with an insert operation. If your database table is being accessed by multiple applications (or users) other than yours then it is very well possible that after the search operation completed with a null result, an insert/update operation has been performed by some other application with the same primary key. Now when you are trying to insert another row with same primary key you get an error message like "duplicate entry not possible for same primary key value". Thus you need to be careful in this respect. MS SQL has a feature called "exclusive locks ". Look into these links for more details on the subject
    http://msdn.microsoft.com/en-us/library/aa213039(v=sql.80).aspx
    http://www.mssqlcity.com/Articles/Adm/SQL70Locks.htm
    http://www.faqs.org/docs/ppbook/r27479.htm
    http://msdn.microsoft.com/en-US/library/ms187373.aspx
    http://msdn.microsoft.com/en-US/library/ms173763.aspx
    http://msdn.microsoft.com/en-us/library/e7z8d5hf(v=vs.80).aspx
    http://mssqlserver.wordpress.com/2006/11/08/locks-in-sql/
    http://www.mollerus.net/tom/blog/2008/03/using_mssqls_nolock_for_faster_queries.html
        There must be other methods to avoid this problem. But the point is you need to be sure that all access to database for insert/update operations are isolated.
    regards
    Anupam

  • I have activated iCloud on iPad2 and iPhone4S (both on iOS 7) using the same Apple ID and signed into 'Find my iPhone' still my iphone is not visible in my devices. I can only see my iPad.

    I have activated iCloud on iPad2 and iPhone4S (both on iOS 7) using the same Apple ID and signed into 'Find my iPhone' still my iphone is not visible in my devices. I can only see my iPad.

    On your iPhone, try toggling Find My iPhone off, then back on after a few seconds.

  • I have a IPhone 5 and Iphone 5s. Both are set up with the same account ID and running IOS 8.0.2. When the phones are connected to the same Wifi at home, both phones will ring when someone call in to one of the phone.  Anyway to solve this problem?

    I have a IPhone 5 and Iphone 5s, each phone is activited with a different service provider. Both are set up with the same account ID and running IOS 8.0.2. When the phones are connected to the same Wifi at home, both phones will ring when someone call in to one of the phone.  Hence you do not know exactly which line the caller called.  If you answered using the wrong phone, then anyone calling the other number will not get through.  Anyway to solve this problem?

    Hey David Koh TP,
    Thanks for the question. It sounds like your devices are set up to use continuity together. Specifically, it sounds like you are signed into the same Apple ID in FaceTime, and have iPhone Cellular Calls enabled. To resolve your issue, simply disable this setting:
    Connect your iPhone, iPad, and iPod touch using Continuity
    http://support.apple.com/kb/HT6337
    Turn off iPhone cellular calls
    To turn off iPhone Cellular Calls on a device, go to Settings > FaceTime and turn off iPhone Cellular Calls.
    Thanks,
    Matt M.

  • I have a Ipod Nano and want to get another one , and use both. Can I use the same computer and library for both?

    I have a Ipod Nano and want to get another one , and use both. Can I use the same computer and library for both?

    Yes

  • If my wife and I have two seperate itunes accounts can we both have home sharing on the same computers at the same time or is it one or the other

    If my wife and I have two seperate itunes accounts can we both use home sharing at the same time on different computers to view each others librarys or is it one or the other only

    You can share your libraries within the same household:
    http://support.apple.com/kb/PH1455?viewlocale=en_US
    And here:
    http://support.apple.com/kb/PH1453?viewlocale=en_US

  • My husband and I both have iPads and somehow when they were setup the both we're setup using the same email I'd address. When I go to delete and rename one iPad it says all info and pictures will be erased from my iPad. Is there a way to keep the info iPa

    My husband and I both have iPads and somehow when they were setup the both we're setup using the same email I'd address. When I go to delete and rename one iPad it says all info and pictures will be erased from my iPad. Is there a way to keep the info IPad when doing this?

    You can go to Settings/iCloud and delete the account, then create a new iCloud account.  You can still use the same account for the app store though.

  • I am doing two people's jobs and I need to use two separate log-ins on the same website. How can I keep both log-ins open at the same time. Everytime I switch tabs I have to log in again.

    I am doing two people's jobs and I need to use two separate log-ins on the same website. How can I keep both log-ins open at the same time. Everytime I switch tabs I have to log in again.

    Try one of these extensions for multiple cookie sessions.
    Multifox: <br />
    http://br.mozdev.org/multifox/ <br />
    Cookie Swap extension: <br />
    https://addons.mozilla.org/firefox/3255/ <br />
    Cookie Pie extension: <br />
    http://www.nektra.com/oss/firefox/extensions/cookiepie/

  • I purchased a song on my iMac on iTunes and it plays on that but won't play on my macbook even though both computers are authorized under the same iTunes account.  how do I fix this?

    I purchased a song on my iMac on iTunes and it plays on that but won't play on my macbook even though both computers are authorized under the same iTunes account.  It says that i have to authorize my macbook and sign into iTunes, but then says its already authorized.  How do I fix this?

    Hi stuartbonk,
    Welcome to the Support Communities!  Here are some steps you can try if you keep getting asked to authorize your MacBook for iTunes:
    iTunes repeatedly prompts to authorize computer to play iTunes Store purchases - Apple Support
    http://support.apple.com/en-us/HT203160
    If you authorize your computer to play your iTunes Store purchases, but you can't play them and iTunes keeps prompting you to authorize, try these suggestions.
    Authorize your purchases from an administrator account
    To authorize your purchases from an administrator account, follow these steps:
    Log in to the administrator account.
    Note: If you don't have access to an administrator password, you'll need to contact the administrator of this computer. If this is a work computer, this may be your IT department.
    Make sure you have the latest version of iTunes installed. You can download the latest version free.
    Choose Store > Authorize Computer.
    Enter your iTunes account name and password.
    Note: If you have multiple accounts, you'll need to log in to the iTunes Store and authorize each account separately.
    Quit iTunes.
    After you've authorized your computer on your administrator account, you'll need to log out and log back in to the user account you'd like to play your purchases from. Once you're logged back in, simply open iTunes, select an iTunes Store purchase in your library, and click Play. The item should begin to play.Authorize using the correct account name
    The items you're trying to play might have been purchased using a different iTunes Store account. To determine which account was used to purchase an item, follow these steps:
    Select a purchased song in your library and choose File > Get Info.
    Click the Summary tab. Note the Account Name that appears in the list. This is the account name (Apple ID) you'll need to use when authorizing your computer to play this purchase.
    Note: The account name that appears is the one you used when purchasing the item and does not change if the account name (Apple ID) changes.
    If you've authorized the Apple ID that is shown in the Summary tab, you can check the purchase history for that Apple ID from Store > View My Account. If your purchase history does not reflect the purchase of the items in your iTunes library, consider any other Apple ID you may have created, and authorize the computer for your additional Apple ID.
    If you forgot the password to one of your accounts, you can recover it using Apple's password-recovery website.Remove the SC Info folderIf you're still unable to authorize your computer to play your purchases, you may be able to resolve your issue by removing the "SC Info" folder. To do so, follow these steps:
    OS X
    Quit iTunes and any other open applications until only Finder is open.
    Choose Go > Go to Folder.
    Type /Users/Shared/SC Info and click Go.
    If Finder is not already set to column view, set it by choosing View > as Columns.
    Select the SC Info folder and move it to the Trash by choosing File > Move to Trash.
    Restart the computer and open iTunes.
    Authorize your computer to play your purchases. Note: If you have multiple accounts you'll need to authorize your computer for each account. For more information on how to authorize your computer, see this article.
    Last Modified: Dec 16, 2014
    I hope this information helps ....
    - Judy

  • We are contemplating a Mac for a family Christmas gift -we currently use a windows based laptop.  Do the two systems interface? If a child starts his homework on the pc - can he finish it on the Mac? Can they both be hooked up to the same printer?

    We are Mac beginners, considerin a Mac for a family Christmas gift.  We currently share one windows based pc. Does anyone use a Mac AND a pc in their household?  Would the two systems interface?  (Can you start your homework on one system, but finish it on another?)  Can they both be hooked up to the same printer?  What advice would you give us as we consider this big purchase?

    You may find this useful:
    Switching from Windows to Mac:
    http://support.apple.com/kb/HT2514?viewlocale=en_US
    and
    http://support.apple.com/kb/HT2518?viewlocale=en_US
    and possible even the 'propaganda bits':
    Macs are cheaper to own that PCs:  http://techpatio.com/2010/apple/mac/it-admins-total-cost-ownership-mac-less-pc
    and: http://www.zdnet.com/blog/apple/tco-new-research-finds-macs-in-the-enterprise-ea sier-cheaper-to-manage-than-windows-pcs/6294
    Why will you love Mac? http://www.apple.com/why-mac/
    - Better Hardware http://www.apple.com/why-mac/better-hardware/
    - Better software  http://www.apple.com/why-mac/better-software/
    - Better OS http://www.apple.com/why-mac/better-os/
    - Better Support http://www.apple.com/why-mac/better-support/
    - It's Compatible http://www.apple.com/why-mac/its-compatible/

  • My wife and I both sync our iphones on the same computer. I have lost my notes and they have appeared on my wife's iphone. How do I fix this?

    My wife and I both sync our iphones on the same imac.I have lost my notes> they have then shown up on her iphone. How do I fix this please ?

    You can sync as many iphones/ipods/ipads as you like to one computer/library.
    Open itunes, connect iphone, select what you want, sync
    Do the same with the other iphone.

Maybe you are looking for

  • How to recover a previous version of a PSD after closing the file

    I made a mistake flattening a PNG and accidentally saved over the original PSD and lost all of my layers. In my efforts to find a way to recover it before attempting to rebuild from the flattened image, I found this post: "Hmm,I just did a stupid act

  • Crystal Reports 10 Cross Tab Report Issue

    I created a Cross Tab Report with multiple rows of data.  It has two columns to return data for Year 2008 and Year 2009.  When reading the database the report does not return data for rows that have a result of 0 in both columns even though Suppress

  • Login as sys delay

    Dear all, Oracle 11g on sun solaris 10 Login as sqlplus sys/oracle as sysdba takes a lot of time to login where as normal users can be able to login immediately including user system.Please atleast give me a hint to troubleshoot this. Kai

  • Short dump in APD (RSANWB)

    Hi, I get following error when trying to change/edit/execute an Analysis Process: Runtime Errors         UNCAUGHT_EXCEPTION Except.                     CX_RSR_X_MESSAGE Information on where terminated     Termination occurred in the ABAP program "SAP

  • Hello can i ask you a question?

    Hello. i dropped my ipod touch 4th generation on the ground like 2 months ago and it just now started acting wierd and the screen was like coming off and now it has liked broken completly so its like totally shut down. how much would it cost to buy a