Multiple Property Replacement - Inheritance

I have read the help for multiple property replacement.  We need to modify what I'd call a sub property instead of a property.  We need to modify the "Inheritance" from "Can be edited in Target Objects" to "Locked in Target Objects" in about 800 iViews.
Can this be done in an automated way?
Regards,
Diane

I found that Multiple Property Replacement can't work on the sub-property I'm going after.  I completed the task using XML.

Similar Messages

  • "Content Administration - Multiple Property Replacement" not working

    Hi,
    I am trying to change the value of a the property with ID "SupportedUserAgents" in all the iViews in my folder. I followed as it is stated in <http://help.sap.com/saphelp_nw04s/helpdata/en/44/ccf6bf687f3b9ae10000000a1553f6/content.htm> and changed the value of the property and the final report says that all the matches were replaced successfuly without any errors. But when I go back to any of the iViews and see the value of the property "SupportedUserAgents" I realise that the replacement did not happen. Am I missing something here?
    I want to add some more info to this. The value of the property "SupportedUserAgents" should be selected from a dropdown and the dropdown contains these values
    1) (MSIE, >=5.5, *) (Netscape, *, *) (Mozilla, *, *)
    2) (MSIE, >=5.5, *)
    3) (Netscape, *, *) (Mozilla, *, *)
    Now as stated in the above link, I am trying to replace the value of the property "SupportedUserAgents" to (,,*) which is not there in the dropdown list (the above 3 values). So is it correct to do it in for dropdown fields?
    Useful answers will be definitely rewarded
    Regards

    Hi SAP Fanatic,
    (1) Do you want to change the value in the dropdown box, or the actual value? I can change the actual value, but it will not appear in the dropdown -- -- Select – will appear (indicating no value) but in fact the value has been changed, which you can see in the PCD inspector.
    (2)  I used the Multiple Property tool also. Are you changing the value by putting in the value and changing it to a new value, or are you specifying the property ID and a new value? I did the second.
    Daniel
    P.S.: Will you reveal your secret identity?

  • NW70.SP17 - Multiple Property Replacement not working?

    We've just upgraded a portal environment to SP17.  When using the MPR tool, I get this error when finalizing the changes I want to make:
    Select at least one property to continue.
    The property replacement is never completed.
    Anyone else seeing this error?  This is pretty serious, as we use the MPR tool a lot when updating BI iViews after publishing.  To do the changes by hand will be extremely tedious, not to mention error prone.

    There is no note available, as far as I know.  The patch I received was directly from SAP Support.
    I would suggest contacting them to get the patch, as they requested that I not give the patch out myself.
    Sorry, wish I could be more helpful.

  • Use of multiple property nodes for GUI manipulation

    I have a LabVIEW 6.0.2 application where I'm using 14 different property nodes in the main loop. All of these have to do with GUI - hiding buttons when "X" isn't pressed, disabling and greying out controls if <0, popping one button on top of another depending on the mode of operation, etc, etc. While this works fine, the program is getting slow. I've noticed that using the old 2-D buttons works faster - things update faster and redraw quicker. However, more to the point, I once read that if you have to use a lot of Property Nodes like this, that you should bundle them into a sub-vi, thus replacing what would be Property Nodes with references. How does that make it faster?
    Richard

    Not sure if bundling them into a sub-vi by itself would make it faster. The nodes in the sub-vi would still have to access the user interface thread, and that's where the slow down comes from.
    When I use any property node, I put it in a case structure and only write to it when needed. You just need to be able to detect when the value being written is changed from last loop iteration. It's useless to constantly rewrite the same value (doesn't have to be the "value" property) to the node.
    Bundle them into a sub-vi and put the change detector, case structure and nodes in the sub-vi, this should help speed things up a bit. Assuming of course that the nodes are the slowdown. It may also help clean up the diagram a bit.
    Ed
    Ed Dickens - Certified LabVIEW Architect - DISTek Integration, Inc. - NI Certified Alliance Partner
    Using the Abort button to stop your VI is like using a tree to stop your car. It works, but there may be consequences.

  • Multiple values replacement path

    Hi All,
    I Have given multiple single values  for business area in selection screen,
    can i replace wich are enter in selection screen,
    i created text with replacement path variable on business area but it replacing only one value
    Any one please suggest me.
    Rgrds,
    smita

    Hi
    Any one Plz give me suggesion
    how can i replace multiple values in column

  • Multiple characters replaced in a string

    Hello,
    I have a column that contains phone numbers but all have different formats. Some are formatted like (xxx) xxx-xxxx, some like xxx.xxx.xxxx and some are like xxx xxx xxxx. I was wondering how in one sql statement I could remove the characters (). or a blank space so the formatting would just be xxxxxxxxxx.
    I know I can do multiple replace statements to do this but was wondering if there was a more elegant solution to this.
    Oracle 10g
    Thank you

    Hi,
    If you can list all the characters you want to remove, then TRANSLATE is great.
    TRANSLATE ( phone_txt
              , '9 .(-)'
              , '9'
              )The 2nd argument starts with one of the characters that you want to keep (it doesn't matter which one), followed by all the characters that you want to remove.
    The 3rd argument consists entirely of that one character you used to start the 2nd argument. That character will be "translated" to itself, and all the others will be translated to nothing (that is, removed).
    If you can only list the characters you want to keep, then REGEXP_REPLACE is good:
    REGEXP_REPLACE ( phone_txt
                   , '[^0-9]'
                   )

  • Creating cache for multiple property files run time/dynamically.

    Hi,
    I have a requirement, where in I need to create cache for each property file present in a folder at server side or in the lib or resources directory. Please help me how I can do this?
    Thanks.

    ok thank you.
    I follwed this method implementation:
    static HashMap<String, HashMap<Object, String>> cacheHolder = new HashMap<String, HashMap<Object, String>>();
         static HashMap<Object, String>[] cache = new HashMap[2];
         static Integer fileCount = 0;
         static int incrementSize = 2;
    public method1(Map<Object,String>map){
    File file = new File((new StringBuilder(
                             "ABC/XYZ/")).append(value)
                             .toString()); // where value is the file name returned from the external method
                   int newSize = existingMapLength+incrementSize;
                   if (someVal== null) {                    
                        synchronized (fileCount) {
                             int oldSize = cache.length;
                             if(fileCount==cache.length){
                                  HashMap[] oldData = new HashMap[oldSize];
                                  oldData = cache;                              
                                  cache = new HashMap[newSize];
                                  LOGGER.info("New Size added:==>"+cache.length);
                                  for(int i=0;i<oldSize;i++){                                   
                                       cache[i] = oldData;
                                  cache[fileCount] = readExternalPropertiesFile(file); // external method which returns the properties of the file in hashmap
                                  cacheHolder.put(value, cache[fileCount]);                    
                                  keys = cache[fileCount].keySet();
                             else{                         
                             cache[fileCount] = readPropertiesFile(file);
                             cacheHolder.put(value, cache[fileCount]);                    
                             keys = cache[fileCount].keySet();
                             someVal= cache[fileCount];
    fileCount = fileCount + 1;
    Please let me know if any improvemnets are possible.

  • Multiple property nodes

    Hi,
    I have about 10 or so numeric indicators that I modify their properties so I can change the background colors etc.  The problem is, these indicators are not bundled or anything, so I bascally have 10 different property nodes that I have to wire and it looks bad in the block diagram.  I was wondering if there is a way to bundle only the property nodes in the block diagram and apply the changes directly to the bundle so my code would be cleaner.  Hope my question is clear enough. BTW, the changes made to every indicator property nodes are the same.
    Thanks
    Yohan

    Attached is a vi and an image of the block diagram.
    Edit: The VI will not run as is, you need to wire something to the property node in order for it to run.
    Message Edited by Novatron on 06-23-2006 09:21 AM
    Message Edited by Novatron on 06-23-2006 09:22 AM
    Attachments:
    Properties.vi ‏11 KB
    Properties.jpg ‏55 KB

  • Multiple property files, or one large one

    I am just starting internationalization on a Java application, and am externalizing my Strings into property files. My question is: what is better, to store all the Strings in one large property file (making it easier to edit, and reduce duplicates) or to have a property file for each GUI Widow/Dialog etc. My concern with one large file is that there may be a performance hit?

    The java internalization tutorial tells you some of the advantages of using several resource bundles instead of one:
    [http://download.oracle.com/javase/tutorial/i18n/resbundle/prepare.html]
    You also can find this article helpful:
    [http://www.onyxbits.de/content/methods-handling-i18n-java]

  • REGEXP_REPLACE with multiple chr() replacements ...

    All,
    I am trying to use the regexp_replace function to force the replacement of a group of special characters in a string. Is it possible in the function to have a mapping like replacing the following:
    chr(150) with '-'
    chr(132) with '"'
    chr(146) with ''''
    I know I can wrap a replace function to take of all the conditions but I was wondering if I could use a single regexp_replace function to do the same thing. Also, I has to go across a string containing cr, lf, .... ie multi-line.
    Thanks In Advance,
    Tom

    Does this line throw an error
    :NEW.Data := translate(:NEW.data, chr(145),'"');
    {code}
    or what is the error you get and btw: what is your db version?                                                                                                                                                                                                                                                                                                                                               

  • "multiple" Property of the ListBox - Component

    At the tutorials we can find a good example how to use the multiple function of the ListBox.
    You have to use the "Bind to Data" Option to bind the ListBox to the "com.sun.rave.web.ui.model.Option" as an object.
    But how can I handle this if I need the "Bind to data" option to bind the ListBox to a DataProvider?
    Thx
    Message was edited by:
    Eluchil

    Hi There,
    The following tutorial shows you how to bind a drop down list to a dataprovider.
    http://developers.sun.com/prodtech/javatools/jscreator/learning/tutorials/2/databoundcomponents.html
    Hope this helps
    K

  • Multiple property value rows for a single user property

    I use user properties to collect information about utilization of functionality.
    My code sets properties in this way:
    StringTokenizer st = new StringTokenizer (countersList, ",");
    java.security.Principal pr = req.getUserPrincipal();
    String userName = pr != null ? pr.getName() : null;
    try
    ProfileWrapper profilewrapper = ProfileFactory.getProfile(userName,null);
    while (st.hasMoreElements())
    String counterId=st.nextToken();
    Long n = (Long) profilewrapper.getProperty("CounterUserProfile",counterId);
    if (n != null)
    n = new Long (n.longValue() + 1);
    else
    n = new Long (1);
    profilewrapper.setProperty("CounterUserProfile",counterId,n);
    catch (Exception e)
              e.printStackTrace();
    After some thousands access, looking in PROPERTY_VALUE table I found duplicated row
    for same counter (user specific).
    PROPERTY_KEY_ID ENTITY_ID MODIFIED_ LONG_VALUE PROPERTY_VALUE_ID
    PROPERTY_SET_NAME
    4008 28002 03-MAY-02 23 55678
    CounterUserProfile
    4008 28002 03-MAY-02 1 55680
    CounterUserProfile
    10002 22001 28-MAR-02 1 40017
    CounterUserProfile
    10002 22001 28-MAR-02 1 40018
    CounterUserProfile
    12001 22118 01-MAY-02 2 55448
    CounterUserProfile
    12001 22118 01-MAY-02 1 55449
    CounterUserProfile
    I use a single server instance with no clustering.
    Any solution?
    Thanks, Stefano

    Stefano,
    Please open a case with support, this looks like a bug in our code. They
    will collect your configuration information which should help isolate the
    problem.
    Thanks,
    Daniel Selman
    "Stefano Crespi" <[email protected]> wrote in message
    news:3cea49d4$[email protected]..
    >
    I use user properties to collect information about utilization offunctionality.
    My code sets properties in this way:
    StringTokenizer st = new StringTokenizer (countersList, ",");
    java.security.Principal pr = req.getUserPrincipal();
    String userName = pr != null ? pr.getName() : null;
    try
    ProfileWrapper profilewrapper =ProfileFactory.getProfile(userName,null);
    >
    while (st.hasMoreElements())
    String counterId=st.nextToken();
    Long n = (Long)profilewrapper.getProperty("CounterUserProfile",counterId);
    if (n != null)
    n = new Long (n.longValue() + 1);
    else
    n = new Long (1);
    profilewrapper.setProperty("CounterUserProfile",counterId,n);
    catch (Exception e)
    e.printStackTrace();
    After some thousands access, looking in PROPERTY_VALUE table I foundduplicated row
    for same counter (user specific).
    PROPERTY_KEY_ID ENTITY_ID MODIFIED_ LONG_VALUE PROPERTY_VALUE_ID
    PROPERTY_SET_NAME
    4008 28002 03-MAY-02 23 55678
    CounterUserProfile
    4008 28002 03-MAY-02 1 55680
    CounterUserProfile
    10002 22001 28-MAR-02 1 40017
    CounterUserProfile
    10002 22001 28-MAR-02 1 40018
    CounterUserProfile
    12001 22118 01-MAY-02 2 55448
    CounterUserProfile
    12001 22118 01-MAY-02 1 55449
    CounterUserProfile
    I use a single server instance with no clustering.
    Any solution?
    Thanks, Stefano

  • Uverse Internet Constant Intermittent Connectivity, and problem persists after multiple modem-replacement, plus field technicians cannot resolve problem

    P.S. And all this new technology is biggybacking on very old technology. the bottleneck my be in the old technology. 

    Elementalfascination wrote:
    ...Wired connection with SPEEDTEST at 43-47 mbps using 10g ethernet direct from modem. (Full package service BTW) via NVG589... Okay, I took this to mean that you were getting satisfactory preformance.  I misread and I apologize.  Your issues are with buffering of video streams and actual website performance, not raw download speed.Elementalfascination wrote:
    Is it possible that the U-Verse service just isn't reliable? ...Reliable means different things to different people.  One of the first components of reliablity would be "Do you remain in contact with the Internet at all times," versus "Does my modem lose connectivity all the time."  Via this metric, it would seem to be reliable.  Is this not so? A second metric would be "Is the measured download speed consistantly near what I pay for?"  Apparently it's reliable in this as well. A third metric would be "Does it consistantly work with all network applications."  Here is where you're experiencing an issue. To be fair to the Premise tech, he knows about the first issue and can do somethings about the second issue, but he doesn't have a clue about the third.  Similarly, a line tech can't help you with this, either.  And don't get me started about first level phone support. This deals with network traffic, peering, routing, buffering, etc.  You need a network tech.   Strangely enough, no consumer ISP makes access to this sort of tech readily available to the end user.  It's a 80/20 rule (more like 90/10 rule), most customers don't experience these sorts of issues and it doesn't make sense to staff to handle them as a matter of course. If you wish to work with an AT&T team that does have some knowledge of these sorts of issues and has access to more back end resources, then please click this U-verse Customer Service link to send a Private Message (PM) to the AT&T customer service team to help you resolve your situation. You can expect a reply via return PM (the blue envelope in the upper right hand corner of this site) in a business day or three.
    This is a group of U-verse service specialists who are knowledgeable about U-verse and will stay with your problem until the end (instead of forgetting about it when the phone hits the cradle). Speed things up by including your Billing Account Number, and the best time and way to reach you. Regarding your comment about Googling to see that this is a common problem... just for fun, repeat your search and substitute any other consumer ISP for AT&T and see what you get.  If you see a big difference, I'd be amazed.  Unless, of course, that ISP doesn't provide a forum like this for users to report such issues.  All ISP's have issues of some sort of another that some customers will experience. One more thing before I go.  Are your PC's connecting directly to the RG, or are you using some other intervening router?  

  • Force language for one specifc business package only

    Dear collegues,
    we have the requirement to force the language for one specific business package only. Other business packages should remain with multiple languages. So therefore I cannot force the language by user. I can force the language by i-view but that doesn't change the top level navigation. I cannot force it by workset or role.
    Any clue wether this is possible and how it could be done?
    Best regards
    Tim

    Hi,
    I would say that manual actions is the only way to do it...
    What I would do is:
    1. Multiple Property replacement (Portal funtionality) on all object in the BP structure
    2. Manual set the language on the remaining objects
    if that not works then as last resort you could...
    3. remove all languages that you do not want to use via, the PCDinspector
    Please not that its not best practice to change parameters on the main objects of a BP as updating the BP can result in overwriting your custom set proerties. It's alwayt better to make Deltalink copies first.
    SAP propagates the "content mirroring" functionality for it but I'm not a personal fan of it as it sets the inheritance of nested object not the way you would expect.
    Good luck!
    Benjamin Houttuin

  • Customize the layout set used when opening a folder in search result list?

    Hi,
    I have created a search result iView that uses a predefined search query to show a list of folders. If I click on a folder <i>(rnd:displayname(contentLink)</i>) its content is displayed in a new window. Here the layout set Consumer Explorer (default profile?) is used.
    I want to use a custom layout set in this window. How can I achieve this?
    Regards,
    Mario

    Hi Mario,
    here the answers:
    > <i>1. Develop an own UI Command where you can give
    > the LayoutSet as a parameter</i>.
    >
    > Do you know where I can find some code sample?
    You can either check the <a href="https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/Implementing%20Flexible%20UI%20One-Step-Screenflow.article">Implementing Flexible UI One-Step-Screenflow</a> tutorial by Thilo Brandt or search here on SDN for "UI Command implementation" examples.
    > <i>2. Create a Layout Profile with your own Layout
    > Set and define it as the Default Layout Profile.</i>
    >
    > How can I find out for which operations/standard
    > iViews in KM (copy, move, create link...) the default
    > layout is used to avoid surprises when changing the
    > default profile?
    Normally, as you can see in the above mentioned <a href="http://help.sap.com/saphelp_nw04/helpdata/en/25/59bb2eece725498427334e0e21b80c/content.htm">Priority of Settings</a>, whenever the KM Navigation component (com.sap.km.cm.navigation) is opened without a specific layout set the global default layout set is used. As you can give this parameters by different ways (as URL parameter, in the KM Navigation iView configuration, via OTH file definition, hardcoded or configured in the configuration of an UI Command, etc.) it is nearly impossible to find <b>all</b> situation where your users will get this default profile.
    The UI Commands (with selection) you mentioned like "copy","move","create_link" use the configured LayoutSet (ConsumerOnlyFolderSelector) from the KM Configuration (of the command).
    > <i>3. You can also create a Layout Profile and go to
    > the root folder(s) of the search on "Details" ->
    > "Settings" -> "Presentation" and select your profile
    > in the tab "Settings for all users".</i>
    >
    > I think it is to complex to change all existing KM
    > Navigation iViews to forced mode.
    >
    One idea would be to use the <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/0f/764b87dfb948fcb13fd7695e157892/content.htm">Multiple Property Replacement</a> feature by SAP.
    > Can you give me a hint on the other possibilities you
    > want to publish?
    Of course. One other possibility I have in mind is to work with OTH files. You might also search here on SDN to see how to use them for setting the layout set for specific folder paths.
    Hope this helps,
    Robert

Maybe you are looking for

  • Business roles for diffrent org positions

    Hi guys, I have an issue: I have an organization model: Org ABC-> Org A-> channel manager               -> Org B-> partner manager I assigned channel manager role to channal manager in org A but when i assign partner manager role in org B , it overwr

  • Firefox 3.6.16 won't keep the "custom settings for history", thus causing page-load issues - any clue how to make it "stick"?

    Ever since I updated to Firefox 3.6.x I am getting constant page-load errors on apps in Facebook. I've cleared the history, the cache, cookies... and will literally set it for the "custom history settings" in my tools/options/privacy tab, reload the

  • Deletion of compressed request in cube

    Hi All, Is there any way i can delete a compressed request in a cube and please keep mind that I also have other request in the cube there should not be deleted at any case as the source system of these requests is not connected to BW system now. Reg

  • Creating limit shopping cart using catalogs in SRM

    Hi, Can we create "limit shopping carts" in srm using catalogs or we can only use it for free text items? how do we integrate catalogs for use in "create limit item"? is it standard or required any customization? please explain. Thanks Deepu

  • Wi-fi certificate needed that is not on the preloaded list

    Just got my BB 8900, hoping for a solution to not being able to get a signal at my place of employement.  I thought there was a light at the end of the tunnel with UMA calling.  But when I tried to set up the wifi on the phone at work, the wireless n