Limit the visiblity of a KM upload property

Hi All,
I have been able to add a NEW field to the folder,upload,text upload and html upload in KM.Thats workin fine.
Now when i see a folder in the KM content iview it shows the NEW field.
I would like to see this only in KM ->Documents rather than the entire KM.
is that possible?
nikhil

Hi,
For your myfolder you will have to define your own Layoutset.
In this layoutset use a collectionrenderer which shows your new property in its 'displayed properties' . Ofcourse you can duplicate the admincollection list renderer and extend it to show your property.
In KM to set Layoutset for folder:
Settings --> Presentation -->Select Profile
http://help.sap.com/saphelp_erp2005vp/helpdata/en/c2/6e1965a6b6234b91b3332bdf2d9e23/frameset.htm
http://help.sap.com/saphelp_erp2005vp/helpdata/en/63/5206ff8946ca40b849d6b3e4bb85fb/frameset.htm
http://help.sap.com/saphelp_erp2005vp/helpdata/en/0e/1affa0f8c47447a164998b60025aea/frameset.htm
Step:
1. Creating collectionrenderer which shows your property
2. Creating Layoutset and assign your collectionrenderer to it
3. Assing Layoutset for your Folder.
Hope this helps
Greetings,
Praveen Gudapati
[Points are always welcome for helpful answers]

Similar Messages

  • How can I limit the size of a file upload?

    I am uploading a file using a file reference using the code below.  I want to  limit the file size (bytes) of the uploaded file to 100k, so that a huge file won't crash the browser or my SWF.
    What's the best place in the following process to test this, and actually prevent the large file from being loaded?  Is that even possible?
    private function uploadImageBtn_clickHandler() : void {
         var arr:Array = [];
         arr.push(new FileFilter("Images", "*.gif;*.jpeg;*.jpg;*.png"));
         fileRef.browse(arr);
    private function fileReference_select(evt:Event):void {
         fileRef.load();
    private function fileReference_complete(event:Event):void {
         var loader:Loader = new Loader();
         loader.contentLoaderInfo.addEventListener(Event.COMPLETE, loader_complete);
         loader.loadBytes(fileRef.data);
    public function loader_complete (event:Event) : void {
         trace("Loader info = "+event.currentTarget.bytesLoaded); // file size in bytes
         var sourceBMP:Bitmap = event.currentTarget.loader.content as Bitmap;
         bgImage.source = sourceBMP; 

    Thank you. I just needed to be pointed in the right direction. After looking over this stuff, including FilePermission, I think this may give me what I was looking for. It will be a while before I get to implementing it or testing something like this, I'm just trying to get a grasp on all of the things I need to do and how to approach it.
    By doing this I can control how much filespace it can use.
    I can control CPU usage by monitoring for extra threads that don't belong and killing or settings the priority on it.
    Now I just need to think of something to monitor how much memory the plugin uses. I suppose I could gc, then store the current memory usage, then execute the plugin, gc again, and measure the size again. Does that sound like a reasonable way to estimate it's memory usage? I'm not looking for tiny changes, I just want to see large, substantial increases.

  • How to limit the visibility of records of product?

    Hello,
    I would like to restrict access to a range of products. Specifically, the company has different departments (different OD CRM users), and depending on the department to which it belongs is requested or not the visibility of the products.
    I tested with groups shared computer, books, and permission level roles, but the Product entity does not have any of these options ...
    In CRM On Demand Administration forum suggest me the following:
    "if you clicked on a weblink in the opportunity object which could bring up a new window via a custom web service program and in the new window you could do a search of products. The web service program could determine the user and department and control which products are available."
    I have the following doubts:
    1) How can I call a WS via a pop window?
    2) In a WS I can search products, but how can I control the access/visibility of products over CRM OD with the custom WS program? Because in the Product WS I think the only operations allowed are: Execute, Insert, Update and Delete records.
    Thank you and regards.

    Hi,
    If you just wanted to restrict the search resuilt when you select product on opportunity page, I dont think you have to use web services, my recommendation is using report with Javascripts;
    You can do a report with product name, department, and other fields you need. then you put javascripts in the report with Static Text function, this java script is to simulate a cascading picklist, you first select department, then you select prodcut, the listed products will be only within this department. and another function of this java scripts is after you select the product, the product will be auto-fill into product field on your opportunity or product revenue page.
    you also need a weblink to show this report on your opportunity or product revenue page, so that you can do the search/product select.
    you could also put a filter in the report, eg, the department which the current login use belongs to, then when the use select the product from the weblink, it will be only the products they shoud see.
    I havn't done this on product object, but I did this rescrition on other objects, it works. if you need some sample code of javascript, let me know I will send to you.
    Hope it is helpful.

  • How to limit the file types to be uploaded to KM folders?

    We need to restrict files uploaded to KM to the following types: *.pdf, *.doc, *.ppt, and *.xls.  Uploading the other file types will need to give user an error message. 
    1) Is there a configuration to satisfy this requirement?
    2) If not, what is the work-around? How to we achive this goal?       
    For example:
    1. Go to u2018Private Documents and Discussionsu2019 hyper link.
    2. Click on Owner.
    3. Click on 'Send E-mail' hyperlink
    4. Click on the 'Browse' button, selects a file (with .exe extension)
    5. Click on 'Open' button and 'Upload' button (would like to give user an error message at this point)
    Thank you so much for your help.  I have searched the forum but did not find any specific answers to this issue.

    Hello,
    I have the same problem, unfortunatelly there's no standard way to do this and developing
    custom repository services or upload commands may not attend totally my requirements.
    An idea is to create FSDB CM Repositories or to map external File System repositories for
    specifics needs, so once the documents are stored into a file system (windows in my case)
    it's simple to implement the organization's policy, be it file types, maximum folder size, clean-up routines, etc..
    However there are pros and cons, some services are not available and there are some restrictions,
    here's more detailed information: http://help.sap.com/saphelp_nw04/helpdata/en/62/468698a8e611d5993600508b6b8b11/frameset.htm
    As for the original folders on DB mode, we've been running KM detailed reports once a week
    and deleting the "illegal" files found
    kind regards,
    Rafael

  • How to limit visiblity of a new metadata property im KM?

    I was able to create a NEW metadata property
    plz note folder validity pattern(csv) was set to /document/myfolder/**
    Then i navigated to
    system configuration->cofigurtaion->content management->Global services->property meta structures and addded it to default properties structures.
    The above displays the NEW property in the folder,text file,html....upload area in 'myfolder'.
    This is working fine.
    Now to see this new property in the KM repository i navigated to
    system configuration->cofigurtaion->content management->User interface->settings->collectionrendererlist->admincollection list renderer->edit.
    I then added to the 'displayed properties' my NEW metadata propery.
    The Problem is that this NEW property is being displayed for every folder in KM repository.i want to limit it to 'myfolder' only.

    Hi,
    Please refer to this thread:
    https://forums.sdn.sap.com/thread.jspa?threadID=353368
    Greetings,
    Praveen Gudapati

  • Tracking the visible property of a movie clip

    Hello,
    I am trying to track the visible property of a movie clip as
    I need to perform a function when visible = true and another when
    visible =false
    I have tried to use a listener object but I can’t get
    it to work. Can you attach a listener object to listen for the
    visible property?
    I have also tried an IF statement inside the move clip but
    this only knows the state of the ._visible when it first runs.
    I have got it to work with an onEnterFrame function on a
    movie clip inside the one I want to know the property of but I
    don’t like using the onEnterFrame as it uses a lot or
    processor speed
    Is there an easy way to track the visible property of a
    movieclip???
    Thanks
    Sam.

    > thanks for the help but the watch() method doesn't work
    for getter/setter
    > properties. is ._visible a getter/setter property?
    I was afraid of that. Yes, _visible is a getter/setter, most
    properties are. Basically watch() only works on read-only
    properties and custom variables, which is a shame.
    So I don't know of any more elegant way than constantly
    checking to see if the value changed. Centralize it and maybe
    package it in a nice class and you might feel a little better about
    it...

  • Limit the filesize upload and resize a blob image in a report

    I'd like to know how to do both.. I have a file browse that uploads images to my application. It's called P34_IMG1. I would like to limit the file dimensions to a maximum of 200 x 300 px (but it can be less) and have a limit of 1MB in filesize.
    As well as the above, I'd like to know how to resize this image into a 'thumbnail' of sorts that shows the image much smaller in a report. The image shows but they are too big. How do I resize them?
    Thanks much
    -J

    oh I didn't see this reply, Tony. Sorry.
    No I don't have the image like that in the report, the report's query is like this:
    select * from (
    select      "LOTS"."LOTID" as "LOTID",
          "LOTS"."LOTNAME" as "LOTNAME",
          "LOTS"."ADD1" as "ADD1",
          "LOTS"."ADD2" as "ADD2",
          "LOTS"."ADD3" as "ADD3",
          "LOTS"."COUNTRY" as "COUNTRY",
          "LOTS"."MESSAGE" as "MESSAGE",
          "LOTS"."APPSTATUS" as "APPSTATUS",
          "LOTS"."SENDERMESSAGE" as "SENDERMESSAGE",
          "USERS"."USERNAME" as "USERNAME",
             dbms_lob.getlength("IMG1") as "IMG1"
    from      "USERS" "USERS",
          "LOTS" "LOTS"
    where   "LOTS"."USERID"="USERS"."USERID" AND (UPPER("USERS"."USERNAME") = UPPER (:APP_USER)))
    where (
    instr(upper("APPSTATUS"),upper(nvl(:P40_SEARCH,"APPSTATUS"))) > 0
    )and the IMG1 column in the report attributes has the number/date format as IMAGE:LOTS:IMG1:LOTID::::::inline:Download. So I don't know how to use this to resize the images, unfortunately.

  • HT204264 "If you exceed your iCloud storage limit, photos and videos won't upload to iCloud, and your library will no longer stay up to date across your devices."  Really?  Can't we support the existing "last 1k photos will be available in the cloud" mode

    "If you exceed your iCloud storage limit, photos and videos won't upload to iCloud, and your library will no longer stay up to date across your devices."  Really?  Can't we support the existing "last 1k photos will be available in the cloud" model?  If we don't do this, won't this kill auto-sync of new photos from iOS devices to our libraries on our Macs (if the Mac's Photos app has auto syncing with the cloud turned on) once we go over our 5gb limit?  I have 350GB of photos in my Mac Photos library - I am not going to pay $20/month for 1tb iCloud storage.  Please advise, Apple.  Thank you.

    I agree and am baffled by this also.  At first I was really excite about this new feature.  Mostly because I would be able to seamlessly sync videos along with my PhotoStream.  I just assumed there would be some systematic way to handle large libraries.  Like removing older files as the current PhotoStream does.  However, it appears that this new feature will simply 'shut down' when you reach your storage limit.  This just makes no sense to me.  I would have to double check, but I have all my photos and videos in iPhoto and stored on a 3 TB external hard drive and I think the full library is over 1 TB.  So, even if I was willing to pay $20 a month for photo syncing (which I am not) I couldn't do it because my library is too large.  Again I am just baffled why Apple cannot blend this new service with the existing PhotoSteam model.  My favorite aspect of PhotoSteam is that is uploads all my iPad and iPhone Photos to my Mac for permanent storage and it seems this is lost in the new version.

  • The ' VISIBLE' property of hierarchical tree

    Hi, all,
    I'm a new user of Forms6. When I buitld my first app for Oracle, I got one problem on hierarchical tree. The nodes all 'disappeared' if I changed the property 'VISIBLE'. For example, if I change the 'VISIBLE' from TRUE to FALSE and TRUE again, nothing there but a blank tree. Does any one can help me? Or is there any Build-in program unit like "Refresh"?
    Thank you.
    hao
    null

    unfortunately there is no "Refresh" built-in for Hierarchial trees
    Candace Stover
    Forms Product Management

  • Limit the search to description property

    Hello, we have a problem with TREX Search,
    we know that when a user enters a search term into the search field and starts the search, the system searches for the search term in the defined properties. Document contents, titles, and descriptions are also searched for the search term.
    We would like to limit the search to the <b>description</b> property (<u>we don't want that the index search for titles and document contents</u>).
    Is it possible?
    Best Regards
    Alessandro Tocco

    Hi,
    I have the same problem, i would like to limit the search at the titles of documents.
    Did you find an issue to resolve this problem?
    Thanks in advance,
    Xavier

  • How to use the visible property

    Hi all,
    Im trying to implement the page(view)which has 3 trays.
    Once the page is loaded ,I want to make only the first tray visible and other 2 trays should be invisible.
    Based on the users input on the 1 st tray, the 2nd or 3rd tray shud get enabled and visible to the user.
    Please let me know how to make the tray visibl after the user input.
    Regards,
    Nithya K

    Hi Nithya,
    Please create the context attribute for the visibilty type.  Once context attribute created,
    Select type <...> button >> Dictonary Simple Type >> Dictonary >> Local Dictonary >> type com.sap.ide.webdynpro.uielementdefinitions >> Visibility OR directly put type     com.sap.ide.webdynpro.uielementdefinitions.Visibility
    Then try to implement you logic for showing the 2nd or 3rd tray in the if loop. like
    if (<condition true>)
       wdContext.currentContextElement().set<your Attribute name>(WDVisibility.VISIBLE);
    else
       wdContext.currentContextElement().set<your Attribute name>(WDVisibility.NONE);  
    Then bind the visible properties in the Tray.
    Hope it helps
    Regards
    Arun

  • Why error when looping a sheets collection and setting the visible property?

    I get an error on line 5 when running the following code:
    1Sub ShowSheets(vSheets() As Variant)
    2
    3 Dim i As Long
    4 For i = LBound(vSheets, 1) To UBound(vSheets, 1)
    5 ThisWorkbook.Sheets(vSheets(i, 1)).Visible = xlSheetVisible
    6 Next i
    7
    8End Sub
    The error code I get is:
    Run-time error '-2147417848 (80010108)':
    Method 'Visible' of object '_Worksheet' failed
    I only get the error when at least one of the sheets is a chart. But the error does not occur when the chart object is looping. Instead it occurs when the first worksheet object after the chart object is looping.
    What is the cause of this error?

    Hi JP3O,
    >> only get the error when at least one of the sheets is a chart. But the error does not occur when the chart object is looping<<
    I am trying to reproduce this issue however failed. From the error message, it seems that the visible couldn't set when you call the sub.
    How the code was executed? Would you mind sharing more detail about this secnario?
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Is it possible to limit the number of remote panel connections to a vi?

    Hello,
    I have an application running on a RT PXI and I'm using remote panel to access it. My licence allows me to have multiple remote connections and it's ok as I sometimes need to open multiple remote panels at the same time.  However, I would like to limit the number of connections to 1 for a particular  VI.  Is it something that can be done?
    Regards,
    Patrick Lessnick 
    Solved!
    Go to Solution.

    Patrick:  If you right click on your target PXI system in the project exporer, select Properties>Web Server>Browser Access you can select who you let have access to your VIs.   Likewise, in the Visible VIs section of Web Services you can limit which of your VIs you want people to be able to see.
    If this isn't enough control, from your run time application on the PXI system you can write a startup VI (in parallel with your main application) to monitor the Remote Panel: Connections to Clients Property of the real time server.  Once this monitor application sees a connection you can take any number of actions to prevent more than one connection, deny access to specific IP ranges or what have you.
    I am assuming you are using LabVIEW 2009 and MAX 4.6.1 but it may apply to earlier editions.
    Hope this helps.
    Bill

  • How can I limit the vertical size of the plot legend?

    Hi all,
    in my program I use a waveform graph and its plot legend.
    My problem is that the vertical size of the plot legend increases out of my frame and screen if I add too many plots to the graph!!!!
    Is there a possibilty to limit the vertical size of the plot legend and/or to use a vertical scrollbar in the plot legend?
    I use LV 8.2.1 .
    Thanks
    daHans

    You can write to the "Active Plot" property node. The example given in the thread I linked to before shows using this. Did you take a look at that example?
    I'm only suggesting the alternative of an "Active Plot" control if you're trying to give the user the ability to manipulate one of the plots (like color, point style, etc). If you have a lot of plots, and the plot legend is too big, you can provide a numeric control where the user selects the plot, and then additional controls to set the properties for that plot. Not as intuitive as the plot legend, but if that's what you've gotta do, that's what you've gotta do. Attached is a simple example (LabVIEW 8.20).
    Attachments:
    plot.vi ‏21 KB

  • How we can limit the number of concurrent calls to a WCF service without use the Singleton pattern or without do the change in BizTalk Configuration file?

    How can we send only one message to a WCF service at a time? How we can limit the number of concurrent calls to a WCF service without use the Singleton pattern or without do the change in BizTalk Configuration file? Can we do it by Host throttling?

    Hi Pawan,
    You need to use WCF-Custom adapter and add the ServiceThrottlingBehavior service behavior to a WCF-Custom Locations.
    ServiceThrottlingBehavior.MaxConcurrentCalls - Gets or sets a value that specifies the maximum number of messages actively processing across a ServiceHost. The MaxConcurrentCalls property specifies the maximum number of messages actively
    processing across a ServiceHost object. Each channel can have one pending message that does not count against the value of MaxConcurrentCalls until WCF begins to process it.
    Follow MSDN-
    http://msdn.microsoft.com/en-us/library/ee377035%28BTS.10%29.aspx
    http://msdn.microsoft.com/en-us/library/system.servicemodel.description.servicethrottlingbehavior.maxconcurrentcalls.aspx
    I hope this helps.
    Rachit
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

Maybe you are looking for