KMC Resource Eventing: Rename and display name/description

Hallo,
I'm wondering about the behavior of ResourceEvent.RENAME.
When a KMC resource is renamed, its 'old' properties can be accessed by ResourceEvent.PRE_RENAME. On ResourceEvent.RENAME, the new RID is propagated but not the new displayname and description. These are set afterwards on ResourceEvent.PROPERTY_SET. Why isn't this propagated before the RENAME event is thrown? I register with the broker in synchronous mode.
Kind regards,
Christian

Hi Christian, hi Helmut,
quite interesting thread, for I'm doing this just three weeks later.
Anyhow, one answer and one question:
Christian, you talked about the SET-Template. This should be relevant for updating content, not properties. Maybe as Helmut wrote, your use case (using some UI functionality) also updates the content together with the properties. But in general, PROPERTY_SET should be the right thing.
Helmut: I need, as Christian did, the old name of the display name as well as the new one. But there is no PRE_PROPERTY_SET!?!? How to access the old name? In my use case, probably there will no other event be thrown (when renaming a collaboration room; no content, no RID change).
Hope it helps & thanks in advance
Detlev

Similar Messages

  • How to add a service account in SQL Server to display the "Service Account Name" and "Display Name"

    Can someone
    help with steps on how to add the following in SQL Server 2012 environments?<o:p></o:p>
    "Service Account Name" and "Display Name"<o:p></o:p>
    Your help will be greatly appreciated.<o:p></o:p>
    leonie6214

    Hello,
    Is the following article what you are looking for?
    http://msdn.microsoft.com/en-us/library/ms345578.aspx
    If not, could you explain a little bit more what you want to accomplish?
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • How to display name and display name of the role during request

    Hi,
    Is it possibe to display Role Name and Role Display Name on the "Select Roles" page during ROle Request for Others? In the "Roles Available" I can only see "Role Display Name". I was trying to look at "AssignRolesDataSet.xml" but was unable set what I need (for exmaple lookup-query...). How to achieve desired funcionality?
    Best
    mp

    Hi,
    I should implement your same funcionality, but looking for a solution I didn't find any useful suggestion.
    Did you find the solution?
    Thanks in advice
    Daniele

  • Select distinct using LINQ and bound to a dropdown list with id and display name

    Hi,
    On one of my sharepoint page, I want to populate dropdown list with countries, namely
    <asp:DropDownList ID="ddlCountry" runat ="server"></asp:DropDownList>
    In the code, I use LINQ:
     var country = (from p in dc.ProvCountries
                                   select p.country_code ).Distinct();
                ddlCountry.DataSource = country;
                    ddlCountry.DataBind();
    I want the country_code to be  the ID, while the country_name will be the display name in the dropdown, how can that be done?
    Thanks in advance.

    Hi,
    The following code for your check.
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    namespace WebApplicationLib
    public partial class _Default : Page
    protected void Page_Load(object sender, EventArgs e)
    List<ProvCountries> list = new List<ProvCountries>();
    list.Add(new ProvCountries { country_code = "201", country_name = "A"});
    list.Add(new ProvCountries { country_code = "201", country_name = "B" });
    list.Add(new ProvCountries { country_code = "202", country_name = "C" });
    list.Add(new ProvCountries { country_code = "202", country_name = "D" });
    var country = (from p in list select new { p.country_code, p.country_name }).DistinctBy(p => p.country_code).ToList();
    ddlCountry.DataSource = country;
    ddlCountry.DataValueField = "country_code";
    ddlCountry.DataTextField = "country_name";
    ddlCountry.DataBind();
    ddlCountry.Items.Insert(0, new ListItem("Please select", ""));
    class ProvCountries
    public string country_code { get; set; }
    public string country_name { get; set; }
    static class DataDistinct
    public static IEnumerable<TSource> DistinctBy<TSource, TKey>(this IEnumerable<TSource> source, Func<TSource, TKey> keySelector)
    HashSet<TKey> seenKeys = new HashSet<TKey>();
    foreach (TSource element in source)
    if (seenKeys.Add(keySelector(element)))
    yield return element;
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Dennis Guo
    TechNet Community Support

  • Rename users display name from LDAP

    my OBIEE 10.1.3.4 does user authentication from LDAP on our domain Active Directory..
    a users display name was mis-spelled in Active Directory.. I corrected the mis-spelling.. but BI still shows it wrong..
    when the user is created is the display name then stored in an ATR file or somewhere in the catalog..
    were do I go to change it.. or how do I get it to update from Active Directory again..

    If the display name is really bothering the user, then you can do a work around like letting users to set their own display name by enabling the enable any user to set the value of the variable option for the DISPLAYNAME variable in the LDAP init block and calling it in the front end using NQSSetSessionValue().
    Hope this helps.
    Regards,
    -Amith.

  • Contacts deleted on skype and display name changed...

    Hello,
    i have just login into skype and found my display name changed to yvonne? 
    my contacts are also deleted and the only contact is a person named eugene.
    dont really know whats happening. can someone help me please?
    my username is syinli and email used is *edited for privacy*
    please and thank you!

    can you try to logout then login again?  However, if the same problem persist, you may need to contact customer service, here's how;
    How to Contact Skype Customer Service
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES
    SEE MORE TIPS, TRICKS, TUTORIALS AND UPDATES in
    | skypefordummies.blogspot.com | 

  • Problem with core data and attribute name "description"

    I have spent hours tying to figure out this problem.
    It appears that is you name an attribute "description", there can be problems at run-time.
    Perhaps, it is related to how I am doing things and letting interface builder do all the bindings.
    I create a core data application in Xcode.
    I create the entity with some attributes in Xcode and then I launch interface builder. I drag a "core data entity" object to the application window. I add a "Master/Detail View".
    I save the files and do a compile. When I click on the "add" button, something goes wrong and GDB launches and loads the stack frame into the debugger.
    I am using Xcode 3.1.2.

    description is the name of a method in the NSObject protocol; try to use another name for your attribute in CoreData, for example myDescription.

  • Share Name, Printer Name and display name for End User

    We are being forced to standardize printer names.  So, for example, a printer that is on the print server might have the following properties:
    NAME: PR25739
    SHARE NAME: Clinic Admin Office
    SERVER NAME: A700500
    The share name seems to be pointless - almost vestigial.  When a user maps to the printer, it is named (on their device) PR25739 on A700500.  They can't change it, I can't change it - indeed, the Name field is disabled during the Install Printer
    Wizard.  The whole point of the share name, to me, is to make something that is user-friendly with context and useful information.  But the sharename seems to be completely ignored.  Is there any setting I can change that will make this printer
    map so that it is displayed to the user as Clinic Admin Office or even Clinic Admin Office on A700500?  Solutions that must take place on the EUD are not solutions - the name needs to be correct out of the box.
    Thanks.

    Unfortunately, no.  The standardization mandate specifically states "printer name" - changing the Share Name was my last ditch attempt to inject some sense and serve my users.  Right now, I have 5 printers mapped, and they look like this:
    PR25737 on A700500
    PR25739 on A700500
    PR12336 on A700500
    PR35127 on A700500
    PR29764 on A700500
    I know to use the location field in the printer dialog, but I don't expect my users will - and without that, even I can't keep up with what printer goes to what physical device.

  • Can I create a user accounts with same UPN, CN, SAMACCOUNT and display name in different OU?

    Thank you.
    Thank you

    Hi laJasmine
    No you cannot do that.SAMAccountName must be unique within a domain.Also userPrincipalName(UPN) has to be unique within the forest
    http://msdn.microsoft.com/en-us/library/ms676913(VS.85).aspx
    sAMAccountName should
    be less than 20 characters to support clients and servers from a previous version.The sAMAccountName must
    be unique among all security principal objects within a domain..."
    Please mark it as helpful if it helps you in solving your problem
    Amit Kotha

  • Photoshop: How to save as a pdf and display description?

    The only other Photoshop I ever used was CS3, and when I clicked "print" it saved as a pdf first, and I could choose to make it display different metadata. That feature has been removed for all newer versions for some reason, and I have no idea how to do what I want to do.
    I need to save it as a pdf, and display the description/subject metadata under the photo. I can't find anything online on how to do this.

    BlazeHeatnix,
    Due to the current unavailability of clairvoyants and mind-readers in the forum, we respectfully request you supply sensible, complete details.
    Please understand that "CS5" does not clear up the issue of what version of Photoshop you are using.  "Photoshop CS5 12.0.1" would.
    A screen capture would be very helpful.
    Also, have you trued the Print command, then Save As PDF?
    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Import Manager and Display Fields

    I've been using SRM-MDM 3.0 for a couple of months and 1 fundamental MDM design has always bothered me and I was hoping to get some resolve on this.
    The purpose of Display Field is 2 folds:
    1. Display the field in the Catalog Search UI for a lookup table: i.e. if both Supplier Name and ID are Display Fields, then in the Search UI, both fields are displayed to the end-user. If only Supplier ID was the display field, then in the UI only the ID is displayed.
    - From a usability pov, tables such as Supplier and Product Group should have the name or description fields displayed in the Search UI as the numeric values are meaningless to the end-users. 
    2. Display field ALSO affect what is the key used to import data into a table.  So if Supplier ID is the display field for Supplier table, then in Import Manager, the Supplier ID values are displayed and must be mapped to the source values.
    - From an importing pov, mapping values should always be an index-like field, such as Supplier ID or Product Group ID, or ISO, and usually never the actual name or description field.
    But SAP has tied the two together. So in order to display the name/description to the end-user, we must enable the name/description field as a Display Field.  But we also want to map based on the index/ID field, so we also enable the index/ID field as a Display Field.  Now in Import Manager, we have two Display Fields for a table (i.e. Supplier ID and Supplier Name for Supplier table) and I've noticed some issues with this:
    1. You import file must have BOTH values (index/ID and the name/description fields) in the source, in order to Automap.  If your source file only has 1 field, like in MECCM when extracting  ECC contract, ONLY the Supplier ID, or Category ID is extracted, Automap is not possible.  What is funny is that standard SAP extract program only extracts the ID fields, BUT the standard SAP repository has the name/description fields as the Display Field.  Automap is a must for tables like Product Group where hundreds of lines can make manual mapping a pain.
    2. I also noticed you cannot Add values to a table that has 2 Display Fields, you can only map to existing values.  The Add button is grayed out.
    With all that said, when you're replication ECC Contract Data using MECCM, for tables like Supplier and Product Group, what fields should be set as Display Fields, and if there are multiple Display Fields, what special setting needs to be done in Import Manager to enable automapping?  Even standard SAP Import Map (_MDMContractDataTransmission_ProductID) throws errors when multiple fields are set as Display Fields.
    I'm not familiar with the partitioning function, and I've seen PDF's about it, but don't really see how it could be helpful. I've also read someone suggesting changing the DF's before import, which I think is unacceptable, as this requires unloading/loading repositories everytime an import happens.
    Thanks for reading my paragraph and any input is greatly appreciated.
    Edited by: Derek Xu on Apr 30, 2009 6:50 PM

    Hi Derek,
    Thanks for writing your thoughts. I would like to provide some information on one of your points where in you have mentioned that :
    You import file must have BOTH values (index/ID and the name/description fields) in the source, in order to Automap. If your source file only has 1 field, like in MECCM when extracting ECC contract, ONLY the Supplier ID, or Category ID is extracted, Automap is not possible.
    I completely agree that if you have 2 fields in MDM repository and you are only importing only one of them, then you cannot use the Automap feature of Import Manager. So in your case, the description is not getting importing, so you cannot use Automap in that case.
    I had a very similar requirement in one of my project and we went with creation of a Import Value template. We created a template with all the possible values for all the look up tables in that and mapped it once in the Map. Hence, next time, the Map was used to automatically Map the source and Destination values for all the look up tables.
    SAP-MDM Automatic Import Requirement u2013 Creation of a Value Mapping Template:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/80ad0cff-19ef-2b10-54b7-d4c7eb4390dd
    Please read the above article and hope its useful. You can go for this approach in your case if suitable.
    I have mentioned examples of descriptions and their respective fields in the article.
    Hope it helps.
    Thanks and Regards
    Nitin jain

  • Tomcat web.xml "display-name" using flex.messaging.MessageBrokerServlet

           Hello,
    When my web application starts with the BlazeDS servlet flex.messaging.MessageBrokerServlet defined in the web.xml we have an error because in the display-name defined at top level in web.xml we have some text containing character ':'. The error is traced to inside the function
             flex.management.BaseControl.getObjectName()
    Which gets the object name, and this function calls
       BaseControl.getApplicationId()
    which finally calls
    ServletConfig.getServletContext().getServletContextName()
    This will return or display-name from the web.xml with all  it's text. This text contains among other characters the character ':'.  We use this tag for the display in the Tomcat Manager to see version  number and other of deployed project.
    After retrieving this name it is appended in the getObjectName() function to a buffer, this StringBuffer that already contains flex.runtime. and  now this name is appended (still with all that we are using for Tomcat  Manager with ':' character and other). After the name, other things are  appended. Our problem is that, after constructing this StringBuffer an instance of javax.management.ObjectName is created. In it's constructor it takes a String name  as input. This String is parsed in base of characters ':', '*', '?',  '\n' and so on, and since we have some of these characters in our  display-name it all goes wrong.
       My question is, if this is a bug, a limitation or if it is documented that using flex.messaging.MessageBrokerServlet we can not use certain characters in the display-name of the web.xml?
       Greetings, Tim
       We are using
    Tomcat 5.5.23
    Jdk 1.5.0_14
    blazeds-src-4.0.1.17657
    part of web.xml
         <display-name>
             Version: 1.10.0.3 (01/02/2011), Environment development, AGP:  10.220.6.8:1557/AGPSVI, AGP_STAGE: host 10.220.6.8:1557/AGPSVI
         </display-name>
         <description>IMPRESA progetto con undergroung</description>
         <listener>
             <listener-class>flex.messaging.HttpFlexSession</listener-class>
         </listener>
         <servlet>
             <servlet-name>MessageBrokerServlet</servlet-name>
             <display-name>MessageBrokerServlet</display-name>
             <servlet-class>flex.messaging.MessageBrokerServlet</servlet-class>
             <init-param>
                 <param-name>services.configuration.file</param-name>
                 <param-value>/WEB-INF/flex/services-config.xml</param-value>
            </init-param>
             <load-on-startup>1</load-on-startup>
         </servlet>

    I have found that this is a bug and there is an issue open at the "Adobe Bug and Issue Management System", BLZ-617. I don't know if work is in progress, but when that issue is closed the problem will be solved.
      Greetings, Tim

  • Cannot search EAC by Display Name - Must search by Alias

    My company is slowly migrating users from E2k7 to E2k13.
    We have noticed on several occasions that room resources that are on E2k13 can only be found in EAC when we search by their Alias. We absolutely cannot search by a display name.
    However on some rooms we can search by the display name.
    Any known issue here? Or anyone experience this?

    Hi Johnny,
    We can search the rooms by using Alias, if they also working well, then it seems the migration from Exchange 2007 to Exchange 2013 complete successfully.
    Did someone rename the display names? It needs some time to cover the modification.
    Please also get mailbox via display names to verify whether we input the correct display names.
    Command as below:
    Get-Mailbox DisplayName
    If everything going well except the "searching via display name on some users", I suggest intalling the CU3 or SP1. The Exchange 2013 SP1 will release in a short time later.
    Hope it is helpful
    Thanks
    Mavis
    Mavis Huang
    TechNet Community Support

  • Skype name vs display name in chat

    I have been in a group chat for a long time. There are several hundred members of the chat. I am not the administrator.
    I have recently realized (as a result of some attribution problems relating to various messages on the chat) that Skype is mixing up Skype names and display names in the chat thread. With hundreds of members, this is more than annoying – it has already caused some friction.
    In summary, a series of posts by some members show up with a mix of their Skype name and their display name. This can happen when their posts are only minutes apart. It does not happen with all members.
    Does anyone have experience of this? Is there anything I or the administrator can do to fix it? I know I can set anyone's display name locally to whatever I like. I also know that adding them to my contact list might lock in the display name. But there are hundreds of members of this chat; I don't want them all in my contacts and I don't want to manually adjust them all!
    Skype 6.15; Mac OSX10.8.5
    Thanks for any insight!
    Steve

    Do you mind sharing a screenshot of where exactly you see this "(1)"? Please blur/remove any occurrence of private information on that screenshot. But that picture would tell a lot more about what we are dealing with here.

  • Mapping Display Name

    OIM 11.1.1.5.4
    I'm using a DBAT (11.1.1.5.0) to map data...in stage I've concatenated firstname and lastname and mapped it to Full Name.
    After it runs, Display Name is filled in...what's up with that ... why have full name and display name ... when there is no full name field, only a display name field.
    I'll change the stage map to point to Display Name.
    Q's:
    1. has anyone figured out how to concatenate 3 fields ... firstname + middlename + lastname ... in the DBAT connector
    2. how do you deal with names with foreign characters ... if present, the connector fails to update display name (well full name) ... even though first-middle-last names are filled in.

    Re-mapping the FN+LN concatenated field to DiplayName resolved the issue of DisplayName not getting populated if either FN or LN had a special character.
    However, now the DisplayName contains a '?" if either FN or LN is something like Jose' (Jo?e) or Andre' (Andre?).
    Running SQL> select USR_DISPLAY_NAME from USR where USR_DISPLAY_NAME LIKE '%?%';
    Returns 250 rows.
    I'm thinking it is the grave sign that is problematic, as the single quote shows up fine in last names.

Maybe you are looking for

  • BALANCE SHEET WITH UNASSIGNED NODES

    First of all hello everybody, In spite of being involved with balance sheet and P&L query I´m facing a problem never had before. We´re using the virtual infocube 0FIGL_V10 and its own query provided by Business Content. Up to yesterday everything wor

  • PDF Version of Bill

    Trying to find where I can download the PDF version of my bill and not having any luck. It used to be easy before the redesign of the site. Any help is appreciated.

  • Developing prompts to enter a date range

    I need to develop a report for an agency allowing their user to select information from a table, between a user specified date range, which could change daily. The user needs to be prompted to enter a city, a start date, and an ending date... Then di

  • Create Oracle BLOB and Pass to Oracle Stored Procedure

    Hi All, I am using Oracle 10g and am dealing with a requirement where I have to upload a file to Oracle Portal from the client's local machine using a JSP. I am planning to convert the text file to a BLOB and pass it to an Oracle stored procedure whi

  • Aperture 2: first observations

    besides are more pleasing interface, the much faster previews and support for the new RAW formats I noticed one interesting point for 1Dsmk3 users: sRAW result in a very small preview. On the other hand full size RAW images are displayed properly. al