FPN in Portal 7.3 not working

Hello All,
FPN in portal 7.3 is not working. Please advice.
Errors found in logs -
1.
Could not validate SPNEGO token.
[EXCEPTION]
com.sap.engine.services.security.authentication.umapping.UserMappingNoSuchUserException: No user with account attributes [[namespace=com.sap.security.core.authentication, name=principal, value=vs-sys45.IBM-ERP, isCaseSensitive=false], [namespace=com.sap.security.core.authentication, name=realm, value=ALJAZEERA.TV, isCaseSensitive=false]] found
at com.sap.engine.services.security.authentication.umapping.UserMappingServiceImpl.getUserByAccountAttributes(UserMappingServiceImpl.java:184)
at com.sap.security.core.server.jaas.spnego.util.SPNEGOUserMappingUtil.searchUser(SPNEGOUserMappingUtil.java:82)
2.
Could not validate SPNEGO token.
[EXCEPTION]
java.lang.Exception: Store of token in replay cache failed. Possible replay attack detected.
at com.sap.security.core.server.jaas.spnego.krb5.KrbApReq.throwValidationException(KrbApReq.java:125)
at com.sap.security.core.server.jaas.spnego.krb5.KrbApReq.validate(KrbApReq.java:118)
at com.sap.security.core.server.jaas.SPNegoLoginModule.validateSPNEGOToken(SPNegoLoginModule.java:323)
at com.sap.security.core.server.jaas.SPNegoLoginModule.processAuthorizationHeader(SPNegoLoginModule.java:504)
at com.sap.security.core.server.jaas.SPNegoLoginModule.login(SPNegoLoginModule.java:154)
at com.sap.engine.services.security.login.LoginModuleLoggingWrapperImpl.login(LoginModuleLoggingWrapperImpl.java:254)
at com.sap.engine.services.security.login.ModulesProcessAction.run(ModulesProcessAction.java:66)
at java.security.AccessController.doPrivileged(Native Method)
at com.sap.engine.services.security.login.FastLoginContext.login(FastLoginContext.java:269)
at com.sap.security.core.logon.imp.SAPJ2EEAuthenticator.logon(SAPJ2EEAuthenticator.java:876)
3.
LOGIN.FAILED
User: N/A
IP Address: 10.234.11.20
Authentication Stack: ticket
Authentication Stack Properties:
Login Module                                                               Flag        Initialize  Login      Commit     Abort      Details
1. com.sap.security.core.server.jaas.EvaluateTicketLoginModule             SUFFICIENT  ok          false                 true     
        #1 ume.configuration.active = true
2. com.sap.security.core.server.jaas.SPNegoLoginModule                     OPTIONAL    ok          exception             true       Trigger SPNEGO authentication.
3. com.sap.security.core.server.jaas.CreateTicketLoginModule               SUFFICIENT  ok          false                 true     
4. com.sap.engine.services.security.server.jaas.BasicPasswordLoginModule   REQUIRED    ok          false                 false    
5. com.sap.security.core.server.jaas.CreateTicketLoginModule               REQUIRED    ok          false                 true
4. Can't map exception.
[EXCEPTION]
com.sap.engine.services.security.exceptions.BaseLoginException: Cannot authenticate the user.
at com.sap.engine.services.security.login.ModulesProcessAction.run(ModulesProcessAction.java:131)
at java.security.AccessController.doPrivileged(Native Method)
at com.sap.engine.services.security.login.FastLoginContext.login(FastLoginContext.java:269)
at com.sap.security.core.logon.imp.SAPJ2EEAuthenticator.logon(SAPJ2EEAuthenticator.java:876)
Caused by: javax.security.auth.login.LoginException: NTLM token received in authorization header.
at com.sap.security.core.server.jaas.SPNegoLoginModule.failedAuthenticationException(SPNegoLoginModule.java:369)
at com.sap.security.core.server.jaas.SPNegoLoginModule.checkAuthorizationHeaderToken(SPNegoLoginModule.java:463)
at com.sap.security.core.server.jaas.SPNegoLoginModule.parseSPNEGOToken(SPNegoLoginModule.java:282)
at com.sap.security.core.server.jaas.SPNegoLoginModule.processAuthorizationHeader(SPNegoLoginModule.java:484)
at com.sap.security.core.server.jaas.SPNegoLoginModule.login(SPNegoLoginModule.java:154)
at com.sap.engine.services.security.login.LoginModuleLoggingWrapperImpl.login(LoginModuleLoggingWrapperImpl.java:254)
at com.sap.engine.services.security.login.ModulesProcessAction.run(ModulesProcessAction.java:66)
... 59 more
Have investigated a lot since last 3 days, tried many possible solutions but they are not working like to mention a few,
SAP Note # 1649110, http://scn.sap.com/people/holger.bruchelt/blog/2010/04/08/new-spnego-login-module--just-around-the-corner,
http://scn.sap.com/people/holger.bruchelt/blog/2008/01/09/configuring-and-troubleshooting-spnego--part-1
Please advice.
Thanks a tonne,
Ritu

Hi Ritu
Could you check this SAP Notes
1679902 - java.lang.NumberFormatException: multiple points in SPNego
1732610 - SPNego ABAP: Troubleshooting Note
  1783663 - SPNego Authentication based relogin failed
Regards
Sriram

Similar Messages

  • Simple WD4A Portal Eventing does not work

    Hello togehter,
    I'm trying to get a simple Portal Eventing to work with two WebDynpro ABAP components. I read several threads as well as a blog from Thomas Jung about this but still have no eventing. What am I doing wrong? I think that it might be only a little obstacle but I can't get it. So what I didi is:
    1.) Created 1st WD4A application with a button and an action behind that button:
    DATA: l_api_component  TYPE REF TO if_wd_component,
            l_portal_manager TYPE REF TO if_wd_portal_integration.
      l_api_component = wd_comp_controller->wd_get_api( ).
      l_portal_manager = l_api_component->get_portal_manager( ).
      l_portal_manager->fire(
        portal_event_namespace = 'urn:my.namespace'
        portal_event_name      = 'test_event'
        portal_event_parameter = 'testValue' ).
    2.) Created 2nd WD4A application with the following code in the WDDOinit-Method:
    DATA: l_api_component  TYPE REF TO if_wd_component,
            l_portal_manager TYPE REF TO if_wd_portal_integration,
            view TYPE REF TO if_wd_view_controller.
      l_api_component = wd_comp_controller->wd_get_api( ).
      l_portal_manager = l_api_component->get_portal_manager( ).
      view ?= wd_this->wd_get_api( ).
      l_portal_manager->subscribe_event(
        portal_event_namespace = 'urn:my.namespace'
        portal_event_name      = 'test_event'
        view                   = view
        ACTION                 = 'CATCH_EVENT' ).
    and an action.
    method ONACTIONCATCH_EVENT .
      data: EVT_NAME type STRING,
            evt_parameter type string.
      EVT_NAME = WDEVENT->GET_STRING( NAME = 'PORTAL_EVENT_NAME' ).
      if EVT_NAME = 'test_event'.
        evt_parameter = WDEVENT->GET_STRING( NAME = 'PORTAL_EVENT_PARAMETER' ).
        DATA:
          ls_text TYPE if_main=>element_main,
          node_main TYPE REF TO if_wd_context_node,
          elem_main TYPE REF TO if_wd_context_element.
        node_main = wd_context->get_child_node( name = `MAIN` ).
        evt_parameter = 'IT WORKED'.
      else.
        evt_parameter = 'did not work'.
      endif.
      ls_text-text_receiver = evt_parameter.
      node_main->bind_element( ls_text ).
    endmethod.
    3.) FInally I created two iViews (for each WD4A application) and a page, linked the iViews in the page and made a preview. Unfortunately nothing happend in the second iVIew with the 2nd WD4A application in it.
    Any help?
    Thanx in advance
    Matthias

    Hello,
    thanks for your answers. But the problem is not yet solved, the link gives nothing new for me.
    To amend my first post:
    After having created and activated my both small WD4A applications, I created 2 similar iViews (iViews for WebDynpro -> and chose WD ABAP) in my portal. Both iViews have the same namespace (which is SAP - is this ok?) and no application parameter.
    Then I created both a Standard SAP page and a WebDynpro proxy page and added the 2 iViews as deltalink. The page and the iViews have the same prefix (but this is not important, isn't it?).
    --> In both pages the portal eventing does not work
    The ABAP server and the Portal server are the same machine and I call the portal with the full qualified domain name:
    http://<servername>.<domain>:50000/irj/portal
    When I test my WD4A applications in se80 I get the path http://<servername>.<domain>:8000/sap/bc/webdynpro/sap/z_event_receiver?sap-language=EN
    so this is the same domain.
    I even have an entry in my hosts-file for
    <myInternalIp>  <servername>.<domain>
    - Do I have to specify the domain explicitly in addition when integration the WD4A applications in the portal?
    - Is there a correlation between the Portal Event namespace, the namespace of my iViews and page and the domain name of my server?
    - Does the portal event namespave to have the prefix urn: or not?
    Thanks again in advance

  • Another FPN Thread: Remote role assignment not working

    Hi all,
    We have successfully implemented FPN for use in our ESS and BW environment and we are experiencing very little problems with it. We now want to start implementing it for our eRecruitment and SRM systems (as producers). For some reason we are not able to use the Remote Role Assignement functionality.
    We have set up trust for the systems and use SSO.
    Connection test for the producer is successfull.
    We can see the Producer content in the pcd on the consumer.
    Server times are the same.
    As far as I know I have correctly set permissions on producer and consumer.
    Possible cause: We are in the process of upgrading our consumer Portal to NW 7.0 SPS15 and have encountered some problems. The system is partially upgraded, so some components are SP15 and some others are still SP13. This is currently under investigation by SAP. Can this be an issue as our producer portals all are still on SP13?
    I hope to hear from you soon. Please ask if you need any screenshots. Thanks in advance.
    Best regards,
    Jan Laros

    Hi Jan,
    if remote role assignment not works, you can also use remote delta links. I only work with remote delta links because i have more options   and a better performance.
    If your connection works you can go to Content Administration ->Portal Content-> NetWeaver-Content-Producer. Hier you can see your remote system. Now you can copy the role and add it to your portal-content.
    If you can not see the content make sure that you have the same user  on both sides also check the premissions on the portal-content of your remote system. To test the connection it is easier to add Everyone group to the content of your remote system.
    regards,
    Sharam

  • Portal 309 does not work ...

    gurus,
    i've installed 9iAS 10220 on windows 2000 with 817 database.
    i have the following problems -
    1. apache would crash in couple of seconds after etting started -
    fixed it by commenting the following in oracle_apache.conf -
    # include "D:\ORACLE\ora9ias\Apache\Apache\conf\mod__ose.conf"
    2. now i type the url in browser as follows -
    http://hchangla.us.oracle.com:80/pls/portal30
    and nothing happens ....... after a while i get an error saying
    the server may be down ...
    3. i logged in the database thru SQL*PLUS portal30 user and
    everything seems ok ....
    can't understand .... whay i can't access portal ....
    ideas ...... anyone .......?
    thanx a bunhc
    hero

    Hello!
    I use the java version 1.4.2_17.
    I detected the inconsistences regarding the java parameter settings within Config Tool.
    Because I am on Windows X86 Platform I changed the values of "Max heap size (in MB)" equal to the values of
    u2013Xmx2048 for server and dispatcher. 
    Unfortunately this does not solve my problem.
    When I log into the portal I get the following error:
    Portal-Runtime Error:
    Ausnahme bei der Verarbeitung des Requests; senden Sie die ID der Ausnahme an Ihren Portaladministrator
    Ausnahme-ID 05:24_21/03/11_0001_8812350
    Weitere Details zu dieser Ausnahme finden Sie in der entsprechenden Protokolldatei
    How can I find the appropriate log file?
    The main problem still is the the disp+work process that getting yellow and after a while again green.
    This interuptes the portal functionality of course...

  • Column order in ALV using in portal environment does not work

    Hello,
    I set the columns order of an ALV table ( in WD ABAP ).  For one portal user these settings are not applied. ( columns seems to be in random order )  For the other users it works fine. I tried to see the differences between the portal users, but did not find anything.
    I guess it is some portal user personalization setting problem.
    Anyone knows how to fix this?
    Thanks,
    Tamas

    Tamas,
    I think user has done some personalisation or if you are Netweaver 701 you can rearrange the columns in a table
    Thanks
    Bala Duvvuri

  • EP6 SP9 - 'Personalize Portal' link does not work

    Hi,
    We've just installed EP6 SR1 SP9 and applied patch 4.
    The portal seems to work fine, except for one thing:
    The 'Personalize' link on the top right, above the TLN, doesn't seem to work.
    When clicking the link, nothing happens. No popup, no error message, nada
    Has anyone seen this before, or can give me a guidance where to look for?
    With kind regards,
    Robin van het Hof
    Message was edited by: Robin van het Hof
    - Marked topic as a question -

    Hi Robin,
    i'm afraid you did not understood Hassan right, so I'd like to clarify thinks for you. By default the super_admin_role does not provide an user (i.e. J2EE Administrator) to personalize the portal. In order to do this a user must posses a role which contains the workset "Portal Personalization", (which is not the case for the super_admin_role).
    So, you have the option to assign the role "eu_role" to the user J2EE Adminstrator (or to any other user which would like to  personalize the portal). The other option is to edit the users role (i.e. super_admin_role) and add the workset com.sap.portal.portal_personalization.
    Just try those two options on your portal.
    If you do not need all the iviews from eu_role and do not want to change the standard super_admin_role, i would recomend to create a new role which includes only the workset mentioned and assign it to every user who wants to personalize the portal.
    Hope this helps,
    Robert

  • ISE 1.2 Sponsor portal port change not working

    Hi,
    Has anyone else had an issue where they change the default port number of the sponsor portal on the Admin node, all ISE restart, but the sponsor portal still only works on the default 8443 port?
    Thanks,
    Ct

    Hi,
    As you know that default port is 8443, but you can change this value so ensure that the same value you assign to the switch and it matches the setting in Cisco ISE.

  • Support link in Portal logon page not working

    Hi All,
    We are using the ´support´ link on the logon page of our Portal. When we click the support link, the system asks for UserId and e-mail adress. When we fill this in correctly, the system responds by displaying "New password sent to e-mail adress".
    However, the password is not reset or anything and we still have to logon with the original old password. Where can this problem be rooted and where do I start to look for the cause of this.
    We are using CUA and this is set on ECC 6.0 production system.
    Message was edited by:
            Jan Laros

    Hai Laros,
    I have gone through this issue...
    I think your Portal is EP 7.0 SP12..
    For logon page weare using two jar files umelogonbase.jar and com.sap.portal.runtime.logon_api.jar
    There is some change in code of umelogonbase.jar file  in SP12  
    com.sap.security.core.sapmimp.logon.logonbean method getLogonHelp
    In SP12
       public boolean getLogonHelp()
            boolean rc = mySAPProperties.getBoolean("ume.logon.logon_help", true);
            if(!rc)
                rc = checkPermission("LOGON_HELP");
            return rc;
    private static boolean checkPermission(String permissionName)
            String METHOD = "checkPermission";
            boolean hasPermission = false;
            if(trace.bePath())
                trace.entering("checkPermission", new Object[] {
                    permissionName
            try
                boolean flag1;
                try
                    IUser user = UMFactory.getAuthenticator().getLoggedInUser();
                    if(user == null)
                        user = AnonymousUser.getInstance().getAnonymousUser();
                    if(trace.beDebug())
                        String userName = user != null ? user.getName() : "no user";
                        trace.debugT("checkPermission", "The current user is [{0}].", new Object[] );
                    if(user != null)
                        LogonApplicationPermission permission = new LogonApplicationPermission(permissionName);
                        hasPermission = user.hasPermission(permission);
                    } else
                        trace.errorT("checkPermission", "The current user is null.");
                    boolean flag = hasPermission;
                    return flag;
                catch(UMException umex)
                    flag1 = false;
                return flag1;
            finally
                if(trace.bePath())
                    trace.exiting("checkPermission", new Boolean(hasPermission));
    In SP10 code was
      public boolean getLogonHelp()
            return mySAPProperties.getBoolean("ume.logon.logon_help", true);
    In your jsp page
    if ( logonBean.getLogonHelp() ){
    //code
    logonBean.getLogonHelp() retuning true because of  additional <b>LogonApplicationPermission</b> checking....  
    I think you got my point....
    With reagrds
    Eldose
    Eldose

  • Password Reset Portal SMS Gate Not Working

    trying Microsoft code to enable One-Time Password with SMS Gate, no luck to make it work. Anyone can advise what's wrong of this code? 
    Customer sms gateway requires POST method with 3 parameters: "password", "hp" and "smsmessage"
    namespace Microsoft.IdentityManagement.Samples
        using System;
        using System.Collections.Generic;
        using System.Globalization;
        using System.Net;
        using System.Text;
        using Microsoft.IdentityManagement.SmsServiceProvider;
        using System.Web;
        using System.Security.Cryptography;
        using System.IO;
        public class SmsServiceProvider : ISmsServiceProvider
            public void SendSms(string mobileNumber,
                                string message,
                                Guid requestId,
                                Dictionary<string, object> deliveryAttributes)
                mySMSProvider.SendSms(mobileNumber, message);
        class mySMSProvider
            static string RequestURL = "http://smsgw.abc.com/smsgateway/smsforad.php";
            mySMSProvider()
            public static int SendSms(string userMobileNumber, string message)
                WebClient wc = new WebClient();
                string requestData;
                requestData = Microsoft.IdentityManagement.Samples.mySMSProvider.GetRequestData(userMobileNumber, message);
                byte[] postData = Encoding.ASCII.GetBytes(requestData);
                byte[] response = wc.UploadData(mySMSProvider.RequestURL, postData);
                string result = Encoding.ASCII.GetString(response);  // result contains the error text
                int returnValue = System.Convert.ToInt32(result.Substring(0, 6), NumberFormatInfo.InvariantInfo);
                return returnValue;
            public static string GetRequestData(string mobile, string message)
                string myrequestData;
                myrequestData = "password=" + "password123"
                     + "&hp=" + System.Web.HttpUtility.UrlEncode(mobile)
                     + "&smsmessage=" + System.Web.HttpUtility.UrlEncode(message);
                return myrequestData;
    Jason

    There is some "well known" issue if you put more than one class into the dll. Try to insert all the logic to the SmsServiceProvider class.
    Borys Majewski, Identity Management Solutions Architect (Blog: IDArchitect.NET)

  • CRM portal link do not work

    Hi,
    My CRM URL stopped working. My webdispatchers and CI is up and running without problem. Could you please suggest how to proceed further.
    thanks and regards
    Syam

    Hi,
    Which browser are you using, If its Forefox, check with SAP for any Correction code.
    regards,
    Muralidhar Prasad.C

  • Validation-code of a view is not working in portal

    my validation code is working fine when testing in local view's application. the same view is attached to portal through fpm. while testing the same view in srm portal it is not working.can anybody suggest me why it is happening so. i will be thankful.

    have you checked in debugging.....

  • Portal event not working

    Hi,
    I am try to handle portal event in my WD ABAP i view. The event is fired by WD Java team viewer iView in MSS. What I want is when someone select an employee from team viewer iview from MSS, my WD ABAP iview should react accordingly.
    I check SAP note 1112733 for corresponding solution to handle event but it didnt worked. My WD ABAP application is not able to subscribe to the event.
    I wrote the following code in WDINIT method of my view
    DATA: l_api_component  TYPE REF TO if_wd_component,
            l_portal_manager TYPE REF TO if_wd_portal_integration,
            view TYPE REF TO if_wd_view_controller.
      l_api_component = wd_comp_controller->wd_get_api( ).
      l_portal_manager = l_api_component->get_portal_manager( ).
      view ?= wd_this->wd_get_api( ).
      l_portal_manager->subscribe_event(
    portal_event_namespace = 'urn:com.sap.mss.employeesearch'
    portal_event_name      = 'selection_changed'
    view                   = view
    action                 = 'RECIEVE_EMP_DATA' ).
    and the code written in event handler method is:
    METHOD onactionrecieve_emp_data .
      DATA: evt_name TYPE string.
      DATA lo_nd_gc_event_data TYPE REF TO if_wd_context_node.
      DATA lo_el_gc_event_data TYPE REF TO if_wd_context_element.
      DATA ls_gc_event_data TYPE wd_this->element_gc_event_data.
      DATA lv_event_string LIKE ls_gc_event_data-event_string.
    navigate from <CONTEXT> to <GC_EVENT_DATA> via lead selection
      lo_nd_gc_event_data = wd_context->get_child_node( name = wd_this->wdctx_gc_event_data ).
    get element via lead selection
      lo_el_gc_event_data = lo_nd_gc_event_data->get_element(  ).
    get single attribute
      lo_el_gc_event_data->set_attribute(
        EXPORTING
          name =  'EVENT_STRING'
          value = 'before handle' ).
      evt_name = wdevent->get_string( name = 'PORTAL_EVENT_NAME' ).
      IF evt_name = 'selection_changed'.
        lv_event_string = wdevent->get_string( name = 'PORTAL_EVENT_PARAMETER' ).
    get single attribute
      lo_el_gc_event_data->set_attribute(
        EXPORTING
          name =  `EVENT_STRING`
          value = 'handled' ).
      ENDIF.
    ENDMETHOD.
    In debugging mode, I am not able to go inside my event handler method.
    Please help why this event is not getting handled .
    Thanks
    Vishal Kapoor

    >
    Jon MB wrote:
    > Hi Thomas
    >
    > Please, can you confirm the restriction above applies to the following scenario?
    >
    > - We have an ECC system with the following URL: ecchost.domain.suffix
    > - We have a portal with the following URL: portalhost.subdomain.domain.suffix
    >
    > We have configured the portal for domain relaxing and SSO is working fine.
    >
    > Each system is under the same domain (domain.suffix), but in different subdomains.
    >
    > Shoudl this be the cause of ABAP WD applications not working? Is there any way to fix this without changing the URLs?
    >
    > Thanks in advance,
    > Jon
    I'm not a portal consultant, so I can only related the requirement from the WDA side that the domains must be the same. I don't know if the domain relaxation on the portal sise will take take of the subdomain.  My guess is that if you are having problems, that it doesn't.  You would probably need to ask this question in the portal forum or discuss with a portal consultant.
    > Is there any way to fix this without changing the URLs?
    I don't know of any.
    >Shoudl this be the cause of ABAP WD applications not working?
    What do you mean, not working?  Is the portal eventing just not work or are you not able to load the WDA applications at all.

  • Portal can not work with abnormal increased /usr/sap/SID file space

    hi experts,
    I got a problem today on our HR portal.
    At first I can't login the nwa, then I checked tha OS of portal, I saw that the file system /usr/sap/SID's used spaces increase very quickly, though I increase the free spaces for emergency use, the portal still can not work and the free space is still missing. I just solved by restart the SAP service.
    Did anyone face the same problems before?
    System information
    OS --> AIX v5.3
    Database --> Oracle 10.2.0.2
    SAP --> netweaver 2004s SP12.

    Hi,
    This happens when your archive log file of the application increases,
    Check the folder usr/sap/sid/instance/j2ee/cluster/server0/log/archive folder this is the reason for your disk space increase. Just take a backup and delete the files in the archive folder (except temp folder).
    The deletion of older archive files is not handeled by SAP, you have to manually delete the archive logs.
    Regards,
    Vamshi.

  • Component and Application Configuration not working

    Dear Friends,
      I want to disable the reject button in HCM Processes and Forms Webdynpro component HRASR00_PROCESS_EXECUTE and in application asr_process_execute only for some specific roles in Portal. So I tried to use the component configuration followed by the application configuration and passed this configuration id as a application parameter in the Portal, but its not working.Please find below the config steps which I did, let me know if I am missing anything.
    1. Created a new Component configuration ZTEST for the Webdynpro component HRASR00_PROCESS_EXECUTE  and changed the property of the Reject button to "Invisible".
    2. Created a new Application configuration ZTEST1 for the Webdynpro application ASR_PROCESS_EXECUTE and included the component configuration in the application configuration.
    3. Created an Application Parameter WDCONFIGURATIONID for the Webdynpro application ASR_PROCESS_EXECUTE and hard coded its value as ZTEST1(Application configuration ID) for testing purpose.
    4. Tried to test the application from Portal, but didn't work. I don't think the UWL customization is required at this point as we have hardcoded the WDCONFIGURATIONID in the Webdynpro Application.
    Regards,
    Sapient

    Hi,
    We had a same issue....the work around we got was that we had to create an enhancement...we removed the standard button...and created our custom button in place of the standard button....of course...the action method for our custom button was the same as the standard button....now since it is a custom button we were able to control the visibility of it....
    you can try to do it the same way....there is no coding involve in this...only removing the standard button and placing in your own button....SAP does not allow changing the properties of the standard ui elements.....just want to mention that by removing the standard button...you are not actually removing the button....it stays on the layout....but it will not show up when you run the application....but your own custom button will show up....
    If you do not know the procedure of removing the standard ui...it is fairly easy...right click on the ui element under the ROOTUIELEMENTCONTAINER...and select remove element....as i said before do not worry you are not removing it completely...it stays on the layout...and if you want to put it back...just right click on it again and select "undo deletion"....that is all
    once you have your custom button there...you can control it the way you want...depending on the role....
    Thanks..
    AS...

  • Does OracleWebLogic Portal 10.3.2 works with new eclipse plugin 11.1.1.6 ?

    Hi I am having a question,
    I tried to use the new oracle eclipse plugin 11.1.1.6.0 but my WebLogic Portal projects do not work anymore ?
    Is the portal not supported any longer?
    Regards
    Edmund

    Unfortunately, the WebLogic Portal 10.3.2 eclipse plugins are only supported with Oracle Enterprise Pack for Eclipse version 11.1.1.3 on Eclipse 3.5.
    Greg

Maybe you are looking for