Users not inheriting edited content???

Hello all,
We migrated our organization portal from 6.1 to 6.2 recently and everything went well except for one thing. Users that got migrated from 6.1 have all their roles intact and see all of the channels that were added in 6.1, but if we add channels to their roles in 6.2, they do not automatically inherit these new channels.
If we delete the users and re-create, they inherit everything as they are supposed to. Any ideas?
Thanks,
Jason

Hi,
I noticed that too, but I didn't have time to dig deeper.
My guess is that there is a change in default attributes of merge properies.
That would explain, why new users have correct profiles.
Also you could try to play with priorities "conflict resolution level"
Cheers,
Alex :-)

Similar Messages

  • Essbase 11.1.2.1 Users not inheriting filter access from group

    Hello all! We installed Essbase 11.1.2.1 in a distributed environment integrated with Shared Services and ran into an issue when provisioning users via groups. Using Shared Services we created a Native Directory Group and User. We provisioned the group with the Server Access Role and Filter Application role, then assigned the filter to the group using 'assign access control' on the application in Shared Services. For some reason using the Essbase add-in we are unable to retrieve data from the database. We receive an error stating the user id does not have read access to the db. If we carry out the same provisioning steps above on the user directly, we are able to retrieve data from the database. Any ideas on what might be causing this?

    In V11.1.2.2 ESSBASE is managed by OPMN. OPMN needs to be started before starting ESSBASE. You need to use "start.sh". Please do the following
    1) Run "stop.sh" that is in the starter scripts folder - This will stop all Oracle EPM components that are installed on the box
    2) Run "start.sh" - this will start OPMN, ESSBASE and all other installed components
    The "startEssbase.sh" and "stopEssbase.sh" can be used to start or stop ESSBASE only when OPMN is already running.

  • Published RoboHelp not displaying edited content.

    Today I opened an existing .xpj file and added two topics. I saved all changes. However, once I published the .xpj using WebHelp_Pro (Primary Layout) the HTML file and viewer does not display the new topics. Also, although i have edited the .xpj file, and was able to save all, the date of last update is displaying when it was originally created (not the current date that it was edited).
    Please help
    Thanks

    You’re using the “Pro” output because you’re publishing to a RH Server instance, right? If not, don’t use the “Pro” flavours; if you are, did you clear all the output files off the web server to ensure that what you generated was what you published? Any source control at play here? Did you need to add the topics to your ToC to see them?

  • User not inheriting group properties

    A group has app designer access to a particular app - why doesn't the users assigned to this group inherit this access?

    What documentation did you find this in? I feel like I knocked my head against a wall looking through documentation and never found what you sent. <BR><BR>Any idea when a group is useful if the individual rights override group rights? why bother with groups? Here is what I was looking at that I thought made sense to me:<BR><BR>You can grant security permissions to individual users and to groups of users on an Analytic Server. You can assign users to a security group so that they can share identical minimum permissions assigned at the group level. Users inherit all permissions of the group and can also have permissions that exceed those of the group. Users and groups are managed on a server-by-server basis; users and groups defined on an Analytic Server exist for all applications and databases on the server. <BR><BR>Permissions granted to users and groups take precedence over minimum permissions granted at the application or database level. For more information about security permissions, see About Security and Permissions.<BR><BR>thank you very much for your time.

  • How do I disable editing of pages in author mode? User should not be able to edit content . Can this

    How do I disable editing of pages in author mode? User should not be able to edit content . Can this be customized on component basis?

    You have to remove modify rights for those users on that page. Component basis is possible but will create ACL complications. Please check http://dev.day.com/docs/en/cq/current/developing/components/boilerplates.html for that.
    Yogesh
    www.wemblog.com

  • How to know whether the Content Type at Library level is Inheriting Parent Content type or not Using Powershell?

    Hi,
    How to know whether the Content Type at Library level is Inheriting Parent Content type or not using Powershell?
    Is there any property for that? Or Do I need to compare the Content type Id's at Site collection level and Library level?
    Any help would be greatly appreciated.
    Thank you,
    AA.

    Hi Ashok,
    For a content type, there is an attribute called Inherits, the value of this attribute determines whether the content type inherits fields from its parent content type when it is created.
    If Inherits is TRUE, the child content type inherits all fields that are in the parent, including fields that users have added.
    If Inherits is FALSE or absent and the parent content type is a built-in type, the child content type inherits only the fields that were in the parent content type when SharePoint Foundation was
    installed. The child content type does not have any fields that users have added to the parent content type.
    More information, please refer to the link:
    https://msdn.microsoft.com/en-us/library/office/aa544268.aspx?f=255&MSPPError=-2147217396
    Best Regards,
    Wendy
    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]

  • Configure "Always hide forms document message bar" and "Do not show edit warnings" for all users?

    We need to do a mass deployment of Adobe Reader XI 11.0.3 with "Always hide forms document message bar" preference setting automatically set for every user so they do not have to go through the menu and set it manually.
    Is there a way to configure this for all users with the customization wizard or another method?
    We also need to do the same for "Do not show edit warnings"
    If these are registry keys, which registry keys set these options?

    Try http://www.adobe.com/devnet-docs/acrobatetk/tools/PrefRef/Windows/DocumentStatus.html?zoom _highlight=message#idkeyname_1_5647.
    If that doesn't work and there's a configuration item in the preferences UI, do this:
    Get regshot.
    Close everything but Acrobat/Reader.
    Take a reg shot.
    Configure the setting via the UI.
    Tak another reg shot.
    Compare the two.
    That process will give you your answer.
    If there is no corresponding pref in the UI, then you probably can't do it.
    Ben

  • IDocumentQuery.Execute() method throws user does not have edit permissions exception

    I'm trying to query a document folder for all of its containing documents. Its a basic query like this:
    IPortletContext PortletContext = PortletContextFactory.CreatePortletContext(Request,Response);IRemoteSession PTSession;PTSession = PortletContext.GetRemotePortalSession();IDocumentManager documentManager = PTSession.GetDocumentManager();
    IDocumentQuery documentQuery = documentManager.CreateQuery(FolderID); documentQuery.SetSortProperty(ObjectProperty.Name);IObjectQuery queryResults = documentQuery.Execute();
    When I'm logged into the portal as an administrator, everything works fine. However if I'm logged in as a "regular" user, I get this exception when calling the Execute() method:
    Plumtree.Remote.PRC.PortalException: Exception of type Plumtree.Remote.PRC.PortalException was thrown. ---> System.Web.Services.Protocols.SoapException: Server was unable to process request. --> Access denied: Current user does not have edit permission
    I'm sending the Login Token to the portlet. Now I've tried giving the user Edit rights on the document folder as well as Edit the Knowledge Directory rights in the Activity Manager, but neither gets rid of the exception. I'm not sure what other "Edit" permissions to check. I don't even see why the user would need "Edit" permission to anything in the first place since the Execute() method simply returns an IObjectQuery that doesn't have any ability to make changes to any objects. I know that I could use the SearchFactory interface, but I wanted the results to be real time. Any help would be much appreciated. Thanks!
    Jimmy

    The problem here is that the query is created with default settings to show unapproved documents -- only users with edit access can see unapproved documents. Add the bold line to your code and it will work.
    IDocumentManager docManager = prcSession.GetDocumentManager();IDocumentQuery docQuery = docManager.CreateQuery(iFolderID);docQuery.SetShowUnapproved(false);IObjectQuery queryResults = docQuery.Execute()

  • Hi, I have a Indesign user who inherited a PC with Indesign installed. Indesign works with old PC user profile but not the new user. Any ideas how I can resolve this?

    Hi, I have a Indesign user who inherited a PC with Indesign installed. Indesign works with old PC user profile but not the new user. Any ideas how I can resolve this?

    Question # 1 is what do you mean by "inherited"? Is this a case where the computer belonged to someone else? Your user would not be entitled to use a program licensed to someone else.

  • "Edit Content" feature not working

    A bit of background: I own and operate a meal planning service. I use a combination of MS Office (Word, Power Point, and Excel) and Acrobat XI Pro to create my meal plans. I create the template designs in MS Office, then I convert them to PDF in Acrobat Pro to add form fields, formulas, etc so my clients can customize their meal plans based on serving size and nutritional requirements. In Acrobat Pro, I use Edit Content feature to change non-customizable information (like recipe title, instructions etc.). This program has definitely has its drawbacks and is infuriating to use about 85% of the time, but I chose to stick with it because it's free and widely available to my clients.
    So here's my problem: I redesigned some of those templates in MS Office over the last few days, and tried to convert them to PDF as usual. Although I can add and edit form fields, the Edit Content feature no longer seems to be working. Acrobat will not highlight text or objects, nor will it allow me to add text. When I try to add text, the cursor blinks and moves, but the text field appears blank. I've double and triple checked fonts, colors, sizes, etc and nothing seems to be out of order.  All of the fonts and colors I use are embedded in my PDF document. I made sure I have the most updated version of Acrobat, and tried restarting the program and my computer multiple times. Nothing seems to work. I can still edit and add text on the PDF documents I created last week, but not on the documents I've created over the past 2 days.
    I'm working on Mac OSX (10.7.5) if that makes any difference. Any insight on this issue is much appreciated! I will try to call Adobe tech support in the meantime, but thought I'd put this question out here in case it might help anyone else. Thanks in advance.

    Just so everyone knows, I was on hold with Adobe tech support for ALMOST TWO HOURS despite the 2-minute wait time they estimated at the beginning of my call. I really don't know how else to describe how I feel, except:
    Clearly Adobe gives zero f*cks, even though I pay $40 per month for the creative cloud membership.
    Adobe, if you were a person (which you are, because now corporations are people in the USA), I would wish upon you the most severe case of herpes-slash-genital-rot the world has ever seen. I hope that the discomfort of this particular ailment results in your inability to participate in even the shortest meetings or conference calls, due to the fiery burning pain in your nether regions. Then perhaps maybe a more competent and ethical software company could assume your role in the marketplace.
    I will be especially amused if an Adherpe forum moderator has time to delete my post and/or ban me forever from the Adobe community, given that a tech support person has no time to answer my call. The plot thickens.
    Toodle-loo.
    PS: I am extremely sleep deprived, so I refuse to be held accountable for any offense taken to any of the statements set forth above.

  • When I load cds i get a message that states, "User not registered for online use." This problem has only begun since the new itunes update and is only a problem on my pc laptop.  Media content (track names, etc.) do not load.  Thanks

    When I load cds i get a message that states, "User not registered for online use." This problem has only begun since the new itunes update and is only a problem on my pc laptop.  Media content (track names, etc.) do not load.  Thanks

    See  Re: itunes 12 track names not found and user not registered for online use.
    tt2

  • Can not copy from or edit content in textarea in a hidden div

    I have a div with class 'hide' ,which set display to none, as a container to wrap a textarea in it.<br />
    After toggle hide to show that div, textarea is not editable and can not even copy content from it.<br />
    Is this a bug?<br />
    Could someone help to answer?<br />
    Thanks.
    <pre><nowiki><div class="container hide">
    <div class="inner-container">
    <div class="hd"></div>
    <div class="bd">
    <textarea rows="1" cols="42" class="txtarea">Content</textarea>
    </div>
    <div class="ft"></div>
    </div>
    </div></nowiki></pre>

    A good place to ask advice about web development is at the MozillaZine "Web Development/Standards Evangelism" forum.
    *http://forums.mozillazine.org/viewforum.php?f=25
    The helpers at that forum are more knowledgeable about web development issues.<br>
    You need to register at the MozillaZine forum site in order to post at that forum.

  • Could not find any content hosted eligible apps

    Hi....
    my X-code version is 5.0, IOS version is 7.0
    I created test user and test products in in app purchase option under my application in itunes connect. I want to display content for each test products when user buy my free products. For displaying content i followed the below process:
    Creating App Store Hosted Content:
               In order to have the App Store host your content, the content must first be put in a package.
    Notes:
               Before starting the steps below, login to iTunes Connect, create a "Free Subscription" in-app purchase, and select "Yes" for
    "Hosting Content with Apple" for that purchase.
    Creating Xcode In-App Purchase Content projects :
    1).Created a .txt file and .jpeg file
    2).Start by selecting File > New Project from the menu, and choosing In-App Purchase Content:
    3).Enter the Product Name and Company Identifier such that the Bundle Identifier matches the Product ID you entered in iTunes Connect for this product.
    4).Now you will have a blank In-App Purchase Content project. You can right-click and Add Files... or drag them into the Project Navigator. Ensure that the ContentVersion is correct (it should start at 1.0, but if you later choose to update your content, remember to increment it).
    This window shows Xcode with the content files included in the project and the plist entries visible in the main window:
    5).Once you have added all your content files you can save this project and edit it again later, or begin the upload process.
    Uploading .PKG Files :
    6).The easiest way to upload content packages is with the Xcode Archive Tool. Choose Product > Archive from the menu to begin:
    The content package will then appear in the archive  in new window. Notice the archive type and icon show this is an In-App Purchase Content Archive. Click Validate... to check our content package for errors without actually preforming the upload.
    7).Login with your iTunes Connect credentials:
     At step 7 when i go for validate the archive I'm getting the below error
    "Could not find any content hosted eligible apps"
    Please guide me why am getting the above error

    You are better of asking questions like this in the developer forums : https://devforums.apple.com/index.jspa

  • Help required please. "Itunes can not read the contents of my iphone"

    Greetings all,
    I know this question has been asked before and I apologize for asking again but all the solutions provided don't seam to work for me, can anyone help me please.
    I am receving the message: "Itunes can not read the contents of the iPhone. Go to the summary tab In iPhone Preferences and click restore torestore this Iphone to factory settings".
    Now a little about my iphone, Itunes and my laptop and what steps i havealready tried.
    I have an iPhone 4 running software 5.0
    My itunes version is 10.5.0.142
    I know these are not the most up to date versions but I have had this issue for almost 3 months now and updating the software back then was the first step I tried. I don’t believe updating to the latest will fix this issue as updating the last two times did nothing.
    Every so often after starting Itunes, The program will stop responding and will require the three finger death kill (CTRL, ALT, DELETE) to open task manager to end the task of Itunes. Once it shuts down, I restart the iTunes and it runs smoothly, apart from not reading my iPhone.
    When I run a diagnostic in itunes under the help tab, I get these fail messages:
    Network Connectivity test: Secure link to Itunes store fail
    Device connectivity test: Under support services: Itunes helper is not running. And under ports: No iPod, iPhone or iPad found.
    Device Sync test: No iPod touch, iPhone or iPad found.
    *See below for full diagnostic report*
    I have restored back to factory settings twice.
    I have shut down and restarted both my iPhone and laptop.
    I am running Windows 7 32-bit on my laptop.
    I am using ZoneAlarm as my fire wall, and have been disabling it when syncing my iPhone to prevent other error messages.
    The iPhone is plugged into a genuine Iphone USB cable and is plugged into a USB port not a USB hub on my laptop, I have tried plugging it into all 4 USB ports and this issue still persist. The Cable is less then 5 months old, is not frayed or damaged in any way, have also borrowed 2 other cables from friends and still the same issue.
    The iPhone does not even come up in windows explorer as a digital camera.
    The iPhone is NOT jailbroken
    I do not live close to a so called genius bar, however I have made the journey to them on 3 separate occasions last year when I first received my iPhone for a different issue, the so called genius's could not fix the problem so they just gave me a new (refurbished) iPhone, which did not extend my warranty. I will not be taking the iPhone back to them as I believe they can not resolve many issues, this is why I am reaching out to the power of the people in the wider apple community.
    I have read in other forums about ifunbox and other programs for jail broken iPhones to isolate folders “iTunesDB” and "iTunesCDB" and delete them. If this is the issue is there a way to access these files through windows explorer as my iphone is not jailbroken.
    I hope I have provided enough information and someone can help me fix this issue. If I have left anything out, please let me know. I thank everyone in advance for your patience and support.
    Thanks
    Hoggie27
    FULL DIAGNOSITC REPORT
    Microsoft Windows 7 Home Premium Edition Service Pack 1 (Build 7601)
    Hewlett-Packard HP Pavilion dv6 Notebook PC
    iTunes 10.5.0.142
    QuickTime not available
    FairPlay 1.13.35
    Apple Application Support 2.1.5
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 4.0.0.96
    Apple Mobile Device Driver 1.57.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.3.494
    Gracenote MusicID 1.9.3.106
    Gracenote Submit 1.9.3.136
    Gracenote DSP 1.9.3.44
    iTunes Serial Number 001BAD14XXXXEA78
    Current user is an administrator.
    The current local date and time is 2011-11-16 10:04:53.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is supported.
    Core Media is supported.
    Video Display Information
    NVIDIA, NVIDIA GeForce GT 230M 
    **** External Plug-ins Information ****
    No external plug-ins installed.
    The drive H: Vodafone  USB SCSI CD-ROM Rev  USB is a USB 1 device.
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name:    {97524DB0-B9DC-41DB-8AFA-0CE6938F7C95}
    Description:    PC
    IP Address:    (HAS BEEN REMOVED FOR PERSONAL REASONS)
    Subnet Mask:    255.255.255.255
    Default Gateway:    0.0.0.0
    DHCP Enabled:    No
    DHCP Server:   
    Lease Obtained:    Thu Jan 01 11:00:00 1970
    Lease Expires:    Thu Jan 01 11:00:00 1970
    DNS Servers:    10.143.147.147
            10.143.147.148
    Adapter Name:    {BFF0456E-DE42-4FEF-B1FA-1EA1C5EDEE42}
    Description:    Vodafone Mobile Broadband Network Adapter (ZTE)
    IP Address:    0.0.0.0
    Subnet Mask:    0.0.0.0
    Default Gateway:    0.0.0.0
    DHCP Enabled:    No
    DHCP Server:   
    Lease Obtained:    Thu Jan 01 11:00:00 1970
    Lease Expires:    Thu Jan 01 11:00:00 1970
    DNS Servers:   
    Adapter Name:    {D5511FFD-0CA8-4F62-B3CA-E90384FFCD03}
    Description:    Broadcom 43225 802.11b/g/n
    IP Address:    0.0.0.0
    Subnet Mask:    0.0.0.0
    Default Gateway:    0.0.0.0
    DHCP Enabled:    Yes
    DHCP Server:   
    Lease Obtained:    Thu Jan 01 11:00:00 1970
    Lease Expires:    Thu Jan 01 11:00:00 1970
    DNS Servers:   
    Active Connection:    PC
    Connected:    Yes
    Online:        Yes
    Using Modem:    Yes
    Using LAN:    No
    Using Proxy:    No
    SSL 3.0 Support:    Enabled
    TLS 1.0 Support:    Enabled
    Firewall Information
    Windows Firewall is on.
    iTunes is NOT enabled in Windows Firewall.
    ZoneAlarm Firewall is installed.
    Connection attempt to Apple web site was successful.
    Connection attempt to browsing iTunes Store was successful.
    Connection attempt to purchasing from iTunes Store was successful.
    Connection attempt to iPhone activation server was successful.
    Connection attempt to firmware update server was unsuccessful.
    The network connection timed out.
    Connection attempt to Gracenote server was successful.
    Last successful iTunes Store access was 2011-11-16 09:59:57.
    **** CD/DVD Drive Tests ****
    LowerFilters: Afc (1.0.0.2),
    UpperFilters: GEARAspiWDM (2.2.0.1),
    F: hp CDDVDW TS-L633N, Rev 0300
    Drive is empty.
    **** Device Connectivity Tests ****
    iPodService 10.5.0.142 is currently running.
    iTunesHelper is currently not running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    Universal Serial Bus Controllers:
    Intel(R) 5 Series/3400 Series Chipset Family USB Enhanced Host Controller - 3B34.  Device is working properly.
    Intel(R) 5 Series/3400 Series Chipset Family USB Enhanced Host Controller - 3B3C.  Device is working properly.
    FireWire (IEEE 1394) Host Controllers:
    1394 OHCI Compliant Host Controller.  Device is working properly.
    Most Recent Devices Not Currently Connected:
    iPhone 4 (GSM) running firmware version 5.0
    Serial Number:    85107XQLA4S
    **** Device Sync Tests ****
    No iPod, iPhone, or iPad found.
    < Edited By Host >

    Hi AM_Kidd.
    Thanks for your reply.
    I have done a complete uninstall and re install of iTunes and all related apple programs from my laptop through control panel, add remove programs and also by going through program files and deleting all tracers of any left over folders remove programs may have missed.
    My apologies for forgetting to add this in my original post.
    Thanks again

  • Hello! Really sorry! Originally this APP software free game, only peace of mind to let children play, but a recent credit card reconciliation only to find the charges and found that the game content is not completely free, content or Payplay games, childr

    Hello! Really sorry! Originally this APP software free game, only peace of mind to let children play, but a recent credit card reconciliation only to find the charges and found that the game content is not completely free, content or Payplay games, children do not understand the meaning, pressed by mistake to the game fee of options found APP software fees has been removed, the 3 pen order really is not a small amount, a small fortune in Taiwanthe burden, the normal person would not spend such fees to play mobile games, kids really are unintentional, Sorry! hope you can help me claim to cancel the game cost very grateful!
    PS: order number --- 1.MH****Z0J --- 2.MH****4QJ --- 3.MH****6NQ
    My English is not good, please forgive me.
    <Personal Information Edited By Host>

    These are user-to-user forums, you are not talking to Apple here - I've asked the hosts to remove your email address and phone number from your post.
    You can contact iTunes support via this page : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption
    To try and stop it happening again you can turn off in-app purchases on your phone via Settings > General > Restrictions > In-App Purchases 'off'

Maybe you are looking for

  • IPad freezing and shutting down after OS7 upgrade

    Does anyone else have an issue with the iPad suddenly shutting down.  I'm  finding that since the O.S. 7 update my iPad often freezes, is slow to open apps, and will often shut down to the apple icon screen ( like you're doing a full reboot).  I'm al

  • My Time machine has stopped backing up saying there are some read only files.

    My Time machine has stopped backing up and says that ther are some read only files preventing this. What steps do I need to take to fix it?

  • Cross Docking EWM

    Hi Experts, the chapter "Merchandise distribution cross-docking " of the EWM-Manual (EWM 7.0) says: "SAP ERP ... sends inbound and outbound delivery documents to EWM, which contain the process methods and the purchase order item as a reference. ... T

  • Problem With BAPI : BAPI_QUALNOT_CREATE

    Hi All, I am having Problem while creating notification using bapi bapi_qualnot_create. when i enter partner name in the notifpartner internal table of the bapi. bapi checks wheather the partner number entered is valid sap login or not and if not it

  • MPEG into IMovie

    Hi I've transferred my super 8 movies into DVD and from there into mpeg but imovie doesn't recognise them. I've got quicktime pro with the Mpeg 2 plug in but when I ask QT to export as QT movie it fails everytime. Does anyone know what I should do in