Language Output in PO by Supplier Country

In my System the PO language output depends on the country in the address of the supplier, so every country its in spanish except USA, which its in english.
Where should I look to find the code (or transaction) to add other countries to English language?
Thank you, Regards,
Carlos

Thank you Nick its seems in my system somebody used a userexit so the country its the one setting up the language, if I change the communication it also changes the output but also material text which its not maintained in other languages.
Best Regards,
Carlos

Similar Messages

  • In RoboHelp 11 Responsive HTML5, is it possible to have 2 different language outputs in one generated output file?

    In RoboHelp 11 Responsive HTML5, is it possible to have 2 different language outputs in one generated output file, similar to WebHelp where the use can select the language from a drop-down list? In Webhelp output you could create multiple Content categories. Is there something similar with the responsive output, or am I forced to have a completely separate set of output files for each language (for example, English, Japanese, Chinese, Korean, and Arabic)?

    As Rick, mentions, there's no default way.
    Having said that, there's nothing stopping you from doing it yourself. You can add a kind of language selector to the layout and set that for every html5 output. With some JavaScript, you can have the user switch between your outputs. It would look like content categories, but you'll have build it yourself.

  • Why when I set up my Country or Region on my iPhone 5, the default language of the phone is the country's and not the one I selected when I set up my preferred language?

    Why when I set up my Country or Region on my iPhone 5, the default language of the phone is the country's and not the one I selected when I set up my preferred language?

    Go to Settings/General/Reset and choose Reset All Content and Settings. This will erase everything on the iPhone and allow you to set it up again as new with the proper Apple ID.

  • Supplier Country Lookup

    Hi- I am doing a supplier conversion with legacy data and some of the countries are failing. I need to do a transformation of this legacy data and need to look up the country codes.
    In R12 there are many tables that hold country codes out there for IRS codes, HR, TCA, etc.
    Can anyone tell me the table I should query against?
    Thank you so very much.

    For supplier country lookup use following query
    select nls_territory from fnd_territories where territory_code='GB';
    --Prasanna                                                                                                                                                                                                                                                                               

  • The output of a power supply in labview using a Magna Power LXI over RS232 to simulate a periodic voltage.

    How can I toggle the output of a power supply in labview using a Magna Power LXI over RS232 to simulate a periodic voltage?  Any help would be apreciated?

    LXI is Ethernet communication.
    Does the power supply have an RS232 port?
    Are you looking for an RS232 to Ethernet (LXI) Converter
    https://www.google.com/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#q=rs232%20to%20ethernet%20ip
    But to simulate a periodic voltage you need to send the SCPI "Source" command to the power supply in a loop.
    Changing the Voltage setting in periodic value.
    How fast of a periodic voltage do you need?
    You may be limited to how fast LabVIEW, Windows and your power supply can respond to commands.
    Use VISA writes. It is the same for LXI as it is for RS232. The LabVIEW code would be the same.
    After you select the corrent VISA Ref, either a com port or an IP address, LabVIEW does not care if it is LXI or RS232.
    From a Magna manual I found
    Command Syntax
    [SOURce]:VOLTage[:LEVel][:IMMediate][:AMPLitude] <nrf+>
    [SOURce]:VOLTage[:LEVel]:TRIGgered[:AMPLitude] <nrf+>
    Examples
    VOLT 200
    VOLTAGE:LEVEL 200
    VOLTAGE:LEVEL:IMMEDIATE:AMPLITUDE 2.5
     

  • How to make the Region and Language | Location | Current Location selected by "country or region" selection

    Hi,
    I have built a Windows Embedded Standard 7 image that includes multiple language packs for the countries that we support.  When I sysprep this image and reboot, I am prompted for my language (a screen appears with many selections like "My language
    is English").  Once I select my language and select next, I am prompted for "Country or Region", Currency and Keyboard.  For some unknown reason the "Country or Region" selection only affects the setting under "Region
    and Language" | Administrative | "non-Unicode programs", it does not affect the setting setting under "Region and Language" | Location | "Current Location". 
    Is there a way to modify my image such that the "Country or Region" selection is used for the location setting?
    Thanks,
    Brent

    Hi,
    You can follow the content of these link below to set system location during Windows Deployment:
    Configure International Settings in Windows:
    https://technet.microsoft.com/en-us/library/hh825705.aspx
    Regional settings default to English when deploying a virtual machine using a template on System Center 2012 Virtual Machine Manager:
    https://support.microsoft.com/en-us/kb/2709539
    Windows Deployment sample OOBE.xml file:
    https://technet.microsoft.com/en-us/library/dn621901.aspx
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • ALV-multiple language output

    Hi All,
    I have created a ALV report, in the sel.screen I have 2 radiobuttons with text English and Arabic.
    Now if I excecute the report with radiobutton - English, the O/P should be in English and
    if I excute the report with radiobutton - Arabic, I want the O/p to be displayed in ARABIC..
    note : User's Logon lang wil be always "English"
    plz let me know how to do it.
    With Regards,
    S.Bharani

    ARS,
          Everything remains same . I have not used any text-elements, just I am fetching data and displaying in  ALV . .
    code given below.. 
    REPORT  ZSBN_ALV_LANG.
    TYPE-POOLS : SLIS.
    *                  FOR ALV                      *
    DATA:IS_LAYOUT    TYPE  SLIS_LAYOUT_ALV,
         IT_EVENTS    TYPE  SLIS_T_EVENT,
         WA_EVENTS    TYPE  SLIS_ALV_EVENT,
         W_FCAT       TYPE  SLIS_FIELDCAT_ALV,
         T_FCAT       TYPE  SLIS_T_FIELDCAT_ALV.
    DATA : I(4).
    DATA : BEGIN OF ITAB OCCURS 0.
    INCLUDE TYPE PA0001.
    DATA : END OF ITAB.
    DATA : BEGIN OF ITAB1 OCCURS 0.
    INCLUDE TYPE PA0002.
    DATA : END OF ITAB1.
    DATA: lang  TYPE tcp0c-langu,
          cntry TYPE tcp0c-country,
          mod   TYPE tcp0c-modifier.
    *GET LOCALE LANGUAGE lang COUNTRY cntry MODIFIER mod.
    LANG = 'A'.
    cntry = 'SA'.
    SET LOCALE LANGUAGE lang COUNTRY cntry.
    *&*& DATA FROM PA0001
    SELECT DISTINCT * FROM PA0001
           INTO TABLE ITAB.
    SORT ITAB.
    DELETE ADJACENT DUPLICATES FROM ITAB COMPARING PERNR.
    *&*& FCAT
    W_FCAT-FIELDNAME = 'PERNR'.
    W_FCAT-SELTEXT_M = 'Emp No'.
    W_FCAT-HOTSPOT = 'X'.
    APPEND W_FCAT TO T_FCAT.
    CLEAR W_FCAT.
    W_FCAT-FIELDNAME = 'ENAME'.
    W_FCAT-SELTEXT_M = 'Emp NAme'.
    APPEND W_FCAT TO T_FCAT.
    CLEAR W_FCAT.
    *&*& layout
    IS_LAYOUT-COLWIDTH_OPTIMIZE = 'X'.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
        I_CALLBACK_PROGRAM      = SY-CPROG
        I_CALLBACK_USER_COMMAND = 'F_USERCOMMAND_ALV'
        IS_LAYOUT               = IS_LAYOUT
        IT_FIELDCAT             = T_FCAT
      TABLES
        T_OUTTAB                = ITAB.
    *&*& FOR DRILL DOWN WHEN CLICK ON PERNR
    FORM F_USERCOMMAND_ALV USING R_UCOMM     LIKE SY-UCOMM
                                 RS_SELFIELD TYPE SLIS_SELFIELD.
    *&*& TAKING ALL RECORDS IN PA0002 FOR THAT EMP
      CLEAR :ITAB1[].
      SELECT *
             FROM PA0002
             INTO TABLE ITAB1
             WHERE
                   PERNR EQ RS_SELFIELD-VALUE.
      CLEAR :   T_FCAT[].
    *&*& FCAT
      W_FCAT-FIELDNAME = 'PERNR'.
      W_FCAT-SELTEXT_M = 'Emp No'.
      APPEND W_FCAT TO T_FCAT.
      CLEAR W_FCAT.
      W_FCAT-FIELDNAME = 'GBDAT'.
      W_FCAT-SELTEXT_M = 'DATE'.
      APPEND W_FCAT TO T_FCAT.
      CLEAR W_FCAT.
      W_FCAT-FIELDNAME = 'GESCH'.
      W_FCAT-SELTEXT_M = '***'.
      APPEND W_FCAT TO T_FCAT.
      CLEAR W_FCAT.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          I_CALLBACK_PROGRAM = SY-CPROG
          IS_LAYOUT          = IS_LAYOUT
          IT_FIELDCAT        = T_FCAT
        TABLES
          T_OUTTAB           = ITAB1.
    ENDFORM.                    "F_USERCOMMAND_ALV
    With Rgds,
    S.Bharani

  • Wrong language output

    Hi Experts,
    I have created a printer for a user to print in Russian language.The device type is set to I5SPOST in SPAD.
    Also the printer is compatible with Russian language.
    But the user complains that he is getting the o/p in differert language.
    The device type I5SPOST uses character set 1517(ISO 8859-5 Russian Postscript printing (soft font)).
    Kindly suggest what the problem could be??
    Regards,
    Puneet.

    Hello Stacy,
    The language in the customer master is EN. But even then the country name is getting printed in Danish language.
    My requirment is that either the country name or its short form should get printed. Eg. Austria or AT.
    In one of my other example for Iceland, it is getting printed properly. It is getting printed as "IS", short form for Iceland.
    Regards,
    Raj.

  • My iphone app store is downloading apps in french but my language is portuguese . I changed country and language  even though they were  already in portuguese and brazil. Don't konw what to do anymore . I bought some apps and they all are in french .

    Hi , my iphone app store is downloading apps in french instead of portuguese . I checked my country and language in settings and they are right . Don't know what to do anymore. I even bought some apps and they are also in french .

    Follow this link for the Bionic ICS user guide; if you have issues/questions, you may want to do a search on this forum as there are already several threads/remedies.  If a search doesn't answer your question, submit a post.
    https://community.verizonwireless.com/message/893011#893011

  • How to change language and get app in other country app store?

    Hi there. I am struggling with two problems with the app store:
    1. My billing address is in the Netherlands and I live now with my spanish speaking family in Colombia. If we enter the app store everything is in Dutch, what they don't understand. Can I change the store or the language without changing my billing address? Or do I need to get a credit card from Colombia to have the spanish language?
    2. I found a free app that is only available in de US app store. If I want to download the app, clicking on a button on the website, app store tells me to change app store. If I click on the button that says "change store", the next message that appears says that it is unable to connect to that store. I can connect to the Dutch store, but not the US store. How can I get this app that is only available in the US store?
    Thank you very much for helping me out on this problems.

    The issue is that your credit or debit card credentials must be associated with the same country where you reside.
    "Although you can browse the iTunes Store in any country without being signed in, you can only purchase content from the iTunes Store for your own country. This is enforced via the billing address associated with your credit card or other payment method that you use with the iTunes Store, rather than your actual geographic location."
    From here >  The Complete Guide to Using the iTunes Store | iLounge Article

  • Disabling output of a power supply and enabling it

    I need to contol the ouput of my power supply when my mulitmeter reaches a certain voltage or drops below it. My question is how do I connect the multimeter to the power supply so that the power supply will be on until the mulitmeter reaches X voltage then turns back on when it goes below X voltage.
    My Equipment:
    1.HP 34401A Multimeter
    2.HP E3631A Power Supply
    Here is a picture of the block diagram. The Multimeter is on the left and the power supply is on the right. I have also attached the file to this post.
    Attachments:
    Agilent 34401 & Agilent E363X Connection.vi ‏27 KB

    Here is how I would start. You will need to do more to this but should give you an idea of how to get started. This was a very quick and dirty way of using what you had and making it do more.
    You will need to set the limits on the in trange and you will have to hook the ture false back up to the set output.
    Tim
    Johnson Controls
    Holland Michigan
    Attachments:
    Agilent 34401 & Agilent E363X Connection.vi ‏38 KB

  • How to use language different to default ones in country of Itunes

    I moved in Spain and I'm using Spanish Itunes store, but I want to keep english language interface in Itunes store is that possible?

    According to this: http://support.apple.com/kb/HT2242
    Spanish is the only language option for the Spanish Store.

  • How to switch sqlplus language output e.g. french- english ?

    When I enter a command in SQL@plus then result comments (e.g
    PL/SQL procudre successfully finsihed
    or
    Transaction with COMMIT finished
    are displayed. However on some installations they are
    written in another language like french or german.
    The "main" installation menues and labels (e.g. GUI in http//127.0.0.1) are in english.
    I am talking only about the comments from SQL*Plus.
    Is there a way to switch to english language comments ?

    SQL> exec null
    PL/SQL-Prozedur wurde erfolgreich abgeschlossen.
    SQL> alter session set nls_language=american;
    Session altered.
    SQL> exec null
    PL/SQL procedure successfully completed.NLS_LANG can also be defined at the OS level to american_america

  • Formatting dates according to language defined in "Regional format" (not "Country/Region") setting

    Hi all,
    How do I format a date/time value according to the language defined in Settings > Region > Regional format on Windows Phone 8.1 (WinRT)?

    Hi Gabriel,
    Windows.Globalization.Language class provide the functionality to the regional format in windows phone, access it and create
    a new cultureInfo object. Have a look at the following link for details.
    https://social.msdn.microsoft.com/Forums/windowsapps/en-US/d7d5ed31-9904-4a95-974e-26e38a8e177f/datetime-localization-based-od-reginal-format-not-on-language-setting?forum=wpdevelop.
    Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Language issues in a school supplied software?

    So I am attending a school in Sweden, and was given a full CS5 install through our Tech Department.  The problem is, I am from the US, and only know the software in English.  The IT guy said he had no access to the English download anymore, so I have CS5 in Swedish.  I've tried a couple tricks for changing the language (turning the .dat to .bak and adding a new language folder), to no success.  I cannot function in this software at all anymore, it's incredibly frustrating.  Any help?
    I have CS5 version 12.0, 64 bit.

    Sort of.  Adobe will tell you it has to be ordered that way.
    About 2? months ago a user posted a PS forum thread on how to change the language.  It was not something you just click on, you had to do some more technical stuff.  Bottom line it is possible.
    Might to a search and see if you can come up with it.  Google is better than Adobe search, but you might try both.

Maybe you are looking for