Remove custom masthead for administrator

Hi,
we developed custom mast head ,and in the master rule, we kept for "administrator: it should display as normal portal(with content ,user,system admin).. and its working fine.
now we  added one more group to master rule to display custom masthead ,because of this ( i am not sure-this is the only change we did) now when i login with 'administrator'  i am getting custom mast head instead of normal portal .
please let me know how 'administrator' can get normal portal screen , now?
Thanks
Surya

hi
If the group contains administrator also,then custom musthead also applicable to administrator,thats why it showing custom one.
Custom masthead rule you applied to the group is  having the highest priority so when the administrator logs into the portal custom rule will be executed.(group contains administrator)
one more thing,
If multiple conditions apply to a user [ administraor,group(which includes administrator in your case) ] , the rule that is listed first will be applied when administrator logs in..(custom rule in your case)
if this is not the case try to restart the portal..
if you want to display default rule to administrator,
Replace the positions of cutom rule (2nd) and default one.(must be in 1st )
check if expression ,you have to add administrator as user (in if condition)and apply default rule in then condition.
and  it must be  first Rule collection in the order.
or
remove administrator user from Group..
Regards
sowmya.

Similar Messages

  • Syncing contacts on an iPhone removes custom ringtones for a contact

    I kept noticing that my custom ringtones regularly vanished on my iPhone 3G. This article explains why:
    http://support.apple.com/kb/TS1948
    This is a nuisance. Any idea when Apple will fix it?

    Mine are usually fine - it's only when I do a sync history reset that I lose them

  • Custom Masthead - Log off

    hi,
    I have developed a custom masthead for our portal. Instead of Log off being called in the functional area. I have inserted that in the separate area where the log off has to appear.
    The line looks like
    I have given log off text in between <a> tag and the href points to "/irj/portal" and the javascript that is callled is openLogoffMsg
    when I preview this code running from NWDS, it is logging off. When i add this to framework Page and click on Log off URL, the pop up comes and when i click 'ok', it is refreshing and staying in the same page and not getting logged off. What should I do to get logged off and redirect it to the logon page.
    Thanks & Regards,
    Ganesh N

    Hi,
    Is the issue logoff direction to logon page, so that if a user logs off from portal, he will navigate to portal logon page (hostname:portnumber/irj/portal)?
    If this is the problem you can change the redirection of the portal logoff in the following way:
    In the config tool navigate to:
    cluster_config --> system --> custom_global --> cfg --> services --> com.sap.security.core.ume.services --> Property Sheet properties.
    switch to edit mode and change the property ume.logoff.redirect.url with the custom value "http://hostname:portnumber/irj/portal".
    After saving your changes restart the system.
    Regards,
    Yasar

  • Enable personalization option in masthead for the custom role

    enable personalization option in masthead for the custom role for end user without using eu_role or admin roles

    Hi,
    To do so, go to
    Content Administration->Portal Content->Content provided by SAP->End User Content->Standard Portal users->Worksets->Portal Personalization
    Copy this portal personalization workset to a folder and add it to the role which the user has. The user with this role will be able to see the personalization link in the masthead iview.
    Regards
    Srinivasan T

  • You cannot use this product at this time. You must repair the problem by uninstalling and then reinstalling the product or contacting your IT administrator or adobe customer support for help....here I am

    You cannot use this product at this time. You must repair the problem by uninstalling and then reinstalling the product or contacting your IT administrator or adobe customer support for help

    This forum is none of those things.  That being said, we may be able to help.
    Have you tried uninstalling and reinstalling the product?  If not, please consider following these instructions:
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    -Noel

  • I cannot utilize my Adobe documents - I get this error message - "You cannot use this product at this time.  You must repair the problem by uninstalling and then reinstalling this product or contacting your IT administrator or Adobe customer support for h

    I cannot utilize my Adobe documents - I get this error message - “You cannot use this product at this time.  You must repair the problem by uninstalling and then reinstalling this product or contacting your IT administrator or Adobe customer support for help.”

    Thank you!  My solution was different.  I had turned off services in MSCONFIG and did not turn them back on.  After I turned services back on, Acrobat started  working again without the nag error and impedance to use the program.  I appreciate your input!  Adobe customer service/tech support was dismally disappointing.

  • Creating customized Responsibility for Learning Administrator.

    Dear All,
    I want to create a customized responsibility for showing only some specific categories of Catalog of learning administrator.
    Please guide how I can do above.

    In the new 12.1.2 version of OLM we have added new functionality called "Administrator Access control". This will do what you are looking to do.
    In versions prior to 12.1.2 this is not possible.
    Regards
    Anders

  • In custom Masthead logoff functionality is not working properly

    Hi ,
    We have customized Masthead based on standard SAP par  “com.freescale.navigation.masthead"
    I am explaining issue with example.
    1)     User logon to Portal.
    2)     He is under “System Administrator -> Support” page.
    3)     He press “Sign Out” link which is provided in custom masthead.
    4)     User log off from the portal.
    5)     But Address bar is showing following URL
    6)     “https://(portal-server) /irj/portal?NavigationTarget=ROLES://portal_content/administrator/system_admin/system_admin_role/com.sap.portal.system_admin_ws/com.sap.portal.support/com.sap.portal.support_desk ”
    7) Ie. When user again Log on he directly jumps to the
    “System Administrator -> Support” page.
    I want to remove the NavigationTarget part from the address bar when user Log Off. So that when user logon again he should able to see the default role after log on.
    HeaderView.jsp is having following code :
    For “Sign Out” link , I am calling Javascript function. openLogoffMsg()
    function openLogoffMsg()
    <%if (!isPreview){%>
        if (EPCM.getUAType() == EPCM.MSIE)
            var val = window.showModalDialog('<%=GetLogoffConfirmMsgURL(componentRequest)%>', '', '<%=LOGOFF_CONFIRM_MSG_ARGS_IE%>');
            if (val == 'logoff')
               logoff();
        else
            window.open('<%=GetLogoffConfirmMsgURL(componentRequest)%>', '<%=LOGOFF_CONFIRM_WINDOW_NAME%>', '<%=LOGOFF_CONFIRM_MSG_ARGS_NS%>');
    <%}%>
    function logoff()
        EPCM.raiseEvent("urn:com.sapportals.portal:user", "logoff", "");
        document.forms["logoffForm"].submit();
    <form name="logoffForm" style="display:none" action="<%=GetLogoffURL(componentRequest)%>" method="POST">
         <input type="hidden" name="logout_submit" value="true"></input>
    </form>
    private String GetLogoffURL(IPortalComponentRequest request)
        IPortalComponentURI logoffURI = request.createPortalComponentURI();
        return logoffURI.toString();
    Thanks in Advance.
    Thanks and Regards,
    Shrikant

    Hi Shrikant,
    In masthead par file there is LogInRedirect.jsp which is responsible for getting logon URL and display logon page back in browser after logoff is done. This jsp inturn calls getPortalURL function. This function is present in logon par file (umLogoffPage.jsp). If you have made changes in logon par file make sure that this jsp has that function.
    Have a look at these two par files and make sure these functions are these.
    Regards,
    Vishal
    PS: Reward points if answer is helpful

  • F-53 and F-28, Customized columns for cash discount and %

    Hi Expert,
    With reference to the subject of: Customized columns for cash discount and % ...
    I faced the problem of not able to set / defined hidden column for cash discount and % by creating a new variant.
    Steps:
    Create a variant
    Click <administrator> button ... mark the columns hidden, and click <activate> button
    Then click <Save> button
    Problem: Every time I using the F-53/F-28, the layout is not working, and when goto check the variant settings, the cash discount and % columns remained unchecked.
    SAP version: 4.6
    Kindly advise.
    Thanks and regards,
    sbmel

    Hi JP,
    It is not working using field status group, as I am using F-53 and F-28 and not FB50/60/70.
    The purpose I want to create variant for screen after clicking <process open item> is to control column display (hide cash discount and %).  if the variant is working, I can create a customized Tcode for the F-53 and F-28.
    Now problem is that variant seem not working.
    Thanks and regards,
    sbmel

  • Is it possible to override the built-in PDF format handler with a custom IFilter for PDF?

    Hi,
    SharePoint 2013 comes with a built-in "format handler" for PDF now, so it can index PDF files out of the box. This is great for most users, as it now no longer is necessary to install a third-party IFilter for crawling PDF documents.
    My question is, is it possible to override the built-in format handler for PDF with a custom IFilter for PDF? I played with the Set-SPEnterpriseSearchFileFormatState and Remove-SPEnterpriseSearchFileFormat cmdlets. While it is possible to deactivate
    the built-in format handler, I was not able to remove it and to create a new one that activates a custom IFilter for PDF files.
    Background of the question: While the new built-in format handler for PDF will probably be sufficient for many SharePoint users, some need additional capabilities regarding indexing if PDF documents, e.g. extraction of custom metadata from PDF's document
    information dictionary and embedded XMP metadata. PDFlib GmbH, the company I work form, sells an IFilter for PDF, and of course we would like to continue to offer this for SharePoint 2013.
    Thanks
    Stephan

    You should be able to replace it with any ifilter you want, this is the procedure for installing it:
    Install PDF iFilter 9.0 (64 bit) from
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4025 (http://www.adobe.com/support/downloads/detail.jsp?ftpID=4025)
    Download PDF icon picture from Adobe web site
    http://www.adobe.com/misc/linking.html (http://www.adobe.com/misc/linking.html)  and copy to C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\TEMPLATE\IMAGES\
    Add the following entry in docIcon.xml file, which can be found at: C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\TEMPLATE\XML
    <Mapping Key="pdf" Value="pdficon_small.png" />
    Add pdf file type on the File Type page under Search Service Application
    Open regedit
    Navigate to the following location:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office Server\15.0\Search\Setup\ContentIndexCommon\Filters\Extension
    Right-click > Click New > Key to create a new key for .pdf
    Add the following GUID in the default value
    {E8978DA6-047F-4E3D-9C78-CDBE46041603}
    •Restart the SharePoint Server Search 15
    •Reboot the SharePoint servers in Farm
    •Create a Test site (with any out-of-box site template) and create a document library upload any sample PDF document(s).
    •Perform FULL Crawl to get search result.
    Once the crawl is completed we will get search results.
    Kind regards,
    Margriet Bruggeman
    Lois & Clark IT Services
    web site: http://www.loisandclark.eu
    blog: http://www.sharepointdragons.com

  • No logical system group can be determined for administrative unit &1

    Dear GTS gurus,
    In Risk Management module when we execute the report "Analyze LTVD Request Relevance of Products" (/SAPSLL/PRE_VD_OPT_ANL_PROD) we sometimes get the error message:
    No logical system group can be determined for administrative unit *******
    Now I did some googling and found the following website: consolut - /SAPSLL/PRE_VDEC139 - No logical system group can be determined for administrative unit &amp;amp;1 - /SAPSLL/…
    It says that in customizing item "Define Administrative Unit Attributes" some assignment is missing but I was not able to figure out what exactly. I compared it with Administrative Units which did not not issue any error messages and customizing looks good to me.
    Can you share your insights on this topic?
    Best Regards
    Greg

    Hello Gregor,
    Under the Admin Unit attributes, you must have a Plant Group defined.
    Is that Plant Group assigned to a logical system ?
    (IMG: General Settings -> Organizational Structure -> Define Cross-Plant evaluation (or Define Plant-based BOM evaluation)
    By the way, the site you have found is one of the many sites out there that lists the messages available in a SAP system. The same information is available within GTS (Transaction SE91).
    Regards.
    Mouaz BEN REDJEB

  • Getting import error in jsp in creating war project of masthead for portal 7.31

    Hi,
    I am getting error in customize masthead war project in jsp for import statement.
    <%@ page import="com.sapportals.htmlb.*"%>
    <%@ page import="com.sapportals.htmlb.hovermenu.*"%>
    <%@ page import="com.sap.security.api.UMFactory"%>
    <%@ page import="com.sapportals.portal.prt.service.license.ILicenseService"%>
    <%@ taglib uri="prt:taglib:tlhtmlb" prefix="hbj"%>
    I have asked basis team for jar relative to these but they have not found in system.
    We are using portal 7.31 version.
    Kindly help me to remove this error from jsp.
    Thanks in advance.

    Hi Hemendra,
    At first i have done this and after that even i was facing error that's why i created this thread.
    Kindly check my first post for error.
    Getting import error in jsp in creating war project of masthead for portal 7.31
    This question is Not Answered.(Mark as assumed answered)
    Swati Joshi  Apr 29, 2015 12:34 PM  
    Hi,
    I am getting error in customize masthead war project in jsp for import statement.
    <%@ page import="com.sapportals.htmlb.*"%>
    <%@ page import="com.sapportals.htmlb.hovermenu.*"%>
    <%@ page import="com.sap.security.api.UMFactory"%>
    <%@ page import="com.sapportals.portal.prt.service.license.ILicenseService"%>
    <%@ taglib uri="prt:taglib:tlhtmlb" prefix="hbj"%>
    I have asked basis team for jar relative to these but they have not found in system.
    We are using portal 7.31 version.
    Kindly help me to remove this error from jsp.
    Thanks in advance.

  • Setup has encountered an error and cannot continue. Contact Adobe Customer Support for assistance.

    I have an iMac that meets system requirements.  I have downloaded CS4 from Adobe and when I try to install it says "Setup has encountered an error and cannot continue. Contact Adobe Customer Support for assistance."  This happens while it is checking the system profile.  I have read many forums and tried the following:
    Re-downloading the software
    Moving the download to an external drive to install
    Deleting all Adobe programs on my computer
    Clearing all caches
    Installing in safe mode
    Verifying the disk
    Creating a new administrator and then installing
    Attempting to re-install after the error
    None of these options have seemed to make a bit of difference. If there is another option could someone please share?  Adobe said they will not ship actual discs although I own the program.  They have yet to be able to help me when I have called. 
    Thank you in advance for any help!

    cs4 wasn't designed for that os, System requirements | CS4, Point Products
    you can check other users success here, http://roaringapps.com/apps:table
    you can try cleaning before installing, Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    and, if all else fails, you can check your log files for more detailed error info, Troubleshoot with install logs | CS5, CS5.5, CS6, CC

  • Custom reporting for UCCX 7

    Hello there,
    I am looking for easier ways to generate custom reports for UCCX 7, I am asking incase I go away an spend heaps of time programming stored procedures and crytal reports if there is a report pack out there or some documentation to make it a bit easier.
    Our call center team leader is asking for reports to be written for the system or modification of existing reports as the ones included are either too crowded with information or do not display what we actually want.
    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Table Normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-priority:99;
    mso-style-qformat:yes;
    mso-style-parent:"";
    mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
    mso-para-margin:0cm;
    mso-para-margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:11.0pt;
    font-family:"Calibri","sans-serif";
    mso-ascii-font-family:Calibri;
    mso-ascii-theme-font:minor-latin;
    mso-fareast-font-family:"Times New Roman";
    mso-fareast-theme-font:minor-fareast;
    mso-hansi-font-family:Calibri;
    mso-hansi-theme-font:minor-latin;
    mso-bidi-font-family:"Times New Roman";
    mso-bidi-theme-font:minor-bidi;}
    As an example, there is a report called ‘Agent Not Ready Reason Code Summary Report’, this report lists some not ready codes such as 32756 etc.. (i.e. Pre-defined system codes), however we want to list our own not ready codes as well as remove some of the system ones from the report as we don’t really want them there.
    Another example is the Agent state details report, one of the columns is 'Reason Code', this is fine, however it would be nice to have a summary at the end of the report for a total count of each not ready code (with the not ready code name not just the code).
    Is there anyone out there who has written/customised reports for UCCX or know where I can find some more documentation? I have searched around but not found anything, Cisco TAC have said that they only deal with the connection of Crystal Reports to UCCX, the coding itself and help with regards to that you are basically on your own with.
    Thanks

    Hi
    There are other ways of reporting, but you are still on your own with it unless you find someone who writes a package. I'm not aware of any...
    Re your specific queries though:
    ‘Agent Not Ready Reason Code Summary Report’ - when running the report, you can go to the 'detailed' tab, and on that tab you can select 'Reason Code' as a filter and pick the codes you are interested in.
    Also that same report shows the summary (i.e. totals) of the time in those reason codes doesn't it? So that's what you wanted to see on the other report?
    Final point (and this is a common one that comes up) is that for some reason the 'reason' codes only appear as numbers in the DB. There are no lookup tables where you can link them to names for reporting. This basically means the best you can do is to edit the Crystal templates so that the static table listing the codes at the top of the report has the codes you have configured. Obviously this isn't dynamic, but it is easy as far as Crystal goes...
    Hope this helps
    Aaron
    Please rate helpful posts...

  • Download link custom action for video files

    Hi,
    I have a requirement for adding a custom action called "DOWNLOAD A COPY" in search results hover panel on click of which will download copy for the user. I am able to implement this for pdf, excel and word files but not for generic and video files
    types since ctx.CurrentItem object is not having any property pointing to the item URL. Can someone please help me in getting this property for video and generic file types.
    Thanks a lot in advance!
    SharepointLearner

    Hi,
    According to your post, my understanding is that you want to custom action for context menu in "Site Content and Structure" in SharePoint 2010.
    In "SiteManager.aspx", SharePoint use MenuItemTemplate class which represent a control that creates an item in a drop-down menu.
    For example, to create or delete the ECB menu for a list item in
    "Site Content and Structure", we can follow the steps below:
    To add the “My Like” menu, we can add the code below:      
    <SharePoint:MenuItemTemplate
    UseShortId=false
    id="OLListItemLike"
    runat="server"
    Text="My Like"
    ImageUrl="/_layouts/images/DelItem.gif"
    ClientOnClickNavigateUrl="https://www.google.com.hk/"
    />
    To remove the “Delete” menu, we can comment the code below:
    <SharePoint:MenuItemTemplate
    UseShortId=false
    id="OLListItemDelete"
    runat="server"
    Text="<%$Resources:cms,SmtDelete%>"
    ImageUrl="/_layouts/images/DelItem.gif"
    ClientOnClickScript="%SmtObjectDeleteScript%"
    />            
    The result is as below:
    More information:
    MenuItemTemplate Class (Microsoft.SharePoint.WebControls)
    MenuItemTemplate.ClientOnClickScript property (Microsoft.SharePoint.WebControls)
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

Maybe you are looking for