Organizing entries in link list shall not be possible for standard users

Hello,
how can I avoid that a standard user can organize the entries in the iView <i>Links List</i>?
That means the link 'Organize Entries' shall not be shown for them.
Only the content manager shall be able to organize.
Regards,
Susanne

I got the solution by myself:
In the KM repositories click on the context menue of /documents/links and choose 'Details'.
In the opened window choose Settings > Permissions and change the permission you like.

Similar Messages

  • Supplier shall not be provided for the purchasing organization

    Hi all,
    I've got a problem with the SRM7 in the assignment of the suppliers for the SC I get the error message: Supplier shall not be provided for the purchasing organization. The latest information I have already incorporated. Can anyone help?
    Thank you for your help
    Olaf

    Hi,
    If SC is created for one purchase organization; vendor must assigned to that purchase organization.
    First check have you maintained R/3 PurOrg & SRM PurOrg properly. When you transfer vendors R/3 PurOrg is assigned to corresponding SRM PurOrg.
    Use tcode: BBPGETVD to transfer vendors initially then use report BBP_VENDOR_SYNC to update all vendors.
    You will find where all the customizing can be done on this report.
    Path: SPRO->Tecnical Basic Settings->Make Settings for vendor synchronization
    Else you can check table: BBPM_BUT_FRG0061 for PurOrg & Vendor mapping. Don't forget to get BP of vendor from table: BUT000.
    You can refer SAP Note: 1298544-  Input of supplier data leads to an error message in 2nd step.
    Regards,
    yaniVy
    reward if helps

  • Reader not showing pdf with long file names in IE8 for standard user

    Hi,
    I have this problem for standard users, that is, not Admin level.  Admin level users have no problems.
    If a web site opens up a pdf file with java, usually in a new window, and the file name is very long (I haven't figured out how long, but visually long) then the reader plug-in won't work and opens a blank page.  If the file name is small then there is no problem, and reader opens the pdf without problem.
    Interestingly, if I edit the document name (say for example the link has something on the end like "&Doc_Type=Statement" which is obviously not part of the document name but part of the SQL used to find the document by the web page) then reader will open the file no problem.
    Again, this doesn't happen for Administrative level users.
    Any ideas on how to fix?

    I'll crosspost to the reader forum.
    Yes, reader works in all other situations.

  • List of all objects authorized for standard abap role

    Hi all,
    Can any body help me to get " List of all objects authorized for standard abap role "
    And List of all objects authorized for "admin role".
    Thanks
    Basu

    See the database security guide http://docs.oracle.com/cd/B28359_01/network.111/b28531/authorization.htm#BABFHBFH
    Finding Information About User Privileges and Roles
    This section discusses the system views that have the grant information.
    The tricky part of this is that because roles can be granted to other roles the data is hierarchical.
    So start with the grants made to the FDIREADR role. So referring to the doc above;
    select * from role_role_privs where role = 'FDIREADR'will list the roles granted to your role.
    You will want to look at ROLE_ROLE_PRIVS, ROLE_TAB_PRIVS and ROLE_SYS_PRIVS.
    I suggest you walk thru the views manually to see how the information is related. Then write a test script that queries the views for you.

  • Link List Explorer NOT Opening In A New Window

    Hi All,
    I am trying to force my KM linklist links to open in a new window and this is proving to be a hard feat!
    I have navigated to System Admin --> System Config --> Knowledge Management --> Content Management --> Configuration --> Content Management --> User Interface --> Settings --> Resource Renderer Settings --> Link List Resource Renderer.
    Within this area, I have changed the Target Window Type to "blank" and "fixed" amongst other options but it is not opening the new links in a blank window.
    Instead, it opens the KM folder in a new window and when I click on a link within that folder, it opens in a new portal window complete with Portal framework.
    All I want is for my links to open in a new blank window with no Portal framework.
    Any ideas?
    Thanks,
    Bim.

    Hi,
    It's known bug. this issue fixed in 11.1.1.7.0 (coming soon).
    bug 13852263 - ACTION LINKS - NAVIGATION TO BI REPORTS DOESN'T WORK ( OPEN IN NEW WINDOW)
    for now : to uncheck the "Open in New Window" checkbox and go to the detail report in the same Window.
    Note: this bug has been fixed by applying the patch 14003822 (u need to get the latest patch)
    Thanks
    Deva
    Edited by: Devarasu R on Feb 14, 2013 4:05 PM

  • Why LinkedList uses doubly linked list and not single link list

    Hi,
    Please help me to understand the concept behind java using doubly linked list for LinkedList and not single link list?
    Edited by: user4933866 on Jun 26, 2012 11:22 AM
    Edited by: user4933866 on Jun 26, 2012 11:25 AM
    Edited by: EJP on 27/06/2012 08:50: corrected title to agree with question

    EJP wrote:
    Could you help me with one real world use case where we need to traverse linklist and arraylist in backward direction other than printing the linklist or arraylist in reverse order. One example is that you might want to use it as a stack. For a very large (+very+ large) stack it would out-perform the Vector-based Stack in the API.The first thing that pops into my head is an undo/redo function for a text editor. Each edit action is dumped onto such a stack. Each time you hit CTRL+Z to undo an action you go back in the stack. Each time you hit CTRL+Y to redo the action you go forward again.

  • Is my code a Linked Lists or not?

    Hello everyone,
    [I hope I am in the right forum]
    I am trying to learn how to implement Linked Lists with Java. I have written a small code and I would appreceate it a lot if any one would be kind enough to check if this code is really a linked list.
    I tried to make a list with 3 nodes, with no helping methods for adding and removing nodes. Just a simple example. This is my code:
    public class myList{
         public static final long serialVersionUID = 24362462L;
         //node pointer important to define private, so not share same value
         private myList pointer;
         //node data
         private String nodeData;
    public static void main(String args[]){
    //Give memory to nodes
    myList Node1 = new myList();
    myList Node2 = new myList();
    myList Node3 = new myList();
    //Make Node1
    Node1.pointer = Node2;//give value to pointer
    Node1.nodeData = "Hi i am data contained in Node 1.";
    //Make Node2
    Node2.pointer = Node3;
    Node2.nodeData = "Hi i am data contained in Node 2.";
    //Make Node3
    Node3.pointer = null;
    Node3.nodeData = "Hi i am data contained in Node 3.";
    //Display Data
    System.out.println(Node1.nodeData);
    System.out.println(Node2.nodeData);
    System.out.println(Node3.nodeData);
    //Display pointers
    System.out.println("Hi this is Node2 ==============>:"+Node2);
    System.out.println("This is the value of pointer of Node1:"+Node1.pointer);
    System.out.println("Hi this is Node3===============>:"+Node3);
    System.out.println("This is the value of pointer of Node2:"+Node2.pointer);
    }//main
    }//class
    /***** OUTPUT ***** OUTPUT ***** OUTPUT ***** OUTPUT *****
    Hi i am data contained in Node 1.
    Hi i am data contained in Node 2.
    Hi i am data contained in Node 3.
    Hi this is Node2 ========================>:myList@16f0472
    This is the value of pointer of Node 1 ==>:myList@16f0472
    Hi this is Node3 ========================>:myList@18d107f
    This is the value of pointer of Node 2 ==>:myList@18d107f
    Press any key to continue...
    Thank you very much,
    JMelsi

    Happy to advise. Here we go. :)
    Firstly, you'll want to post your code in code tags. They make your code more legible, thus making it easier and therefore more likely that someone responds. ;)
    Second, it would be more appropriate for class names (such as "myList") to start with an upper-case letter (such as "MyList"). Additionally, the class in question does not represent a whole list but instead a node, so you might want to call it "MyListNode" or something similar.
    Strictly speaking, your code is definitely that of a linked list of nodes. For example, one could print all of the contents in your list with code like this:
    myList node = ...; // assign to the first node
    while (node!=null) // as long as there is a node
        System.out.println(node.nodeData); // print the data in this node
        node = node.pointer; // move on to the next node
    }Note that, in the above code, I didn't have to know how many nodes were in your list or have any references to them beforehand. :) That's the power in the data structure you're creating.
    Enjoy!

  • How to display all items titles from custom list with checkbox to select for each user

    Hi All,
    I have a requirement in a sharepoint 2013 development project.
    A custom list items will be created by admin with the following columns:
    Title
    Hyperlink
    User business unit (This column which is a metadata will be a userprofile property)
    In a page/form I have to display the list of titles with a check box based on each user business unit and each user will be allowed to check the list of titles and hit save. And then have to display the list chosen by the user in a webpart.
    If they want to modify their list they have to go to the page/form again and will uncheck the list.
    Am not sure whether I can achieve this through sharepoint out of box feature, I have not done any custom development.
    Please provide your valuable suggestions/ideas on this. Thanks for looking on this !!!

    Hi,                                                             
    Per my knowledge, there are no such OOTB features can meet your requirement, however, there is a workaround that if you can modify your requirement a bit.
    Based on your description, you want different users be able to select values from a list and generate a list own by them.
    If this is what you mean, we can do it like this:
    1. Create another list "Users" which stores the names of every users;
    2. Create a list "Result" which will be available for every user to add their own items, this list will have four Lookup columns and they look up to the "Users" list and the
    list you mentioned before;
    3. Users can add items into "Result" list by selecting the needed values from the other two list, then the items he/she created will be connected to them with the help of the
    Lookup column which looks up to the "Users" list.
    4. You can take use of the OOTB permission management of list to control the access of each item in the "Result" list, and it will be easier for you to manage and filter the
    information you needed.
    The links below about Lookup column for your reference:
    http://office.microsoft.com/en-us/sharepoint-server-help/create-list-relationships-by-using-unique-and-lookup-columns-HA101729901.aspx
    http://www.dummies.com/how-to/content/lookup-columns-in-sharepoint-2010.html
    Best regards
    Patrick Liang
    TechNet Community Support

  • JSP Custom tag not working correctly for multiple users

    I am doing some support work for an existing web system. When doing single user access (a custom tag is called within the JSP); the output of the Custom tag is fine. However, during multiple user access to the JSP, as I could see on the log files, 2 users access the custom tag at exactly the same time- the output of one of the users was incorrect. The custom tag btw, uses TreeMap, Stringbuffer and does not have a body, only attributes passed to it. It takes an input file and a Hashmap as input attributes and it sets a string in the page context which is later being used in the JSP. No error is logged, its just that the string produced(placed in the page context) is incorrect. This only happens when this tag is called at same time(when multiple users accessing the page) Has anyone encountered this problem? Is there a known pooling/thread problem with custom tags?

    in a servlet/jsp (a jsp is compiled into a servlet),
    the class atrributes are shared. only the
    variables declared in the doservice (doGet or doPost)
    method are threadsafe.
    post your jsp plzhere's the snippet of the jsp code:
    <%@ page language="java"
    errorPage="Error.jsp"
    autoFlush="false"
    buffer="128kb"
    import="java.text.*,
    java.math.BigDecimal,
    java.rmi.RemoteException,
    java.util.*,
    java.io.*,
    %>
    <%@ include file="Secure.jsp" %>
    // a set of request.getParameter are being called here
    HashMap myMap = new HashMap();
    myMap.put(xmlDPhoneNumber, dPhoneNumber);
    myMap.put(xmlDPhoneType, "D");
    myMap.put(xmlDPhoneExt, dExtension);
    myMap.put(xmlDPhoneDigits, dPhoneDigits);
    // other myMap putting of key values are called here
    %>
    <test:applyCustomerSearchValues id="resultXml" xmlTemplate="/xml/message/CustomerUpdateRequest.xml"
    xmlMap="<%= myMap %>" />
    <test:transformXMLString id="customerUpdateRequest"
    xmlString="<%= resultXml.toString() %>"
    xslFileName="/xsl/message/CustomerCreateRequest.xsl"
    paramMap="<%= PMap %>"/>
    now here's the thing: the xml produced by test:applyCustomerSearchValues is resultXml which is used in test:transformXMLString. I got no problem with the output of test:transformXMLString. I am sure that a phone number is being passed into the former as part of the HashMap key-value. However when test:applyCustomerSearchValues is called when 2 users access the jsp, it seems like the the first xml produced does not have the phone number in it - but the other has it. The xml is OK for both users, its just that the values of the HashMap do not seem to be passed correctly into the xml produced.
    --- here's the snippet of the log, the first httpWorkerThread-80-6 does not have the phone number, however the second one-httpWorkerThread-80-7 has the phone number. The first one should also have a phone number as in the start of the log, the number was listed, but as the system called the test:applyCustomerSearchValues tag, the number was not included. There are different phone numbers for the 2 users. The odd thing here is, the userID which is the 'LastUpdatedBy' element has been set correctly. The userID is being fetched from a session attribute while the phone number is fetched from a request parameter, both are being placed in the HashMap attribute passed to the custom tag.
    2007-06-05 10:55:41,954 DEBUG [httpWorkerThread-80-6] (?:?) - ApplyCustomerSearchValuesTag : String produced is :<Values><Customer>
    <Status>
         <CustomerType></CustomerType>
         <FirstContactDate>2007-06-05</FirstContactDate>
         <StatusFlags>
              <Fraud>N</Fraud>
              <BadCheck>N</BadCheck>
              <BadCredit>N</BadCredit>
              <DoNotMerge>N</DoNotMerge>
              <ARHoldRefundCheck>N</ARHoldRefundCheck>
         </StatusFlags>
         <LastUpdatedDateTime>2007-06-05 10:55:41</LastUpdatedDateTime>
         <LastUpdatedBy>5555</LastUpdatedBy>
         <OPAlertClass></OPAlertClass>
         <MailListStoreID></MailListStoreID>
         <OriginatingSource>CSA</OriginatingSource>
    </Status>
    <DPhone id="D">
         <DPhoneNumber></DPhoneNumber>
         <DPhoneDigits></DPhoneDigits>
         <DPhoneType></DPhoneType>
         <DExtension></DExtension>
         <DAreaCode></DAreaCode>
         <DPhoneCountryCode></DPhoneCountryCode>
    </DPhone>
    </Customer>
    </Values>
    2007-06-05 10:55:41,954 DEBUG [httpWorkerThread-80-7] (?:?) - ApplyCustomerSearchValuesTag : String produced is :<Values><Customer>
    <Status>
         <CustomerType>N</CustomerType>
         <FirstContactDate>2007-06-05</FirstContactDate>
         <StatusFlags>
              <Fraud>N</Fraud>
              <BadCheck>N</BadCheck>
              <BadCredit>N</BadCredit>
              <DoNotMerge>N</DoNotMerge>
              <ARHoldRefundCheck>N</ARHoldRefundCheck>
         </StatusFlags>
         <LastUpdatedDateTime>2007-06-05 10:55:41</LastUpdatedDateTime>
         <LastUpdatedBy>1840</LastUpdatedBy>
         <OPAlertClass></OPAlertClass>
         <MailListStoreID></MailListStoreID>
         <OriginatingSource>CSA</OriginatingSource>
    </Status>
    <DPhone id="D">
         <DPhoneNumber>(123) 123-4788</DPhoneNumber>
         <DPhoneDigits>1231234788</DPhoneDigits>
         <DPhoneType>D</DPhoneType>
         <DExtension></DExtension>
         <DAreaCode>123</DAreaCode>
         <DPhoneCountryCode>US</DPhoneCountryCode>
    </DPhone>
    </Customer>
    </Values>
    Message was edited by:
    Mutya

  • Object form is not getting displayed for few users

    Guys
    I have successfully implemented approval and provisining flows for a new resource in OIM 9.1.X. This resource has an object and a process form.
    It is working fine in production for few users. But for few users, the object form is not getting displayed to give the input while requesting this resource.
    Please let me know what might be the issue.

    Hi,
    Could you please check whether you have added ALL_USERS group as a resource administrator group in resource object definition?
    Add AL_USERS group as a resource administrators with the read access.
    We had similar issue and managed to resolved.
    Thanks,
    Pallavi Chaudhari

  • Some asset classes do not show up for a user in S_ALR_87011990

    Hi
    When the asset history sheet is run in S_ALR_87011990, a user is unable to display some asset classes in the report. This was referred to security team. They say that everything looks fine and nothing appears wrong for that user--roles and profiles ok etc.,. No worklists are being used and no variants are being used. No dynamic selections either.
    Can someone let me know why the user is unable to display some asset classes. Asset classes that the user is unable to display were created last year. Most users are able to display these asset classes in the report except this user.
    Please  help and provide some exact solution.
    Best wishes
    Rajmohan..

    Hi Rajmohan,
    most probably it is a authorization problem.
    Please compare the assets which are not shown with this user. It could be a cost center.
    regards Bernhard

  • RH10 - Search not producing results for some users

    I am using RH10 and the help system is stored on a sharepoint server (it was output as WebHelp)
    All users are able to access the system once we give them access, but when they go to search for topics, some get results and some don't. I believe it's related to java, but I can't find any documentation on what version of java is required for end users?
    I have already uninstalled and reinstalled RH (as read in some of the forums) with no changes for the end users.
    Are their other outputs that don't require java for searching?
    Anything else I can test?
    Other information that would be helpful to share?
    Thanks!
    Laura
    (Moved this from the wrong forum -- sorry :-) )

    We installed the patch and did a fresh upload and still have the same problems.
    I was finally able to get the error information, but it doesn't seem to help me with troubleshooting. Any other suggestions are certainly welcome.
    'Node' is undefined
    whfhost.js
    Line:3243
    (it says this a few times and then it adds char:2)
    That line of code is
    function _getWordMatchType( a_Word, a_Tile, a_nPosition, a_nOffset )
    The "waiting on" referred to in the next comment is the whfbody.thm file
    The error was moving so quickly in the bottom left corner that I wasn't able to capture it in full, but it was "waiting on wh... <something>" -- I couldn't ever see what the entire name of the file it was waiting on was. I have limited time with the end users and have not been able to recreate in my environment unfortunately (even though I am using a similar set up as some).
    If I search either the whfbody or whfhost in the message board archives, I come up with several instances where people have had similar issues, but there do not appear to be any fixes.
    I am able to search whether I have enabled mode checked or unchecked, so I am not sure that works for us either.
    Any other suggestions?
    Thanks,
    Laura

  • Finder is not available for standard user

    Hi,
    I recently installed OS X (10.8.2) from app store. We created "Data" folder and created few admin and non admin users. Granted access to both users to same folder. When admin logged off and standard user logged in, he could not find Finder. Repeated this with 8 standard users and Finder is not available for all 8 standard users. For 2 admin users Finder is available.
    We did not change any settings whatsoever, so not sure this behavier is by design or I am missing something.
    Please help
    Thanks in advance.

    Are you running OS X 10.8 client or Server (is Server.app installed)? If you are using OS X Server, are these local accounts or network accounts?
    What do you mean by "could not find Finder?" As in could not log in? Could not access this 'Data' folder in Finder?

  • MSS PCR form not pulling data for a user

    Hi All,
    On Organizational/Position Change Form(on Portal)  one of the user don't see the data in the dropdowns in this form.
    But for other users it is working just fine. The user not able to see the data in drop down can access other PCR's.
    I was wondering if there is a way we can test the form for the same user in the backend. If we can test him in the backend and the values are being populated for this user then there is a Portal problem.
    Can you please tell me how can we test this form for this user in the backend.
    Thanks in Advance,
    Joe

    hi ,
    You can put external breakpoint in the BADI method and try debugging it  by opening adobe form from
    portal.
    thanks ,
    sahiba

  • Not Generating Spool for my user id

    Initially when i run the transaction CO02 and printing the production order, spool was generating properly. so in next day due to some issues i changed the print program or adobe form then spool was not generating to my user id only, if i print with any other user id i am able to see the spool , so what is the problem for my user id, could any one help in this scenario.

    Hi,
    Adding to Ashwin's point there can be another possibility, go to tcode SU3 and in Defeaults tab check and compare the Spool control Section between your login and the other user login.
    Check if the check box 'Output immediatly' is selected or not.

Maybe you are looking for

  • My P55-A5200 won't start.

    I hadn't used my laptop in a few days and I went to turn it on this evening and the power light would turn on and the fan would run but nothing else turned on. I tried the 10 sec power button hold, the pin hole button in the back, and unplugging it.

  • Audio Editing Issues

    Hi Has anyone worked out something for these situations? 1: I have source footage with 2 tracks ... dual mono... wireless mic 1 and wireless mic 2.  I edit the clip into a Project (set up as Stereo out) and need to balance the two audio clips. I can

  • Third Party Books on Final Cut Studio

    I just did a search on Amazon for Final Cut Studio and came up with 51 books. I did another search on Final Cut Pro and came up with 266 books. I can't afford all these books, so which ones should I buy. I plan to purchase Final Cut Studio in August

  • USB on ibook G4

    I bought my ibook G4 in May, and I am not sure if it has usb 1 or USB 2.0. Does anyone know when they started putting 2.0 on the ibook or how I can find out what I have? (it doesn't mention what version I have in my system profile). thanks!

  • Can't get servlets to run on tomcat

    i have the proper entries in the web.xml and server.xml, so thats definately not the problem. however, when i do run my servlet, i get this error message: Error: 500 Location: /meetthestudent/servlet/helloworld Internal Servlet Error: java.lang.NullP