How to make the following settings in KM-Repositories?

Hello,
in our Enterprise Portal, we use one KM-repository for several usergroups, that contains documents. One usergroup is the administrator group, which edits the files etc. and all other groups should only be able to read the documents.
For both grupus, we use the Layout "Tree List Preview Explorer".
I'd like to make the following restrictions in the indicated layout:
1.  Because we have deactivated the Portal Favorites for all users, the link "Add to Portal Favorites" should not be showed. How can I delete this menu item for all users in the menu bar "Folder" and in the right click mouse-menu? I already have deactivated the "Entry Point Provider for Favorites" but the link is indicated nevertheless.
2. I want to deactivate the menu bar "Folder" for all only-read user groups, so that it isn't longer indicated in the repository. Only for the administrator group, the menu bar "folder" should be indicated.
3. How can I deactivate the symbol to the "Context Menu" to the right of the folder-links for all users apart from the administrator group?
4. How can I blind out the columns "Rating" and "Annotations" for all users?
I hope you can help me,
Alexandra

Hi Alexandra,
first, welcome on SDN! About your question:
> we use the Layout "Tree List Preview Explorer".
I cannot find this, not on SP2 P32 (KM) nor on SP12 P1 (KM). Do you mean "ConsumerTreeListPreview"?! Or did you create some own named LayoutSet?
> the link "Add to Portal Favorites" should not be showed
1.) For the folder: Choose the corresponding CollectionRenderer (Consumer Menu). Choose the command group (ConsumerMenuGroup). Look out for the corresponding group (ConsumerFolderGroup), search for this, edit it, delete create_favorite_nodialog.
2.) For the items: Choose the corresponding resource renderer (ConsumerResourceRenderer). Choose the command group (DefaultResourceCommandGroup). Look out for the corresponding group (ResourceUserRelatedActionsGroup), search for this, edit it, delete create_favorite_nodialog.
> I want to deactivate the menu bar "Folder"
> for all only-read user groups
Right-dependent commands are not supported by standard means. You could implement your own command (a copy of com.sapportals.wcm.rendering.uicommand.UIGroupCommand) and implement the logic there. Or you could call the navigation iView through a proxy iView which sets the layoutset dynamically and provide two different layout sets (that's the way I would implement such a feature).
> How can I deactivate the symbol to the "Context Menu"
> to the right of the folder-links for all users apart
> from the administrator group?
See my last paragraph for the question how to differentiate.
To delete this, edit the ConsumerResourceRenderer and set Command Display to "off".
> How can I blind out the columns "Rating"
> and "Annotations" for all users?
Edit the ConsumerCollectionListRenderer and set Displayed Properties to "rnd:icon,rnd:displayname(contentLink)+rnd:action,contentlength,modified" (this is the setting of the base renderer ConsumerCollectionRenderer without the properties you want to remove).
ATTENTION: I explained all the settings on the original objects. I definitely suggest first to copy original objects (e.g. by an "Advanced Copy" of the corresponding LayoutSet) and then to modify these copies.
Hope it helps
Detlev
PS: Please consider rewarding points for helpful answers on SDN. Thanks in advance!

Similar Messages

  • How to make the following additions to the attached vi file?

    Dear all,
    after a great struggle and timely advise from dev we wrote this labview program for data acquistion.
    but there are couple of things need to be done yet and we tried a lot but we couldnt come up with a solution. i listed the two main required changes in the program and request all your experise to help me with this matter. please find the attached program and the changes required.
    thanks for your time. and any other suggestions that improves the program are welcome.
    many thanks.
    Rishe.
    Attachments:
    narrowband.vi ‏869 KB

    Hi Rishe,
    I admit that I did not take into account the DAQmx part of you vi (I simply assumed it was working).
    In my modified vi, I rather focussed on extracting the proper data from the array in a continuous mode. Basically I extract portions of the array, each of length 1000, cycling the offset from 0 to the maximum available (if this is still not clear to you, you may check the attached vi to to see how this works).
    According to your code, the program loop can finish only on two conditions:
    1) the STOP button is pressed
    OR
    2) there is an error in some DAQmx vi
    So, since you did not press the STOP button and more than 1000 data points are written, an error MUST occur in the DAQmx Read or Write.
    Unfortunately, I cannot help you very much about this, as I don't have a suitable hardware to do some tests nor enough experience in waveform generation to spot possible problems .
    Paolo
    Paolo
    LV 7.0, 7.1, 8.0.1, 2011
    Attachments:
    Example.vi ‏19 KB

  • How to make the following JOIN

    I have a table called STG_CALL. In it there are are 3 columns viz. acct_id, contact_id and call_type. If call type is 'ATTENDEE' or 'PROFESSIONAL' then need to join STG_CALL with table CONT_XREF ON CONTACT_ID. If call type is 'ACCOUNT' then need to join STG_CALL with SITE_XREF ON ACCT_ID.

    select ..
    from STG_CALL a,CONT_XREF b
    where a.call_type in ('ATTENDEE' , 'PROFESSIONAL' )
    and b.CONTACT_ID = a.contact_id
    union all
    select ..
    from STG_CALL a,SITE_XREF ACCT_ID
    where a.call_type not in ('ATTENDEE' , 'PROFESSIONAL' )
    and b.ACCT_ID= a.ACCT_ID

  • I cannot figure out how to make the text larger on an incoming email.  The finger method doesn't work and I cannot find any toolbar with which to do it.  I could find nothing in settings also.  Plese help and thank you.

    I cannot figure out how to make the text larger in a received email.  The finger method doesn't work and I can find no tool bar as I can for composing emails.  I can find nothing in settings.  Please help and thank you in advance.

    Hi there,
    Download a piece of software called TinkerTool - that might just solve your problem. I have used it myself to change the system fonts on my iMac. It is software and not an app.
    Good wishes,
    John.

  • How Can I make the following query faster

    Hi Guru
    I want your valuable suggestion to make the following query faster.I did not write all required columns list. I gave here all those columns where I have conditon like decode,case when,or subquery
    (SELECT CASE WHEN REPORTED_BY IS NULL THEN
              (SELECT INITCAP(EMP_NAME) FROM HR_EMP WHERE EMP_NO = M.EMP_NO_RADIO)
         ELSE (SELECT INITCAP(EMP_NAME) FROM HR_EMP WHERE EMP_NO = M.REPORTED_BY) END RADIOLOGIST_NAME,
         (SELECT TEAM_NAME FROM DC_TECHTEAMMST WHERE TEAM_NO = M.GROUP_NO) GROUP_NAME,
         CASE WHEN M.RESULT_ENTRY_LOCK_BY IS NOT NULL THEN 'R'
    WHEN M.REPORT_DONE = 'D' THEN 'D'
    WHEN M.REPORT_DONE = 'P' THEN 'P'
    WHEN M.REPORT_DONE = 'F' THEN 'F'
         WHEN NVL(M.IMG_CAPTURED,'X') NOT IN ('B','Y') OR M.QA_RESULT = 'F' THEN 'S'
    WHEN NVL(M.IMG_CAPTURED,'X') IN ('B','Y') AND NVL(M.QA_RESULT,'X') NOT IN ('B','P') THEN 'Q'
         wHEN NVL(M.IMG_CAPTURED,'X') IN ('B','Y') AND NVL(M.QA_RESULT,'X') IN ('B','P') THEN 'C'
    END STATUS,
         (SELECT DECODE(NVL(V.DELIVERY_STATUS,'N'),'E',3,'U',2,1)
              FROM FN_VOUCHERCHD V WHERE V.VOUCHER_NO = M.VOUCHER_NO AND V.ITEM_NO = M.TEST_NO) DELIVERY_STATUS,
         trunc((start_time-order_end)*24,0)||' hr'||':'||
         decode(length(trunc(to_char(MOD((M.start_time-M.order_end)*24,1)*60),0)),2,to_char(trunc(to_char(MOD((M.start_time-M.order_end)*24,1)*60),0))
              ,1,to_char('0'||trunc(to_char(MOD((M.start_time-M.order_end)*24,1)*60),0)))||' mi' duration_order_capture,
         DECODE(R.CONFIDENTIAL_PATIENT,'Y','*',NVL(R.NAME,R.name_lang_name||' '||R.name_lang_fname)) PAT_NAME,
         FNC_PATIENTAGE(R.REG_NO,'',R.CONFIDENTIAL_PATIENT) pat_age,
         DECODE(R.CONFIDENTIAL_PATIENT,'Y','*',R.PATIENT_SEX) PAT_SEX
    FROM DC_MODALITYAPPOINTMENT M,DC_TESTMST T,OP_REGISTRATION R
    WHERE M.ACCESSION_NO IS NOT NULL AND NVL(M.CANCEL_FLAG,'N') = 'N'
    AND (NVL(T.SP_GEN,'S') = 'S' OR NVL(M.DOC_REQ_GEN,'N') = 'Y')
    AND M.TEST_NO IS NOT NULL AND M.TEST_NO = T.TEST_NO AND M.REG_NO = R.REG_NO)
    How can I make the above query faster.
    Query condition or indexing whatever is preferable please guide me.
    The approximate data of tables
    DC_MODALITYAPPOINTMENT 2,000,000
    A lot of updating is going on some columns of this table.all columns are not in the select list, Insertion is happend in batch process by back-end trigger of another table.
    Primary key based one column,
    OP_REGISTRATION 500,000
    Daily insertion on this table around 500 records,updation is not much.
    Primary key based one column 'reg_no'
    DC_TESTMST
    Total records of this table not more than 1500.This is setup table. Insertion and updation is not much on this table also
    I have to create a view based on this query .
    and I have to create another view to serve another purpose.
    In the 2nd view I need this query as well as I need another query by using union all operator based on a table(dc_oldresult)
    which have 1,600,000 records.There is no DML on this table
    SELECT      NVL((SELECT USER_DEFINE_TEST_NO FROM DC_TESTMST WHERE TEST_NO = SV_ID AND ROWNUM = 1 ),SV_ID) USER_D_EXAM_NO,
    (SELECT TEST_TYPE FROM DC_TESTMST WHERE TEST_NO = SV_ID AND ROWNUM = 1 ) EXAM_TYPE,
         NVL((SELECT TEST_NAME FROM DC_TESTMST WHERE TEST_NO = SV_ID AND ROWNUM = 1),'Exam Code: '||sv_id) EXAM_NAME,
         (SELECT PAT_NAME FROM OP_REGISTRATION WHERE REG_NO = HN) PATIENT_NAME,
         (SELECT PAT_AGE FROM OP_REGISTRATION WHERE REG_NO = HN) PATIENT_AGE,
         (SELECT PAT_SEX FROM OP_REGISTRATION WHERE REG_NO = HN) PATIENT_GENDER
    FROM DC_OLDRESULT
    WHERE HN IS NOT NULL AND SV_ID IS NOT NULL AND UPPER(ACTIVE) = 'TRUE'
    Should I make join DC_OLDRESULT, OP_REGISTRATION and DC_TESTMST? or The eixisting subquery is better?
    I use OP_REGISTRATION and DC_TESTMST in both query
    Thanks in advance
    Mokarem

    When your query takes too long ...

  • How to keep the Sonogram settings and make them "Sticky"?

    I am a Forensic Audio Examiner and would love to use Soundtrack Pro. Does anyone know how to keep the Sonogram settings and make them "Sticky" so you don't have to reset it every time you open up the project?
    Also the Sonogram loses it's frequency range settings while changing the zoom.
    Where is the feedback link for this application?
    Thanks

    are you talking about the spectrum analysis?

  • Has anyone figured out how to make the Yamaha 01V96i mixer work with Logic 9.1.8

    Has anyone figured out how to make the Yamaha 01V96i mixer work with Logic 9.1.8 as a control surface ?

    In YAMAHA01v96i:
    Go to DIO/SETUP select Generic DAW. Go to MIDI settings page and set the desired port (personally I use Number 1), Select the same audio frequency you use in your DAW (I use 44.1KhZ)...at this point You should save a scene in you 01V96i to avoid to repeat all the procedure again.
    Open studio manager, go to patch and set the input port from 17 to 32 respectively to USB1-USB16 (this will give you the return from you DAW to the 01v96i
    Save again the scene overwriting the old one.
    in LOGIC
    Click on preferences, select Audio then select 01v96i, then click on control surface and select Mackie design Baby HUI and in the midi session set the same port that you've been setting on the Yamaha 01V96i (Port 1 if you follow this example).
    That's more or less it.
    It worked for me...so far

  • How to make the servo motor to move in steps of set degrees and stop

    how to make the servo motor to move in steps of set degrees and stop

    Hi,
    I think the following document would be a good starting place: NI Developer Zone Tutorial: Single Axis Moves It includes links to several example programs that you may find useful for your application. Keep in mind that there are many motion examples that ship with LabVIEW as well.
    I strongly recommend that you check out the following documents as well:
    NI Developer Zone Tutorial: Simple Point to Point Motion
    NI Dev
    eloper Zone Tutorial: Hands-On Motion
    NI Developer Zone Tutorial: Axis Settings for Motion Controllers
    These tutorials will help give you a good foundation for understanding motion control systems.
    Best wishes!
    Dawna P.
    Applications Engineer
    National Instruments

  • How to change the security settings of tomcat5.0

    hi i am new to servlets. i am using tomcat5.0 to run my servlets.i have created two web applications under webapps directorywith the names ourwa and new ourwa.as part of ourwa i have developed a servlet with name Caller that includes another servlet named Calle of newourwa. to do this i got the Servlet Context object newourwa with the code below
    ServletContext application=getServletContext( );
    ServletContext newapplication=getContext("/newourwa" );
    and i included Calle servlet using this newApplication with the code below
    RequestDispatcher rd=newapplication.getRequestDispatcher("/calle");
    rd.include(request,response);
    i am not getting the ServletContext object of newourwa. so i am getting null pointer exception while running the servlet Caller.
    i read the documentation on servlet context inteface.there is a method with the name get Context( ).in this method they clearly specified that "in a security conscious environment this method returns null".
    please help me by giving answers to the following questions:
    1)wat is the alternative to dispatch the request from one application to another application?
    2)how to change the seurity settings of tomcat5.0?
    thanks.

    There has been a change in the Java security settings, see:
    *http://kb.mozillazine.org/Java#Java_security_prompts
    *"What should I do when I see a security prompt from Java?":<br>http://www.java.com/en/download/help/appsecuritydialogs.xml
    If you visit a website regularly then a possible workaround is to add the URL to the Java Exceptions Site List, see:
    *"Why are Java applications blocked by your security settings?":<br>http://www.java.com/en/download/help/java_blocked.xml
    *"How can I configure the Exception Site List?":<br>http://www.java.com/en/download/faq/exception_sitelist.xml

  • How to make the GL account discription possible in FAGLL03 line item display?

    Dear Experts,
        Could you tell me how to make the GL account discription possible in FAGLL03 line item display?
        I checked the layout, there is no account discription.
        How should I do?
    Thanks!
    Xinling Zhang

    Hi
    One you execute FAGLL03, go to Settings>Layout>Current Header Rows
    You can add some predefine characteristics here.
    I am not sure why the hyperlink is not working at your end. But you can search the SDN for special fields in FAGLL03 and you can get lot of posts for this document.
    Regards
    Sanil Bhandari

  • How to make the diagonal line in the swing table cell?

    Hi all,
    How to make the diagonal line in the swing table cell just like the link below?
    http://61.132.17.188/webber/table.gif

    One improvement.. To get a line that is neat, use a bit of Graphics2D
        public void paintComponent(java.awt.Graphics g)
            int w = getSize().width;
            int h = getSize().height;
            // draw a line between (0,0) and (w,h)  
            g.setColor(getForeground());
            if (strTop == null)
                strTop = "  ";
            if (strBottom == null)
                strBottom = "  ";
                java.awt.Graphics2D g2 = (java.awt.Graphics2D)g;
              g2.setRenderingHint(java.awt.RenderingHints.KEY_ANTIALIASING,java.awt.RenderingHints.VALUE_ANTIALIAS_ON);
              //g2.setStroke(new java.awt.BasicStroke(14.0f));
            g.drawLine(0, 0, w, h);
            //the following lines will draw the two strings,
            //one above the top of the line and the above below it.     
            g2.drawString(strTop, (w/2)+2, (h/2)-2);
            g2.drawString(strBottom, 2, (h / 2) + 2);
            //the x,y for drawString are only based on assumption.   //do necessary changes to suit ur needs.
        }Then create a TableCellRenderer and set it to the Table Header for ur table's 1st row.....
    Cheers

  • How to Make the Shatter Effect Travel Outside the Original Comp

    Hey guys,
    So I'm trying to shatter a jpg image that I imported into After Effects 5.5, all is going well with the look, but I'm having a problem.  The shatter has the pieces floating upward as intended, but the pieces are disappearing at the border of the image. It would appear the image itself bounds the effect so that pieces cannot float beyond into the remainder of the composition area.
    Is there a way to make it so the pieces can float out beyond where the image is? Thanks in advace.

    Is this the effect you're trying to achieve? 
    If so, it was created by scaling down a red solid and pre-comping it using the following settings.
    Then go back to your original composition and apply your shatter effect to the pre-comp.

  • HT201270 MORNING COMMUNITY, anyone know how to make the i4s forget a network - when the device won't give you that option?

    MORNING COMMUNITY, anyone know how to make the i4s forget a network - when the device won't give you that option?

    if you dont have the options to forget network you can reset your network settings, but than the device forget all networks
    settings > general > reset > reset network settings

  • Apex 3 + BI Publisher - how to make the most of it?

    Hi there
    For evaluation purposes, I have downloaded and installed the standalone version of BI Publisher 10.1.3.3.2 in my machine. I modified the Apex settings to use BIP instead of Apache FOP that I was using before.
    All is working fine. When I click the Print link, I get the a PDF file.
    But the problem is exactly this: all is working fine... as before! I cannot see any obvious advantage of using BIP instead of FOP. I cannot see any new property that I can set or anything like this.
    So, what new features are available to me in this new scenario? How to make the most of BIP and Apex? Is it something that I need to do on the BIP side rather than in Apex side? I need to justify the cost of BIP... ;)
    Any advice will be welcome...
    Cheers,
    Luis

    Hi Luis,
    Difficult question to answer in the forums, since it's very much a 'visual wow' factor seeing the BIP integration in action.
    However, going into marketting-mode for a moment (please excuse me, I don't do it often!), APEX Evangelists are holding some advanced APEX Training in London in March in which Dimitri Gielis will be doing a masterclass session in APEX/BIP and FOP integration (amongst many other things).
    Here's a direct link to the training for more information -
    http://eurotraining.apex-evangelists.com
    Like I say, it's a difficult question to answer in the forum, however just sitting and watching someone who knows their way around the products is usually enough to provide a pretty convincing argument to management on why that big BIP fee might be justified!
    Hope this helps,
    John.
    http://jes.blogs.shellprompt.net
    http://apex-evangelists.com

  • JLabel in JTextPane - how to make the JLabel be highlightable

    Hi,
    This follows on from this post :
    http://forum.java.sun.com/thread.jspa?threadID=741036&tstart=0
    I'm inserting a JLabel into a JTextPane, and want it to look like the other text there. However when you select the text, the JLabels don't have the highlight painted on them. Does anyone know how to make the highlight be painted over the label?
    I've tried looking at the Highlighter, HighlightPainter classes but as yet no joy.
    thanks a lot,
    Tom

    If I understand what you're after you may find the following will achieve it:
    ((DefaultHighlighter)textPane.getHighlighter()).setDrawsLayeredHighlights(false);Don't ask me why, though!!
    Hope this helps.

Maybe you are looking for

  • AIR3.5 for iOS & f4v & iPad, Error #2044: Unhandled NetStatusEvent

    Hello, Now, I have to try to play the video on iPad2. The video file is f4v. But this error occurs Error #2044: Unhandled NetStatusEvent:. level=error, code=NetStream.Play.StreamNotFound This is my environment Flash CS6 AIR3.5 iPad2 iOS6 Use StageVid

  • ITunes store try to open closes iTunes altogether

    I recently installed iTunes on my computer and have had one GIANT problem from the beginning as soon as I open the iTunes store it tries to load and then CLOSES ITUNES ALTOGETHER!!! it's so aggrivating I was wondering if anyone could help me.

  • Change sort order in line graph

    Sorry, my mistake ! In one of the ColLabels i had placed the xsl:sort line ABOVE the xsl:for-each. So, now it is working. In a line graph I need to change the sort order of the elements in my XML file. I need the elements to be sorted by month number

  • No refund of money owed yet from final bill

    Hi, I recieved a final bill and am owed money.  The billing department over the phone was of no help.  All equipment has been returned and accounted for.  Can someone please work with me to process the money owed.

  • I'm having issues in Adobe Captivate 7 with the animated red circle.

    I use it in 6 different slides, each slide is identical, except for the audio and the location of the animated red circle.  Two of the slides play automatically when entering, as I would like them to.  The animated red circle appears after a short pe