WDPortalNavigation.navigateAbsolute working for admin only

Dear All,
In an application, we have to give links of different iviews. On click on the link, the required iview is opening in new window. But this is working only for those who has Super Admin access in portal.
Please help so that it can be enabled for normal users also.
Regards,
Vaibhav

Hi Vaibhav,
                  The iview you are showing as pop up, will be assigned to a particular role (Check in Portal Content). Check if the normal users are assigned to that role or not.... If not, you have to assign the normal user group to this role...
Consider awarding points if this is help ful...
Thanks & Regards
Ramesh.

Similar Messages

  • SP2013 WF works for admin but not end-users

    A simple SP2013 WF calls a SP2010 WF to send email, simple.  Works for me (admin) but when a SP user edits an item on the list (which fires the WF), the WF gets to the 2010 call, and fails with this error...
    RequestorId: f8c56627-e4e5-5a26-0000-000000000000. Details: An unhandled exception occurred during the execution of the workflow instance. Exception details: System.ApplicationException: HTTP 401 {"Transfer-Encoding":["chunked"],"X-SharePointHealthScore":["0"],"X-SP-SERVERSTATE":["ReadOnly=0"],"SPClientServiceRequestDuration":["61"],"SPRequestGuid":["f8c56627-e4e5-5a26-97ee-ad70ca4d3291"],"request-id":["f8c56627-e4e5-5a26-97ee-ad70ca4d3291"],"X-FRAME-OPTIONS":["SAMEORIGIN"],"MicrosoftSharePointTeamServices":["16.0.0.2930"],"X-Content-Type-Options":["nosniff"],"X-MS-InvokeApp":["1;
    RequireReadOnly"],"Cache-Control":["max-age=0, private"],"Date":["Wed, 25 Jun 2014 02:44:54 GMT"],"P3P":["CP=\"ALL IND DSP COR ADM CONo CUR CUSo IVAo IVDo PSA PSD TAI TELo OUR SAMo CNT COM INT
    NAV ONL PHY PRE PUR UNI\""],"Server":["Microsoft-IIS\/7.5"],"WWW-Authenticate":["NTLM"],"X-AspNet-Version":["4.0.30319"],"X-Powered-By":["ASP.NET"]} at System.Activities.Statements.Throw.Execute(CodeActivityContext
    context) at System.Activities.CodeActivity.InternalExecute(ActivityInstance instance, ActivityExecutor executor, BookmarkManager bookmarkManager) at System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody(ActivityExecutor executor, BookmarkManager
    bookmarkManager, Location resultLocation) Exception from activity Throw If Sequence Sequence TryCatch Sequence Microsoft.SharePoint.WorkflowServices.Activities.RetryForDurationPolicy HTTPPost_WorkflowInterop_EnableEvents WorkflowInterop DynamicActivity<Guid>
    Then If Working Sequence Flowchart Sequence RCSEmailCst.WorkflowXaml_4f7b53dc_968d_4e22_a812_3178e7b01bad
    Spent an hour on phone with M$ support, only to be told it's my fault and I have to re-design my WF...if my WF gets any simpler I'll have to use carrier pigeons to get messages to customers!
    I've Googled the error message, results suggest that User Profile Syn is out of whack but M$ support swears up & down our sync is working fine.
    Anyone?
    Edit to add: we have a hosted implementation of SP2013, NOT on-prem

    Hi  ,
    According to your description, my understanding is that the SharePoint workflow 2013 does not work for end-users in your environment.
    For your issue, it can be a permission for the user initiating the workflow. Please make sure  site feature Workflows can use app permissions is activated. Go to Site actions > Site Settings >
    Site features > Workflows can use app permissions.  Make sure the user is one member of a SharePoint Group.
    Also please  provide more detail information about the error message  to determine the exact cause of the error. You can have a look at the blog:
    http://ranaictiu-technicalblog.blogspot.com/2013/03/sharepoint-2013-workflow-debugdiagnosis.html
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • SPSecurity.RunWithElevatedPrivileges Not Working for Read Only Permissions Users

    I have the following code in a method that generates tabbed web parts on any page in SharePoint 2010.
    The problem is that it will not work for users who have Read access only on a SharePoint site.  It will work when those users have Contribute access.  
    So even though I have elevated permissions in the code it does not actually elevate the permissions at the point where it is needed.
    if (panel != null)
    try
    using (SPLimitedWebPartManager wpManager = SPContext.Current.Web.GetLimitedWebPartManager(HttpContext.Current.Request.Url.ToString(), PersonalizationScope.Shared))
    try
    // Elevated previleges required for EXPORT and IMPORT. Else Users with normal read access will get errors.
    SPSecurity.RunWithElevatedPrivileges(delegate()
    // Retrieve the web part titles in the ConfigureTabs XML string for this tab.
    var webPartTitles = from t in xDocument.Descendants("webPart")
    where (string)t.Parent.Attribute("name") == (string)e.Item.DataItem
    select (string)t.Attribute("title");
    foreach (string wpTitle in webPartTitles)
    foreach (System.Web.UI.WebControls.WebParts.WebPart webPart in wpManager.WebParts)
    // Find the matched closed web part in WebParts collection
    if (webPart.Title == wpTitle && webPart.IsClosed == true)
    string errorMessage;
    //ADD EXPORT PROPERTY
    webPart.ExportMode = WebPartExportMode.All;
    MemoryStream stream = new MemoryStream();
    XmlTextWriter writer = new XmlTextWriter(stream, System.Text.Encoding.UTF8);
    // Export the closed webpart to a memory stream.
    wpManager.ExportWebPart(webPart, writer);
    writer.Flush();
    stream.Position = 0;
    XmlTextReader reader = new XmlTextReader(stream);
    // Import the exported webpart.
    System.Web.UI.WebControls.WebParts.WebPart newWebPart = wpManager.ImportWebPart(reader, out errorMessage);
    reader.Close();
    writer.Close();
    // Show the imported webpart.
    panel.Controls.Add(newWebPart);
    break;
    catch (Exception ex)
    // For debugging use only.
    Label label = new Label();
    label.Text = "Please check your XML configuration for error. " + Environment.NewLine + ex.Message;
    panel.Controls.Add(label);
    catch (Exception ex)
    // For debugging use only.
    Label label = new Label();
    label.Text = "Please Check SPContext.Current.Web is not null. " + Environment.NewLine + ex.Message;
    panel.Controls.Add(label);
    This snippet of code was originally pulled from a microsoft technet article on creating Tabbed web parts "the correct way" but it doesn't work in all scenarios.
    Is there a way to get this code working for Read/Visitors to a SharePoint site?

    From initial observation what I see is that your SPLimitedWebPartManager is not created from an elevated web. Try like below
    SPSecurity.RunWithElevatedPrivileges(delegate()
    using(SPSite elevatedSite = new SPSite(SPContext.Current.Site.ID))
    using(SPWeb elevatedWeb = elevatedSite.OpenWeb())
    using (SPLimitedWebPartManager wpManager = elevatedWeb.GetLimitedWebPartManager(HttpContext.Current.Request.Url.ToString(), PersonalizationScope.Shared))
    { //Rest of your code
    Geetanjali Arora | My blogs |

  • Style Code Not Working for Read Only Users !

    Hi 
    Can anyone help us with this issue. We have created some special Styling code in order to hid the Quick Launch on the home page of our main SharePoint site. The Styling works no problem at
    all for users with edit rights, however we found that the styling did not work for users with read only access.  What we found was that if we switched on the "Edit Items  -  Edit items in lists, edit documents in document libraries, and
    customize Web Part Pages in document libraries." in the List Permissions for the Permission Levels for the Read Access group, the Styling then works no problem at all. HOWEVER it then gives those users the ability to EDIT the site page, as it then
    puts the Edit option on the page top right for the user to click and then mess up the web page, which we can not permit. 
    SO..... How do we get this styling to work for ALL user types ?

    Hi,
    This usually happens when the CSS file is not published or approved, please check it.
    If the CSS files uploaded in the Style Library, please check whether you had to check in those CSS files or not.
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Crystal add on works for admin user on server but not regular user

    Hi
    The crystal add on has been installed and working for months. Another colleague was working with it, not sure what happened but it stopped working. I was able to re-register and get it working on a user's workstation using fat client. It is installed on the server. Some users user remote desktop to connect to the server.
    If I login to the server as an admin user - i login to SAP as manager and can use the add on. Works fine.
    If I login to the server as a regular user, login as manager into SAP, I get an installation error with the Crystal add on. Since it is already installed and working - why when i login to the same server as a different windows login but SAME manager SAP user - why would it not work?
    I'm using crystal reports full version on the server because that is where I edit the reports.
    The workstations have the runtime installed.
    HELP!

    hi
    the error when I login as the user on the server is :
    Add-on Crystal Reports for SAP Business One: Add-on %s - uninstall failed.
    Which I don't understand at all b/c if I login on the same server as a different windows login
    with admin rights it works fine.
    What log file are you speaking of? I'm new to add on installs.
    I don't even install SAP I work with crystal reports but got stuck dealing with this add on.
    thanks!

  • Speakers not working for Skype only on Windows 8.1

    My speakers or headphones are not working for Skype desktop but work fine for any music or videos or other programms. Any help to resolve it? in Tools>Options>Audio Settings> headphones does not show up. Everything was working fine but it just happend a day before., i havent installed any program that could make problem.

    This is very strange because, as you are saying this happened without any change to any software on your computer. I suggest the following:
    1. To help the team analyze the issue, provide logs as described in this link  under Skype for Windows Desktop and attach it to your post.
    2. As an interim solution you can try using a virtual audio device that will be a middle man between skype and your physical audio device.

  • Crpe32.dll only works for admins?

    Post Author: Bennett
    CA Forum: Administration
    Hope I have the right forum.
    We have a Windows 2003 server supporting Terminal Services and Crystal XI. One of the apps on the box uses crpe32.dll to run reports. It only works if the RDC user has admin privileges. PowerUsers role is not enough. Depedency_Walker say gdiplus.ddl, msjava.dll and winhttp.dll are missing.  Any thought?
    Thanks in advance
    bill

    Post Author: [email protected]
    CA Forum: Administration
    Hi Bill,
    This sounds like Windows file permissions, not a Crystal issue as such. Check permissions on the dll and parent folder. (Properties -> Security if you're not used to doing it.) It's probably the Authenticated Users group you're interested in (need Read & Execute). If the permissions appear to be checked, try un-checking and re-checking them. HTH -- Craig

  • SMB File Sharing only works for Admin Accounts???

    I'm using a mac mini as a small file server. It will share files to WindowsPCs using SMB but there is a problem.
    On the Option dialog where you select accounts to share files and folders using SMB only Admin accounts show up. This is far from ideal as I'd prefer to using Sharing Only or Standard accounts.
    Is this a known issue? Is there a solution?

    What permissions are you setting on the share?  My guess is you are only using user, group, and other (POSIX).  You need to add an ACL to the list and then set read/write or full control.

  • Photoshop Elements 9 effects only work for Admin

    Hi.
    I am a teacher with a Maclab running Photoshop Elements 9. We just discovered that the effects pannel (where drop shadow, etc.) appear is blank for any non- administrator account. I have uninstalled and reinstalled. Tried installing under a student account. I thought I found the right files in the Applications Support folder and copied them to the Application Support folder of the user and still no luck. Does anyone have a solution for this?

    All versions of PSE are designed to run from admin accounts. It is possible to change the permissions on the files (no need for Root!) to make it run in standard accounts, but you must be aware if you choose to do so, that if you set the file permissions so that anyone can write to it, ANYTHING can write to it, and you are making a weak spot in your computer's defenses, however minor.

  • How can I sum up raws? the sum function seems to work for columns only and right now I have to create a separate formula for each raw

    How can I sum up raws? the Sum function seems to work only on columns. Right now I have to create a separate formula for each raw

    Hi dah,
    "Thanks, but can I do one formula for all present and future raws? as raws are being added, I have to do the sum function again and again"
    You do need a separate formula for each group of values to be summed.
    If the values are in columns, you need a copy of the formula for each column.
    If the values are in rows, you need a copy of the formula for for each row.
    If you set up your formulas as SGIII did in his example (shown below), where every non-header row has the same formula, Numbers will automtically add the formula to new rows as you add them.
    "Same formula" in this context means exactly the same as all the formulas above, with one exception: the row reference in each formula is incremented (by Numbers) to match the row containing the formula.
    Here the formula looks like this in the three rows shown.
    B2: =SUM(2)
    B3: =SUM(3)
    B4: =SUM(4)
    That pattern will continue as rows are added to the table.
    Also, because the row token (2) references all of the non-header cells in row 2, the formula will automatically include new columns as they are added to the table.
    Regards,
    Barry

  • Device F Keys works for standard only

    Hi Experts,
    Facing Problem with Function keys of the device Symbol MC 9090 5.0.
    It works with the aditional Software provided by the vendor but only for standard RF menu. the Screen from where custom development starts function keys doesnt works.
    Do we have to do some SAP coding or HTML in our ITS pages?
    Please suggest me if someone has any solution.
    Regards,
    Nik

    Hi Rob,
    Device F keys are not working in both standard and custom.
    We have copied the ITSMOBILE service and created a new one. Wherein we configured the Device Specifc files, Source and
    Transaction Details in SICF.
    In SE80, Internet service we included the device specific file in the service.
    Still Device F keys are not working. SAP Enter ( ticke Mark in the top)  is working properly.But not Device specifi enter key we  are not able to map.
    Can you please help me to resolve this.
    Warm Regards,
    Shaju

  • Itunes Equalizer not working for video - only affecting songs

    I have noticed that any Itunes equalizer settings that I select only affect songs in my itunes library. Videos are not affected at all by the equalizer settings. This means if I have a very dull sounding video I cannot use the equalizer to improve the audio. Does anyone know how to make the equalizer affect videos within itunes. Thanks in advance

    Apple does not care. You have already bought their product and that's all that matters... They got your money and they're happy; you don't have to be. Sadly, all you've paid for is a nice logo on the back of what should be an amazing device.
    Only buy an iPod/iPad/iPhone/iDevice if you are trying to impress your friends. Don't buy one if you want to be impressed, because this will not be the case. It will serve no purpose beyond making you look as though you have money to throw away.
    But, since you have already given them your hard-earned money, I suggest you don't use an EQ setting. "Off" works best as it produces the least amount of distortion on the iDevices I've tried.
    Hope this helps and "enjoy" your Apple experience.

  • How to resolve: 3rd party tool work for nvarchar only

    I have following settings in my database:
    select * from nls_database_parameters
    NLS_NCHAR_CHARACTERSET     AL16UTF16
    NLS_CHARACTERSET     AL32UTF8
    NLS_RDBMS_VERSION     11.1.0.6.0
    ...as you can see from above, varchar is support unicode too and database is working fine for most of application connect to my database, they store and display foreign characters correctly.
    However, I got a 3rd party tool, when it export from my database, all foreign character were not able to display correctly until I tried change one of column to nvarchar.
    so, seems this tool only work correctly for utf-8 when the data type is nvarchar. but I do not want to change all of varchar columns to nvarchar.
    is there anyway to resolved this situation?
    Thanks

    >
    OK. Some follow up questions:
    1. The character you test is both Traditional and Simplified Chinese. The data you want to see in the result is Traditional Chinese, Simplified Chinese or all of Unicode?
    >
    For this test, The character I tested is Simplified Chinese. obviously, I want the result is Simplified Chinese too --I want to see the result same as I have in the database.
    However, I do not want it limit to support only either Traditional or Simplified. it should support both, and more, it should support other languages. since others tool such as sql developer support.
    >
    2. What editor do you use to view the txt file?
    >
    Windows notepad (on windows XP)
    >
    3. What is your OS code page? Look in Registry at: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Nls\CodePage\ACP
    >
    1252
    >
    4. Do you have a hex-mode capable editor or viewer where you could see the contents of the txt file in hex? The character that I see pasted on the forum is Control-Z (0x1a), which is basically MS-DOS end-of-file character.
    >
    yes you are right, I got 0x1A too. I use Hex Editor XVI32. -- this is not what I want see. even worse, no matter what character, it always give me 0x1A. and number of "0x1A" is same as the number of characters.
    -- Sergiusz

  • M177fw wireless not working for scanner only-have same printer in second location

    I have this exact same MFP laserjet in another location that works perfectly over the wifi network.  I just purchased the same printer for a second physical location and installed it.  I gave the new printer a different name when I installed the device.  Printing over wifi works perfectly from two laptops.  The copy function works perfectly.  I cannot get the scanner to work at the new location from either laptop.
    When I installed the software on one of the laptops, I got a message that the driver was already present and suggested I use the existing version already installed.   So I used the already installed software.  For this laptop, I have a shortcut from the start menu called HP Scan.  At the original location, this works fine over wifi.  For the new printer at the new location, when I start HP Scan from either the HP folder or the shortcut, I get a box titled "Scanner Unreachable.  Scanner communication cannot be established..."  and suggests updating the IP address.  I looked at the printer configuration and the ip address is correct.  
    I reset the printer to the factory settings, rebooted the modem and configured the printer again, hoping that the correct IP address would populate correctly, but I have the same problem.  So my questions are:
    -Is it likely that the IP address is the problem for the scanner and how do I fix it?
    -If it is the IP address, what can I do to not have to manually change it each time I go to a different location?
    -If not, what is the likely problem?  What can I do to fix it?

    Hi,
    As you mention "When I installed the software on one of the laptops, I got a message that the driver was already present and suggested I use the existing version already installed.", such a message is common for adding a printer from the Windows Add a Printer wizard, may you added it by clicking add printer under Devices and Printers?
    If so, that may explain the issue as the printer should be added via the HP Software for the HP Scan to operate.
    Be sure to remove the newly added device first by right clicking it and selecting Remove Device, then reboot your PC.
    From the Start menu select HP and open the printer folder. then select Reconfigure your HP device.
    Follow the steps on screen to add the printer on your current location and check if that may help,
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Forgot my adminpassword, i have tried the reboot with initial disk doesn't work i can't downlad anything, I am able to log on but the name and password to get in my computer doesn't work for admin password. i am about to give up any suggestions?macbook10

    forgot my adminpassword, i have tried the reboot with initial disk didn't work, i am able to get into my computer with name and password, but this same name and password doesn't work as an administrators password when i want to download or change things.
    do you have any suggestions? Im about to give up, i can't even access wireless have to use a dsl
    pretty sad

    ... this same name and password doesn't work as an administrators password when i want to download or change things.
    It's probably that your Keychain password is not the same as your login password. If you configured your computer to log you in automatically, you may not have used your login password in so long you forgot it.
    There is no way to retrieve the "login" Keychain password, but you can reset the Keychain from the Preferences menu: select it in the Keychain Access menu and select "Reset My Default Keychain". This will create a new, empty Keychain but the old one will be saved should you ever remember its password.
    The result of this is that you will have to supply passwords for everything that requires it, since without your Keychain they will no longer automatically fill themselves. However, once you supply them and store them in your new Keychain, they will be remembered.

Maybe you are looking for

  • How can I sync Multiple devices with I tunes

    Hi, I only have one Itunes account but I have an I phone, my wife has an old i phone and my daughter a new ipod touch. Is there anyway that I we can have our own music all on my i tunes library but when I sync any of teh 3 devices it would just uploa

  • What are the standard bex analyzer reports available?

    hi all what are all the std reports available for fico? sd and mm? thanxs in advance regds hari

  • Pls help me with this installation problem. Your advice is highly needed.

    I am installing oracle 11.1.6.0 on windows xp professional everything was going fine untill there was a pop up that reads below INFO: exit-tool: Launch browser INFO: saving exit only tools ... INFO: no detached only tools in this session INFO: exit-o

  • USB Mouse Left Click not working, DV6700

    I have been using 2 hands to operate the simplist functions on my laptop. I move the mouse around with my right hand but if I want to click something I have to use the left button under the mouse-pad. HP support gave me a solution that worked for abo

  • Java exec question

    If i start a command with java exec and i want to terminate the command from running how to i do this? what i am doing now is i wait 5 seconds and if there is no output from the command i ask for exitValue() which throws an exception which i catch. T