Login or Access error messages

How can I best change or add messages when login attempt fails using SSO through the portal to backend SAP systems instead of getting login prompts? Also how can we change access error messages to be display to user when access fails occur.

I've struggled with that one myself and have given up on playing with services.war.
To update the error messages, try updating amAuthUI_<locale>).properties (i.e. amAuthUI_en.properties) and restart the web container.
As for Login.jsp, any changes you make to it should be reflected immediately without a restart.
For future installs, you can add these modified pages to your amserver.war file.

Similar Messages

  • TS1292 I bought a 4 pack of $25 Itunes gift cards and only 2 will activate.  For the second two it just keeps asking for my login. No error message just keeps repeating the login

    I bought a 4 pack of $25 Itunes gift cards and only 2 will activate.  For the second two it just keeps asking for my login. No error message just keeps repeating the login.  Is there any way to fix this or did I just lose $50

    Report this here:
    iTunes Store Support
    http://www.apple.com/emea/support/itunes/contact.html

  • "Permission to access" error messages when coping folders

    When I try to drag my Home directory to another drive to keep a backup copy, I get the no "Permission to access" error message on various programs. "Get Info" has the option of making me the owner but it is grayed out on any of those programs I can't copy. It's my computer and I have the only account and I'm the administrator. Why can't I get access to copy my files? I've followed other strings on this topic but none of them appear the exact same problem. I am trying drag my home directory to an external drive for back up. My new IMAC i7 has a bad internal 1T drive and I'm trying to get everything off it before the local Apple Store replaces the drive in a couple of days (when they get the replacement drive). I do use Time Machine but still want to make another copy of my Home drive. Any help on how to get around this problem would be appreciated.

    If you wish to make a separate backup of your Home folder or even a bootable backup of your system drive, then do it properly - NO drag and drop. Use a backup utility that knows how to protect the file permissions assigned to everything you backup. See:
    Backup Software Recommendations
    Backuplist
    Carbon Copy Cloner
    Data Backup
    Deja Vu
    iBackup
    JaBack
    Silver Keeper
    MimMac
    Retrospect
    Super Flexible File Synchronizer
    SuperDuper!
    Synchronize Pro! X
    SyncTwoFolders
    Synk Pro
    Synk Standard
    Tri-Backup
    Others may be found at VersionTracker or MacUpdate.
    Visit The XLab FAQs and read the FAQ on backup and restore. Also read How to Back Up and Restore Your Files.
    All of the above may be used to backup individual files, folders, or the entire drive. Backups may also be scheduled so you can backup regularly and automatically. Backup should be done to a partition on a backup drive that will be dedicated for the backup. Preferably a single hard drive.

  • ITunes podcast downloading problem.  "Authorization is required to access" error message.

    I've been subsribing to a podcast through iTunes for years with no problems, but today I get the error message:
    "There was a problem downloading (podcast name).  Authorization is required to access (url feed)"
    Its a BBC podcast and I now get the same error message for all the other BBC podcasts that I subscribe to.  I also cant play or download any BBC podcasts from the iTunes Store.  All other podcasts by all other providers are fine.
    Weirdly this problem seems to be limited to the Macbook Pro as the iMac on the same network can access the problem podcasts with no hassle.
    A few web searches have turned up very little, any ideas in Apple Communities-land!

    Hey Roger and thanks for your amazingly quick response.
    I did a quick confirm: it doesn't seem to work on any Windows machines I can get my hands on, so it isn't something specific to me (whew!).  It definitely DOES work on any Mac I can get my hands on (which you also confirmed - thanks).
    That link, the feedproxy.google.com one, works fine on Windows and Mac alike.  I very much imagine that someone else is using FeedBurner and while I'm not huge into podcasts, there are a lot of others who are.  This issue would've come up if it were something like that.  Either way: I can access that link (and thus the content) just fine on any machine I'm on.
    So, what you're saying is to ditch FeedBurner entirely and just submit the raw feed to iTunes.  That sounds good (and, if I want more indepth statistics later, I'll cross that bridge then)...but I'm afraid I'm not sure how to do that.  I've already submitted the FeedBurner feed to iTunes and I'm not sure how I'd go about changing it.  Would I simply ask iTunes to delete the old feed and more or less resubmit?
    Thanks for the help about the artwork.  The individual files may very well be missing the metadata, as when I asked the guy doing that if he had included the artwork, he indicated he was rather confused.  I'll test that out in a bit.  The feed artwork, however, I must admit ignorance about.  Where might I be able to change that?  I'm using WordPress and...PowerPress/BluBrry (or whatever it's referred to).
    Thanks again for being so incredibly helpful with all this.  And so timely, too.

  • Don't understand private access error message.

    I am calling createAndShowGui from another file and am getting an error message from the compiler that says:
    createAndShowGUI has private access in masterfilemaint.MasterFileMaint.
    I don't understand because the method is public. Here is the call.
    thanks.
        public void actionPerformed(ActionEvent e) {
            if ("Fil".equals(e.getActionCommand())) {   ///  The Call......
                   callItemMaint.createAndShowGUI();
                if ("Tab".equals(e.getActionCommand()))  {
                   callSimpleTableDemo.createAndShowGUI();   
                if ("Quit".equals(e.getActionCommand())) {
                   quit();
                /*else {
                  quit();
        }       ..............And here is the method.
           public void createAndShowGUI() {// was static
            // set decor
            JFrame.setDefaultLookAndFeelDecorated(true);
            // create/set-up window
            JFrame frame = new JFrame("Guide");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            // set up content pane.
            addComponentsToPane(frame.getContentPane());
            // Display window
            frame.pack();
            frame.setVisible(true);
    }

    Is the createAndShowGUI in a public class?
    Yes here is the first few lines of the class:
    package masterfilemaint;
    import java.awt.*;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JTextArea;
    import javax.swing.JTextField;
    import javax.swing.JLabel;
    import javax.swing.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    public class MasterFileMaint {                //   Class is public .........
        final static boolean shouldFill = true;
        final static boolean shouldWeightX = true;
        final static boolean RIGHT_TO_LEFT = false;
        final static boolean DEBUG = false;
        public JTextField textFieldOne, textFieldTwo,
                             textFieldThree, textFieldFour, textFieldFive;
        public JLabel label;
        public JButton button;
        public String one, two, three, four, five, six;
        Is callItemMaint an instance of that class or an instance of a base class or interface?
    callitemMaint is an instance of MasterFileMaint instantiated in the calling class. Here is the first few lines of MaterFileMaint.
    package probuyermain;
    import CalculatorOne.*;
    import simpletabledemo.*;
    import masterfilemaint.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.JMenu;
    import javax.swing.JMenuItem;
    import javax.swing.JCheckBoxMenuItem;
    import javax.swing.JRadioButtonMenuItem;
    import javax.swing.ButtonGroup;
    import javax.swing.JMenuBar;
    import javax.swing.KeyStroke;
    import javax.swing.ImageIcon;
    import javax.swing.JPanel;
    import javax.swing.JTextArea;
    import javax.swing.JScrollPane;
    import javax.swing.JFrame;
    public class ProBuyerMain implements ActionListener {
        JTextArea output;
        JScrollPane scrollPane;
        MasterFileMaint callItemMaint = new MasterFileMaint();        // The instance
        CalculatorOne callCalculator = new CalculatorOne();
        SimpleTableDemo callSimpleTableDemo = new SimpleTableDemo();
        public JMenuBar createMenuBar() {
            JMenuBar menuBar;
            JMenu fileMenu, submenu;
            JMenuItem menuItemOne, menuItemTwo,
                        menuItemThree, menuItemFour, menuItemFive;
            //Create the menu bar.
            menuBar = new JMenuBar();

  • Database access error message????

    Hello,
    Could U please Help??????
    I am getting the below error message when running the program. Is there any mistake in the database connection method? I am using MS Access database and below is the connection code
    java.sql.*;
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    String database = "jdbc:odbc:MinuteMgt";
    Connection conn = DriverManager.getConnection(database," ", " ");
    java.sql.SQLException: Column not found
    java.lang.Throwable(java.lang.String)
    java.lang.Exception(java.lang.String)
    java.sql.SQLException(java.lang.String, java.lang.String)
    int sun.jdbc.odbc.JdbcOdbcResultSet.findColumn(java.lang.String)
    int sun.jdbc.odbc.JdbcOdbcResultSet.getInt(java.lang.String)
    minutemgt.datalayer.UserData minutemgt.datalayer.UserFactoryImpl.logonUserData(java.lang.String)
    boolean minutemgt.business.SecurityService.validate(java.lang.String, java.lang.String)
    void minutemgt.ui.LoginUI.enterButton_ActionPerformed(java.awt.event.ActionEvent)
    void minutemgt.ui.LoginUI.connEtoC1(java.awt.event.ActionEvent)
    void minutemgt.ui.LoginUI$IvjEventHandler.actionPerformed(java.awt.event.ActionEvent)
    void com.sun.java.swing.AbstractButton.fireActionPerformed(java.awt.event.ActionEvent)
    void com.sun.java.swing.AbstractButton$ForwardActionEvents.actionPerformed(java.awt.event.ActionEvent)
    void com.sun.java.swing.DefaultButtonModel.fireActionPerformed(java.awt.event.ActionEvent)
    void com.sun.java.swing.DefaultButtonModel.setPressed(boolean)
    void com.sun.java.swing.plaf.basic.BasicButtonListener.mouseReleased(java.awt.event.MouseEvent)
    void java.awt.Component.processMouseEvent(java.awt.event.MouseEvent)
    void java.awt.Component.processEvent(java.awt.AWTEvent)
    void java.awt.Container.processEvent(java.awt.AWTEvent)
    void java.awt.Component.dispatchEventImpl(java.awt.AWTEvent)
    void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)
    void java.awt.Component.dispatchEvent(java.awt.AWTEvent)
    void java.awt.LightweightDispatcher.retargetMouseEventjava.awt.Component, int, java.awt.event.MouseEvent)
    boolean java.awt.LightweightDispatcher.processMouseEvent(java.awt.event.MouseEvent)
    boolean java.awt.LightweightDispatcher.dispatchEvent(java.awt.AWTEvent)
    void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)
    void java.awt.Component.dispatchEvent(java.awt.AWTEvent)
    void java.awt.EventDispatchThread.run()
    THANK YOU VERY MUCH!!!

    You most probably have a typo in your column name (likeint i = rs.getInt ("cutsomer");Kind regards,
      Levi

  • How to access error messages from gateway response in browser?

    hi,
    i get 400 bad request as response with error messages and transaction id .
    i need those messages in my alert box.
    how to do it?
    thanks and regards,
    kartik

    Hi,
    Now just use below code.
      oModel.read( sRead, null, null, true, function(oData, oResponse){
                          alert("Read successful: " + JSON.stringify(oData));
    },function(oError){
                          alert("Read failed");
                       var oXmlData = oError.response.body;
                       var oXMLModel = new sap.ui.model.xml.XMLModel();
                       oXMLModel.setXML(oXmlData);                              
                        console.log(oXMLModel.getProperty("/message")); 
                        console.log(oXMLModel.getProperty("/code")); 
                        console.log(oError);
    with above code, you will be able to read the response from body. also no need to add messages to header that I mentioned in earlier reply.
    I believe with above code, you will be able to read exact error messages.
    Regards,
    Chandra

  • Cannot update or reinstall iTunes - receiving access error message

    Hello
    I tried to install the most recent iTunes update the other night and received the below errow.  I uninstalled and tried to reinstall and am still receiving the same error -
    Error writing to C:\Program Files(x86)\iTunes\iTunes.Resources\fr.prj\printing Template\15.Media.PlainPaper.SS.xml.  Verify you have access to that directory.
    I am the administrator on my computer and none of the files are hidden, they dont appear to be read only either.
    Please can anyone shed any light on what this could be?
    Thanks in advance

    That one's consistent with disk/file damage. The first thing I'd try with that is running a disk check (chkdsk) over your C drive.
    XP instructions in the following document: How to perform disk error checking in Windows XP
    Vista instructions in the following document: Check your hard disk for errors
    Windows 7 instructions in the following document: How to use CHKDSK (Check Disk)
    Select both Automatically fix file system errors and Scan for and attempt recovery of bad sectors, or use chkdsk /r (depending on which way you decide to go about doing this). You'll almost certainly have to schedule the chkdsk to run on startup. The scan should take quite a while ... if it quits after a few minutes or seconds, something's interfering with the scan.
    Does the chkdsk find/repair any damage? If so, can you get an install to go through properly afterwards?

  • Update Itunes now can not access, error message

    updated Itunes, now cannot open the itunes, getting error message

    See Troubleshooting issues with iTunes for Windows updates.
    tt2

  • Online account access - error message

    Trying to get into my account and keep getting this:
    Content can be added here
    Sorry we're unable to show your account details at the moment due to a technical fault. Please try again later or contact us.
    Is it just me?  It was fine yesterday.

    Hmm, mine was also fine earlier...
    Now I too get
    The 'My services' sections are normal
    -+-No longer a forum member-+-

  • Error Message when installing Itunes 7

    When I was trying to upgrade my Itunes to Itunes 7 , it downloaded all the way, but when it was preparing to install i got this message.
    The Windows Installer Service could not be accessed. This can occur if your running Windows in safe mode or if the Windows installer is not correctly installed. Contact your personnel for assistance.
    My computer wasn't running in safe mode and ive gotten this message many times when i have tried to redownload it so it must be an ongoing problem. What should i do?

    The Windows Installer Service could not be accessed. This can occur if your running Windows in safe mode or if the Windows installer is not correctly installed. Contact your personnel for assistance.
    with that one, the following document is a good place to start:
    "Error 1719: The Windows Installer service could not be accessed" error message when you try to add or remove a program

  • Error message -1 installing VPC 7

    I know that this is not the proper place to post questions regarding third party applications, but my wows really concern the meaning of the error message -1 that I receive trying to install (or really reinstall) the Windows XP-part of a Virtual PC (7). What does it mean in layman terms?

    The Windows Installer Service could not be accessed. This can occur if your running Windows in safe mode or if the Windows installer is not correctly installed. Contact your personnel for assistance.
    with that one, the following document is a good place to start:
    "Error 1719: The Windows Installer service could not be accessed" error message when you try to add or remove a program

  • What do I need to change.  I am trying to download "weather bug" to my macbook air osx.  I keep getting a third party access error.  I had it on before I tried to get access to my usb drive downloading and burning  video files.  I was in a mess then- and

    I want to download WEATHERBUG to my apple air.  Keep getting a 3rd party access error message.  Can you help?

    What is "Weatherbug" and where did you get it?
    What is the exact, complete text of the error message, and when do you see it?

  • Error message when login to Remote Web Access

    Hi everyone,
    I have a server that is running Windows Server 2012 Essential. All was working fine until one day I tried to login to Remote Web Access. As soon as I type in my user name and password and press enter I am greeted with the following error message:
    "Critical Error - Remote Web Access" (this is displayed in the browser's web page bar)
    "Cannot connect to Remote Web Access. Please contact the person who manages the server."
    I don't know how to fix this problem. I only get this error page when entering the correct login.
    I will be very grateful if anyone knows hot to get around this.
    Thanks!

    Hi John:
    Before we get too worried, try "other user" then domain-name\user-name and pw.
    Try that and let us know.
    Also, and becuse you should do it anyway, run the BPA and fix everthing it finds, look through the event viewer for error messages, and run the BPA from right side under the devices tab.
    Larry Struckmeyer[SBS-MVP]

  • Access Denied error message... I want to give alert message

    I have Manager service in my portal page. But I don't have the content access from the back end system.
    In the portal log viewer it is saying the Access Denied info. So i am getting the below error message in the portal page.
    Instead of giving this error message I want to give a alert message like "You are not authorised to view this page...so please contact your Administrator"...
    I want to know how to do this. can anyone help me on this
    An exception occurred while processing a request for :
    iView : pcd:portal_content/com.XYZ.roles.XYZ_Roles/com.XYZ.roles.Human_Resources/com.XYZ.roles.Manager/com.XYZ.hr.wks.se.
    Manager_Services/com.XYZ.hr.wks.cl.Overview_MSS/com.XYZ.hr.wks.cl.Compensation_Management/com.XYZ.hr.wks.up.Position_Change_Process/com.XYZ.hr.pag.ac.Select_Team_Member_
    and_Form_Pos_Chg/XYZTeamViewerTransfer
    Component Name : com.XYZ.hr.pcr.transfer.XYZTeamViewerTransfer.XYZTeamViewerTransfer
    The exception was logged. Inform your system administrator..
    Exception id: 08:46_17/07/07_0505_24366050
    See the details for the exception ID in the log file
    Portal log**********
    #1.5#000BCD4305DF0043000019C80000290400043574F8F3FA51#1184676416089#com.sap.security.core.util#sap.com/irj#com.sap.security.core.util.
    [cf=com.sap.security.core.util.SecurityAudit][md=log(...)][cl=12778]#Guest#192####cd0d7490346311dc931d000bcd4305df#SAPEngine_Application_Thread[impl:3]
    _24##0#0#Info##Plain###ObjectID handed over is 'null'!#
    #1.5#000BCD4305DF0043000019CA0000290400043574F8F3FC42#1184676416089#com.sap.security.core.util.SecurityAudit#sap.com/irj
    #com.sap.security.core.util.SecurityAudit#Guest#192####cd0d7490346311dc931d000bcd4305df#SAPEngine_Application_Thread[impl:3]
    _24##0#0#Warning#1#/System/Security/Audit#Plain###Guest | LOGIN.ERROR | NONE = null | | Login Method=[default], UserID=[null], IP Address=[168.133.7.3], Reason=[Access Denied.]#
    #1.5#000BCD4305DF0043000019CC0000290400043574F8F4A4CF#1184676416136#com.sap.portal.portal#sap.com/irj#com.sap.portal.portal#Guest#192
    ####cd0d7490346311dc931d000bcd4305df#SAPEngine_Application_Thread[impl:3]_24##0#0#Error#1#/System/Server#Java###Exception ID:08:46_17/07/07_0506_24366050
    [EXCEPTION]
    #1#com.sapportals.portal.prt.runtime.PortalRuntimeException: <b>Access is denied:
    com.sap.portal.heartbeats.PortalHeartbeat - user: Guest
    at
    com.sapportals.portal.prt.deployment.DeploymentManager.checkPermissions(DeploymentManager.java:2005)</b>at
    com.sapportals.portal.prt.core.broker.PortalComponentContextItem.refresh(PortalComponentContextItem.java:247)
    at
    com.sapportals.portal.prt.core.broker.PortalComponentContextItem.getContext(PortalComponentContextItem.java:312)
    at
    com.sapportals.portal.prt.component.PortalComponentRequest.getComponentContext(PortalComponentRequest.java:385)
    at
    com.sapportals.portal.prt.connection.PortalRequest.getRootContext(PortalRequest.java:435)
    at
    com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:607)
    at
    com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)
    at
    com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:522)
    at java.security.AccessController.doPrivileged(Native Method)
    at
    com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:405)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at
    com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:156)
    at javax.servlet.http.HttpServlet.service
    (HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
    at
    com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:95)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:160)
    Caused by: com.sapportals.portal.pcd.gl.PermissionControlException: <b>Access denied</b> (Object:
    com.sap.portal.system/security/sap.com/NetWeaver.Portal/high_safety/com.sap.portal.heartbeats/components/PortalHeartbeat)
    at com.sapportals.portal.pcd.gl.PcdFilterContext.filterLookup(PcdFilterContext.java:416)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdProxyContext.java:1095)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdProxyContext.java:1101)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdProxyContext.java:1101)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdProxyContext.java:1101)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdProxyContext.java:1101)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdProxyContext.java:1101)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdProxyContext.java:1101)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdProxyContext.java:1101)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.proxyLookupLink(PcdProxyContext.java:1197)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.proxyLookup(PcdProxyContext.java:1144)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.lookup(PcdProxyContext.java:918)
    at com.sapportals.portal.pcd.gl.PcdGlContext.lookup(PcdGlContext.java:68)
    at com.sapportals.portal.pcd.gl.PcdURLContext.lookup(PcdURLContext.java:238)
    at javax.naming.InitialContext.lookup(InitialContext.java:347)
    at com.sapportals.portal.prt.deployment.DeploymentManager.checkPermissions(DeploymentManager.java:2000)

    Kindly post how u did it. It will be helpful for others.
    Thanks in advance.
    Pradeep.

Maybe you are looking for