APIs for accessing account details

Hi Experts,
I want to get the details of a process form using one of its custom fields as input. I then have to find the oim user assosciated with this account. Please suggest the APIs which can be used.
Regards,
Subin

For accessing content in UCM you can use the RIDC APIs or UCM Web Services. Note that the UCM also provides features for workflow etc. that could potentially be used for notifications refer to the developer guide for details. For UCM related questions you may want to use this forum instead
Jani Rautiainen
Fusion Applications Developer Relations
https://blogs.oracle.com/fadevrel/

Similar Messages

  • API for Load Nominee Details in Core HRMS

    Hi,
    Pls let me know API for Load Nominee Details in Core HRMS
    Thanks in advance,
    Hanimi.
    Edited by: Hanimi on Mar 4, 2011 10:02 PM

    Hello,
    All kind of nominees/beneficiaries are comes under contacts. To insert contact you can use HR_CONTACT_REL_API.CREATE_CONTACT.
    Ayaz

  • API for access of guided procedure from ABAP / WebDyn: change/read status

    Hallo together,
    I'm very new to guided procedure and have some questions about possible interaction between WebDynpro ABAP and Portal guided procedures (UWL ?)
    is it possible to access a guided procedure or their attributes from WebDynpro ABAP? What are the relevant key attributes (ID's) to do so?
    Is is possible to change the status of a guided procedures f.e. from "completed" to "ready" from outside, let say WebDynpro ABAP? for the purpose of a monitor for mgrs.
    - possible szenario is a manager says: "no, not well done" go back to start and do it again !
    - another szenario: guided procedure is "running" and should be set to "completed"
    Any hint will be helpfull
    Thanx very much in advance
    regards Hans

    Hi Hans,
    There is a good and a bad news regarding APIs for GP and ABAP Web Dynpro and GP:
    The good news is that you can find [here|http://help.sap.com/javadocs/nwce/current/gp/index.html] the APIs for GP.
    The bad news is that the cooperation capabilities between GP and ABAP Web Dynpro are restricted in a certain way. One can use a ABAP Web Dynpro in GP as callable object, but GP is only capable to transport parameter values from GP to the UI but not vice versa. In many cases one needs a solution where the ABAP Web Dynpro UI accepts user inputs and forwards them to the GP context. This is not supported.
    Regards,
        Jan

  • APIs for accessing the ESS log and output files from UCM

    Hi,
    As I understand, the output and log files of an ESS job will be uploaded to UCM.
    We have a requirement where in we are building a simple error handling framework, which gets triggered after a series of ESS jobs are run. In the error handling framework based on some processing logic we need to e-mail the error or log files to the users. I am not able to find any information related to retrieving the log and output files for and ESS job from UCM. Any inputs on this will be appreciated.
    Thanks for your help,
    Thiru

    For accessing content in UCM you can use the RIDC APIs or UCM Web Services. Note that the UCM also provides features for workflow etc. that could potentially be used for notifications refer to the developer guide for details. For UCM related questions you may want to use this forum instead
    Jani Rautiainen
    Fusion Applications Developer Relations
    https://blogs.oracle.com/fadevrel/

  • Is there any api for accessing OSB OOTB jms reporting data

    hi Experts,
    My customer is using osb11.1.1.7, they asked me if osb provides method to access native report data, they don't want to implement report plugin, but need some methods to integrate report data into other applications beyond quering it from osb console.
    Best regards

    Based on how you described the scenario, it seems like you can implement a Custom Reporting Provider to access the OSB report data and appropriately use it.
    Please refer to the example Custom Reporting Provider @ http://www.oracle.com/technetwork/middleware/service-bus/learnmore/index.html for more details and a sample implementation.
    I am not a big fan of using the built in DB structure of the reporting tables as it is very generic and does not allow you to create indexes on certain business fields, partitioning etc ...
    I would rather prefer to build a custom reporting layer to extend the reporting data and populate a certain set of tables (aligned to my specific business needs, with proper indexes and partitioning to help support the data optimally) and then querying this data to provide visibility to other teams/applications.
    Hope this helps.
    Thanks,
    Patrick

  • Which API for Additional Assignment Details?

    Hi All
    I have two segments for the Additional Assignment Details DFF, first 'Mobile Provided' and second 'Food Allowance'. For this i want to pass 'yes' or 'no' for the employees.
    Which API I can use for this?
    Regards
    Rahman

    Use the 'hr_assignment_api.update_emp_asg' API and pass the values for the DFF in the attributes depending on the attributes you choose while registering a DFF...
    Ex:
    p_ass_attribute1 => 'Mobile Provided',
    p_ass_attribute2 => 'Food Allowance'
    Best Regards
    Arun Kumar S.R
    Apps Associates

  • SOA Infra Mgmt API for BPEL activity details from work_item table in MDS

    Hi Guys,
    Can anybody please tell, whether there is a class/interface available inside Infrastructure Management Java API Reference for Oracle SOA Suite 11g to get information of running BPEL process ACTIVITIES (invoke, receive wait etc.)?
    Thanks in Advance.
    - Abhijit

    Hi
    Thanks for your reply
    Here is my installation details on Linux 32 bit OS:
    Weblogic server- wls1032_linux32.bin
    Repository Creation Utility- ofm_rcu_linux_11.1.1.2.1_disk1_1of1.zip
    SOA Suite- ofm_soa_generic_11.1.1.2.0_disk1_1of1.zip
    JDeveloper Studio, base install- jdevstudio11112install.jar
    SOA Extension for JDeveloper- ofm_osb_generic_11.1.1.3.0_disk1_1of1.zip
    The installation went very smooth and there was no errors in the same.
    I can successfully start the Weblogic Administration server from the command line but unable to start successfully SOA Managed (soa_server1), Infra and BAM server (bam_server1). I tried starting SOA Managed (soa_server1) from command line as well as from Weblogic console EM (after starting Node Manager) but always receiving the errors I uploaded in my post earlier. As a result I am unable to deploy any composite application
    Please advice
    Thanks
    Rohit

  • Read  the email using java mail api for Imap account which is secured SSL

    hello,
    I am trying read the new mails on my imap account... i am not able to connect to the imap account... could anyone help me out ..
    below is the code
    public class EmailImapGateway implements MessageCountListener{
    private static final long serialVersionUID = 1L;
         private Session session = null;
         private IMAPStore store = null;
         private IMAPFolder folder = null;
         Properties props = new Properties();
         public void ejbCreate() {
         try {
         if (session == null)
              session = Session.getDefaultInstance(props, null);
              if (store == null || !store.isConnected()) {
    String host, name, passwd;
         host = "host";
              name = "user";
              passwd = "passwd";
              String SSL_FACTORY = "javax.net.ssl.SSLSocketFactory";
              props.setProperty("mail.imap.socketFactory.class", SSL_FACTORY);
              props.setProperty("mail.imap.socketFactory.fallback", "false");
              props.setProperty("mail.imap.socketFactory.port", "888");
              java.security.Security.setProperty( "ssl.SocketFactory.provider", SSL_FACTORY);
              props.put("mail.imap.host", host);
              props.put("mail.imap.port", "888");
              store = (IMAPStore) session.getStore("imap");
              store.connect();
              folder = (IMAPFolder) store.getFolder("Inbox");
              folder.open(Folder.READ_WRITE);
              int t = folder.getUnreadMessageCount();
              System.out.println("getunreadmessagecount is :" + t);
    }catch (Exception e) {
              e.printStackTrace();
         } finally {
              try {
                   folder.close(true);
                   store.close();
              } catch (MessagingException e) {
                   e.printStackTrace();
         public void ejbActivate() throws EJBException, RemoteException {
              // TODO Auto-generated method stub
         public void ejbPassivate() throws EJBException, RemoteException {
              // TODO Auto-generated method stub
         public void ejbRemove() {
              // TODO Auto-generated method stub
         public void messagesAdded(MessageCountEvent arg0) {
              System.out.println("Message is added in inbox");
         public void messagesRemoved(MessageCountEvent arg0) {
              System.out.println("Message is removed from inbox");
    it is not able to connect to my account
    Edited by: bhavna84 on Sep 8, 2008 11:10 PM
    Edited by: bhavna84 on Sep 8, 2008 11:20 PM

    Yes, see my previous post.
    He replied:
    hello
    In your code ur mention IMAP port 888
    but by default its 143 so chk your server configuration for IMAP port no.

  • API for access to the respondent data

    Our firm (www.paiwhq.com) provides survey databasing and analysis software and we would like to support our customers that are collecting respondent data using the FormsCentral service. 
    Does Adobe provide an API that would permit us to develop an application that would automatically interface with our survey analysis software? 
    Thanks in advance for any help you can provide.

    Has an API service been setup?
    I find it very frustrating that clients who complete the contact form in form central (on our website contact us page) arent able to be automatically added to a mailing list.
    I started using GetResponse for email list management/landing pages, and they do a signup form, but not a standard contact form which I currently use form central for.
    Please get back to me with the current options please.

  • API for accessing WVC54G series

    I am attempting to develop a custom Linux application for the WVC54G camera series. I am looking for an API document (the CGI url with the required parameters) for the WVC54G. Does anyone have an idea where I can find this? I have looked in the regular places (the GPL download area) but haven't found one.
    Thanks,
    Ram 

    Well never tried to develop a customer application for WVC54G camera on a Linux OS. May be you can Google around, you might find some sort of help.

  • Phishing for Apple account details

    Hi,
    I just received this phishing email. Anyone else received this? From field is blank and only says "apple
    Beware

    It's a phishing attempt, there are the occasional posts on here about similar emails (I replied to another post earlier today). You could forward it to Apple : [email protected]

  • Badi for account details not triggering twice

    Hi ,
    I m creating a BADI for duplicate check in account details.My requirement is in the account details
    it should check for the account details like first name , last name , email id if it exists it should throw an error message if not it should save ....
    Im implementing a BADI for this req  BUPA_ADDR_CHECK  but the particular BADI is triggering only once ....So the logic for duplicate check   is failing....
    Any methods by which the BADI can be triggered every  time
    Any suggestions .......
    Regards,
    Sijo...

    Hi Sijo,
    The fields that are available for duplicate checks need to be decided by you. There is no fixed interface.
    You need to mark in the duplicate check customizng, which fields you want, and they will automatically be taken up by this BADI ADDRESS_SEARCH. You can have a look at the function module ADDR_DUPLICATE_CHECK_FOR_BAPI that makes use of the duplicate check. The parameter T_SEARCH_FIELDS contains fields -
    TABLENAME
    FIELDNAME
    CONTENT
    These can hold any table, any field. Yuor implementation would need to use the content and then check it.
    Hope this helps.
    Cheers,
    Rishu.

  • Cant view itunes account details or make purchase with iphone

    Hi. I can log in to my itunes store account with my iphone 3gs. However, when i try to access account details or make a purchase i am prompted for my password again. When I enter this (correctly) I just get re-prompted immediately. I'm stuck in a loop with this

    Hi matt1168,
    That definitely sounds frustrating. In my experience, the steps that follow should resolve this issue: First, try signing out of your account in Settings > iTunes & App Store. Once signed out, go ahead and sign back in.
    iOS: Changing the signed-in iTunes Store Apple ID account
    http://support.apple.com/kb/HT1311
    If the above did not resolve your issue, refer to the following:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    If you haven't been able to connect to the iTunes Store:
    - Make sure that your iOS software is up to date by connecting your iOS device to iTunes and clicking on Check for Update in your device's Summary page in iTunes.
    - Check and verify that you are in range of a Wi-Fi router or base station. If you are on a 3G capable device, make sure that cellular data is turned on from Settings > General > Cellular.
    - Check to make sure you have an active internet connection. You can check the User Guide for your device for help with connecting to the internet.
    - Check to make sure other devices (portable computers, for example) are able to connect to the Wi-Fi network and access the internet.
    - Try resetting (turning off and then on again) your Wi-Fi router
    - If the issue still persists see, iOS: Troubleshooting Wi-Fi networks and connections or iOS: Troubleshooting Wi-Fi networks and connections.
    Thanks,
    Matt M.

  • Message from PSuserhelp re someone trying to access account????

    Not sure if anyone else has had this - just received message from PSUSERHELP saying that someone in Romania tried to access my account today and to prevent this happening again to send them email and password or account will be frozen for 1 month ????? Not sure if this is genuine from playstation or if it's a scam - why would they need our email & password details. Any info greatly appreciated. Thanks.

    its a scam. sony will never email you asking for your account details. report the user and ignore it

  • API for AP_BANK_ACCOUNTS

    Is there an API for Bank Accounts update? I am specifically looking for an API that allow me to update a DFF in the AP_BANK_ACCOUNTS table. The Bank Account record has already been created, and I need to update a DFF on this table using an API.
    thanks
    Jay.

    Hi Srini,
    Unfortuantely, Development has not released any API's for maintaing bank account information in the 11i version of Oracle Applications. This is only available in R12.
    Cheryl

Maybe you are looking for

  • How do I rotate an AVI movie?

    This is a weird one, but here goes. I'm using a Canon SD550, which makes AVI movies. I've got a couple of such movies where the camera was held vertically rather than horizontally. They don't display correctly in iPhoto or Quicktime. My solution is t

  • File paths

    I changed my file organization by placing my images in an images folder, instead of just loose on the server. In addition, I uploaded revised html pages several times that have updated code for the file paths, directing the file paths to the images f

  • PSE 9 - Crashes when starting Slide Show

    I am using PSE 9 running on a Windows XP computer with adequate hard disk and RAM resources. I have adjusted the PSE "Preferences" to ensure that there is sufficient RAM available for PSE. Every time I attempt to start the Slide Show feature from the

  • N97 file corrupted when installing files

    My N97 was working well untill yesterday when I tried to download something from ovi store. It asked if I wanted to install the newest version of the store which I tried to do but it keeps saying 'file corrupted' and cancels the installation. This me

  • Today my pinned apps, tab groups and history ALL disappeared, and my settings were changed to "Clear history when Firefox closes." How can this happen!?

    I've had several pinned apps, tab groups etc that always reappeared when I closed and opened Firefox. I always had history stored without a problem. Today I opened Firefox, and my pinned apps, tab groups, and history were all gone, and the option to