OMBPlus 10.1: retrieve to which attribute an attribute is connected

Hi,
With which command can I retrieve the attribute (and group and operator) that a given attribute is connected to? For the life of me, I cannot find it in the Scripting Reference, this model of accessability.
Regards,
Jaap.

OMBRETRIEVE MAPPING 'mapping' OPERATOR 'operator' GROUP 'group' GET ATTRIBUTES CONNECTED TO/FROM ATTRIBUTE 'attribute' OF GROUP 'group' OF OPERATOR 'operator'
First you need to retrieve:
-'mapping'
-'operator' -- source
-'group' --source
-'operator' --target
-group --target
-'attribute' --source/target                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Similar Messages

  • Which attribute shows if a user has an expired password?

    DSEE 6.3
    I created my own password policy, and applied it to a single user.
    I would like to know which attribute shows if a user has an expired password, and how do I query that attribute for the user. How would I query the time till expiration as well?
    I am basically looking for example queries to such information.
    thanks,

    My limited experience with this sort of thing is to run a query like the following:
    ldapsearch -1TL -h `hostname` -D 'cn=Directory Manager' -b "dc=<your dc>,dc=com" uid=<uid your choice> pwdAccountLockedTime pwdFailureTime pwdLastAuthTim
    e pwdChangedTime passwordRetryCount nscpentrywsi
    This dumps some helpful stuff. I've noticed ... in our ldap instance that a locked account has the following output:
    pwdAccountLockedTime: 000001010000Z
    I don't know why it shows up that way ... but it's something I can key on and search for to find locked accounts. Not necessarily an indication that a password has expired, of course, but sort of interesting to me. An account can be locked for other reasons obviously.
    I think pwdChangedTime might be what you want assuming you know what the password expiration time is set to ...

  • ASA self-signed certificate for Anyconnect 3.1, which attributes?

    Hi everybody,
    I can't find the detailed information which attributes are exactly needed for the Anyconnect 3.1 client to correctly identify the VPN server -ASA 8.4(4)1
    I have added two servers in the client connection profile:
    IP address, primary protocol IPsec
    IP address/non-default port number, primary protocol SSL
    Connecting via IPsec only issues a warning about "untrusted source" (I didn't import the certificate as trusted, but that's not the issue)
    Connecting via SSL issues an additional warning "Certificate does not match the server name".
    The self-signed certificate (created with ASDM) includes the IP address as DN cn, additionally as alternate identity "IP address". I have exported the certificate and parsed it with openssl (after re-encoding to PKCS#12 DER) and apparently no attributes are included.
    I would like to give it a try with certtool and openssl to generate a self-signed certificate which is accepted by the Anconnect 3.1, where can I find a detailed description, which attributes are required for Anyconnect SSL sessions? I'm convinced the identity (DN cn) is OK.

    Shamelessly bumping this question,
    Anyone out there (maybe from Cisco) who can tell us, which atttributes are required on a self signed certificate?
    I keep getting "Certificate does not match the Server Name" for SSL-VPN, IPsec-VPN is fine for the same server.

  • How to retrieve user custom attributes in OID programmatically

    Hi,
    I created a custom attribute named "location" in OID. Could someone give indication/portion of code showing how to retrieve this custom attribute "location" of a user programmatically?
    For the moment, I just found sample code (using oracle.ldap.*) showing how to retrieve "uid" attribute of a user programmatically. I tried to get me inspired of this portion of code, but never succeed.
    Thanks a lot for any help.
    Jeff

    Use below code to get all attributes in user profile including UDF.
    OIMInternalClient objOimInternalClient = null;
    User user = null;
              UserManager usrService = null;
    objOimInternalClient = new OIMInternalClient();
              if (objOimInternalClient != null) {
                        try {
                             objOimInternalClient.loginAsAdmin();
                             usrService = objOimInternalClient
                                       .getService(UserManager.class);
                             user = usrService.getDetails("usr_key", strUserKey, null);
                             endDate = (Date) user.getAttribute("End Date");
                        } catch (Exception e) {
                             e.printStackTrace();
                        } finally {
                             if (objOimInternalClient != null)
                                  objOimInternalClient.logout();
                             if (user != null)
                                  user = null;
                             if (usrService != null)
                                  usrService = null;
    In order to see all UDF's in User profile, please create Authorization Policy.

  • How to find which attribute in the view object is dirty

    Hi all,
    I am using Jdev 11.1.2.2
    I am using this code to find if a data control is dirty
    iterator.getDataControl().isTransactionDirty();
    But is there a way to find out which attribute is dirty ?
    Thanks in advance

    Never tried but give this a try.
    1. Invoke ViewAttributeDefImpl[] VO.getViewAttributeDefImpls().
    2. For each ViewAttributeDefImpl, invoke isDirty().
    You may need to expose a VO method to make this accessible in view layer, if this works.

  • How to retrieve value of attribute using xPath ?

    Hello experts,
    I have a following xml chunk
    <image file="/articles/engineering/boxerengine/preview_282x160.jpg">
    <tout name="copyright"></tout>
    <tout name="license"></tout>
    <tout name="photographer"></tout>
    <tout name="description"></tout>
    </image>
    I want to retrieve value of attribute file from absolute node image.
    I tried using xpath='/image/@file' It gives output as file="/articles/engineering/boxerengine/preview_282x160.jpg"
    I just want value "/articles/engineering/boxerengine/preview_282x160.jpg"
    I tried using xpath='/image/@file/text()' . It does not work
    Following is the java code. I am using XOM parser.
    java code :
    Builder parser = new Builder();
    Document doc = parser.build(xmlFile);
    Nodes titles = doc.query(xPath);
    //xpath = ''/image/@file/text()"     
    for (int i = 0; i < titles.size(); i++) {
    strChunk = strChunk.append(titles.get(i).toXML());     
    return strChunk.toString();
    Please help.
    Thanks,
    Sandeep Parmar

    Hi Sandeep,
    Using XPath and XPathExpression you can evaluate XPath queries on Document. have a look at code given bellow:
    // Building Document from XML File
    org.w3c.dom.Document imageDoc = builder.parse(xmlFile);
    // getting new instance of XPath
    javax.xml.xpath.XPath xpath = javax.xml.xpath.XPathFactory.newInstance().newXPath();
    // Building XPathExpression by compiling XPath query
    javax.xml.xpath.XPathExpression xPathExp = xpath.compile("/image/@file");
    // Evaluting XPath Expression on Document
    String imagePath = (String) xPathExp.evaluate(imageDoc, javax.xml.xpath.XPathConstants.STRING);
    // Priting image path it will print : "/articles/engineering/boxerengine/preview_282x160.jpg", if you try with data given in your post.
    System.out.println(imagePath); Hope this will help.
    thanks,
    Tejas Purohit

  • Retrieve Data from the Webservice through Data connection in Adobe Form

    hi
                                            i done Student ejb application
    i.e, Create,Update,Retrieve,Delete operation. I create the WebServices to these operations. Present  i connect the webservice through data connection . create operation is done successfully, but i dont know how to retrieve the the student details through data connection. how i can bind the retrieve values to the table in adobe form .how to bind from webservices to adobe form without context node.

    I had the same problem in SAP B1 2007. Report worked fine except when it was open from B1. Generally there may be different problems. In my case the same problem was caused by using some procedure which was in a specific schema. Changing the schema into "dbo" solved the problem.
    Radoslaw Blaniarz

  • My apple id attached to my itunes account has expired and i have forgotten the password that was attached to it! I have created a new apple id but cannot transfer it to my itunes which all my apple products connect up to on my mac?! HELP!

    My apple id attached to my itunes account has expired and i have forgotten the password that was attached to it! I have created a new apple id but cannot transfer it to my itunes which all my apple products connect up to on my mac with all my pictures etc on!?! HELP!

    My apple id attached to my itunes account has expired
    They don't expire. As far as anyone knows Apple IDs live on forever - if you forgot its password use https://iforgot.apple.com. Good luck with the answers to whatever security questions it asks.
    ... I have created a new apple id but cannot transfer it to my itunes which all my apple products connect up to on my mac with all my pictures etc on!?!
    Right! That's the reason you do not create a new Apple ID.
    As far as Apple is concerned a new Apple ID is a completely different user, with absolutely, positively no access to anything available to any other Apple ID.
    Concentrate your efforts on resetting the password to your old Apple ID. It has not expired, and is the only way to use all your existing iTunes purchases, App Store purchases, computer authorizations... etc. Forget about the new Apple ID you just created.

  • I would like to know which apple server dictation connects to so that my proxy server will stop blocking it. Which apple server does it connect too?

    I would like to know which apple server dictation connects to so that my proxy server will stop blocking it. Which apple server does it connect too?

    I would presume so, but it might be worth your while to experiment and play around with different combinations to see if you can block FaceTime while keeping Game Center open.  Good luck!

  • HT1351 I have an Ipod classic which was the original device connected to Itunes.  I connected an Iphone 4S and can no longer see my Ipod classic.  How do I once again get it connected?

    I have an Ipod classic which was the original device connected to Itunes.

    The right way to consolidate your music is to copy it from one computer to another. You can copy music from an iPod classic though:
    How to use your iPod to move your music to a new computer:
    http://support.apple.com/kb/HT1329
    When the music is all in the same library, sync the Touch.
    You will still need to authorize your computer to play purchased music. For that, use the Apple ID that was used to purchase it.

  • I have a macbook 15 inch and philips LCD which I'm trying to connect my laptop to. I currently have a HDMI plugged in, but am getting an error message "no video input" on the LCD tv. Please help!

    I have a macbook 15 inch (retina display) and philips LCD which I'm trying to connect my laptop to.
    I currently have a HDMI cable plugged in, but am constantly getting an error message "no video input" on the LCD tv.
    I have checked the philips LCD to be in the HDMI mode and googled many threads but have
    not found a solution to solve my problem. Would appreciate any help given!

    Hello, anabelleho. 
    Thank you for visiting Apple Support Communities.
    Here is a troubleshooting article that I would recommend going through when experiencing this issue.
    Apple computers: Troubleshooting issues with video on internal or external displays
    http://support.apple.com/kb/ht1573
    Cheers,
    Jason H.

  • Which is best port for connecting external pc vga monitor to macbook pro

    which is best port to connect my macbook pro to external via monitor?

    not sure what you feel your options are most macbooks pro have a minidisplay port or a thunderbolt port which is the same connector
    and all minidisplay -> hdmi or dvi or vga works

  • Which cables are needed to connect macbook 13" to HDTV

    Hi, was wondering which cables i needed to connect my 13" aluminium macbook to a samsung HDTV. There's so many on the apple store, not entirely sure what I need. Any help would be appreciated.
    thanks

    Can you clarify whether you're using a MacBook Pro or a PowerBook?  Your post is ambiguous.  For good measure please tell us when it was purchased new.

  • What is the application which is always trying to connect to a server ?

    what is the application which is always trying to connect to a server ?
    My macbook is always trying to connect to one of my Mac which is not on the network ?
    How to stop with that ?
    Cheers.

    Oh, just the message ("there was a problem connecting to the server...."..)
    I (perhaps) just find the solution..
    I reset the sync service folder
    http://support.apple.com/kb/TS1627

  • I had an app which disables an iPhone to connect to the internet via mobile network. In the meantime I have deleted that app but it still affects my phone. For example iPhone shows that 3G sign on the top (next to the time) but it is unable to open any we

    I had an app which disables an iPhone to connect to the internet via mobile network. In the meantime I have deleted that app but it still affects my phone. For example iPhone shows that 3G sign on the top (next to the time) but it is unable to open any website. Is there anything I can do about it?

    What was the app you are referring to? I'm not aware of anything on the app store that is designed to do that, unless you're talking about an app that was causing a problem...
    Was/is your phone jailbroken?

Maybe you are looking for

  • How can we use Custom MessageBox in SelectionChangedEvent of LongListSelector for Windows Phone 8

    Dear Sir/Madam, How can we use Custom MessageBox in SelectionChangedEvent of LongListSelector for Windows Phone 8. Actually my problem is that When i am using Custom  MessageBox in SelectionChangedEvent of LongListSelector,when i am click Open(Left B

  • Messed up color on export and exporting to pal

    I exported my sequence as a quicktime movie and also 'using quicktime conversion' but both times it has created a quicktime file that plays back the color as a kind of tinted neon (not sure how else to describe it). I know I'm missing something simpl

  • What does the following code mean???

    what does the following code mean ?? fpm.raiseReviewAndSaveEvent(IFPM.EVENT_REVIEW, IFPM.EVENT_SAVE, vcFormEditButtons); thanks in advance. can you please tell me best site to learn WD4J coding. site having lot of WD4J code examples

  • A quan une mise a jour ios 6

                                      Madame Monsieur Suite a des bugs repetitif sur mon iphone 5 dont un probleme de sonnerie quand j apelle un telephone portable une sonnerie seulement et pleins d autre petite chose j ai telephoner a votre service il m

  • How to lock the statistics in column level.

    Hi All, i am using 10.2.0.1.0 version of oracle. I have gathered freuency histogram manually on one of my column of a table to provide more information to optimizer for better calculation of cardinality. Now i have my weekend job runs for gathering s