"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?

Similar Messages

  • 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.

  • Content query web part is not working after chaning the DNS entry

    Hi all,
    We have a content query web part in the sharepoint site but it is not working after changing the DNS Entry for the web site ipaddress from one server to other . But it is working fine on the server, if we try to access the site from other system content
    quey server its not working fine and its giving error message as bellow.
    Unable to display this Web Part. To troubleshoot the problem, open this Web page in a Microsoft SharePoint Foundation-compatible HTML editor such as Microsoft SharePoint Designer. If the problem persists, contact your Web server administrator.
    Can anyone help me to fix this issue please.

    I have custom XSLT . But it is working fine before changing the dns entry as soon as we change the DNS entry the content quey web part is not working. I tried to delete the content query web part and add it once again to the page, As soon as content query
    web part is added to the page the fallowing error message is displayed.
    Unable to display this Web Part. To troubleshoot the problem, open this Web page in a Microsoft SharePoint Foundation-compatible HTML editor such as Microsoft SharePoint Designer. If the problem persists, contact your Web server administrator.
    Can anyone help me to fix this issue please.

  • 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.

  • Hello, the 'Save As' dialog box used to allow the backspace button to go up one level in the directory when the focus is in the folder contents box but it does not work any more, please help.

    Hello, the 'Save As' dialog box used to allow the backspace button to go up one level in the directory when the focus is in the folder contents box but it does not work any more, please help. BTW the same 'Save As' dialog in other applications still allow the backspace button to go up one level in the directory.

    cor-el,
    I kept forgetting and procrastinating about following your instructions, since I have internet access only for limited amounts of time and usually I am busy with important tasks when I am.
    Out of the blue, the problem corrected itself (the Save As box started to open full screen, then shrunk down to a normal size and the edges can now be dragged to a custom size).
    Even the copy and paste problem in the filenaming area seems to have been less troublesome lately even though there have been no updates to Firefox in a few weeks.
    Even though I marked the solution as not helpful, the problem has in fact been resolved. I will save the solution instructions in case the issue returns.

  • Multiple delete is not working.

    Hi,
    Multiple delete is not working. Please find my backend bean code. Please let me know the issue in my code.
    Table:
    <af:table value="#{bindings.CmProcessParamValueView13.collectionModel}"
    var="row"
    rows="#{bindings.CmProcessParamValueView13.rangeSize}"
    emptyText="#{bindings.CmProcessParamValueView13.viewable ? 'No data to display.' : 'Access Denied.'}"
    fetchSize="#{bindings.CmProcessParamValueView13.rangeSize}"
    rowBandingInterval="1"
    selectedRowKeys="#{bindings.CmProcessParamValueView13.collectionModel.selectedRow}"
    selectionListener="#{bindings.CmProcessParamValueView13.collectionModel.makeCurrent}"
    rowSelection="multiple"
    binding="#{backingBeanScope.backing_app_RunCalcPage.t1}"
    id="t1" width="720px" inlineStyle="height:140px;" partialTriggers="cb6 cb3"
    filterVisible="true" filterModel="#{bindings.CmProcessParamValueView13.queryDescriptor}" >
    <af:column sortProperty="ParamValue7"
    sortable="true" width="690"
    headerText="Comm Type"
    rowHeader="unstyled"
    id="c2" align="left" filterable="true">
    <af:outputText value="#{row.ParamValue7}"
    id="ot4"/>
    </af:column>
    </af:table>
    Backing Bean Delete Code:
    RowKeySet rowKeySet = (RowKeySet)this.t1.getSelectedRowKeys();
    CollectionModel cm = (CollectionModel)this.t1.getValue();
    System.out.println("RowKeySet is: "+ rowKeySet.getSize());
    for (Object facesTreeRowKey : rowKeySet) {
    cm.setRowKey(facesTreeRowKey);
    JUCtrlHierNodeBinding rowData =
    (JUCtrlHierNodeBinding)cm.getRowData();
    System.out.println("RowData is : "+rowData.getAttribute("ParamValue7"));
    rowData.getRow().remove();
    Thanks.

    Issue is resolved...
    Solution is,
    Remove selectionListener and selectedKey attributes from the table.
    Delete code is:
    DCBindingContainer dcBindings =
    (DCBindingContainer)getBindings();
    DCIteratorBinding dcIterator =
    dcBindings.findIteratorBinding("Iterator...");
    RowSetIterator rs = dcIterator.getRowSetIterator();
    RowKeySet rks = this.t1.getSelectedRowKeys();
    Iterator rksIter = rks.iterator();
    while (rksIter.hasNext()) {
    List l = (List) rksIter.next();
    Key key = (Key)l.get(0);
    Row row = rs.getRow(key);
    if(row != null)
    row.remove();
    }

  • My apple tv, all of a sudden, is no longer able to connect to my computer.  I have restarted EVERYTHING, multiple times, still not working.

    My apple tv, all of a sudden, is no longer able to connect to my computer.  I have restarted EVERYTHING, multiple times, still not working.

    Welcome to the Apple Community.
    Check your store location is set correctly, if this doesn't help, try restarting the Apple TV by removing ALL the cables for a 30 seconds.

  • Portal Content Studio - mouse button does not work anymore

    if you use the portal content studio
    content-administration > portal-content
    you can configure the portal objects by browsing them and clicking the right mouse button.
    That worked but now the mouse button doesn't work - left mouse button works as expected (with left mouse button one can navigate through the objects, iViews, working sets, etc...).
    Right mouse button does nothing, portal objects could not be edited. Of course, the mouse is Ok.
    Is this strange error known?
    How to avoid it?
    Is there a possibility to reset this application, so it restarts/re-initializes correctly?
    Even a restart of SAP NetWeaver didn't help.
    Or can one use another method to perform an action instead of the right mouse button?

    reason were endorsed libs in the jre

  • Pda cursor position property does not work

    Hi!
    I have a problem with cursor positionX propery on PDA.
    I use PDA Module 8.2 and Windows Mobile 5 OS on PocketPC.
    Actually problem is only when I try to get value of two cursors, it return the same value for both cursors (you can test it with attached VI), but when I set values it work fine.
    I have also worked with PDA Module 8.0.1 in past and I remember that get cursor position value worked, so I have no idea why it doesn't work in newer version.
    Thanks,
    andrej
    Attachments:
    cursor test.vi ‏21 KB

    Hello andrej,
    Unfortunately I also see the same behavior on a PDA using this "active cursor" property. It appears to me that this property is not being written successfully. I say this because it appears that the value displayed is always from the most recently repositioned cursor rather than either the 0 or 1 which is set by the property node.
    What I will do at this point is to file a corrective action request so that this behavior is corrected for a future release of the LabVIEW PDA module. I apologize for the inconvenience that this causes for your application. Please let me know if I can help at all as you modify your application to work around this behavior. Thanks,
    Mike D.
    National Instruments
    Applications Engineer

  • Multiple headphone sets not working?

    I just recently received a replacement iPod Nano because my last one glitched itself and wouldn't respond to anything a consultant had me do. It's worked great since I got it. The last time I listened to it was Friday [the 6th], and the headphones worked just fine. Today [the 8th] I went to listen to it, and sound only came out of the left speaker. At first, I thought that it was only the headphones, and I just needed a new pair. Well, I went to use another pair I had [for an Mp3 player] and once again, sound came out through just the left speaker. That's two sets that would not work for the right headphone speaker. Could anything be wrong inside this iPod? Is there anything I can do to fix it? I would rather not have to have it replaced, since this IS a replacement iPod.
    Thank you for any help!

    Your headphone jack in the iPod is broken, you will need to get it replaced. You don't wrap your headphone cord around your iPod while it is plugged in, do you?

  • Property inspector not working correctly

    The property inspector in CS3 is not working correctly. When
    I select text or any other object the property inspector does not
    change for that object. But when I right mouse click on the
    selected object it does. Do I need to change a setting?
    Thanks!

    Yes, me too. I can't find an answer to this anywhere.
    If I right-click or double-click on an item the property
    inspector shows it, but if I single click, nothing happens. It's
    bad for productivity.

  • Event.hits property does not work at Adobe 9

    I have just discovered that the property "event.hits" does not work at Adobe Reader 9 properly.
    I have some JavaScript, which uses this property:
    if (event.hits.length > 0)
    var targetPos = event.hits[0].position;
    Now, at Adobe Reader 9 the value of "event.hits[0].position" is not correct.
    At Adobe 8 Standard this JavaScript works very well!
    Can you comment this issue?

    Hello to everyone!
    There is a some PDF file, which works fine on Adobe 8 and does not work properly on Adobe 9.
    You can download this file from the following hyper-link:
    http://www.pdf3d.co.uk/pdf/box97.pdf
    When I open this file on Adobe 8 then gold arrow works fine.
    In this case the gold arrow (pointer) has a true location on the box.
    When I open this file on Adobe 9 then gold arrow has a false location.
    In this case the gold arrow (pointer) has a false location on the box.
    Could somebody can to me a some suggestion?
    Thank you,
    Peter

  • Dreamweaver CS6 "Find and Replace" not working

    Since I've started working in DW CS6 I've noticed that the Find and Replace feature isn't working completely.
    E.g. If I select a block of code, then open Find and Replace, tell it to find "<br />" and replace it with "</li>" it only replaces the first instance. The rest of the <br />'s are still <br />'s.
    Is this happening to anyone else? I may have to switch back to CS5.

    bracdiver wrote:
    ** ANSWER/Workaround
    Change the selection in the 'Search:' dropdown from the default 'Source:'  to 'Text' or 'Text (Advanced)' and you will get the desired result.
    bracdiver, your post may be useful in some examples, like the ones I posted above. However, this does not work in my intended example below (which is source code specific), where the actual source code needs to be replaced:
    Sample
         <p>These are true or false questions. Place your answer on the blank under each question.</p>
    <ol>
        <li>There are twelve in a baker's dozen</li>
        <li>35% of people are going to school.</li>
        <li>There are seven books in the Harry Potter series.</li>
        <li>The longest running play is "Les Miserables"</li>
        <li>There is no blank under this question. <i>Answer beside this question instead.</i></li>
    </ol>
    Using these options
    Find in: Selected Text (first four list items)
    Search: Source code:
    Find: </li>
    Replace: <br />___________________</li>
    Options enabled: Match case
    Desired output:
    <p>These are true or false questions. Place your answer on the blank under each question.</p>
    <ol>
        <li>There are twelve in a baker's dozen<br />___________________</li>
        <li>35% of people are going to school.<br />___________________</li>
        <li>There are seven books in the Harry Potter series.<br />___________________</li>
        <li>The longest running play is "Les Miserables"<br />___________________</li>
        <li>There is no blank under this question. <i>Answer beside this question instead.</i></li>
    </ol>
    CS6 DW output:
    <p>These are true or false questions. Place your answer on the blank under each question.</p>
    <ol>
        <li>There are twelve in a baker's dozen<br />___________________</li>
        <li>35% of people are going to school.</li>
        <li>There are seven books in the Harry Potter series.</li>
        <li>The longest running play is "Les Miserables"</li>
        <li>There is no blank under this question. <i>Answer beside this question instead.</i></li>
    </ol>
    Using your workaround (with 'Inside Tag' option set to li), this will not work as does not change any text at all.

  • Content Exchange -- Package Upload function not work.

    I try to upload a zip file from my computer into the repository by using package upload function in portal. The file size export by ice is 1.09 GB is not work it has error The page cannot be displayed but small file size is work. How can i do?

    Hi folks,
    same problem here while trying to transport a large KM package (28GB à 2GB volumes) from EP 7.0 to EP 7.31 SP6. The package upload iView in my target system EP 7.31 crashs with "This page cannot be displayed". I cant find any appropriate exceptions in NWA.
    I guess ICE transport isnt an option at all for transporting KM content from 7.0 to 7.31 (http://scn.sap.com/thread/3249426), but i tryed it also, without any success, same behaviour. As i stringent need all metadata (ACL's for example), WebDAV is probably also not reasonable, as far i know you cant transport KM metadata with this method.
    Unfortunately Detlev`s link dont works, so i cant get any clues from there. I also tryed to split one KMC archive in volumes à 100MB, but it dont works, because the following volumes are not uploaded and i cant see any KM packages at all.
    So, i know i can create smaller KM packages manually, but regarding the data amount its extremly time-consuming. I cant imagine our colleagues from SAP AG are regarding the case of a KM import of large files as realistic, but dont give us a working option to import them. Does anybody have any idea how to handle this issue? Thank you in advance,
    best regards

  • Color replacement not working as expected

    Hello -
    I'm touching up some artwork and I've tried using both the color replacement tool as well as the color replacement adjustment and neither is giving me the results I would expect.
    The image has been indexed and I'm not using anti-alias so it's pretty easy to select the colors I want to change and the ones I want to replace them with.
    However, when I try to change the color, it's not replacing it with the exact color that I selected but a lighter version of that color instead.
    I created an example to show what I am talking about.
    In the example I used the color replacement tool.
    First I eyedropped the color I want to put in place of the wrong color.
    Then I use the color replacement tool (mode: color, sampeling: once) and click and drag over the wrong color.
    Instead of matching the color in the foreground (that I had eyedropped) it replaces it with a lighter version of the foreground color.
    I was having the same problem when I was using the replace color adjustment.
    Please see the attached file for my example.
    I was able to get the effect I was looking for by first using mode: color then switching to mode: luminocity and going over the same area a second time.
    It would seem that there should be a way to do it in one pass.
    Any help is appreciated.

    That is the way the color replacement tool works, its an old tool.  Color has three parameters, say hue, saturation and lightness (luminosity) as one parameter set. You would need to change all three for the kind of match you are looking for. The color replacement tool lets you change in one click either Hue, or Saturation, or both of these (Color) or Luminosity. In other words ther is no setting for all three. For that you need two applications of the tool.
    You should try the color range command on a separate layer with a mask to protect those areas of that color you want to keep and see if that fits your needs.
    Paulo

Maybe you are looking for