KB survey for Spanish and German Community!

Hi All,
All this while we have KB survey prompt as well as a static link when users view a KB article. However, the survey language was in English format only.
Now, English, Spanish and German KB articles should have their respective language of KB survey set.
How will the survey appear to customer ? 
Static link at the bottom of each KB article page
Example:
Spanish KB survey static link:
Please feel free to tell us your view about knowledgebase articles we created out of the community discussion. It's very important to not only us but for your benefits of getting more accurate/appropriate info as well.
Thank you for your continued support!
Best regards,
Cleo
WW Social Media
T61, T410, x240, Z500, Flex 14
Important Note: If you need help, post your question in the forum, and include your system type, model number and OS. Do not post your serial number.
Did someone help you today? Press the star on the left to thank them with a Kudo!
If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!
Follow @LenovoForums on Twitter!
How to send a private message? --> Check out this article.
English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

Hi Tahir,
If Android device system language is English, Agentry Client works correctly. But when i change device system language to Turkish, client gives error during transmit and shuts down.
I add "localizations=tr" to Configuration part on Agentry.ini as you said.
Here is my language part in JavaBE.ini file;
[LANGUAGE]
LANG=EN-en;TR-tr
I also add global parameter on SAP Framework Configuration like this document;Agentry: Controlling backend logon language setting
If I do not add "localizations=tr" field, AgentryServer starts correctly but Android client (Lang:Turkish) shuts down while first transmit. If I add "localizations=tr" field, AgentryServer gives " Localization Exception (Skipping the 'tr' localization because no matching override files were found. )"
Can you help me about this language problem?
Best Regards,
Serkan DEMIR

Similar Messages

  • Sharepoint 2013: Problem / Error when creating Variation Hierarchy for French and German Languages from Variation root EN

    Hi,
    I have a website with English and Arabic Language Packs installed. I have the corresponding Variation heirachies created and the whole site collection is published.
    Recently the client asked for french and german languages to be accomodated as well. So I followed the same approach I did for English and arabic (installed the language packs) for foundation, ran ocnfiguration wizard, installed server language pack &
    ran configuration wizard.
    But after creating the variation label, when i try to create the variation heirarchy, I am getting the following error.
    "Unknown failure when creating a variation of page http://server:port/en/pages/default.aspx in label /fr/Pages/default.aspx.
    The Variations Create Hierarchies job failed with the following error message&  Unknown failure when creating a variation of site
    http://server:port/en in label fr."
    Am not sure what is going wrong. Appreciate a feedback.
    Thanks,
    SSP
    SSP

    Hi,
    According to your description, my understanding is that the error occurred when you created the Variation Hierarchy for French and German Languages from Variation root EN.
    I recommend to check the Resources folder located at C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15 to see if the file core.fr-FR.resx exists in the folder.
    Here is a similar thread for you to take a look:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/611575b2-d129-44c6-814b-2e5782178850/unknow-failure-when-creating-variations-in-sharepoint-2013-is-this-a-bug-in-sharepoint-2013-rtm?forum=sharepointadmin
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Special Characters in Spanish and German Catalogs

    Hi,
    We have some catalogs in spanish and German language and we published these catalogs successfully. But when i shop through these catalogs, the special characters in spanish and German language looks grabled and different.
    what do we need to do for these special characters in catalogs to look normal?
    Please help.
    Regards

    Hi,
    take a look at the notes 846194 and 949031.
    Regards,
    Armin

  • Architecture advice for Effect and AEGP communication

    Happy monday!
    In my current plugin project I need to use an "helper" AEGP for tasks my main effect plugin cannot accomplish (delayed tasks via AEGP idle hook, project modifications that will crash if performed inside the Effect logic, etc.)
    I'm trying to figure out an elegant and robust architecture design for this cross-communication. 
    Heres the way I see it:
    Effect passes info along to AEGP via custom suite data.
    AEGP reads the data at idle, and performs some required task.
    The success/fail of this work and the resulting products are communicated back to the Effect via AEGP_EffectCallGeneric.
    My question is basically surrounding the data/info handoff.  What kind of objects should I be passing back and forth?  Is it considered poor design to simply pass along a pointer to the sequence or custom arb data to the AEGP via the custom suite?  And vice versa when the GP sends EffectCallGeneric to the effect and passes a pointer, it could just be the same pointer that the effect originally sent the AEGP using the custom suite. 
    Aside from undo/redo, is there an advantage to using arb parameter data over sequence data for this task?
    It seems to me that AEGP plugins are loaded once and only once in the session, so if multiple instances of my effect plugin are used in the project, and they are all calling the AEGP there is the potential for a race condition if the custom suite data is used to pass along information.  Is this an accurate assessment of AEGPs? A simple example of this would be that the custom data suite has a variable that stores which effect plugin is calling the AEGP.  If another instance of the effect starts talking to the AEGP, it would overwrite the suite var telling the AEGP which effect instance is calling it, thereby making the AEGP perform the work of one effect instance but sending the results to different instance.
    Even if the AEGP is extremely simple and just performs small atomic operations each time the custom suite data tells it to, how do I prevent n+1 Effect instances from colliding when using the AEGP worker?  Am I missing some key part of the Effect->AEGP communication that prevents this race condition situation?
    This is the first time I've tried my hand at writing inter-process communication where I have the option to exchange actual in-memory objects. I'm hoping someone with more experience with this sort of problem can give some pointers(hah) or at least a few cautionary words about designs to avoid.
    Thanks, sorry for such an open ended question, but this is the place to talk to the pros
    -Andy

    yo andy! what's up?
    i see you were up to no good... naughty.
    you are correct in your assumptions.
    AEGPs are indeed loaded only once per session, but if you're rendering with
    the "multiple frame simultaneously" option, then the AEGP is loaded
    separately for each AE instance.
    (so would your plug-in. each AE instance calls it's own global setup)
    now, plug-ins are called on the main thread. which should mean that only
    one plug-in is is called at a time, which should mean that your AEGP may
    only get one call at a time. i'm not absolutely sure that the base
    assumption is correct here. it's possible that multiple effects are called
    at the same time, so re-entrancy of your AEGP suite is possible.
    how do we know? we can either test, or ask zac lam.
    re-entrancy is a non issue when reading data (all can read at once. it
    doesn't matter). but when writing data... that's a problem.
    to prevent such issues you need to implement some mutex (mutually
    exclusive) mechanism.
    it only allows one caller access at a time, while the other caller stall
    until their turn.
    boost library offers such tools.
    as for what data you should transfer.
    you can either pass data by value, or by reference.
    when a function gets it's data like so:
    function(int val);
    it get's a local copy of the data. no worries about scope here.
    if it gets the data like so:
    function(int *val);
    or function(int &val);
    then we're talking reference. in this case, the val variable is only valid
    while the object to which it refers is valid.
    that depends on stability of that memory chunk. what makes a chunk stable?
    1. if the data is created as a local scope variable it will invalidate when
    the code block finishes. make sure don't access that data at other times.
    2. AE handles of a plug-in instance are only valid during calls to that
    plug-in.
    let's look at the two directions of communications you have.
    1. effect calls AEGP.
    in this case, the call order is as follows:
    AE calls effect.
    effect is now executing. at this point, sequence/global data are valid, and
    anything locally allocated in the call handling function.
    effect calls AEGP.
    AEGP is now executing.
    you can now pass anything you like from the effect to the AEGP.
    if the AEGP returns data, it should be data that remains valid after the
    AEGP finishes executing.
    AEGP finishes it's thing and exits.
    effect is now executing.
    effect finishes the call, exits, and AE is executing.
    at this point, seq/global data handles are no longer valid. (at least you
    can't rely on that)
    also, anything allocated in the effect's calling function as a local
    variable, is no longer valid.
    so now your AEGP gets called on idle time.
    it should only rely on memory that has kept since the effect was executing.
    what memory is kept?
    anything in global scope of the AEGP, or pointers to memory that was not
    deallocated or moved.
    seq data handle may not have been deallocated, but you can't tell if it
    moved or not. so you can't rely on it.
    if the seq data has another pointer in it, which point to a non movable
    piece of data, then you can rely on that pointer.
    seq/global handles are locked an unlocked by AE. memory handles are managed
    by the plug-in (so you know if they can be relied on or not).
    2. AEGP calls effect.
    AE is calling the AEGP on idle time.
    AEGP is executing.
    AEGP calls effect with data.
    effect is now executing.
    effect uses data gotten from AEGP.
    effect optionally returns data to AEGP.
    effect exits.
    AEGP is now back executing.
    AEGP uses data returned from effect. that data can't be references to local
    variables in the effect as they are no longer valid.
    AEGP exits, AE is now executing.
    so in both directions you need to see that at the time the data is used,
    that is is valid.
    as for sequence data vs arb param.
    yes, there is a difference besides undo/redo.
    AE creates (multiple) copies of the data stored in arb params before each
    call to the plug-in and also after.
    if you're storing very large amounts of data in the arb param, then the
    copy operations will start dragging your performance down.
    it's usually a non-issue, but... it's a point to think about.

  • How to configure traps when using snmpv3 for Airwave and controller communication

    Requirement:
    Airwave monitoring or managing controllers, using SNMPv3 for communication.
    Solution:
    Usage of SNMP v3 for communication over SNMP V2c is increasing rapidly for its enhanced security. Like wise, SNMP v3 informs are also more secured compare to SNMP v2c traps.
    SNMP v3 informs work differently, when compared to SNMP v2c traps.  As, informs would need a received receipt from the trap receiver. Therefore it requires more configuration from Airwave side as well.
    Configuration:
    We need to configure the SNMP v3 inform user on Airwave, under device setup --> communication as shown below:
    We need to use the same user name to configure on the controller as well, as shown below:
    Controller GUI > Configuration > under management > SNMP > Trap recievers:
    Verification
    After the configuration, we could see the traps(Informs) showing on the Airwave GUI, System --> Syslogs & Traps, as shown below:
    We could also see in the packet capture taken from Airwave, that the controller is sending the Traps and Airwave is Acknowledging them as shown below:
    In the above example, .116 is the Airwave IP and .231 is the controller IP.

    My first question is how to create Sync-Async bridge in XI without using BPM.
    Just make a search on SDN, there is blog which mentiones how to do Sync_Async bridge without BPM (for JMS)
    "how to route this Interface mapping in Integration directory as in this case there is no backend call....its just the Java
    mapping inside an Interface mapping"
    Include the Interface mapping in the appropriate Interface Determination in ID for a particular set of source and target.
    and third I m trying to call an IDOC which is populated with the response of the Java mapping....but how to route it in
    Integration Directory ??
    same as mentioned for Q2....in Interface Determination....if it is a Sync call then the Request & Response Mapping will be in same Interface Mapping and then in same Interface Determination......it is the normal way.....I hope that i have not missed/ overlooked something from your queries!
    Regards,
    Abhishek.

  • Thanks for Archlinux and the community.

    Hello,
    I just wanted to express my happiness towards Archlinux and it's community. I was searching for a distro that I could use to build on and Archlinux was the answer. I installed the base system and I am slowly getting everything running. I installed the core system from the core CD of course, then installed openbox. So, I now have a quick booting and very lightweight distro. I also run a openSUSE 11 Desktop PC which runs all my everyday stuff, my aim is to get all the applications that I run everyday. I probably won't desert my openSUSE disro as there is no harm in running both distros. I am about half way there. I am even running good 'ol Quakeworld (yes, the original. google 'ezquake'). I am going to try to get video/mp3 working now and then wine and TF2. Well, I would like to somehow give something back to the Linux community. I guess, unless I missed it there is no HCL (Hardware Compatibility List). So, I guess I will go ahead, please let me know or feel free to move this to another part of the forum.
    I am running a ASUS A8JM notebook, which has a Nvidia 7600GT (512Mb) video card, 2Gb RAM, 1.83Ghz Intel CPU.
    uname -a:
    Linux myhost 2.6.27-ARCH #1 SMP PREEMPT Sun Dec 21 09:31:10 UTC 2008 i686 Genuine Intel(R) CPU T2400 @ 1.83GHz GenuineIntel GNU/Linux
    I guess thats about it for me now.
    Thanks

    there is a HCL list. http://wiki.archlinux.org/index.php/HCL/Laptops

  • Press 1 for English 2 for Spanish

    Trying to deal with Verizon is maddening!!!
    First I have to call tech support because of an issue on Verizon's end - which was not resolved but "hopefully" by Tuesday someone will be able to look into the matter - needless to say I pay almost $200.00 per month for this setller service.
    But after I spend 45 minutes on my phone while they try to figure it out to no avail. Within 1 minute I recieve an automated call on my phone asking for me to take a survey about my experience.
    HOWEVER - to do this I need to press 1 for English or 2 for Spanish......when I press 1 for English, the recording starts again, press 1 for English and 2 for Spanish and so on....it simply circled again and again, so of course I was not able to take that customer service survey.
    Then for me to even come on the forum to post about the problem with the automated recording - again my username doesn't work, this is the third time this has happened. No it isn't my browser or operator error, it is Verizon website which they haven't fixed yet.
    And, they still haven't fixed the issue when you call for support, they ask you for your account number - when you don't have internet service, and you have paperless billing - you - do - not - have - access to your account number. 
    I do not understand why Verizon has a limit on the number of calls you are allowed to block, because my phone has become useless, even though I pay for this service, I plugged it in recently again, and the spam phone calls continue.
    And Verizon robo calls are unwanted as well.  How do I block Verizon robo calls?

    I had to call Verizon about a problem and got the IVR. It's horrible. Even the TV's noise and the dog barking would mess it up and I have to start over.

  • Same BS for sender and receiver comms

    Hey pals,
    can we use same BS for sender and reciever communication channels?!!
    -Esha

    Hello Esha,
    You have to you 2 BS
    One from where u hav to pick the file and the other one where you want to post it.
    what is a Business system? What is use of creating it
    Business System have an entry in the SLD and Buiness Service do not.
    Business Systems are used when you are sending data to and from an R3 system and can be of ABAP, JAVA and Third Party Types.
    Business System is a logical representation of a Technical System.
    Business Service is a abstract representation of a System. For instance, www.google.com have a several system working together and IPs of this machines change eventually. When we use a Business Services like google we reference a computer that we don't know the phisical implementation.
    Thanks,
    Satya
    Edited by: SATYA KUMAR AKKARABOYANA on May 15, 2008 5:51 PM

  • Calendar issue in german,spanish and Italian

    I am using class GregorianCalendar but in languages german,spanish and Italian strange problem happens. In these languages, for the months whose day 1 is Sunday (per normal/default (US) calendar), day 1 is shown as Monday. This is true for Feb 2004 and August 2004.
    So when viewed in any of these three languages, while 31st July 2004 was a saturday, 1st August 2004 is Monday. Sunday gets skipped.
    Has anyone encountered a similar problem or does anyone know a workaround to this.

    Sorry, try this:
    import java.util.*;
    class Test
         public static void main(String[] args)
              Calendar calendar = Calendar.getInstance();
              calendar.set(2004, Calendar.JULY, 31);
              Date d1 =calendar.getTime();
              calendar.set(2004, Calendar.AUGUST, 1);
              Date d2 =calendar.getTime();
              System.out.println("Day 1 = " + d1);
              System.out.println("Day 2 = " + d2);
              // Should give something like:
              // Day 1 = Sat Jul 31 17:07:59 GMT+01:00 2004
              // Day 2 = Sun Aug 01 17:07:59 GMT+01:00 2004
    }I guess the querying of the day of week is the culprit.

  • Image for Spanish Language Community

    Dear All:
    Do you know what happen with the image for the Spanish Community Language?
    This community is without much activity for members and moderators, but I guess SCN will have it updated¡¡
    Regards Antonio Martinez

    Have you seen that Image before ?
    Actually there are some forums, which hasn't any image.
    Like as SAP Business One (Español)
    SAP Cloud Applications Studio
    SAP HANA Developer Center etc etc..
    Was the image there in before today ?

  • Please take a survey about Help and Community Help.

    Now that youve all had a chance to use the new Community Help system, please take a few moments and let us know what you think.
    The best way is to fill out the survey that is behind the
    "Give us feedback" link here.
    In case you havent been exercising the new
    Community Help system, please give it a spin.
    If youd rather just send me a message instead of filling out a survey, go ahead and send me email at kopriva [at] adobe {dot} com.
    Im especially interested to know how easy it is for you to find the information that youre looking for and how you feel about F1 taking you to the Community Help and Support page instead of the home page of the After Effects Help document.

    The question that most individuals ask is how can a person be sure that it is the good time to perform an alcohol or drug intervention. Some signs can be seen and once one is aware of them, its easier to decide a great time for an intervention. For example, a dependent person that drinks alcohol or does drug on a regular basis might begin changing his or her habits, spend ridiculous quantities of money to continue their dependency, less communication with the people that surround him or her, loss of weight, etc
    mukesh
    Paid Surveys-Paid Surveys

  • Im looking for a good note app with pen for taking notes ( in english and german )during business trips. Can anyone help

    I'm looking for a good note app with pen function for taking notes ( in English and German ) during business trips. Can anyone help?

    Really sorry to hear about this, particularly when you're putting your life on the line. But Apple cannot track your iPhone in any way unless you had set up Find My iPhone prior to it being lifted.
    It's possible that AT&T might be able to do something, but it's probably that they cannot track it, or will not without a request from an authorized law enforcement agency, but rather would only disable the device. You'll have to try and find a way to contact AT&T directly and ask if they can do anything to help you; the chances of any AT&T employee in a position to help you spotting this thread it pretty small.
    Good luck, stay safe, and come home soon.
    Regards.

  • I installed mountain lion os on my mac book pro and now Word for Mac and my Fluenz Spanish programs do not work. How can I go back to my original OS? Thanks

    I installed Mountain Lion OS on my Mac Book Pro and now WORD for Mac and Fluenz Spanish program do not work. How do I reinstall original OS and scrap ML?
    Thanks

    My previous answer still stands: Restore from your backup taken before you upgaded to Mountain Lion. For example, a Time Machine backup, a Carbon Copy Cloner clone, or a commercial backup service. Not the disk that came with your computer (which is how I read "OS back up disk").
    If you reinstall the original OS from the disk that came with your computer, it will wipe out everything on your computer. (The installer won't install an older OS over a newer one, so you'll have to wipe the disk first.) Then you'll need to restore your data from your backup and reinstall applications like Word.

  • Sender communication channel for  HTTP and IDOC

    Why the sender communication channel is not necessary for HTTP and IDOC

    Hi,
    Because they lie on ABAP stack ie on Integration Engine...so that they can process directly but other adapter lies on Adapter engine.
    Regards
    Hemant

  • Support for English and Spanish Characters

    I have created a database with character set WE8iso8859P1. Some of my tables that I imported from MS Access Database using ODBC contain English as well as Spanish characters. When I select the same from the database I just get ? for the non-English characters. What should I do to see the Spanish characters as well?

    In the timeline, next to the audio (on the left) is a small drop down box which lets you set the language for the track. You'll see 'En' in both of them at the moment, and you need to change the Spanish one to be for Spanish. You should then be able to complete the build.

Maybe you are looking for

  • Testing a Stored Procedure iView gives an error!!

    Hi, I have created a stored procedure iView , associated with a SP object in MSSQL server.Tested the connection etc..everything is works. but when i Preview the SP iview..It gives me an error "No response from the backend application" Can u please le

  • How do i transfer my data from a Macbook Air to a iMac?

    How do i transfer my data from a Macbook Air to a iMac?

  • My ibook keeps freezing! Help!

    Hi Every time i click on my Applications folder i get that dark screen that tells me to restart my computer. I have run antivirus software, hardware test and and it's all fine. And have looked thru all the forums but cannot find an answer. Any ideas?

  • I need help made a huge mistake today.

    so I decided to tackle my med collections since they are willing to pfd. 4400 bucks worth. This would rid me of 6 of my 9 baddies. Put on credit card and realized after the fact....oh crap this credit card has an interest rate like 20 percent. So I'm

  • Saving changes in KM Document IView

    Howdy Folks! I am displaying an Excel Document on my Portal Site using an KM Document IView. This Excel Document is editabel for users of the Portal Site that they can leave information there. For example, it could be a public document and everybody