How to do autoprovisioning to a custom connector based on jobcodes?

Hi,
I have developed a custom connector which has 50 job codes. Based on the job codes we need to do autoprovisioning. How this is possible? do we need to create rule for each job? Thanks in advance

It means, when your provisioning happens, you have the "Create User" task. This is actually just a non-conditional task which runs after the process form saves. You can trigger a new task on the response code for a completed user which then performs logic associated with your job code and do any other additional provisioning.
For your logic, you can store information like "Job Code ABC=Target Role XYZ" and place these into a lookup and reference them.
-Kevin

Similar Messages

  • How to pass parameter to the custom class based on CL_RSR_WWW_MODIFY_TABLE

    Hello
    I created custom class based on CL_RSR_WWW_MODIFY_TABLE in order to modify web template.
    I would like to pass parameter to this class. How is it possible?
    HUGE thanks!

    Hello ,
              Various methods will be given for the class like CAPTION_CELL CHARACTERISTIC_CELL:
    Position the cursor on the name of the method and click on 'Redefine' , where you will get the parameters used in the method such as I_X, I_COLSPAN, where you can define your logic.
    hope it helps
    assign points if useful

  • How to change the values in custom profiles based on security group ??

    Hi,
    i am facing problem for my requirement, can anybody help me for below scenario...
    i have custom check in profiles , there are content types and sub types. sub type nothing but a categories on for particular content type. For example i have News content type , same in the below subtypes drop down list are press release, events, articles etc.
    what i want to do is, when i open custom checkin profile, subtype values need to be changed( some values in subtype should hide) based on security group changes .
    In the Sub type listed values, some values need to hide only when i choose different security groups.. sub types values should display based on the particular security group only. when ever i change the security group, drop down Values in subtypes needs to change.
    hope understand my requirement.
    How to achieve this task. Any help would be greatly appreciated.
    Thanks,
    yt

    Hi,
    Thanks alot. its working fine
    Can we configure DCL Relation two times in one information filed ??? i should not create not more than fields to this requirement.
    Type -> subtype = DCL already existed
    Now, i want to Create DCL to
    Subtype ---> Security group
    As per my requirement, if i change the security group in checkin form, values should be change in the SubType drop down list.
    Created checkin profile there was DCL relation to " Type and "Sub Type" . now i want to map Relation ( DCL ) for subtype to security group.
    i was trying do for DCL for subtype and security group. but there was already existing DCL created for subtype information field (Relation configuration done for content type). even though i was trying to do for DCL in Security group information field. but, i could not find security group information field in configuration manager.
    Now what should i do ?? how to create DCL to subtype and security group ??
    Help would be appreciated.
    yt

  • GTC or custom connector?

    Hello everyone,
    We have a third party J2ee application that we need to integrate with OIM 11g. third party application exposes SOAP enabled webservices. Now I am thinking of two approaches
    1. use GTC,
    2. build custom connector
    based on your experiences, could you please suggest best approach for the integration..
    I personally feel that GTC would suit because it sets a platform a connector development.
    Thanks,
    phil

    I'll recommend Custom Connector.
    It would be your own. You can customize it upto any level.

  • How to deploy informatica cloud custom connectors in dev org and prod

    Hey Kishor,  Reach out to myself and Sheryl Sage to help you get your connector into the dev / prod sandboxes.  Regards, Nick Piette Product Manager Informatica Cloud

    Dear Members, I am  new to informatica  cloud connectors  tool kit.   How to deploy informatica cloud custom connectors in dev org?To whom i have to contact for connector deployment in informatica cloud? Thanks & Regards,Kethineni Kishor Kumar,

  • Restful Webservice custom connector

    Hi All,
    I would like to know the best practice to create custom connector for Restful web service methods.Currently we are following simple java code which connects to service provider and pass the JSON object and perform the required actions.
    Is it possible to develop this kind of connector using ICF, if yes what is the process need to follow Or is there any best way to achieve this.
    I am currently trying to configure using ICF by following the example provided in learning library.
    Thanks
    Arun

    Hi,
    Follow below steps to create custom connectors:
    1. Create IT Resource Definition -- which will be your connector class connection parameters
    2. Create IT Resource - provide all connection parameter values
    3. Create Resource Object
    4. Create Process Form, add all required fields that are required for your target system.
    5. Create process task adapter and call you java code to create user record in target system
    6. Create Process definition (Provisioning Type), attach process form created above step and also check "default process"
    7. Create unconditional task in process definition say "Create User" and map the adapter created in step 5.
    These are high level steps, I hope u know how to create all above OIM metadata.
    Regards,
    Raghav.

  • How to I connect to a custom CMS from FrameMaker Connenction Manager?

    Hello,
    I am using the Adobe Technical Communication Suite 5 and was wondering how
    I can connect to a custom CMS, using the Connection Manager in FrameMaker 12.
    Is there a write-up on  making custom connections anywhere?
    Thanks,
    Jim

    See:
    http://blogs.adobe.com/techcomm/2012/09/open-source-sample-connector-between-framemaker-11 -and-adobe-cq-now-available.html
    How to build a connector between your CMS and FrameMaker 11? New CMS API documentation now available! « Technical Commun…
    Framemaker Developer Center | Adobe Developer Connection [See third section down (CMS Connector)]

  • Calling RFC from custom connector

    Hi,
    I am developing a custom connector for UWL to get tasks from 3rd party system.
    I need to call a RFC from backend SAP system to complete Input data for this 3rd party provider.
    I assume that I have to make an RFC call from getItems() method of connector.
    Any idea how to call a RFC from UWL custom connector code?
    Please help.
    Thanks & Regards,
    Amey

    Hello Karri,
    Yes, I am aware of two ways of calling RFCs from Java code.
    Normally, I use following approach to call RFCs from my other Portal Components (JSPDynpages): -
    IPortalComponentRequest request = (IPortalComponentRequest) this.getRequest();
    IPortalComponentContext myContext = request.getComponentContext();
    IPortalComponentProfile myProfile = myContext.getProfile();
    String sapSystem = myProfile.getProperty("SystemIdentifier");
    ISystemLandscapeWrapper landscapeWrapper = (ISystemLandscapeWrapper) UMFactory.getSystemLandscapeWrappers().get(0);
    ISystemLandscapeObject systemLandscapeObject = landscapeWrapper.getSystemByAlias(sapSystem);
    IJCOClientService clientService = (IJCOClientService) PortalRuntime.
    getRuntimeResources().getService(JCO_CLIENT);
    request.getNode().putValue(LOCALE_NODE_KEY,     Locale.ENGLISH);
    IJCOClientPoolEntry poolEntry = clientService.getJCOClientPoolEntry(sapSystem,request);
    JCO.Client client = poolEntry.getJCOClient();
    client.connect();
    IRepository repository = JCO.createRepository("repository", client);
    IFunctionTemplate functionTemplate = repository.getFunctionTemplate(Z_BAPI_EMP_GBU_GET);
    JCO.Function function = new JCO.Function(functionTemplate);
    JCO.ParameterList importList = function.getImportParameterList();
    importList.setValue("US", "OBJTYP");
    importList.setValue(request.getUser().getUniqueName(), "USRID");
    client.execute(function);
    JCO.ParameterList outputList = function.getExportParameterList();
    gbuCountryBean.setGbu(outputList.getString("GBU"));
    gbuCountryBean.setCountry(outputList.getString("COUNTRYCODE"));
    gbuCountryBean.setPersArea(outputList.getString("PERS_AREA"));
    gbuCountryBean.setCompanyCode(outputList.getString("COMPANYCODE"));
    When I tried implementing same in UWL custom connector, I am not able to get instance of 'request' object.
    Any hints/ideas on this?
    Hence as an temporary alternative, I wrote following to successfully execute RFC.
    mConnection = JCO.createClient(sapclient,  sapuser,
    sappassword,  "EN", saphost, sapsysnumber);
    mConnection.connect();
    mRepository = new JCO.Repository("GetLeaveRequestFlag", mConnection );
    IFunctionTemplate ftemplate = mRepository.getFunctionTemplate(Z_BAPI_CHECK_LR_TO_APPROVE);
    myFunction = new JCO.Function(ftemplate);
    JCO.Field OBJECT_TYPE = myFunction.getImportParameterList().getField("OBJECT_TYPE");
    OBJECT_TYPE.setValue("US");
    JCO.Field USERID = myFunction.getImportParameterList().getField("USERID");
    OBJECT_TYPE.setValue(p_userID);
    mConnection.execute(myFunction);
    JCO.Field leaveRequestFlag = myFunction.getExportParameterList().getField("FLAG_LEAVE_REQUEST_RECORD");
    mConnection.disconnect();
    But only catch here is that I need to create & maintain SAP logon credentials for a particular user manually.
    It is not possible to single sign on connector user into SAP system (like its done above).
    Any thoughts on this?
    Thanks & Regards,
    Amey

  • Custom Connector - Reconciliation

    Hi Gurus,
    I need to write a custom connector for the target. I know the steps to be followed for provisioning.
    Can someone guide me how to write the reconciliation tasks in this custom connector.
    My schedule task should iterate over all the records, or oim will do iterate over the records. I am confused about this.
    Thanks in advance.
    Regards
    vicky

    If you have "many" (more than 1 000 users or so) you should break up the user loading into chunks.
    Take a look at this thread: Re: GTC incremental reconciliation task.
    Start by breaking up the the recon into more manageable chunks of a 1000 users. In some cases you need to do leverage additional methods to stop OIM from gauging on massive amounts of user events.
    Hope this helps
    /Martin

  • Custom connector

    What is custom connector, and how to develop a custom connector?
    let me know any example or steps
    thanks

    Hi,
    Follow below steps to create custom connectors:
    1. Create IT Resource Definition -- which will be your connector class connection parameters
    2. Create IT Resource - provide all connection parameter values
    3. Create Resource Object
    4. Create Process Form, add all required fields that are required for your target system.
    5. Create process task adapter and call you java code to create user record in target system
    6. Create Process definition (Provisioning Type), attach process form created above step and also check "default process"
    7. Create unconditional task in process definition say "Create User" and map the adapter created in step 5.
    These are high level steps, I hope u know how to create all above OIM metadata.
    Regards,
    Raghav.

  • OIM 10g - custom connector - modify user

    Hi
    I am writing a custom connector for OIM 10g and looking out for modify request format. My application has roles which are managed by OIM. When I call 'modify user' to update user's role in the application, I want to have the information of old role and new role in the connector. Please let me know how can I get the information of old role for the provisioned resource. I want to log the information that at the time of 'modify user' which role was newly added and which role was deleted.
    Does anybody has information about how this can be implemented.
    Thanks

    Well , When you write a process task for adding/ removing the child table , you specify in the task configuration the child table name and trigger type (insert OR delete)..
    So when you add or remove operation from child process form in OIM, OIM know which task it has to trigger and you can put the logic to add /remove the role in the adapter attached to the task .
    Thanks
    Suren

  • Customizing UWL for Custom connector

    Hi,
    I have implemented a UWL Custom connector to get tasks from a 3rd party system.
    We are using UWL only to get tasks from custom 3rd party systems only. (there are no SAP workflow task configured)
    I followed this link http://help.sap.com/javadocs/nwce/ce71/uw/UWL%20Custom%20Connector%20API.pdf
    to write a custom connector and tasks are appearing in UWL.
    Now I have to do following configurations: -
    1. By clicking on a task's subject, it should open a URL provided by 3rd party system. (currently it opens a pop-up window with some description about task)
    2. Hide the information area that appears below the work-list table
    3. Hide Alerts, Notifications & Tracking tabs
    4. Hide Create Task button
    5. Add few columns in Worklist and hide some of the existing ones.
    Can you please guide me how to do this?
    Thanks & Regards,
    Amey Mogare

    Hello Kari,
    Thanks for your replies.
    3. Hide Alerts, Notifications & Tracking tabs
    >>> DONE  (I could hide those tabs by setting property "UWL Navigation Style = none" in UWL iView)
    So just one question remains now... Editing columns.
    Yes, I went to the exact same place that you mentioned (before posting this question).
    System Admin
            / System Config
                   / Universal Worklist & Worklfow
                          / Universal Worklist - Administration
                                      /Click to Configure Item Types and Customize Views Using a Wizard
                                             /Customize the look of the UWL main page
    At this screen, no tabs are shown! The drop-downs for Navigation nodes, Available tabs are empty.
    Hence, I am not able to remove/hide anything from here.
    Also, lets say if I want to do it by manipulating standard UWL xml (as mentioned in thread you mentioned in your reply), from where can I download this XML?
    Thanks for your replies.
    Regards,
    Amey

  • UNIX Custom Connector

    Hi ,
    I am using OIM 11g R2.I am getting the following error while compiling the DeleteUser Adapter.Its throwing compilation error.
    [2013-05-28T06:18:10.465+00:00] [oim_server1] [ERROR] [] [org.quartz.impl.jdbcjobstore.JobStoreCMT] [tid: QuartzScheduler_OIMQuartzScheduler-wdsciamwebd021369405041119_MisfireHandler] [userId: oiminternal] [ecid: 0000JvMt4gPDOd8_zhDCiW1HbrMy000002,1:30764] [APP: oim#11.1.2.0.0] MisfireHandler: Error handling misfires: Unexpected runtime exception: null[[
    org.quartz.JobPersistenceException: Unexpected runtime exception: null [See nested exception: java.lang.NullPointerException]
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.doRecoverMisfires(JobStoreSupport.java:3042)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport$MisfireHandler.manage(JobStoreSupport.java:3789)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport$MisfireHandler.run(JobStoreSupport.java:3809)
    Caused by: java.lang.NullPointerException
         at org.quartz.SimpleTrigger.computeNumTimesFiredBetween(SimpleTrigger.java:800)
         at org.quartz.SimpleTrigger.updateAfterMisfire(SimpleTrigger.java:514)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.doUpdateOfMisfiredTrigger(JobStoreSupport.java:944)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.recoverMisfiredJobs(JobStoreSupport.java:898)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.doRecoverMisfires(JobStoreSupport.java:3029)
         ... 2 more
    [2013-05-28T06:19:51.380+00:00] [oim_server1] [ERROR] [] [XELLERATE.ADAPTERS] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: ea1908927bef026e:12acfd44:13ed6e3f0a1:-8000-000000000000c4c4,0] [APP: oim#11.1.2.0.0] Class/Method: tcAdpUtils/compileAdapter encounter some problems: Could not compile adapter : adpUNIXCUSTOMDELETE
    Regards,
    Soumik

    Hi,
    Follow below steps to create custom connectors:
    1. Create IT Resource Definition -- which will be your connector class connection parameters
    2. Create IT Resource - provide all connection parameter values
    3. Create Resource Object
    4. Create Process Form, add all required fields that are required for your target system.
    5. Create process task adapter and call you java code to create user record in target system
    6. Create Process definition (Provisioning Type), attach process form created above step and also check "default process"
    7. Create unconditional task in process definition say "Create User" and map the adapter created in step 5.
    These are high level steps, I hope u know how to create all above OIM metadata.
    Regards,
    Raghav.

  • Bridge crashes with Custom Connector

    We've built a custom connector for Drive to connect with our DAM. If we enable the READ_XMP_METADATA capability, Bridge crashes immediately as soon as we browse a folder where images exist. We strongly believe the crash occurs when Bridge tries to read the thumbnails for the images (thumbnails for images is a mandatory feature for us). It happens on every Drive version from 4.2 to 5.0.1, on Windows 32/64bit and on OSX.
    On the hotline I was told there is no telephone support for Drive and I should consider going to the forums, so here I am. Please advise how to get a solution for this. I can provide sourcecodes and access to our server to reproduce the problem.

    Hello!
    Can somebody give a hint here? We are blocked by this problem.
    Regards,
    +manuel-

  • Need help to develop a custom connector

    I need some help on developing the custom connector to Homegrown application and the version i am using is OIM9.0.3
    First of all what are the steps do we need to care while developing a custom connector.
    I can't able to find the process in google to develop the custom connector.
    If you have any data regarding the development of custom connector, plz share to me....
    What are the thing do we need to take care while developing the connector.
    I referred in OIM9.1 version there was an option to develop the Custom connector by using Genric technology, can we create the custom connector by using the GTC feature in OIM 9.1
    early response will be appreciated

    The docs for the new GTC framework are here: http://download.oracle.com/docs/cd/E10391_01/doc.910/e10360/about.htm#Toc153968019. GTC is useful if you target application exposes standards-based SPML (Service Provisioning Markup Language) user management interfaces, although it sounds like this isn't the case for you.
    You will most likely need to go the traditional route in terms of connector development, which involves building OIM Process Task Adapters to invoke the application API's (I assume they're Java?) and invoking those adapters from within an OIM Provisioning Process.
    Rob

Maybe you are looking for

  • Please help! Video Problem.

    Hey im doing a video project, I uploaded it from a camera onto iMovie at home, then when I saved i made a .mov file. I sent that .mov file to my home, but when I try to do anything with it, it says im missing "Clip 1" or "Clip 2" and wont play. Anyon

  • Inbox won't display senders names from Contacts list?

    Is there a way to get the iPhone email Inbox to display the sender's name from my Contacts list when the user is on my Contact's list? As it is now, when I go to my Inbox on the iPhone, it shows a list of email addresses instead of the name's of the

  • Sftp server is broken

    My sftp server is broken, but ssh still works. I'm sure that sftp is not choking on a banner because ssh my.server.name /usr/bin/true returns nothing. The error I'm getting from sftp is: Request for subsystem 'sftp' failed on channel 0 Connection clo

  • Hi I am have difficulties with my I tunes and Sync ...

    Hi I am have difficulties with my I tunes and Sync ... Firstly i when starting up Itunes in windows 7 .. it tells me it is incompatible when trouble shoouting it does the same ... also when hooking up I pod classic .. it will not sync .. even when i

  • CS2 Version Cue: lost work space. (???)

    Safari was crashing and error was wrong flash player plug in. SO... I reinstalled flash player, then doing some things with the software apps and did a hard disk test, I did 'something' wrong. My computer crashed and when I restarted it, I had a tota