User Extended Attributes in IDM 7

Has the set up changed? I imported all my objects from 6.0 and the user extended attributes aren't there. I imported the UserUIConfig object, so I would think they would be present. I noticed that the attributes tab moved in the new version, have the methods of defining them changed much?

User Extended Attributes are typically defined in the object Configuration:User Extended Attributes. UserUIConfig is used e.g. to define if the attribute should be "Queryable" -but yes its a correct observation that the UserUIConfig is changing shapes...

Similar Messages

  • I don't find User Extended attributes in IDM 8

    Hi all,
    I have installed idm8 and I need to extend the user attributes, but I can't find the User Extended Attributes object (or Extended User Attributes). Can anyone help me?

    From the release notes :
    Identity Manager 8.0 consolidates the locations where an administrator specifies extended,
    queryable, and summary attributes for user objects into the new
    IDM Schema Configuration object. (ID-17784) In prior versions of Identity Manager, an administrator
    edited the User Extended Attributes configuration object to add extended attributes for
    user objects and the UserUIConfig configuration object to specify additional queryable or
    summary attributes for user objects. An administrator now edits the IDM Schema Configuration
    object for these purposes.

  • Resource Attributes not saving in Queriable User Extended Attributes

    Howdy,
    I added a few queriable user extended attributes to IDM. I originally added them in through the configure user attributes interface. I then edited the UserUIConfig to specify that they were queryable. I then edited the User Search Defaults form's getSearchableAttrs function to include these attributes. My added attributes now show up in the search user form, etc., just like I expected them to. Next I configured a new resource adapter for a database table that contained some values I wanted to use to populate these queriable attributes. I wrote a correlation rule, and ran reconciliation on the new resource. It matched up the account entries and automatically matched and linked the account information. So far so good. However, the user extended attributes I defined are not getting populated with the data from the new resource. The mapped resource attributes are treated as part of the user view, but only under the given resource, not as a queriable attribute. I really want to be able to use the find user interface with these datafields. Does anyone know why my data is ot making it into the queriable fields? Do I need to write another rule or workflow? Any advice would be most helpful.
    Thanks!
    Jim

    Queryable attributes refer to attributes stored in the IDM user object, and so need to be referenced as such.
    If you want attribute 'foo' in resource 'bar' to be stored as a Queryable attribute, you need to define it like so in your User Form :
    <Field name='accounts[Lighthouse].foo'>
        <Expansion>
              <ref>accounts[bar].foo</ref>
        </Expansion>
    </Field>This should pull the value from the resource attribute and put it in the IDM attribute. If you refer to it as a global.foo everywhere, that might work (but I find globals to be problematic).
    Let me know if it works...
    Jason

  • IdM v7 and User Extended Attributes

    I did a demo install of IdM version 7.1 and when I looked under debug and then list 'Configuration' objects,
    I did not see 'User Extended Attributes' ?
    I thought this comes as part of IdM in a very basic simple format ?
    I've worked with IdM a fair amount, and don't every remember creating this file.
    Can someone confirm this ( one way or the other ) ?
    TIA

    The "IDM Schema Configuration" object is an IDM 8+ object only. The extended attributes have been completely changed between IDM 7 and IDM 8.
    In IDM 7.1 the extended attributes are stored in the Configuration object called "User Extended Attributes". The initial import and set up of your repository should have created it. By default there's a few extended attributes (like idmManager, etc) that are set up. On a fresh install you won't find the file in the sample directory. It's only in the repository. You should be able to see it from the debug page or by extracting the XML object from the repository directly using the lh command line tool. If not then something might have screwed up in the installation.
    However, the fact that you've got attributes called "IDMAttributeConfiguration" and "IDMObjectClassConfigurations" leads me to believe you've actually got an IDM 8 install, not an IDM 7 install. In which case, as Paul pointed out, your attributes are stored in the "IDM Schema Configuration" object. (Again, not found in the sample dir, only in the repository and is created on initial import.)

  • Configuration of User Extended Attributes

    Hi ,
    I am very new to sun idm.
    Anyone please expain how to configure user extended attributes in sun idm 8.0
    Thanks in Advance,
    Ram.

    Hi,
    You now modify the "IDM Schema Configuration" object.
    See [http://docs.sun.com/source/820-2961/A_edit_configObjects.html#wp19336] for more information

  • Make user extended attribute available on the user report

    Hi,
    We have created a few user extended attributes for the client. The quyestion is how to make them available for select in a user report. Currently we configured a user report for approvers "approver report" and save the XML as TaskTemplate. How can I modify the xml to display user extended attributes? I tried the following but it did not work:
    In the task template xml, add the attribute (e.g., department) into
    <Attribute name='attrMapField'>
    <Map>
    <MapEntry key='attributes.department' value='Department'>
    </Map>
    </Attribute>
    <Attribute name='attrsToDisplay'>
    <List>
    <String>attributes.department</String>
    </List>
    </Attribute>
    Thank you.

    We will need to edit the TaskDefinition object named �User Report� with the id
    �#ID#TaskDefinition:UserSummary�.
    1) Insert the following xml directly above the field named �queryAttr.MemberObjectGroups.enabled�:
    <Field name='queryAttr.employeeId.enabled'>
    <Display class='Checkbox'/>
    </Field>
    <Field name='queryAttr.employeeId.operator'>
    <Display class='Select'>
    <Property name='title' value='Report only users whose employeeId '/>
    <Property name='noNewRow' value='true'/>
    <Property name='nullLabel' value='Please Select'/>
    <Property name='valueMap'>
    <ref>conditionsList</ref>
    </Property>
    </Display>
    <Expansion>
    <cond>
    <eq>
    <ref>queryAttr.employeeId.enabled</ref>
    <s>true</s>
    </eq>
    <ref>queryAttr.employeeId.operator</ref>
    <null/>
    </cond>
    </Expansion>
    </Field>
    <Field name='queryAttr.employeeId.value'>
    <Display class='Text'>
    <Property name='noNewRow' value='true'/>
    </Display>
    <Expansion>
    <cond>
    <eq>
    <ref>queryAttr.employeeId.enabled</ref>
    <s>true</s>
    </eq>
    <ref>queryAttr.employeeId.value</ref>
    <null/>
    </cond>
    </Expansion>
    </Field>
    2) Inside of the defvar named �attrMap� you will need to insert the following text:
    <MapEntry key='attributes.employeeId' value='Employee ID'/>
    3) Save the modifications.
    4) Check the "User Report" your attr will be available

  • Fetch the User Extended Attribute" Group" Value in Java

    Hi All,
    I have been able to add a User Extended attribute in SIM and wish to fetch its value for a particular user in my java code.
    kindly help.
    Thanks
    Sunny

    Hi All,
    I am able to fetch the value of extended attribute "Group" of type "Select" I added in the Default User Form using user.getAttribute("Group") in my java code of Custom Resource Adapter.
    This extended attribute has groups name populated in it. What I am doing now is that I am fetching the Group name value and assing the user this group. This is working fine for me. However, In case user select a different group next time, I need to remove the user from old group and assign him the new group. For this, I need to have the old group value and new group value. I don't know how to retrieve the old group value?
    Any pointer on this will be helpful.
    Note: I have done the mapping of extended attribute "Group" in my Custom Resource Adapter.
    Regards,
    Sunny

  • Approval Limit of user - Extended Attributes

    Hello everyone,
           I would like to know the difference between standard values and local values for approval
    limit in extended attributes in PPOSA_BBP.  The standard value has 15000 AUD which is
    inherited by the organization unit under which the user is created.  Local value is 1000 AUD.
    What does this mean?  All users under the organization unit carry the same standard valu for
    approval limit but only head carries the local value which is 1000 AUD.
       Can anyone please answer to this.
    Thanks in Advance.

    Hi Priya,
    Even i checked in my system and i couldn't able to find much importance for standard value...system is considering only local values.....
    if you got the answer then please post it ...
    Thanks
    Ravi

  • User Extended Attribute maintenance through ActiveSync

    Following is happening in the activeSync process.
    There is an existing user in IDM with some defined attributes (as per the extended attrs pre-defined).
    If any of the user attributes does not have a value in the authoritative source and the user is processed via activeSync then whatever attrs does not hold a value in authoritative source that attr is completely deleted from the userObject xml in IDM
    It does not keep a trace in the userObject.
    Before the ActiveSync update process UserOBject has the following value.
    <Attribute name='Manager' type='string' value='Smith'/>
    If in the authoritative source for this user the manager becomes null then
    this entire attribute is removed from the xml.
    question here is :Is this a normal behaviour w.r.t ActiveSync Process?
    Should it not leave the attr trace in UserObject xml in the following way.
    <Attribute name='Manager' type='string' >
    </Attribute>
    If anyone can share their experience in this that would really help.

    Any one has noticed this issue in your system? Please help.
    Thanks,
    Arun

  • Extended role attributes in IDM 8

    I managed to add extended attributes to standard role types(Role, ITRole). But when I'm trying to add extended attribute to my role type Role1, it doesn't work.
    Is it my problem or IDM 8 doesn't support extended attributes for custom role extensions?

    From the release notes :
    Identity Manager 8.0 consolidates the locations where an administrator specifies extended,
    queryable, and summary attributes for user objects into the new
    IDM Schema Configuration object. (ID-17784) In prior versions of Identity Manager, an administrator
    edited the User Extended Attributes configuration object to add extended attributes for
    user objects and the UserUIConfig configuration object to specify additional queryable or
    summary attributes for user objects. An administrator now edits the IDM Schema Configuration
    object for these purposes.

  • Custom report Extended Attribute

    Hi,
    On my user selection screen I just need a multiple selection box and user related data needs to be populated in it, can anybody guide me on this.
    Thanx

    Open BPE --
    click File - >
    --> OpenRepository Object
    ---> Forms
    --->EndUserMenu
    you can have a look at EndUserMenu
    if you want to display custom forms then you need
    login as configurator to administrator module
    Click configure Tab
    --->Forms and Process Mapping
    you can find EndUserMenu
    change the name of the EndUserMenu to your form name(should be uploaded to the IDM)
    for adding attributes to your User Object
    login to your http:\\localhost:8080\idm\debug pages then select
    ListObjects -->configuraton
    from the list of values select the User Extended Attributes for edit
    then you can add your Extended Attributes here. eg PassportNo
    <List>
    <String>firstname</String>
    <String>PassportNo</String>
    </List>
    </List>

  • How can i extended attribute of user and add attribute to ldap

    how can i extended attribute of user and add attribute to ldap
    1.
    i use spe to modified "Default User Library":add Field like
    title:nation name:accounts[Lighthouse].nation
    2.
    modified "IDM Schema Configuration"
    add <IDMAttributeConfiguration name='nation' description='default attribute from UserExtendedAttributes/UserUIConfig' syntax='STRING'/>
    in <IDMAttributeConfigurations>
    and
    add <IDMObjectClassAttributeConfiguration name='nation' queryable='true' summary='true'/> in<IDMObjectClassConfiguration>
    there is extended attribute when i create new user
    3.
    i create new resource to ldap,and i add nation in "Account Attributes" tab
    but the new attribute not add to ldap
    i am beginner,how to extended attirbute add add to ldap attribute?

    So, if I want to fill in blanks on a form where I need to add more pages to fill history, what program do I need? In Adobe Reader, I can edit and fill in blanks, but I cannot duplicate more blank pages.

  • How to Update Extended Attributes For the Users in SRM Organization?

    Hi,
    I am using 'BBP_UPDATE_ATTRIBUTES' function module to load the Default Attributes for the users in a custom program. I am able to update many attributes like company code, Movement type, catalog id, material usage, shop on behalf of and address ship to. But I am having problem updating extended attributes Plants(Attribute ID 'WRK') and Storage Locations (Attribute ID 'LAG').
    Storage location and Plants has many values. Can anyone have experienced this problem before. I appreciate any help I get. I debugged enough and not able to find any other function module to do this.
    Thanks and Regards,
    Sreeni..

    Hi Sreeni,
    I'm stuck up in the same problem. Did you get any solution for this? If yes please provide the same.
    Regards,
    Gajendra
    Message was edited by: Gajendra Bhatt

  • User's Approval Limit  in Extended Attributes

    Dear SRMer's,
    System info:
    SRM 4.0.
    Problem Description:
    In PPOMA_BBP, I set my approval limit in the 'PO Value Limits' under Extended attributes to $1000.00 and added an approver for the SLApprover in Attributes tab.
    But when I create a shopping cart with value greater (>) than $1000.00,
    I dont see the SL approver on the approval flow and the approval flow says  no approval required.
    Please help.
    Thanks in advance,
    Best Regards,
    Bob

    Hi Bob,
    Deactivate your workflows for the shopping cart then check again.
    (or)
    follow the link below
    http://help.sap.com/saphelp_srm50/helpdata/en/79/ca013a0c88bc7ce10000000a114084/content.htm
    with regards,
    mahesh

  • Display non extended attribute in a Custom Report

    Hi,
    Is it possible to query external attributes (that are not set as extended attributes) in a user report ?
    I read in this forum that reports are just meant to query IDM repository, is it still true ?
    Thanks,
    Ben

    Hello Sandra,
    Thanks for your reply, but eventhen it fails to load the pdf. Is ADS required to be installed for this?
    Can I just pass the pdf_fsize imported from  CONVERT_OTF which is of type i.
      CALL FUNCTION 'CONVERT_OTF'
        EXPORTING
          FORMAT                = 'PDF'
        IMPORTING
          BIN_FILESIZE          = PDF_FSIZE    
    bin_file              = pdfxstring
        TABLES
          OTF                   = L_JOB_OUTPUT_INFO-OTFDATA
          LINES                 = LT_PDF
        EXCEPTIONS
          ERR_MAX_LINEWIDTH     = 1
          ERR_FORMAT            = 2
          ERR_CONV_NOT_POSSIBLE = 3
          OTHERS                = 4.
      CALL METHOD G_HTML_CONTROL->LOAD_DATA(
         EXPORTING
           TYPE         = 'application' "'text' " 'application'
           SUBTYPE      = 'pdf' "'html'  "'pdf'
           size           = PDF_FSIZE
         IMPORTING
           ASSIGNED_URL         = lv_URL
         CHANGING
           DATA_TABLE           =  LT_DATA "i_html "LT_DATA
         EXCEPTIONS
           DP_INVALID_PARAMETER = 1
           DP_ERROR_GENERAL     = 2
           CNTL_ERROR           = 3
           OTHERS               = 4 ).
    Thanks,
    Jaya.

Maybe you are looking for

  • Calling a web service through SSL via a stand alone java class

    HI, I am trying to call a web service through SSL via a simple stand alone java client. I have imported the SSL certificate in my keystore by using the keytool -import command. Basically I want to add a user to a group on the server. Say I add a user

  • Sapscript  : how to print logo in dynamic position  ?

    i have form with different company logo's  , and i want to set the POSITION   for each logo i created logo window and i can see the logo  , But i can't set the POSITION of logo window according to my logo size. i tried  : /: POSITION WINDOW /: POSITI

  • How to delete camara of standby screen

    Hi Can anyone tel me if I Can delete te camera of the lock screen? Sorry my english is not zo good.

  • Which box to make app server, and which to make customer db?

    I have 2 boxes: 1) a Sun ultra 10 w/40mb/s scsi, 160mb/s drive, 256mb ram, 366mhz sparc 2) a 1.7 ghz pc clone running linux 7.3, 256mb DDR ram, ATA-100 (but i can only make it run at 25mb/s) both machines have 40mb hard drives. i plan to run portal,

  • Search Bar and the new "Now Playing" layout

    The search bar disappears after one time you try to search for something. This has been going on for at least a week with me now. Other people seem to have this problem, also. Also, what's up with the new "Now Playing" layout? I loved it like it was