Portal Customizations

All,
Q1. Customer wants to provide custom developed portal login and change password password pages.
* As far as I can tell the way to do this is to follow the procedure documented in the "Oracle Login Server - Customizable Features" document on the www-sso.us.oracle.com internal website. Is this our officially supported and recommended procedure, or is there an easier way to achieve this customization? (i.e. will 3.0.8 have this capability out of box?)
Q2. Is there any way to force a user logging into a homepage with multiple tabs on it to always default to a specific tab? It appears as though the next time a user logs in they are randomly directed tabs on the page? (How does portal determine which tab a user will default to upon login?)
Thanks in advance, Dom

Q1. I haven't seen the document you are referring to, but the steps for doing this are also in the online help. Search on 'Login Screen'.
Q2. The logic for tabs always displays the first tab on the page the first time a page is hit in a given session. Subsequent hits will display the tab the user was on when last viewing the page.

Similar Messages

  • UWL item to use portal customize theme.

    Dear all,
    I have a customize abap web dynpro application that will launch in the UWL. (second level leave request). How can i force it to use our portal customize theme.
    Can i include some code in the UWL and below are my XML code.
        <ItemType name="uwl.task.webflow.TS90200060.SAP_ECC_HumanResources" connector="WebFlowConnector" defaultView="DefaultView" defaultAction="launchWebDynPro" executionMode="default">
          <ItemTypeCriteria systemId="SAP_ECC_HumanResources" externalType="TS90200060" connector="WebFlowConnector"/>
          <Actions>
            <Action name="launchWebDynPro" groupAction="" handler="SAPWebDynproABAPLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="yes" launchNewWindowFeatures="resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no">
              <Properties>
                <Property name="WebDynproApplication" value="ZMSSLEAVE_APPROVAL"/>
                <Property name="newWindowFeatures" value="resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no"/>
                <Property name="DynamicParameter" value="WI_ID=${item.externalId}"/>
                <Property name="openInNewWindow" value="yes"/>
                <Property name="System" value="ECDCLNT110b"/>
                <Property name="WebDynproNamespace" value="SAP"/>
                <Property name="display_order_priority" value="5"/>
              </Properties>
              <Descriptions default=""/>
            </Action>
          </Actions>
        </ItemType>
    Thanks
    Regards,
    Bryan

    Hello,
    I see your thread is still unanswered, were you able to resolve the problem yourself (if so can you share with others who may have the same problem)? If so can you add anymore details which may help someone else to find an answer?  Or is it ok to mark this post as assumed answered?
    Beth Maben
    EP - Senior Support Consultant II
    SAP Active Global Support
    Global Support Centre Ireland
    **SDN Forum Moderator:
    SAP Enterprise Portal: Application Integration
    **SDN Universal Worklist Wiki:
    http://wiki.sdn.sap.com/wiki/x/ehU

  • Wlp10/wls10: Remote access to Portal Customization

    Hi!
    I am developing a portlet that will be used to customize some portal content in the same domain, but in a different server environment (A preview environment will be used to let users with an editor role publish some portal inventory items to the production environment).
    To do this, I am using the com.bea.netuix.application.persistence interfaces with:
                final CustomizationContext ctx = new CustomizationContext(request.getLocale(), request);
                ctx.setVisitorMode(false);
                ret.setCustomizationContext(ctx);
                final Hashtable<String, String> env = new Hashtable<String, String>();
                env.put(javax.naming.Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory");
                if (url != null) {
                    env.put(javax.naming.Context.PROVIDER_URL, url);
                    //env.put(javax.naming.Context.SECURITY_AUTHENTICATION, "Simple");
                    env.put(javax.naming.Context.SECURITY_PRINCIPAL, "weblogic");
                    env.put(javax.naming.Context.SECURITY_CREDENTIALS, "*********");
                initialContext = new InitialContext(env);
                final PortalCustomizationManagerHome pcmh = (PortalCustomizationManagerHome) initialContext.lookup(
                         ApplicationHelper.getVersionedAppName() + "." + PortalCustomizationManagerHome.LOOKUP_NAME);
                ret.setPortalCustomizationManager(pcmh.create());
            initialContext.close()
    ...The url follows the pattern "t3://server/port"
    Invocation is
                            final PortletView doppelgaenger = deployManagerManager.getPortalCustomizationManager().getPortletView(
                                    deployManagerManager.getCustomizationContext(), child.getPortletInstanceId());The result is an exception:
    Caused by: java.lang.SecurityException: [Security:090398]Invalid Subject: principals=[weblogic, Administrators, IntegrationAdministrators]
            at weblogic.security.service.SecurityServiceManager.seal(Unknown Source)
            at weblogic.security.service.SecurityServiceManager.getSealedSubjectFromWire(Unknown Source)
            at weblogic.rjvm.MsgAbbrevInputStream.getSubject(MsgAbbrevInputStream.java:316)
            at weblogic.rmi.internal.BasicServerRef.acceptRequest(BasicServerRef.java:850)
            at weblogic.rmi.internal.BasicServerRef.dispatch(BasicServerRef.java:314)
            at weblogic.rmi.cluster.ClusterableServerRef.dispatch(ClusterableServerRef.java:236)
            at weblogic.rjvm.RJVMImpl.dispatchRequest(RJVMImpl.java:1084)
            at weblogic.rjvm.RJVMImpl.dispatch(RJVMImpl.java:1001)
            at weblogic.rjvm.ConnectionManagerServer.handleRJVM(ConnectionManagerServer.java:230)
            at weblogic.rjvm.ConnectionManager.dispatch(ConnectionManager.java:877)
            at weblogic.rjvm.MsgAbbrevJVMConnection.dispatch(MsgAbbrevJVMConnection.java:446)
            at weblogic.rjvm.t3.MuxableSocketT3.dispatch(MuxableSocketT3.java:368)
            at weblogic.socket.AbstractMuxableSocket.dispatch(AbstractMuxableSocket.java:383)
            at weblogic.socket.SocketMuxer.readReadySocketOnce(SocketMuxer.java:872)
            at weblogic.socket.SocketMuxer.readReadySocket(SocketMuxer.java:818)
            at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:130)
            at weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
            at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:42)
            at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
            at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)We have played around with cross domain security mapping, but could not fix the problem.
    I guess that I have to do the access somehow differently or some configuration is missing... any ideas?

    The goual is SAP(Waldorf) achieves http:
    sapeff.ku.norikom.tu:50001
    Of course http:
    sapeff.ku.norikom.tu:50001is achievable from our network.
    The error SAP(Waldorf) gets is :
    "DESTINATION: /H/sapserv1a.wdf.sap.corp./S/3295/H/193.71.150.78/S/P/QnIKoiIHWE/H/192.168.21.128/S/3299/H/sapeff.ku.norikom.tu/S/50001
    DESTINATION PORT:3299
    LOCATION:Saprouter (Using third part library) on sapserv1
    ERROR : TIMEOUT OCCURED
    TIME: WED MAR31 17:02:34 2010
    RELEASE: 620
    COMPONENT :NI(Network Interface)
    VERS
    What could be cause of this error?

  • Cisco ISE 1.2 Guest Portal customization with vWLC redirect

    Hello Support Community,
    we have a problem regarding customized web authentication on ISE 1.2 with Package ISE12CustomPortalPackage-v4.zip. We have a Virtual Wireless Controller where we do a redirect to ISE. When we use default guest portal on https://x.x.x.x:8443/guestportal/Login.action authentication and authorization works fine. When we do redirect to Cisco templates on https://x.x.x.x:8443/guestportal/portals/example/Login.html customized login page is displayed and after correct authentication guest successful page is displayed but we can't go to any webserver although ISE shows authentication and authorization as successful. When we try to reach a webserver after successful authentication we get redirected to customized login site. Virtual Wireless Controller shows client aus "Webauth Required" after successful authentication. Central Web Authentication isn't possible because we have a different AAA Server for 802.1X and only use wired guest access on a particular VLAN from WLC. Are there any known issues regarding customization template or is there something wrong regarding our redirect?
    I hope somebody can help us.
    Best Regards
    Benjamin

    Hello Neno,
    1. I attached screenshots below.
    2. There is nothing related to this client.
    3. I attached Debug below.
    We are currently using MAB on our switches as a fallback to our 802.1X on our wired access. Order and Priority currently is 802.1X/MAB/Auth-Fail-VLAN. CWA is based on a failed MAC-Authentication which leads to an Authorization Profile to permit access with Webauth.
    If you configure Wired guest access on WLC there isn't a possibility to configure MAC-Authentication.
    CWA on our switches isn't possible because we are currently using failed MAC-Authentication to direct clients to our Auth-Fail-VLAN which has restricted access secured by SVI-ACL which allows us HTTP Access to printers (manual Cert Deployment) and automated Cert enrollment to our computers.
    Best Regards
    Benjamin

  • ISE 1.3 portal customization - background image

    With all the simplicity to adjust the look and feel of portals in the new ISE 1.3 comes (albeit small for some) a price: I no longer see a way to configure a custom adjustments like a background image, not simply a top banner. This was doable in 1.2 via Cisco ISE Portal Builder or custom editing of html files and custom image uploading. Migrated portal still works fine. But since is not editable it's almost unusable.  Is there still a way to do full customization of the portals?

    Here are some steps on how to reference a background image using CSS and ISE 1.3
    If needing help on doing other modification to the portal outside of the basics (like moving elements or resizing) after making the change then please work with web developer experienced in javascript and CSS.
    Export default CSS from ISE:
    Click Guest Access > Configure
    Choose any Portal and click “Edit”.
    Click Portal Page Customization > Advanced Customization
    Choose “Default Blue theme” and click “Export”.
    Open file with editor (for example:Coda,Notepad etc.).
    Edit file:
    Copy and paste
    (Don’t forget to put your picture instead of http://www.your-picture.jpg):
    Add this code AFTER the Defaults theme code
    body .cisco-ise-content {
        background-color: white ;  
    body{ 
    background-image: url("http://www.your-picture.jpg")!important;
        background-size: cover;}
    .ui-dialog-contain > .ui-content {
        background: none repeat scroll 0 0 white;
    body .ui-dialog .ui-dialog-contain .ui-header {
        background: none repeat scroll 0 0 #0a569c;
    .progressWizard .ui-bar-a.step-inner {
    background: linear-gradient(#4da2f1, #4ea5f6) repeat scroll 0 0 #4ea4f4;
    Replace from the code
    .ui-body-a,
    .ui-overlay-a {
        border: 1px solid #d3d3d3 /*{a-body-border}*/;
        color: #666 /*{a-body-color}*/;
        text-shadow: 0 /*{a-body-shadow-x}*/ 0 /*{a-body-shadow-y}*/ 0 /*{a-body-shadow-radius}*/ #ffffff /*{a-body-shadow-color}*/;
        background: #ffffff /*{a-body-background-color}*/;
        background-image: -webkit-gradient(linear, left top, left bottom, from( #ffffff /*{a-body-background-start}*/), to( #ffffff /*{a-body-background-end}*/)); /* Saf4+, Chrome */
        background-image: -webkit-linear-gradient( #ffffff /*{a-body-background-start}*/, #ffffff /*{a-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
        background-image:    -moz-linear-gradient( #ffffff /*{a-body-background-start}*/, #ffffff /*{a-body-background-end}*/); /* FF3.6 */
        background-image:     -ms-linear-gradient( #ffffff /*{a-body-background-start}*/, #ffffff /*{a-body-background-end}*/); /* IE10 */
        background-image:      -o-linear-gradient( #ffffff /*{a-body-background-start}*/, #ffffff /*{a-body-background-end}*/); /* Opera 11.10+ */
        background-image:         linear-gradient( #ffffff /*{a-body-background-start}*/, #ffffff /*{a-body-background-end}*/);
    With:
    .ui-body-a,
    .ui-overlay-a {
        border: 1px solid #d3d3d3 /*{a-body-border}*/;
        color: #666 /*{a-body-color}*/;
    Replace from the code
    .ui-bar-a {
        border: 1px solid #d3d3d3 /*{a-bar-border}*/;
        background: #4ea4f4 /*{a-bar-background-color}*/;
        color: #ffffff /*{a-bar-color}*/;
        font-weight: bold;
        text-shadow: 0 /*{a-bar-shadow-x}*/ 0 /*{a-bar-shadow-y}*/ 0 /*{a-bar-shadow-radius}*/ #0a569c /*{a-bar-shadow-color}*/;
        background-image: -webkit-gradient(linear, left top, left bottom, from( #4da2f1 /*{a-bar-background-start}*/), to( #4ea5f6 /*{a-bar-background-end}*/)); /* Saf4+, Chrome */
        background-image: -webkit-linear-gradient( #4da2f1 /*{a-bar-background-start}*/, #4ea5f6 /*{a-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
        background-image:    -moz-linear-gradient( #4da2f1 /*{a-bar-background-start}*/, #4ea5f6 /*{a-bar-background-end}*/); /* FF3.6 */
        background-image:     -ms-linear-gradient( #4da2f1 /*{a-bar-background-start}*/, #4ea5f6 /*{a-bar-background-end}*/); /* IE10 */
        background-image:      -o-linear-gradient( #4da2f1 /*{a-bar-background-start}*/, #4ea5f6 /*{a-bar-background-end}*/); /* Opera 11.10+ */
        background-image:         linear-gradient( #4da2f1 /*{a-bar-background-start}*/, #4ea5f6 /*{a-bar-background-end}*/);
    with 
    .ui-bar-a {
        border: 1px solid #d3d3d3 /*{a-bar-border}*/;
        color: #ffffff /*{a-bar-color}*/;
        font-weight: bold;
        text-shadow: 0 /*{a-bar-shadow-x}*/ 0 /*{a-bar-shadow-y}*/ 0 /*{a-bar-shadow-radius}*/ #0a569c /*{a-bar-shadow-color}*/;
    Save file.
    Import back into ISE
    Get back to ISE.
    Open Advanced Customization/Export/Import Themes…
    Choose your file.
    Input your theme name.
    Click “Save”.
    Click “Save” theme (upon the “Language file”).
    Click “Portal test URL”.
    Enjoy your new background..
    Example of the CSS file, see attachments
    It is possible to upload portal files to the Posture Remediation repository and reference these files in custom javascript or CSS files.
    Recommendation is to use the relative path so you're not referencing a specific PSN
    Path to the uploaded files at Policy > Policy Elements > Results > Posture > Remediation Actions > File Remediation
    Relative: /auth/packages/<Package_Name>/<File_Name>Example: /auth/packages/Custom_Portal2/my-background3.jpg
    Absolute: https://psn_fqdn:portal_port/auth/packages/<Package_Name>/<File_Name>Example: https://ise13-psn1.cts.local:8443/auth/packages/Custom_Portal2/my-background.jpg

  • In Portal: *Customizable* text?

    Hi folks.
    A text item can be added to a region, and can be edited. (The edited text shows for anyone who goes to the page.)
    Is there a way to provide a text item that can be customized by a random user, so that when he returns the page, he sees HIS text?
    If possible, e-mail me with suggestions: [email protected]

    Well, we had our Basis folks stop and restart our production system and this cleared up our display issue with Portal Iviews.
    We still don't know what the cause of the display error was.  I guess we'll never know.

  • Ise 1.2, cannot access guest portal

    I upgraded from 1.1.4 patch 3 to 1.2 but cannot access guest portal anymore nor with FQDN:8443 nor with IP:8443
    any idea?

    I had attached the steps to configure the guest portal and hope will address the problem.
    Configuring the Guest Portal
    Adding a New Guest Portal You must configure settings for the Guest portal before allowing guests to use it to access the network. Some settings apply globally to all Guest portals and other require you to set them for each portal individually.
    You can add a new Guest portal or edit an existing one.
    Step 1Choose Administration > Web Portal Management > Settings > Guest > Multi-Portal Configurations.
    Step 2Click Add.
    Step 3Update the fields on each of these tabs:
    •General—enter a portal name and description and choose a portal type.
    •Operations—enable the customizations for the specific portal
    •Customization—choose a language template for displaying the Guest portal with localized content
    •File Uploads—displays only if you have chosen a portal type requiring you to upload custom HTML files.
    •File Mapping— identify and choose the HTML files uploaded for the particular guest pages. Displays only if you have chosen a portal type requiring you to upload custom HTML files.
    •Authentication—indicate how users should be authenticated during guest login.
    Step 4Click Submit.
    Specifying Ports and Ethernet Interfaces for End-User Portals
    You can specify the port used for each web portal allowing you to use different ports for the end-user portals: Sponsor, Guest (and Client Provisioning), My Devices, and Blacklist portals. The Client Provisioning portal uses ports 8905 and 8909 for posture assessments and remediation, which you cannot change. Otherwise, it uses the same ports assigned to the Guest portal.
    You can also partition portal traffic to specific Gigabit Ethernet interfaces. For example, you might not want the Admin portal (which always uses GigabitEthernet 0) available on the same network as guest users or employee devices.
    Step 1Choose Administration > Web Portal Management > Settings > General > Ports.
    Step 2Enter the port value in the HTTPS Port field for each portal. By default, the Sponsor, Guest, My Devices portals use 8443, and the Blacklist portal uses port 8444.
    Step 3Check the Gigabit Ethernet interfaces you want to enable for each portal.
    Step 4Click Save.
    If you have changed the port settings, all nodes (Administration, Policy Services, and Monitoring) restart automatically, which may take several hours to complete.
    Tips for Assigning Ports and Ethernet Interfaces
    •All port assignments must be between 8000-8999. This port range restriction is new in Cisco ISE 1.2. If you upgraded with port values outside this range, they are honored until you make any change to this page. If you make any change to this page, you must update the port setting to comply with this restriction.
    •You must assign the Blacklist portal to use a different port than the other end-user portals.
    •Any portals assigned to the same HTTPS port also use the same Ethernet interfaces. For example, if you assign both the Sponsor and My Devices portals to port 8443, and you disable GigabitEthernet 0 on the Sponsor portal, that interface is also automatically disabled for the My Devices portal.
    •You must configure the Ethernet interfaces using IP addresses on different subnets. Refer to these guidelines to help you decide how best to assign ports and Ethernet interfaces to the end-user portals:
    Specifying the Fully Qualified Domain Name for Sponsor and My Devices Portals
    You can set the Sponsor and My Devices portals to use an easy-to-remember fully-qualified domain names (FQDN), such as: mydevices.companyname.com or sponsor.companyname.com. Alternatively, Cisco ISE also supports wildcard certificates to address certificate name mismatch issues. You must configure DNS to resolve to at least one policy services node. If you have more than one policy services node that will provide portal services, you should configure high availability for the portal. For example, you could use a load balancer or DNS round-robin services.
    Before You Begin
    Step 1Choose Administration > Web Portal Management > Settings > General > Ports.
    Step 2Scroll to the Portal FQDNs section, and check the appropriate setting:
    •Default Sponsor Portal FQDN
    •Default My Devices Portal FQDN
    Step 3Enter a fully qualified domain name.
    Step 4Click Save, and all nodes (Administration, Policy Services, and Monitoring) restart automatically, which may take several hours to complete.
    Step 5Configure the network DNS server so that it resolves the FQDN to the Sponsor or My Devices portal nodes. You must also update DNS to ensure the FQDN of the new URL resolves to a valid policy service node IP address. Additionally, to avoid certificate warning messages due to name mismatches, you should also include the FQDN of the customized URL in the subject alternative name (SAN) attribute of the local server certificate of the Cisco ISE policy service node.

  • Portal look and feel?

    Hi,
    Can someone please direct me to threads/wiki/blog/sap help for customising portal look and feel like company branding logo and colour themes etc..  I have to a requirement to match SAP Portal interface to look like existing company intranet web site. 
    Also please let me know how can I transport these portal setting once configured to different environment (QA and PRD).
    Thanks
    Praveen.

    Hi Praveen,
    The questions you asked have been posted many a times before. Do search and if you dont get any good results then you may always post.
    As for know do refer to the following links:
    MastHead Change & Portal Desktop
    Portal Customizations Intro - Login Part 1
    Portal Customizations Intro - Login Part 2
    Portal Customizations Intro - Look&Feel Part 3
    http://wiki.sdn.sap.com/wiki/display/EP/LookandFeel
    For more information of Themes, Transporting themes - http://help.sap.com/saphelp_nw70/helpdata/en/f4/bb7a3b688d3c1de10000000a11402f/frameset.htm
    Thanks,
    GLM

  • Logon in Portal Desktop

    Hi everybody:
    I have a requirement to create a Portal desktop wiht logon option, like SDN screen.
    I need someone who indicates me how to do it.
    Tnks

    Hi,
    Check these links
    Portal Branding for specific user
    Portal Customizations Intro - Login Part 1
    Portal Customizations Intro - Login Part 2
    http://help.sap.com/bp_epv260/EP_EN/documentation/EP/N08_BB_ConfigGuide_EN_US.doc
    https://websmp105.sap-ag.de/~sapdownload/011000358700003697292003E/Logonscreen_HowTo_v2.pdf
    Is your Portal Logon Page more colorful?
    A fast and easy Portal logon page customizing
    http://help.sap.com/bp_epv260/EP_EN/documentation/EP/N08_BB_ConfigGuide_EN_US.doc
    Regards
    Arun

  • Where to find the css file for logon page customization

    Hi All,
    I am doing the logon page customization but i am not finding the stylesheet to change the background colors.
    While testing it is taking the default css stylesheet.
    Can anyone suggest from where to edit the css file?
    With Regards
    Ashutosh

    Dear Ashutosh
    You can find the css folder under the logon par file.
    Please find below reference for modifying the PAR file:- http://help.sap.com/saphelp_nw04s/helpdata/en/bb/1bb8428e05c86ae10000000a155106/content.htm
    A fast and easy Portal logon page customizing
    Modifying The Logon Par(or customising the Logon Screen)
    Customizing Portal Logon Screen
    Portal Customizations Intro - Login Part 1
    Portal Customizations Intro - Login Part 2
    Hope it will helps
    Best Regards
    Arun Jaiswal

  • Create New Portal Desktop - EP 7.0

    Hi,
    I need to create a new portal desktop.
    I import theme file and masthead (par file) and now i do not know to continue...
    Please,
    somebody has a tutorial or any help???
    p.s.: sorry for poor english

    Hi Angelo,
    Check these links
    Portal Branding for specific user
    Is your Portal Logon Page more colorful?
    A fast and easy Portal logon page customizing
    http://help.sap.com/bp_epv260/EP_EN/documentation/EP/N08_BB_ConfigGuide_EN_US.doc
    Portal Customizations Intro - Login Part 1
    Portal Customizations Intro - Login Part 2
    http://help.sap.com/bp_epv260/EP_EN/documentation/EP/N08_BB_ConfigGuide_EN_US.doc
    https://websmp105.sap-ag.de/~sapdownload/011000358700003697292003E/Logonscreen_HowTo_v2.pdf
    Regards
    Arun

  • Send error message on Portal

    In EHSM3.0 I am enhancing method process_event of class CL_EHFND_FBI_GUIBB_FORM to do some validations before data gets saved.
    I set the following method parameter if user enters incorrect data:
    ev_result = if_fpm_constants=>gc_event_result-failed.
    With this the processing stops & data is not saved but I want to send back error message on portal.
    I am trying to get message managaer using attribute MO_CONTROLLER of the class CL_EHFND_FBI_GUIBB_FORM but no success.
    How to achieve this? Can someone help?

    Dear Viswa,
    You can find in the umelogonbase.jar file under com.sap.portal.runtime.logon par file.
    Please refer to below blogs :-
    Modifying The Logon Par(or customising the Logon Screen)
    Portal Customizations Intro - Login Part 1
    Hope it will helps
    Best Regards,
    Arun Jaiswal

  • To make changes on Portal

    I am working on Webdynpro where we have a portal running. I want to make changes in the Logon page, how should I go about ???
    I am a new user ....
    Thank you.

    Hi,
    Apart from the links given by Abhimanyu, you may also like to visit these links. This links give a step by step description on how to change the logon screen :
    Portal Customizations Intro - Login Part 1
    Portal Customizations Intro - Login Part 2
    A fast and easy Portal logon page customizing
    And if you just want to change the logon screen image, then Goto System Administration -> System Configuration -> UM Configuration -> Direct Editing
    Hope that helps.
    Regards,
    Sunil

  • Query regarding portal look & feel

    Hi All,
    I have deployed my j2ee application on sap. I also need to change look & feel of my pages(iviews) when user changes portal theme. For this I am passing url of css used by portal to my application, but I am fetching it in login page only and putting it in session so that all pages use the same css, hence user need to click on the first page of my application to reflect changes.
    Problem is that if user has opened another page and he changes portal theme, it gets reflected in portal standard components but not in my pages until I click the first page that is for login.
    How can I achieve portal's look & feel.
    Please suggest...

    Hi,
    Check this link
    Portal Branding for specific user
    Portal Customizations Intro - Login Part 1
    http://help.sap.com/bp_epv260/EP_EN/documentation/EP/N08_BB_ConfigGuide_EN_US.doc
    A fast and easy Portal logon page customizing
    Regards
    Arun

  • How to communicate database immediately after portal signin

    I need to extract data from the database to show in the channels when i log-in into portal server.

    Create your own provider (using jdbc to query your data base), format your content and post into your channel created by amconsole. See Portal customization manual. http://docs.sun.com/app/docs/doc/817-7694 Jerry

Maybe you are looking for