User menu not showed in the user's default language

Hello,
I'm having the following problem:
3 months ago we installed the French language in our systems,becuase french users are going to use our SAP Systems. The installation was done succesfully in client 000 and then was suplemented in English in clients 000 and 100 (the productive one). Everything was ok.
We have created french users and we have assigned them roles that we had before the installation. When we log with these french users in french, the user menu in transaction SAP EASY ACCESS is in english and not in french (even the SAP standard transactions).
If we create a new role and we assigned it to the french user it is ok.
So we have problems with roles created before the installation of the French language.
Does someone know how we can correct the problem? We need to use this old roles.
I hope someone can help us as soon as possible, because I can't go on creating the user with these problem.
Thank you very much in advance,
Kind Regards,
José

Hello,
Does someone have any idea how I can solve my problem.
It is very similar to the problem explained in point 2 of the note 340075. The solution given by this note doesn't work.
Thank you very much in advance,
José

Similar Messages

  • If the user is not logged in, the user to the login page in oracle ADFBC

    I have been looking for a solution that will allow me to check if a user
    has been logged in before I load a page. If the user is not logged in, or
    the session has timed out, I want to send the user to the login page

    Hi user
    If your using servlet session and backing bean class for the jsp/jspx pages replace the setHtml1 method for this code:
    public void setHtml1(HtmlHtml html1) {
    // session control
    String myUser = null;
    FacesContext context = FacesContext.getCurrentInstance();
    ExternalContext ectx = FacesContext.getCurrentInstance().getExternalContext();
    HttpServletResponse response = (HttpServletResponse)ectx.getResponse();
    HttpSession session = (HttpSession)ectx.getSession(true);
    myUser = (String)session.getAttribute("appUser");
    if (myUser == null) {
    try {
    // no session
    response.sendRedirect("http://myErrorPage.jspx");
    } catch (IOException e) {
    e.printStackTrace();
    this.html1 = html1;
    Good Luck
    Edited by: Maxi Rodriguez on Sep 18, 2008 11:14 AM

  • User Is not added to the user table

    I have an application that a user can self-register. It works at my company but somehow does not work on APEX.ORACLE.COM. Can someone look into it, please.
    Workspace: RGWORK
    Application:      21405 - Online Certification Application Prototype
    User: TESTER
    Password; Test123
    You click on the New User Profile Button. You select user name, password, and email address. It then ask you to sign on but then gives a not found error. You query the OCA_USER table and no rows are found.
    Can someone help?
    Robert
    My Blog: http://apexjscss.blogspot.com

    Hi,
    Seems to be a problem with your get_hash function.
    I get the error: ORA-28232: invalid input length for obfuscation toolkit
    If you look at the documentation for the package that you are using, you will notice:
    If the input data given to the DESDECRYPT function is not a multiple of 8 bytes, Oracle raises ORA error 28232 "Invalid input size for Obfuscation toolkit."

  • How to make a User Account not show in the Login window

    I have set up a few accounts on my Powerbook for the sake of office colleagues who need to access some of my shares. They are not really users of my machine, though, so I was thinking what a pity that they have to be there in an endless list of 'phony' users in the Login window, making it necessary for me to scroll down to find my Account.
    So, is there a way, using NetInfo db or some other magic, to designate a few users as invisible to the Login window?
    As always, many thanks.

    http://www.macosxhints.com/article.php?story=20050827123342292

  • Datatip function not shown when the user hovers over the icon int ADG

    When you have a datatip function in a advanced datagrid the datatip  does not show when the user hovers over the icon. Is there a way round this?

    I have almost same situation. But there are some different. I am using RegisterPointerInputTarget to redirect all touch message to my window. and use InjectTouchInput to simulate each flag, which means, WM_POINTERDOWN,WM_POINTERUPDATE,WM_POINTERUP. If user
    touches monitor, I simulate DOWN, if user swipes their finger, I simulate UPDATE, if user lifts finger, I simulate UP.
    Then the interesting point is, system consider user's finger as primary pointer, and my injected touch as secondary pointer. windows desktop and windows explorer skip all my injected touch. I really hate that.
    However IE and chrome will accept my injected touch, they don't caret about primary pointer.
    In order to fix this problem, I call AccNotifyTouchInteraction before calling InjectTouchInput.
    According to the MSDN, AccNotifyTouchInteraction will notify the destination window before InjectTouchInput. But this idea still fails, which is disappointing.

  • The JPanel did not show when the menu is selected

    My program consists a JMenu bar with sub menu items. When the user select on the menu items a panel with the gridbag layout will show with all the labels.but the panel did not show. Can anyone show the problem for me ?
    AdminFrameMain.java
    public class AdminFrameMain
         private DisplayMenuBar menubar;
         private DisplayToolBar toolbar;
         private DisplayStatusBar statusbar;     
         public AdminFrameMain()
              JFrame frame = new JFrame("S-League Administration Management System");
              Toolkit kit = frame.getToolkit();
              Dimension windowsize =kit.getScreenSize();
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              Container content = frame.getContentPane();
              content.setLayout(new BorderLayout());
              menubar = new DisplayMenuBar(frame,content);
              toolbar = new DisplayToolBar(content);
              statusbar = new DisplayStatusBar(content);
              frame.setSize(800,600);
              frame.setVisible(true);
         public static void main(String [] args){
              AdminFrameMain tm = new AdminFrameMain();
    DisplayMenuBar.java
    public class DisplayMenuBar
         private JMenu addMenu,addTeamMenu;
         private JMenuBar bar = new JMenuBar();
         private JToolBar toolbar = new JToolBar();
         private JMenuItem addTeamItem;
         private JFrame setFrame;
         private Container setContent;
         private AddTeamManagement addTeamMang;
         public DisplayMenuBar(JFrame frame,Container c)
              setFrame = frame;
              setContent = c;
              SetMenuBar();
         public void SetMenuBar()
         setFrame.setJMenuBar(bar);
         addMenu = new JMenu("Add");
         //file menu items list
         //Add sub menu
         addTeamMenu = new JMenu("Team Management");
         addMenu.add(addTeamMenu);
         //Add sub menu items
         addTeamMenu.add(addTeamItem = new JMenuItem("Add Team"));
         addTeamMenu.setMnemonic('T');     
         addTeamItem.setMnemonic('T');
         //team items listener
         //addTeamItem.addActionListener(taskcommand);          
         addTeamItem.addActionListener(new ActionListener()
              public void actionPerformed(ActionEvent e)
                   AddTeamManagement addTeamMang = new AddTeamManagement(setFrame,setContent);
         bar.add(addMenu);
    AddTeamManagement.java
    public class AddTeamManagement
         private JPanel addTeamPanel;
         private JFrame frame;
         private JButton createTeamBt,resetTeamBt;
         private Container addTeamContent;
         private JTextArea teamDescTextArea,teamIndpTextArea;
         private JTextField teamNameField;
         private JLabel teamID,teamDesc,teamInfo,numOfPlayers,teamZone,playersNum;
         private GridBagLayout gridBag;
         private GridBagConstraints constraints;
         public AddTeamManagement(JFrame f,Container c)
              System.out.println("add team mg");
              addTeamPanel = new JPanel();
              frame = f;
              addTeamContent = c;
              gridBag = new GridBagLayout();
              addTeamPanel.setLayout(gridBag);
              addTeamPanel.setBackground(Color.pink);
              constraints = new GridBagConstraints();
              teamID = new JLabel("Team ID:");
              teamDesc = new JLabel("Team Description:");
              teamInfo = new JLabel("Team Info:");
              numOfPlayers = new JLabel("No Of Players:");
              playersNum = new JLabel("15 Maximun");
              teamZone = new JLabel("Team Zone:");
              constraints.fill = constraints.VERTICAL;
              constraints.weightx = 1;
              constraints.weighty = 0;
              addComponent(teamID,0,0,1,1);
              constraints.fill = constraints.VERTICAL;
              constraints.weightx = 1;
              constraints.weighty = 0;
              addComponent(teamDesc,1,0,1,1);
              constraints.fill = constraints.VERTICAL;
              constraints.weightx = 1;
              constraints.weighty = 0;
              addComponent(teamInfo,2,0,1,1);
              constraints.fill = constraints.VERTICAL;
              constraints.weightx = 1;
              constraints.weighty = 0;
              addComponent(numOfPlayers,3,0,1,1);
              constraints.fill = constraints.VERTICAL;
              constraints.weightx = 1;
              constraints.weighty = 0;
              addComponent(teamZone,4,0,1,1);
              System.out.println("showing");
              addTeamContent.add(addTeamPanel,BorderLayout.CENTER);
         public void addComponent(Component component,int row,int column,int width,int height)
              System.out.println("adding c");
              constraints.gridx = column;
              constraints.gridy = row;
              constraints.gridwidth = width;
              constraints.gridheight = height;
              gridBag.setConstraints(component,constraints);
              addTeamPanel.add(component);
              addTeamPanel.setVisible(true);
    }

    Hello,
    you are missing only one link, just add following line to your actionPerformed method of DisplayMenuBar class and all problem will be solved
    setContent.validate();
    Actually, Swing component does not updated automatically. when you do any changes to the component layout it will set that component as invalidated component. To update the view you need to call validate() method defined in JComponent class.
    Virus

  • ActiveSync Device Statistics report for users does not show Device Phone number

    HI ,
    I have trying to run a Active-sync Device Statistics report to get all the details for active Sync users, but report show only last four digit of  device phone number for few users and for most of the users its blank.
    Is there way if we can get Device Phone number for active sync users.
    Thanks,
    Pradeep Kumar

    Hi,
    Yes i have tried all of these transactions, these all relate to individual sales orders or production order costs.
    Im looking for a report showing the costs for a range of sales order line items, exaclty like KOB1 but for sales orders.  KVBI does exactly what I want but the material filed is not populated.
    Is there a way to populate this field as part of the settlement?
    Cheers
    Phil.

  • Actual date hours PROBLEM - Displaying or not "Show time" in "User preferences"

    Hello,
    This is my current issue. I have a 5 days calendar with hours 7AM -> 8PM.
    AM ->When I check "show time" in "user preferences", I show the good hours in ES and EF. When I apply AS and AF, AUTOMATICALY the good default hours are applied if i change the date (7AM -> 8PM)...
    But, if i check, "do not show time" in "user preferences" and then i apply AS and/or AF changing date, PRIMAVERA apply automaticaly 00:00 in the hour ans "forget" the hours of the calendar...
    It represent a big big problem for me, first of all in the gantt representation.
    Any idea to fix this issue ?
    Thanks

    I think you need to do setting in grantt chart view setting..as Day,Week,Month in stead of user preference as " do not show time".

  • User Extension not showing in Corporate Directory on

    I have a User whose name shows in the Corporate Directory, however his Extension not showing in Corporate Directory and unlike all other users who have a telephone Icon next to their name, his just has like a keypad icon.
    Where do I start to troubleshoot this?

    When I view the "End User" under User Management that User has no Phone listed for that users. I tried to find a way to manually change it, but I don't think I can because we are set to sync with AD.
    So I'm thinking that the error may be in AD? What do you think?

  • I am unable to save a keynote file as powerpoint. The 'save as' option is not showing in the files menu

    Hi, I downloaded the Keynote from the App store. I shoudl be able to save the presentation as a powerpoint, but the 'Save as" option is not showing in the file menu. Please help with a solution.

    Export
    If you are using Lion, there is no Save As in iWork apps. It is no longer a menu item.

  • Shared Services Console - User is not authorized for the action

    Hi,
    I have installed Essbase 11.11.3 and configured on Linux. I started EPM and then the Shared Services Console. I created a new group Poweruser and assigned a new user to it. I provisioned the group withall the rights of the admin. This all works.
    When I log on with the new user on the Shared Service Console and go to Essbase Studio Server and click on the Essbase Studio Server application it gives me the message:
    User is not authorized for the action
    This is the same message as I get under the user admin. Can anyone tell me what I can possibly do to make it work.
    The service for EAS is started properly. The one thing that is not configured is HBR.
    Patrick

    Hi,
    What are you trying to achieve, provision a user for essbase studio ?
    EAS is a separate product from Studio.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • People Picker JS Control not fetching all the users...

    Hi,
    I am using Java Script people picker control. It fetching information for users but not all. I used following code block to get the control working. Why is not fetching all the users?? Where as OOTB people picker fetches same user. This does not make sense.
    My environment is SharePoint online.  
    // Run your custom code when the DOM is ready.
    $(document).ready(function () {
    // Specify the unique ID of the DOM element where the
    // picker will render.
    initializePeoplePicker('peoplePickerDiv');
    // Render and initialize the client-side People Picker.
    function initializePeoplePicker(peoplePickerElementId) {
    // Create a schema to store picker properties, and set the properties.
    var schema = {};
    schema['PrincipalAccountType'] = 'User,DL,SecGroup,SPGroup';
    schema['SearchPrincipalSource'] = 15;
    schema['ResolvePrincipalSource'] = 15;
    schema['AllowMultipleValues'] = true;
    schema['MaximumEntitySuggestions'] = 50;
    schema['Width'] = '280px';
    // Render and initialize the picker.
    // Pass the ID of the DOM element that contains the picker, an array of initial
    // PickerEntity objects to set the picker value, and a schema that defines
    // picker properties.
    this.SPClientPeoplePicker_InitStandaloneControlWrapper(peoplePickerElementId, null, schema);
    Here is the link from Microsoft explaining it.
     How to: Use the client-side People Picker control in SharePoint-hosted apps: https://msdn.microsoft.com/en-us/library/office/jj713593.aspx
    Appreciate any help or workaround here.
    Thanks.

    Hi,
    In my case im usign customize people picker. it is better to use in delelopement since you have the control and customization.
    I have used select2 (https://select2.github.io/examples.html) drop down control and create a people picker
    You can use the same REST call to populate data.
    function initApproversPicker(success, fail) {
                var data = { results: [] };
                var executor = new SP.RequestExecutor($$.getAppWebUrlUrl());
                executor.executeAsync(
      url: $$.getAppWebUrlUrl() + "/_api/web/siteusers",
      method: "GET",
      contentType: "application/json;odata=verbose",
      headers: { "Accept": "application/json; odata=verbose" },
      success: function (dt) {
          $.each(JSON.parse(dt.body).d.results, function (i, ele) {
              data.results.push({ id: ele.Id, text: ele.Title });
          executor.executeAsync(
               url: $$.getAppWebUrlUrl() + "/_api/web/sitegroups",
               method: "GET",
               contentType: "application/json;odata=verbose",
               headers: { "Accept": "application/json; odata=verbose" },
               success: function (dt) {
                   $.each(JSON.parse(dt.body).d.results, function (i, ele) {
                       data.results.push({ id: ele.Id, text: ele.Title });
                   $("#WFApprovers").select2({ data: data, multiple: true });
                   if (success) {
                       success();
               error: function (d, errorCode, errorMessage) {
                   if (fail) {
                       fail();
                   utils.log(errorMessage);
      error: function (d, errorCode, errorMessage) {
          utils.log(errorMessage);
    Melick Rajee http://melick-rajee.blogspot.com

  • Workitem is not appearng in the user's inbox

    Hi All,
    In my workflow the workitem is not appearing in the user's inbox.
    can anyone tell me how can i resolve this?
    thanks and regards,
    K.Perumalraj

    Hi,
    first see whether the workflow is getting trigger or not. Dont just say workitem not appearing in inbox. No one will give the solution. Say what have u did and wat workflow are you using and wat is the problem.
    Regards,
    JMB

  • Is the "Display list of web app items submitted by a user" feature not available in the free trial?

    Is the "Display list of web app items submitted by a user" feature not available in the free trial? I can see it in the tutorials but its not available when I am logged in.

    Its just named a little differently now. You should be able to add the module {module_webappscustomer} through the Modules toolbox in the web page editor window, as indicated below. Please note that webapps feature is available only for webCommerce sites. Read more about the available modules and its usage in detail here - http://kb.worldsecuresystems.com/134/bc_1345.html?bc-partner#main_Web_App_Modules
    Thanks,
    Vinayak

  • I just paid 9.99 for the photoshop cc and the lightroom offer, however lightroom is not showing in the install menu so i can't download it, please help

    i just paid 9.99 for the photoshop cc and the lightroom offer, however lightroom is not showing in the install menu so i can't download it, please help

    Hi Clintz,
    Please try the solutions suggested here:
    Available updates not listed
    Thanks,
    - Dave

Maybe you are looking for