Use Japaness words as search condition, but can't retrive data

Hi,
  I encountered this problem. In report, I use client name as a condition. User can choose a client to
retrieve data.
   but when user choose a Japanese client name(or other non-English language), can't get data.
   I use the sql genereated by bo to exetute in SQL SERVER2005:
Select * from m_client where client_local_name = u2019たなかさu2019,no data found,
but change to  Select * from m_client where client_local_name = Nu2019なかさu2019,can retrieve data.
Here I use N before the Japanese word
how to set my DB or set my BO server to solve this issue?
Best Regards,
Tony Renjie

Try this:
1) Open Designer
2) File --> Parameters
3) go to the Parameter tab
4) add a new value: "UNICODE_STRING"  = "Yes"
Good luck!

Similar Messages

  • I use an Epson Stylus Office BX320FW printer with my IMac.  Since upgrading OSX, I have lost the ability to print and scan.  I have downloaded printer drivers from both Epson and Apple.  I am using the printer in wifi mode but can not get it print or scan

    Hi Everybody,
    I use an Epson Stylus Office BX320FW printer with my IMac.  Since upgrading OSX, I have lost the ability to print and scan.  I have downloaded printer drivers from both Epson and Apple.  I am using the printer in wifi mode but can not get it print or scan.  How do I uninstall the Epson software and start all over again?
    nickel_man_65

    Not using any mouse pad, I have a very smooth desktop. But I just tried to use a sheet of A4 printing paper, but no result, the problem persisted.
    Someone on this forum suggested, that USB3 may interfere with the magic mouse.
    I have 2 LaCie HDD's about 70 cm away from the mouse, I use them on Thunderbolt. But in operation or not - the result is the same, the mouse plays up! Just now I was clicking the desktop and the mouse created a new folder!!
    Thanks for the advice, Bee
    Cheers, Gerd

  • I have some PDF can show Chinese word in Adobe reader but can't show in Firefox version 19.0.1.Please help.Phone:21508158 Mr.Wong

    Dears,
    I have some PDF can show Chinese word in Adobe reader but can't show in Firefox version 19.0.1.Please help.
    Regards
    Brian Wong
    RVD department(Hong Kong Government)
    Phone:852-21508158

    Dear Support,
    May we have your email to discuss the problem?I want to send you the problem file test.pdf for you reference.Also we want to know any method,format ,style of font will process this error so that we can aware of it.
    Regards
    Brian Wong
    RVD department(Hong Kong Government) Phone:852-21508158

  • I cannot use FaceTime on my Macbook air but can using my iPhone - any help please?

    Cannot use FaceTime on my Macbook Air but can connect using my iPhone - any help appreciated.

    Any error message?

  • On my iPad mini, it shows that there is 958 KB of data on it yet I've never used it. Is there anyway I can delete that data off my iPad mini?

    On my iPad mini, it shows that there is 958 KB of data on my photo stream it yet I've never used it. Is there anyway I can delete that data off my iPad mini?

    Hi Angela,
    I suspect it's background overhead used by TM leftover from this disk's TM days. Whatever it is, I don't know that there's a way to access it. To get rid of it, format the disk.

  • Can I retrive data that has been wiped out because I forgot my password?

    Can I retrive data that has been wiped out because I forgot my password? I tried my password 10 times and forgot it and it wiped everything out when I finally remembered my password and logged in. Is there a way to retrieve the data?

    Sorry, but password to what? Where is this "data" you wish to recover?

  • I was initially in the UK apps store and i switched to the USA apps store with an itunes gift card..since then i cannot see my previous purchases in the UK store,, now i'm back in the UK and want to switch back using a £15 itunes gift card but can't..HELP

    I was initially in the UK apps store and i switched to the USA apps store with a $15 itunes gift card because my credit card from the UK expired..since the switch i couldn't find my previous purchases in the UK store,, now i'm back in the UK and want to switch back using a £15 itunes gift card but whenever i try to switch, itunes tells me i still have credit on my existing US gift card, meanwhile i only have $0.22 which can't buy anything at the apps store..how dow i clear up the balance and switch to the UK apps store...HELP!!!

    You might just have to contact Apple and ask them to remove it (losing it). Usually people clear a balance by buying one song and having the exact remainder charged  to their credit card, but if you don't have a US credit card you cannot do that.
    iTunes Customer Service Contact - http://www.apple.com/support/itunes/contact.html

  • HT1338 For whatever reason, I can't use (mac) mail on G5 with Charter.  Would like to try Thunderbird (TB) -now using Firefox 3.6.28.  But can't navigate through Mozilla to find older versions  of TB.  Other alternatives

    For whatever reason, I can't use (mac) mail 3.6 on my mac G5 with Charter ISP.   I would like to try Thunderbird (TB) - I'm now using Firefox 3.6.28.  But I can't navigate through Mozilla to find older versions  of TB.  Can you suggest a URL for down loading older versions of TB, or, other alternative email programs?

    I have recently moved from Thunderbird to SeaMonkey - much better and up to date with the latest Mozilla code.
    See my SeaMonkey page at: http://links.zero.eu.org/seamonkey/
    For PPC - download the latest SeaMonkey-ppc from:
    https://code.google.com/p/seamonkey-ppc/downloads/list
    For Intel - download normal SeaMonkey from:
    http://www.seamonkey-project.org/releases/
    Old versions of Thunderbird can be found here:
    ftp://archive.mozilla.org/pub/mozilla.org/thunderbird/releases/
    The latest Thunderbird for PPC is 3.1.20.

  • Only can use JCo to access default BAPIs but can't access developed  BAPIs

    Hi,
    My problem is I can't use JCo to access the BAPI developed by myself, but can access the default BAPI like BAPI_COMPANY_GETLIST.
    These BAPIs developed by myself can be tested in BAPI Explore correctly.
    But It can't work in java program using JCo. (can't work means it can run without any bug and I can set values into ImportParameters, but I can't get ExportParameters and Table Parameters)
    It sounds like the BAPI can't access remotly but I'm sure that I set the "remote enabled" in attribute tab.
    I really don't know what's the problem, and spent many hours try to solve it but it still can't work.
    Is there anything I should check? I really need some help.
    Here is some part of my source code. The biggest problem is I can't retrieve the returned internal table, but if I change the function module from BAPI_ZAB02_TH2 to any other default function module (like BAPI_COMPANY_GETLIST) and I can retreive the returned internal table....
    Thanks in advance.
    createConnection();
    IFunctionTemplate functionTemplate =
    mRepository.getFunctionTemplate("BAPI_ZAB02_TH2");
    JCO.Function function = new JCO.Function(functionTemplate);
    JCO.ParameterList Input = function.getImportParameterList();
    Input.setValue("80013145","VBELN");
    mConnection.execute(function);
    JCO.ParameterList outnput = function.getExportParameterList();
    JCO.Structure returnStructure = function.getExportParameterList().getStructure("RETURN");
    JCO.Table ODTable = null;
    //retrieve table
    ODTable =function.getTableParameterList().getTable("ITAB2");
    System.out.println(ODTable.getNumRows());
    for (JCO.FieldIterator e = ODTable.fields(); e.hasMoreElements(); )
    JCO.Field field = e.nextField();
    if (field.getName().equals("VBELN"))
    Ship_to_party = field.getString();

    I find the answer of this problem.
    I forget the leading spaces. Need to add some "0".

  • My iphone is in mint condition  but can i switch it for a diffrent colour

    Please Help,I have had my iphone 4s for 6 months now,however i am bored with the colour and i originally
    wanted the white one.But is there a way for me to take it into my local store and switch it for a white one?(Mint Condition)

    You can purchase a new device in the color you want.
    Apple does not offer a trade in program.

  • Trying to open a music file and I get the message "cannot open this song until the latest version is in use" (or words to that effect) - but we are using the latest version we have ever had, and the song was created using that version !!! Help !

    Hi, hope someone can help me.
    I created a music file in my current version of Garageband (2.0.2) but when I try to open the file I am told that I must get the current version of Garageband ?!
    Anyone have any ideas why this is happening ?!
    Thanks.
    Paul

    What have you done, directly before this problem happened? Have you installed any other software, upgraded software, restored your system from a backup?
    The error message can occur, if you have two versions of GarageBand, and now your Dock icon links to the wrong version of the program. Search your Mac for other versions of GarageBand. If you find another installation, check if the version is newer, then use that to open your file.
    Another reason may be, that your current GarageBand Application is corrupted. To check that, try to launch GarageBand from a different User account - if you do not have one, create a new account from the System Preferences > Users and Groups panel (this panel might have been called something else in 10.4.11, sorry, I am using 10.8.2 now).
    If GarageBand also does not launch from this account, reinstall GarageBand from your installation Media and upgrade - a link to the upgrade is here: http://support.apple.com/kb/DL454
    Regards
    Léonie

  • I like to use Google for my search engine but it has been replaced with Amazon. How do I get google back?

    In the upper right corner of the Firefox screen, there is a box for a search engine search. I used to have google there, but recently it somehow changed to Amazon.com. How do I switch it back to google?

    OK, might want to make that change in your profile to get faster answers to future questions. If you leave the "iOS6" that's now in your profile, helpers will have to ask the OS question every time you post, slowing your getting help you deserve. Note the level of detail I was able to cram in my Equipment profile (at the bottom of this post).
    I don't  have 10.7 on any of our Macs but I suspect a system update may have removed that iPhoto option. However, you can still get to your iPhoto files if 10.7 is anything like 10.8.
    In System Preferences > Desktop and Screensaver > Screensaver tab, there is a "Source" dropdown menu direct under the preview pane. Click it and select "Choose Folder..":
    That gives you a dialog box that should point to your "Pictures" folder. Within that is your iPhoto library. Select it and see if that gives you access to your images.

  • I changed the "keyword url" setting in about:config to allow it to be used as a google search box, but when I exit and restart firefox it reverts to its previous setting.

    chrome://browser-region/locale/region.properties
    This is the URL that is in "keyword:URL" in about:config in my Firefox 4. I attempted to change it to http://www.google.ie/search?q= so as to use the address bar as a search bar. It works fine while Firefox remains open, but when I exit and come back later to open Firefox and use the address bar for search items I find that it has reverted to the default setting.
    Can you please help me resolve this issue?
    Thanks

    See:
    * http://kb.mozillazine.org/Preferences_not_saved
    You can start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    * [[Troubleshooting extensions and themes]]
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    In Firefox 4 you can use one of these to start in <u>[[Safe mode]]</u>:
    * Help > Restart with Add-ons Disabled
    * Hold down the Shift key while double clicking the Firefox desktop shortcut (Windows)

  • Lync login error use self account without delete cache , but can login with others account anyway

    Greetings
    I deployed Lync Server 2010 for my customer. it's running well for about one year.
    but there are some users cannot login on lync these days. we tested the issue, the following is the test details:
       - only about 20% users cannot login on lync use themselves client computers.
       - when I delete the lync cache files at C:\Users\username\AppData\Local\Microsoft\Communicator
    folder, they can login on once.  we must delete the folder next time when the user need login on.
       - we can use other user account to login on at the above computer anyway, need not the delete the folder.
    would you plese give me some advice about this case.
    Thanks
    Frank@Hiweb 冯立超@瀚博资讯

    Is this Desktop virtualization scenario? or do does user have roaming profile? Please ensure 
    C:\Users\username\AppData\Local\Microsoft\Communicator
    is excluded from AV scan and test 
    Please remember, if you see a post that helped you please click &quot;Vote As Helpful&quot; and if it answered your question please click &quot;Mark As Answer&quot;. Regards Edwin Anthony Joseph

  • I can use my time capsule for wifi, but can't connect for backup

    I have been using my TC for a couple of years now, always as a router and backup disk.  I went on a long trip then came back and tried to connect to it, I can use the wifi, but I can't connect to the disk to see it or use it for backups.  I also have a PC connected to the TC and I can see the contents on there through explorer.
    Any ideas would be appreciated...

    how do I get the Mac addresses for each device (this won't be a problem, I demand the device, check it, and then return it).
    What wireless devices are we looking at here?
    Most devices have the AirPort ID or MAC Address or Hardware Address printed on the back or bottom of the device
    Otherwise, you can learn the correct number by process of elimination. Turn off all wireless devices except your Mac computer....if it is connecting using wireless.
    Open Macintosh HD > Applications > Utilities > AirPort Utility
    Click on the Time Capsule icon
    Look for Wireless Clients and click on the numerical IP address that is displayed
    Another box will open
    Look for the Hardware Address. It will be displayed as xx : xx : xx : xx :xx : xx
    Write that down and note that it is your Mac.
    Now, connect another wireless device and repeat the sequence.  Click on the "other" listing that you see to find out more info about that device.  Write down the ID or Address and note what device it is. Then power it off.
    Do the same for each wireless device that you want to have limited access.
    Post back when you have all the info.

Maybe you are looking for