In FB60, Vendor address info getting displays in 2 languages for 2 users

Hi All,
Can anyone please provide solution for this issue....
In XK03, the vendor address showed in English and japan  (Address in Japan language was maintained in internat. versions tab in the same screen) language.
At the time of booking invoice (Fb60 or MIRO), one user getting vendor address in English and with the same parameters (i'e, vendor no. & invoice date etc..same) another user was tried in his log in, he got the vendor address in Japan language.
I was checked in ADRC Table and Vendor master data also, i haven't find any mistake in this areas.
It may happend because of user parameters. I was checked both users parameters.
Now user wants to see the vendor address (FB60) in their local language (Japan) .

Hi Prasad,
In su3 / su01 of the user; there is Tab  maintained as "company" at the botton of the page under the Address Tab...
If that is maintained as "Company address - please maintain / /" and the Logon Language under defaults is "EN" then the user
gets the Vendor displayed in English............
AND if the field Company is maintained as "*** Users Country (Japan)" and the Logon Language under defaults is "EN" then the user gets the Vendor displayed in japanese.
You need to change the company by clicking on "Assign Other Company address" above Company Tab...

Similar Messages

  • Vendor Address not getting printed properly in cheque printing.

    Hi
    While printing the vendor address for the cheque printing, for certain vendors the street no. is not getting printed & for certain vendors PO Box is not getting printed.
    In the program we are fetching vendor address from REGUH table & then passing onto the global variables which are being used in the script & data is there in the database table for both street & PO Box number.
    The code in the script is as follows:
    /:           ADDRESS PARAGRAPH UH TYPE '3'
    /:             TITLE    &W_ANRED&
    /:             NAME     &W_ZNAME1&,&W_ZNAME2&,&W_ZNAME3&,&W_ZNAME4&
    /:             STREET   &W_ZSTRA&
    /:             POBOX    &W_ZPFAC& CODE &W_ZPST2& CITY &W_ZPFOR&
    /:             POSTCODE &W_ZPSTL&
    /:             CITY     &W_ZORT1(28)&
    /:             COUNTRY  &W_ZLAND&
    /:             FROMCOUNTRY &W_LAND1&
    /:             ADDRESSNUMBER &W_ZADNR&
    /:           ENDADDRESS       
    Can anyone please let me know, what could be the possible reason for this?

    you can tyr with TYPE '1' or TYPE '2'
    : ADDRESS PARAGRAPH UH TYPE '3'

  • Menu Options in responsibilities getting displayed in different language.

    Hi,
    When we are logging in with the English language in R12, the menu options for some responsibilities are displayed in different languages, which is looking very strange. This is happening to different responsibilities. can any one help me on this.

    Hi;
    What is exact EBS version
    It was working before? If yes what have been changed?
    Did you try to compile forms via adadmin?
    Please review:
         R12 System Administrator Menu is showing English values in any NLS language [ID 563008.1]
    Regard
    Helios

  • How to skip(do not wnat to get display) save dialogue box for file download

    I am having servlet for downlading a file from server. When I call this servelt I am able to get the file from server but I get a save dialog box which I do not want. I want that this file should be stored at a specific location given by me in a servlet.
    So haoe I can avoid that save dialog box and where I should specify the specific location?
    Thanks in advance
    package com.txcs.sms.server.servlet;
    import java.io.*;
    import java.util.zip.GZIPOutputStream;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class DownloadServlet extends HttpServlet
        public DownloadServlet()
            separator = "/";
            root = ".";
        public void init(ServletConfig servletconfig)
            throws ServletException
            super.init(servletconfig);
            context = servletconfig.getServletContext();
            String s;
            if((s = getInitParameter("dir")) == null)
                s = root;
            separator = System.getProperty("file.separator");
            if(!s.endsWith(separator) && !s.endsWith("/"))
                s = s + separator;
            root = s;
        public void doGet(HttpServletRequest httpservletrequest, HttpServletResponse httpservletresponse)
            throws ServletException, IOException
            doPost(httpservletrequest, httpservletresponse);
        public void doPost(HttpServletRequest httpservletrequest, HttpServletResponse httpservletresponse)
            throws ServletException, IOException
            Object obj = null;
            String s = "";
            s = HttpUtils.getRequestURL(httpservletrequest).toString();
            int i;
            if((i = s.indexOf("?")) > 0)
                s = s.substring(0, i);
            String s1;
            if((s1 = httpservletrequest.getQueryString()) == null)
                s1 = "";
            else
                s1 = decode(s1);
            if(s1.length() == 0)
                httpservletresponse.setContentType("text/html");
                PrintWriter printwriter = httpservletresponse.getWriter();
                printwriter.println("<html>");
                printwriter.println("<br><br><br>Could not get file name ");
                printwriter.println("</html>");
                printwriter.flush();
                printwriter.close();
                return;
            if(s1.indexOf(".." + separator) >= 0 || s1.indexOf("../") >= 0)
                httpservletresponse.setContentType("text/html");
                PrintWriter printwriter1 = httpservletresponse.getWriter();
                printwriter1.println("<html>");
                printwriter1.println("<br><br><br>Could not use this file name by the security restrictions ");
                printwriter1.println("</html>");
                printwriter1.flush();
                printwriter1.close();
                return;
            File file = lookupFile(root + s1);
            if(file == null)
                httpservletresponse.setContentType("text/html");
                PrintWriter printwriter2 = httpservletresponse.getWriter();
                printwriter2.println("<html>");
                printwriter2.println("<br><br><br>Could not read file " + s1);
                printwriter2.println("</html>");
                printwriter2.flush();
                printwriter2.close();
                return;
            if(!file.exists() || !file.canRead())
                httpservletresponse.setContentType("text/html");
                PrintWriter printwriter3 = httpservletresponse.getWriter();
                printwriter3.println("<html><font face=\"Arial\">");
                printwriter3.println("<br><br><br>Could not read file " + s1);
                printwriter3.print("<br>Reasons are: ");
                if(!file.exists())
                    printwriter3.println("file does not exist");
                else
                    printwriter3.println("file is not readable at this moment");
                printwriter3.println("</font></html>");
                printwriter3.flush();
                printwriter3.close();
                return;
            String s2 = httpservletrequest.getHeader("Accept-Encoding");
            boolean flag = false;
            if(s2 != null && s2.indexOf("gzip") >= 0 && "true".equalsIgnoreCase(getInitParameter("gzip")))
                flag = true;
            if(flag)
                httpservletresponse.setHeader("Content-Encoding", "gzip");
                httpservletresponse.setHeader("Content-Disposition", "attachment;filename=\"" + s1 + "\"");
                javax.servlet.ServletOutputStream servletoutputstream = httpservletresponse.getOutputStream();
                GZIPOutputStream gzipoutputstream = new GZIPOutputStream(servletoutputstream);
                dumpFile(root + s1, gzipoutputstream);
                gzipoutputstream.close();
                servletoutputstream.close();
            } else
                httpservletresponse.setContentType("application/octet-stream");
                httpservletresponse.setHeader("Content-Disposition", "attachment;filename=\"" + s1 + "\"");
                javax.servlet.ServletOutputStream servletoutputstream1 = httpservletresponse.getOutputStream();
                dumpFile(root + s1, servletoutputstream1);
                servletoutputstream1.flush();
                servletoutputstream1.close();
        private String getFromQuery(String s, String s1)
            if(s == null)
                return "";
            int i = s.indexOf(s1);
            if(i < 0)
                return "";
            String s2 = s.substring(i + s1.length());
            if((i = s2.indexOf("&")) < 0)
                return s2;
            else
                return s2.substring(0, i);
        private void dumpFile(String s, OutputStream outputstream)
            String s1 = s;
            byte abyte0[] = new byte[4096];
            try
                BufferedInputStream bufferedinputstream = new BufferedInputStream(new FileInputStream(lookupFile(s1)));
                int i;
                while((i = bufferedinputstream.read(abyte0, 0, 4096)) != -1)
                    outputstream.write(abyte0, 0, i);
                bufferedinputstream.close();
            catch(Exception exception) { }
        private String decode(String s)
            StringBuffer stringbuffer = new StringBuffer(0);
            for(int i = 0; i < s.length(); i++)
                char c = s.charAt(i);
                if(c == '+')
                    stringbuffer.append(' ');
                else
                if(c == '%')
                    char c1 = '\0';
                    for(int j = 0; j < 2; j++)
                        c1 *= '\020';
                        c = s.charAt(++i);
                        if(c >= '0' && c <= '9')
                            c1 += c - 48;
                            continue;
                        if((c < 'A' || c > 'F') && (c < 'a' || c > 'f'))
                            break;
                        switch(c)
                        case 65: // 'A'
                        case 97: // 'a'
                            c1 += '\n';
                            break;
                        case 66: // 'B'
                        case 98: // 'b'
                            c1 += '\013';
                            break;
                        case 67: // 'C'
                        case 99: // 'c'
                            c1 += '\f';
                            break;
                        case 68: // 'D'
                        case 100: // 'd'
                            c1 += '\r';
                            break;
                        case 69: // 'E'
                        case 101: // 'e'
                            c1 += '\016';
                            break;
                        case 70: // 'F'
                        case 102: // 'f'
                            c1 += '\017';
                            break;
                    stringbuffer.append(c1);
                } else
                    stringbuffer.append(c);
            return stringbuffer.toString();
        public String getServletInfo()
            return "A DownloadServlet servlet ";
        private File lookupFile(String s)
            File file = new File(s);
            return file.isAbsolute() ? file : new File(context.getRealPath("/"), s);
        private static final String DIR = "dir";
        private static final String GZIP = "gzip";
        private ServletContext context;
        private String separator;
        private String root;
        private static final String VERSION = "ver. 1.6";
        private static final String CPR = "A DownloadServlet servlet ";
    }

    Can't be done, for obvious security reasons.
    Would you want someone downloading something into your windows\system directory when you navigate to their webpage?

  • When I enter "honeymark" web address, I get redirected to a search for convertglobal

    When I use IE8, I can go directly to honeymark. Firefox goes to the honeymark website, but then reconnects to an unsuccessful search for convertglobal.

    Try to start Firefox in [[Safe mode|Safe mode]]. This mode disables all extensions, user customizations, hardware acceleration, etc. temporarily for diagnostic and troubleshooting. If Firefox works find in Safe Mode, then this is likely an add-on issue. Restart Firefox in normal mode, then type "About:addons" (without the quotes) in the address bar. Disable your extensions one by one, restarting Firefox between each one, until you find the trouble maker. Once you do, you can disable that add-on and report the issue to that add-on's developer.
    A few other basic trouble shooting things you can try is this:
    Run all Windows Updates, install all needed service packs, etc.
    Update your graphics driver (Firefox uses your graphics card for some rendering, and an out of date graphics card driver can cause problems. [https://support.mozilla.org/en-US/kb/how-do-i-upgrade-my-graphics-drivers https://support.mozilla.org/en-US/kb/how-do-i-upgrade-my-graphics-drivers].
    Update all your plugins (Flash, Java, etc.): [http://www.mozilla.org/plugincheck/ http://www.mozilla.org/plugincheck/].
    Download and Install MalwareBytes Anti-Malware, run a full Scan. [http://www.malwarebytes.org/ http://www.malwarebytes.org/]. This helps check that there are no viruses on your computer causing issues. You can uninstall this program after you clean off any infections.

  • Logs are not getting displayed in R/3 for Transaction code NPRT

    After doing the initiallisation of setup tables in R/3 for application component 08 (shipment) I am unable to see the log for this init in NPRT but it is pulling the records because I have checked in SE16N and  RSA3 .Let me know if can has got a solution for this.

    Hi,
    Until and unless you have done the setup (not simulation) you cannot find records in NPRT. Also you can check in T-code LBWF for logs.

  • Account to display in Chinese language for Report writer report

    Hi All,
    I am working on Report Write Report.
    I need to display the description of G/L Account in chinese language.
    That particular Accout's description in FS00 for Short text and Long text has already maintained in chinese Language.
    In my Report I am using the Layout ZCORP1.
    What I am trying to doing is
    1)  I am changing the Layout using GR12 . Here in tab Language-Dependent,
    I am trying to change Language Key to ZH (chinese) from EN ( English),
    but not able to do.
    2) In GR22, to change Library (which I have used for my Report), I am
    trying to change Original language to chinese, but not able to do.
    3) In GR32 to change the Report, I am trying to change the
    Maintenance Language to Chinese, but not able to do.
    Ok.. my main motive for all above is to see the output for G/L Account in chinese
    Is my approach is right or what shall I do.
    Please guide soon. It is urgent.
    Rishi

    HI,
    In the Third Button of Save Layout.Check the USer Specific settings of the Report Layout and save the Varaint.This will help.
    Bala.M

  • HT5239 Where can I get Apple FIPS Role guide for user so that I can use the APIs from my application

    I am trying to use Apple's FIPS certified crypto library's crypto APIs in my application to do the crypto operations. For that I was asked to refer the "Role Guide : User" in the nist document. But I couldn't find the same. Can I know where I can download the same.

    The OS X and iOS programming documentation is the Cryptographic Services Guide, and related manuals.
    AFAIK, what you're probably after is the Common Crypto stuff that's part of libSystem.  See man CC_crypto for some introductory details of that, and there's a sample program available.
    The devforums.apple.com developer forums and the developer.apple.com web site will be better resources for programming questions than are these ASC forums (and that includes my answer here!), and the Fed-Talk mailing list might be of interest for this question.
    Given the usual arc these security questions follow, I'd suggest ignoring what I've posted here and directly contacting the Apple Developer Technical Services (DTS) folks, and ask for formal help with this.  The folks I've worked with over the years that were looking for FIPS 140-2 crypto stuff and similar usually have a requirement for a paperwork trail involved, and that means direct contact with the vendor when you cannot local published formal statements.   Not unofficial stuff from random folks like me posted here in ASC.  (There's an Apple contact on that FIPS page, BTW.)

  • Multi Language- Picklist fields are displayed only one language for Reports

    Hi!
    I am working on Siebel On Demand with Multi Language (English and Spanish) and it works well for web interface, the automatic translation for picklist works properly.
    However when I create any report (with any Record Type) the fields setup with picklist are displayed only in spanish language even though I am on English mode.
    Have you any reference(s) or previous experience(s) on that?
    Thanks in advance
    Mtb

    Hi,
    in reports the language of the picklists corresponds always to the company default language.
    The only solution I now (its really static and not so nice):
    Create one report per language and change the picklist field by using CASE statements...you see its hard to refresh if you have lots of values :)
    cheers
    Myriam

  • I GET AN ERROR WHEN CHECKING FOR USER INPUT VALIDATION

    if (choiceBrand.length()==0)
    System.out.println("No selection was made, " );
    System.out.println("We will price the Frigidaire.");
    I GET THIS ERROR
    Green_1.java:55: char cannot be dereferenced
                   if (choiceBrand.length()==0)
                   ^

    abillconsl wrote:
    warnerja wrote:
    abillconsl wrote:
    mgreen0804 wrote:
    what i was trying to accomplish is to stop someone from just pushing enter instead of entering a characterDid you try: != null ... or != '\0000' ?Um, no. There's no way a char (primitive) can be null (first case), and they wouldn't want to test if the user actually entered a 'null' character (second case).Character c == null; if (c == null) System.out.println(c); ?That's not a primitive, and the version of System.out.println() being called is the one that takes an Object and calls toString(), printing "null" if the object is null.
    What is this supposed to show?

  • Can not get my podcasts to work for users

    Hello, hopefully I have posted this under the appropriate section. I am having problems with my users being able to access my podcasts. The problem is as follows:
    The problem is that the podcasts do not work within itunes as a podcast (the error message in itunes is that the file is corrupt), however they play fine in itunes (and windows media player) when downloaded onto your hard drive then played as you would any music file.
    I have tried the following things:
    -rewriting the podcast.xml file (using a Google tutorial)it is a valid xml feed.
    -reformatting the source mp3s and using completely different source mp3s
    -deleting and re subscribing to the podcast within itunes
    -moving the podcasts to and from my streaming server and modifying folder structure
    None of these methods have worked for me. Is there something I am doing wrong? Something further I need to configure.
    The problem happens on itunes 7 but happened in previous versions as well, I believe the last time they worked correct was itunes 5.
    Thank you
    -Dave

    anyone expireance anything similar?

  • Display default Group space for users in a Role  upon login

    Is it possible to configure the role/group space so that the users in that role will see the group space as default page after logging into webcenter.
    Scenario:
    Group Space : G_SPACE1
    Role: W_ROLE1
    Uers with W_ROLE1: user1, user2, etc
    Requirement:
    Whenever users with role W_ROLE1 login to webcenter(http://..../webcenter ),
    they should see the group space G_SPACE1.
    Note: I am aware that we can access the group space directly with url as http://...../webcenter/spaces/G_SPACE1.
    Thanks-
    Sachin

    Hi,
    Not as far as I know. This is something I had a requirement to do but couldn't find a way.
    Although PS3 added support to configure the landing page/space for a user, it wasn't a very useful addition in my opinion. It only allows the admin to hard-code a single Space as the default for all users and doesn't work with ELs either.

  • InternetErrorDlg WinInet API does not display credential dialog box for user in IE10 when proxy is set

    I have set proxy server in IE. I prompt user for credentials using InternetErrorDlg API. Prompt appears in IE 9 and below. In IE10 and IE11 prompt doesn't appear.
    Below is the code sample I have been using.
    DWORD dwStatusCode(0);
    DWORD dwStatusSize = sizeof(DWORD);
    DWORD headerIndex = 0;
    ::HttpQueryInfo(hRequest, HTTP_QUERY_FLAG_NUMBER | HTTP_QUERY_STATUS_CODE,&dwStatusCode, &dwStatusSize, &headerIndex);
    if (dwStatusCode == HTTP_STATUS_PROXY_AUTH_REQ)
    DWORD dwFlags = FLAGS_ERROR_UI_FILTER_FOR_ERRORS |
    FLAGS_ERROR_UI_FLAGS_CHANGE_OPTIONS |
    FLAGS_ERROR_UI_FLAGS_GENERATE_DATA;
    DWORD res =::InternetErrorDlg(GetDesktopWindow(), hRequest, ERROR_INTERNET_INCORRECT_PASSWORD, dwFlags, NULL);

    Refer to the document of InternetErrorDlg function
    https://msdn.microsoft.com/en-us/library/windows/desktop/aa384694(v=vs.85).aspx
    What is the error code returned by InternetErrorDlg function?
    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.

  • SharePoint 2013 SIP Address has no value in site collection for users

    I have SharePoint 2013 site collection and I gave access to particular user design access. When I check the user information i do not have any value of that users SIP field. In that domain I am having exchange mail server and LYNC 2010 server. Please help
    me on this issue.

    SIP value exist in AD.
    i check user profile service and edit for user, in that SIP value is exists.
    But when i go to Site Action - > site setting -> People and group
    then i am not able to find SIP value for the users.
    when i delete user from the site users and re-add user then SIP value is coming. but that's nit feasible because i have around 150 sites.
    Please give me solution or should i make the tool which will update user SIP value for all the sites?
    Coz of SIP value when i add site users web part then status is not showing for the user in the web parts.

  • Vendor Full Address is not displaying in deductee file of J1INQEFILE

    Dear Experts,
    Am executing J1INQEFILE and I get 3 excel files and one text format file, out of 3 excel file one deductee file in this vendor address is not displaying in full as maintained in Vendor Master, it is fetching one one filed of vendor master, BUT I NEED ALL THE FILEDS WHICH ARE MAITAINED IN VENDOR MASTER.
    Any note available or how to bring thoise filed in to dedcutee file? Request your input in this issue.
    Regards - Manjunath AR

    Hi
    You Want Vendor Full Deatles XK02

Maybe you are looking for