Prepopulate Adapter help

Hi All,
I am using OIM 9.1.0.2 BP07 and I configured DB Table adapter.I want to do prepopulate user form fields but, all form fields are getting populated with OIM UserID instead of respective fields. Below is the procedure I followed
1) On Design console, Development Tools-->Adapter Factory--->Created Prepopulate adapter called DBPrepop with Adapter Type Pre-populate Rule Generator.
2)Created Adapter tasks like user,fname,lname for variables user_id,first_name & last_name using API tcStringUtilOperations with method holdData and method input string is mapped to above variables.
3)On Design console,Form Designer--->UD_MY_Users(Provisioning form for my DB Resource)--> Create New Version --> Prepopulate-->Added 3 fields user_id,first_name & last_name with Rule as Default,Adapter as DBPrepop,Order as 1,2,3.
4)Mapping as below
     variable------>     Data Type------>     Map To------>     Qualifier
a)     USER_ID------>          String------>          User Definition------>          User Login
b)     FIRST_NAME------>     String------>          User Definition------>          Firstname
c)     LAST_NAME------>     String------>          User Definition------>          Lastname
Please suggest me on where I am doing mistake
Regards,
Madhu

Hi Sunny,
Thanks for the reply...
Plz clarify below doubts.
1) Which method can be used to achieve the above requirement instead of using holdData
2)In my scenario, I have created 3 prepopulate adapters for 3 fields( dbprepopusr---> user_id,dbprepopfn---> first_name,dbprepopln---> last_name) and with holdData method I am able prepopulate fields. Can I use  single prepopulate adapter  to prepopulate all the fields on a form
Thanks & Regards,
Madhu

Similar Messages

  • Prepopulate adapter help required

    Hello Experts,
    I have OIM 11.1.1.5 on win32 platform, and I have connected OIM to a database(target system) through a connector(DBAT connector).
    While provisioning a user to that database, it ask for the values which i need to store in database.
    What i want is to map those database values to OIM attributes.
    For example: my table has first name, last name column and instaed of manually providing those values i want to pre-populate those values from user definition.
    As i was doing R&D, I got to know that I have to create an pre-populate adapter(specifically a copy adapter). Kindly suggest me what are all the steps do I need to follow to
    do the same.
    Thanks in advance.
    Warm Regards,
    KK

    There are plenty of examples of Pre Pop adapter on the forum and internet . Please try to search out .
    You can access the below link to see a working example .
    http://identityandaccessmanager.blogspot.in/2011/07/prepopulate-adapter-in-oim-11g.html
    http://docs.oracle.com/cd/B31081_01/idmgr/b25939/using.htm
    Hope this helps.
    Thanks
    Suren

  • Prepopulate Adapter and Rule Generator Adapter

    Can anyone tell me the exact difference between Prepopulate adapter and Rule generator adapter? I have read the documentation but both seems to be same.
    Please explain me with an example scenario..
    Regards
    Pavan

    Hi,
    See if this help you in gaining more understanding.
    PrePopulate Adapter: They are mapped with the fields of process form and are used to prepopulate the fields value during the resource provisioning.
    RG Adapter: A RG Adapter incoporates business rules to the fields of either OIM user form or user defined form so that these fields can be automatically populated
    and saved to the database. You can use the RG & Entity Adapter to construct the userid from the firstname and lastname fields and prepopulate it.
    Difference:
    While both these adapter can be used to prepopulate values but RG Adapter has one to one mapping with the RG adapter and custom field. An RG Adapter once
    attached to a field cannot be attached with another field thus preventing adapter reuse. Beside this, no other type of adapter can be associated with that custom
    field.In contrast, the PrePopulate adapter can be reused and attached with multiple fields.
    Hope this will help you.
    Regards
    Sunny Ajmera

  • HP MediaSmart Connect x280n AC Adapter HELP PLEASE!

    HP MediaSmart Connect x280n AC Adapter HELP PLEASE!
    Please someone tell me where I can get an AC for this unit and if not, please tell me the part number of this AC Adapter if you own one of these please? I have iterally looked for over 15 hours the past 2 days and called HP only to be passed on from department to department with not one clue as to this part number or where I can obtain an adapter for my unit. I found only 2 on ebay that had visible markings on the AC in the pics but could make out neither of their text.
    Thanks in advance for any help.

    Did you ever get an answer to this question?
    I'm about to be in the same situation, and have been trawling the web to try to find a specification for the power supply.
    I can see that the unit requires 19V at 22W, but that's all.
    I don't know the size of the DC connector that is required.
    Thanks!

  • Autopopulationg filed on process form without using a prepopulate adapter

    Hi All,
    I have a requirement wherein I need to populate a field based on a condition like if the country on the user profile has value as 'US' then it should populate filed on the process form with the value as United States picking it from a lookup.
    The lookup has values like-
    Code Decode
    US United States
    IND India
    UK United Kingdom
    AUS Australia
    NZ NewZealand
    So it should check if the country field on user profile has value 'US' then it should populate the value as United States on the process form, if its AUS then it should populate it with Australia and so on...
    Can this be achieved without writng a prepopulate Adapter code(Java class)?

    Thanks Suren. I was stuck with another issue so could not respond. Have started with the Adapter code... just a few doubts...(may be basic but.. :-))
    The country field on user definition is look up field or text field , if look up ,then are both the look up same (process form and user form ).
    Both the fields are of type lookup and refer to the same lookup. Anything else required here?
    I think you would need to populate the process form field with code key from the look up and then pushing it to some target
    I didnt undersrtand this. I guess I need to populate the process form field with the decode value as I need to send to the target system the values- United States, India etc and not US, IND( code key) depending upon the value in the user profile form.
    And whatever value is returned by the prepop adapter, will it be displayed by default on the process form? Also, will other values that are there in the lookup show up in the page that pops up when I click on the magnifying glass against the country field on the process form( just to allow admin change them at the time of provisioning if reqd)?

  • Prepopulate Adapter to return decode value

    I have a lookup definition for company departments where the Code Key is a number and Decode is the department name.
    I want to create a prepopulate adapter that will populate the Active Directory department field with the name of the department and to do that I need the decode value from the lookup field.
    I've seen that there is an API for Lookup Operations (Thor.API.Operations.tcLookupOperationsIntf) and even a function for getting decode values
    getDecodedValueForCoumnEncodedValue(string, string)
    I don't know what the two string parameters are, does anyone else know?

    I have a lookup definition for company departments where the Code Key is a number and Decode is the department name.
    I want to create a prepopulate adapter that will populate the Active Directory department field with the name of the department and to do that I need the decode value from the lookup field.
    I've seen that there is an API for Lookup Operations (Thor.API.Operations.tcLookupOperationsIntf) and even a function for getting decode values
    getDecodedValueForCoumnEncodedValue(string, string)
    I don't know what the two string parameters are, does anyone else know?

  • Mini dvi to video adapter help pleaseeeeeeeeeeeeeeeeeeeeeeeeee

    right,
    ive got a 20" intel imac. i bought a mini dvi to video adapter.it said it works with the intel macs.
    i maybe being a bit thick here but the end of the dvi seems to be a different size to the port on the mac.
    please help....................

    You might find relief in the iMac Forum. Perhaps they will appreciate your distinctive thread header style more fully.
    good luck.
    x

  • Travel adapter help

    I moved to London in December after buying my iBook in the States. I'm not living here forever, so I bought some travel adapters to make my stay here easier. I've been using the England adapter since I got here, and this weekend started to notice that it didn't always give power to my computer. It sometimes gives power, and at other times the light is gray. Does anyone have any suggestions (other than buying ANOTHER set of adapters?) I'm going to be here until at least the summer, and the one I bought for my Airport Express seems to be working just fine. Thank you! S
    iBook G4   Mac OS X (10.4.5)  

    Not so much a reply as piggybacking on a topic raised in this thread.
    I'm travelling to India next week, and discovered - to my surprise -
    that the World Travel Adapter Kit (WTAK) doesn't have anything that
    works with India's electrical plug standard. In the dim recesses of my
    memory, I recall that someone had ferretted out the name of the OEM
    supplier of Apple's Powerbook AC adapter, and discovered an aftermarket
    supplier of various 'duckhead' plugs that fit them, much like the ones in the
    WTAK, but with support for other electrical standards - which might
    even iinclude India's.
    And yes, I realize I can stick a converter plug on the end of the standard
    Edison cable that comes with every AC adapter and handle it that way, but I'll be moving around a lot, and having a dedicated plug on the end of the Apple adapter cube itself will be much slicker.
    Can anyone help? The usual search engines have come up empty. I recall
    the supplier being Asian, with an odd name, but that's probably not
    much help. The irony is that one search took me to the Apple Store in
    India's listing for the WTAK, which of course does not help anyone
    either in India or travelling there -at all-.
    Given Steve Jobs' fondness for all things Indai, you'd think this would be a #1 priority, but sadly, I guess it's not.
    Thanks in advance.

  • File Content Conversion in Receiver Adapter Help

    Hi,
    I need to have a flat file at receiver side with the following structure.
    Product
    LineItem
    Notes
    Product
    LineItem
    Notes
    But i am getting as
    Product
    Product
    LineItem
    Notes
    Notes
    Please suggest me the changes to be made in File Content Conversion Parameter
    Your Help will be appreciated.
    Thanks in advance,
    Ashok

    Singh,
    I think we wont give field names in the receiver file adapter. Please find the details below:
    RecordSet Structure: Product,LineItem,Notes.....
    Parameters:
    Product.fieldFixedLengths:30,10...
    Product.endSeparator:'nl'
    LineItem.fieldFixedLengths:30,10..
    LineItem.endSeparator:'nl'
    Notes.fieldFixedLengths:30,10...
    Notes.endSeparator: 'nl'
    Thanks
    Ashok

  • Error in Prepopulate Adapter

    Hi All,
    I am using EBS-UMHF connector to connect EBS R12 and OIM 11g . Now while provisioning user from OIM to FND_USER table of EBS 6 field are getting prepopulated in UD_EBSHF_USR form due to connector. I want to prepopulate one more field So I created one Prepopulated adaper with one adapter variable which will be resolved at run time.
    I added an entry of that adapter in form while running and trying to provsion, that field is not getting populated and its giving following error:
    Class/Method: tcBaseRuleGenerator/run encounter some problems: java.lang.String[[java.lang.ClassCastException: java.lang.String
    The datatype of the field which i want to populate is Varchar2 in USR table of OIM so i have taken datatype of adapter variable as String.
    Can any one please suggest the cause of this error. I have added the prepopulated adpter in the same way it is added for first name and last name by the connector.
    Thanks in Advance!!!
    Waiting for your response.
    Tushar                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    hi Suren ,
    Thank you for your reply.
    I am trying to prepopulate Employee number which is Varchar2 in USR table and i am using datatype as String as Varchar2 is not available to assign datatype to adapter Variable. Then also i am getting same error.
    Thanks!!
    Tushar
    Edited by: user13405070 on Jun 2, 2011 3:15 AM

  • Universal Dock Adapter Help

    Hi All,
    I just received my 60gb 5g ipod and universal dock. I am having trouble with the dock adapter and wondering if anyone had the same problems or insight into my problem.
    The adapter I got is labeled 9. It seems to be clearly too small to fit the 60gb ipod, looks like would be good for the 30gb. With it in the universal dock...there is only about 2-3 mm of space...which is not enough for the 60gb it seems to me... as far as reference it looks like the adapter that came with the universal dock for the 20gb ipod (#'s 4 and 6). I tried using the adapter for the 40gb and that actually lets the ipod go in and connect. But still not the perfect fit that I am looking for.
    Thanks for any input or help.
    Did other people with the 60gb 5g ipod have the number 9 adapter?
    Thanks,
    Jason

    Go to the Apple Store online, 3 pack, $9.
    I'll make it easy for you: click
    http://store.apple.com/1-800-MY-APPLE/WebObjects/AppleStore.woa/7200505/wo/NS4ax agJH3TE2zQ0hsZryPzEo6u/2.SLID?mco=F0F997D9&nplm=MA126G%2FA

  • Registering USB Power Adapter - Help

    Hey, does any1 noe how to register the USB Power Adapter for the iPod? ive tried puttn in all the numbers on the boxes and it doesnt work and it says that its not a valid serial number. the problem is, i also dont have the receipt for teh adapter either since it was a gift from a friend so that would also disable me from knowing the "enrollment number" as well.. help or suggestions NE1? hit me back here or email me personally @
    [email protected]
    thanks in advance

    What do you mean "register"?
    Are you trying to register it with Apple for warranty purposes?
    ive tried puttn in all the numbers on the boxes and it doesnt work and it says that its not a valid serial number
    Probably because there is no option to register a USB power adapter. The registration page is looking for an iPod serial number which you want to register.

  • USB to PS2 Adapter Help

    Quick question:
    Being that the MAC Mini is so small, I want to be able to bring it to work with me once in a while.
    However, at work, my KVM (2 port) switch only has PS2 inputs. There are no USB inputs for a keyboard and/or mouse (which is the only thing the MAC Mini will take)
    At radio shack, they have those USB to PS2 adapters (It kind of looks like a Y adapter with 1 Male USB plug on one end, and, the 2 PS2 female ports "green and purple" on the other end). I am wondering, if anyone out there is using one of these for their MAC Mini. I wanted o know this before going out and buying one, just to find out that I wasted my time.
    Any help would be appreciated.
    Gary

    I too was using a PS/2 KVM and tried the PS/2-to-USB adapter. The mini was unable to recognize the keyboard but the mouse worked fine. I tried several brands of these adapters, but none worked. My PC, on the other hand, didn't have any issues with this configuration. At the time I was using a Logitech Duo wireless keyboard/mouse.
    I ended up gettting a USB KVM and a USB keyboard/mouse combo that works great for both the PC & Mac. The mini, like all computers, needs to "recognize" the devices plugged into it, but the mini becomes "near-sighted" especially when KVMs are added to the mix.

  • Using Apple Pro Speakers with MacBookPro - Adapter Help???

    I just got a brand new MBP which is awesome! I am having a lot of fun with it.
    However a real bummer I noticed is my old Apple Pro Speakers would not connect into my MBP jack. I have done some initial research on this and it seems like the only way to have them connect is get an adapter, Griffin iFire? I looked into that a little and unless I missed something that product isn't being made anymore.
    Can anyone offer any other links / ideas on how I get get these speakers to work? They worked great on my G4 and have an iSub so I would hate to not be able to use them anymore and have to outlaw more money for newer speakers.
    Thanks again for any help!!!
    -C

    The iFire adapter by Griffin did the trick, and it works like a charm. Although the iFire is no longer being manufactured, you can still find them on eBay or through some online computer retailers. Thanks everyone for their help.

  • Scripted Gateway Resource Adapter - Help requested

    Hello all,
    Sun IDM 8.1.0.9 running on JBOSS 4.2 running on Redhat 5.0
    Gateway server is Windows Server 2008 R2 (x64)
    I'm trying to use the Scripted Gateway Resource Adapter. I can get it to execute Windows CMD files just fine but as soon as I ask the cmd file to run either powershell or even vbscript, it craps out. Return code is -65536 and Error text is just the letter 'W'.
    Enter: reply
    Enter: sendBuffer
    Sending buffer:
    <?xml version='1.0' encoding='UTF-16'?>
    <Response>
    <Result status='ok'>
    <ResultItem type='ACTION_RC'>
    <object class='String'>-65536</object>
    </ResultItem>
    <ResultItem type='ACTION_STDOUT'>
    <object class='String'></object>
    </ResultItem>
    <ResultItem type='ACTION_STDERR'>
    <object class='String'>W</object>
    </ResultItem>
    </Result>
    </Response>
    I know the Gateway.exe program is a 32-bit program and is quite particular about that and I have tried to take that into account when calling PoSH or VBScript.
    If anyone has had any experience with this adapter, any help or guidance would be greatly appreciated.
    Tim.
    Edited by: tmunro55 on Nov 14, 2011 10:28 AM

    OK so here's the scoop. Rather than upgrading the IDM to OW 8.1.1 (which will happen eventually, just not fast enough), I downgraded the Gateway server to Windows Server 2003 (x86). It all works. The answer that it required OW 8.1.1 for Server 2008 R2 was indirectly spot on.
    Marking this as answered.
    Thanks.
    Edited by: tmunro55 on Nov 16, 2011 6:56 PM

Maybe you are looking for

  • Sales orders conversion from OR(standard) type to Directshipment orders

    Hi Friends, My requirement is like that..iam working on SD automation report it will copy standard orders(OR) and will create Direct shipment orders through bapi BAPI_SALES_ORDER_CREATEFROMDAT2.upto this its working fine....Once the OR type order has

  • Calling a webservice with SOAP Receiver

    Hi Guys,    Im calling web service from XI using SOAP. I could call the webservice using XML Spy, It is working fine.In XML spy I could se the response (variable out , type double).    When i call the same web service from XI It doesnt give any error

  • Can I stream movies to my Samsung Smart TV?

    Hi! I recently purchased a Samsung Smart 3D TV, which connects to the internet and stuff. Will there be a way for it to connect to the time capsule and stream files from it? Will I need to change the Capsule to a file server?

  • Payment medium work bench

    Hi, Any body can tell me where we can assingn payment medium workbench for all three in the following formats: XXX                    Domestic payment transations AA XXX_zzzz            Domestic Payment transaction AA XXXX_yy_ZZ         Domestic Paym

  • Extended Withholding Tax output

    Hi, We have maintained same Tax codes for Vendor 01 and Vendor 02. But for Vendor 02 i m getting the wrong output value.