Saturday, July 5, 2014

DBAT Connector & Flat file connector 11.1.1.5.0

The new ICF based DBAT connector and Flat file connector has been released. I think from now onwords  people will not use GTC. :)
 The document link for  new DBAT and Flat file connector is as below

Tuesday, July 1, 2014

Get user key in Event Handler

In the event handlers, we can get the user key using by the below ways:


  1.  orchestration.getTarget().getEntityId()                                                                                                              
  2. public long getUserKey(String userLogin) throws NoSuchUserException, UserLookupException, SearchKeyNotUniqueException, AccessDeniedException            {

               long usrKey=0;  
               UserManager usrService= oimClient.getService(UserManager.class);
                   User user = usrService.getDetails("User Login", userLogin, null);
                   HashMap mapAttrs = user.getAttributes();
                    usrKey= (Long) mapAttrs.get("usr_key");
                   System.out.println("key is is :" + usrKey);
             return usrKey;
     }