Are there any APIs to load FND and other objects

Hi
We are having HR2HR configured and running between EBS R12.1.3 and Fusion. But the HR2HR does not bring in data in EBS like in Descriptive Flex Fields (DFF), User Defined Tables (UDT), Extra Information Types (EIT) & Lookups. How can we bring in this data in to Fusion. Are there any APIs? If not what is the Support model from Oracle if we are directly updating the tables?
Thanks!
Srinivasa Sunchu

Happy Camper: Based on doc 1482027.1 in support system:
DFF is not currently supported by HR2HR.An Enhancement Request (ER) has been logged to request this functionality:
ER: Bug 12883914 - ER REQUEST - DFF FLEXFIELDS AND EIT'S NEED TO BE INCLUDED IN THE HR2HR AND INTER
>
For alternatives and the Support model I do not have answer, will reach out to try to find out.
Kiran: This is an external forum, so the readers would not have access to internal documentation. Are the HCM scripts available externally i.e. through the support system? If not are there plans for providing them externally ?
Jani Rautiainen
Fusion Applications Developer Relations
https://blogs.oracle.com/fadevrel/

Similar Messages

  • How to get Client IP address in oracle apps. Are there any API's.

    hi,
    I have one query
    ->How to get Client IP address in oracle apps. Are there any API's.
    regards,
    krishna

    Hi,
    this is very usefull
    however are this data stored on the db or is only a temporary view?
    I would like to have to keep track of all client connected.
    Thanx a lot

  • Are there any compatibility issues with Sonos and Airport extreme??

    are there any compatibility issues with Sonos and Airport extreme??

    Sonos uses its own priopietory wireless protocol SonosNet to distribute audio data among all its products, thus it should not affect other network devices which use standard WiFi 802.11a/b/g/n protocol at all though they may share the same radio channel for wirless signaling.
    On my dual-band (5 GHz / 2.4 GHz) Airport Extreme staion, I select the option "802.11n Only (5GHz) - 802.11n (2.4GHz)" and turn on "Use wide channels" in Wireless configuration in order to use only 802.11n protocol and more radio channels to achieve maximum wireless bandwidth of 400 Mbps. This bandwidth is necessary for quick Time Machine backup to NAS connected to the Airport Extreme station through Ethernet cable. So my iMac and MacBook Pro always connected to the Airport Extreme through 5 GHz radio channel with 802.11n protocol whereas my iPhone 4S always connected through 2.4 GHz radio channel with the same protocol.
    In my living room Sonos ZP-90 (same as new CONNECT model) zone player is connected to Airport Extreme directly through Ethernet cable (recommended by Sonos) and Sonos S5 (same as new PLAY:5 model) zone player in bedroom is connected wirelessly through SonosNet protocol to the ZP-90 zone player in living room.
    These devices are in operation simutaneouly most of the time. Music is playing through the Sonos ZP90/S5 zone players througout the day, I am streaming viedo through Internet (fibre broadband 25 Mbps) on my MacBook Pro in bedroom or iMac in living room or reading news on my iPhone. So far so good and have no encounter any interference problem for about three years. Further more bandwidth for 802.11n protocol does not seem to be affected at all.
    In fact with a low power Fujitsu USB drive (2.5" / 500 GB, designed for notebook) plug into USB port of Airport Extreme, it can be used as NAS drive for Sonos music distribution system without any problem. Just transfer all files from Music folder in my home directory on iMac into this NAS drive and set it up as music source in "Manage > Music Library Settings" in Sonos Controller for Mac application will do. Though the same drive can be served as Time Machine's backup disk as well, an independent full-fledged NAS drive for Sonos and Time Machine backup is better long-term solution for reliability and performance. With the NAS configured as sole music source, you do not need to keep any computer powered on all the time in order to play music through the Sonos system.

  • Are there any ways to get sequence number other than getting it for each re

    are there any ways to get sequence number other than getting it for each record

    CACHE is the number of values Oracle stores in memory. So the first call to NEXTVAL Oracle grabs x numbers; subsequent calls to NEXTVAL are served from memory until they're all gone and them another bunch is grabbed. The attached sql*plus output demonstrates this behaviour.
    Note that normally unused numbers in the cache are returned to the data dictionary but in exceptional circumstances (DB crash) they may be lost.
    Cheers, APC
    SQL> create sequence seq cache 3
      2  /
    Sequence created.
    SQL> select last_number from user_sequences
      2  where sequence_name = 'SEQ'
      3  /
    LAST_NUMBER
              1
    SQL> select seq.nextval from dual
      2  /
       NEXTVAL
             1
    SQL> select last_number from user_sequences
      2  where sequence_name = 'SEQ'
      3  /
    LAST_NUMBER
              4
    SQL> select seq.nextval from dual
      2  /
       NEXTVAL
             2
    SQL> select last_number from user_sequences
      2  where sequence_name = 'SEQ'
      3  /
    LAST_NUMBER
              4
    SQL> select seq.nextval from dual
      2  /
       NEXTVAL
             3
    SQL> select last_number from user_sequences
      2  where sequence_name = 'SEQ'
      3  /
    LAST_NUMBER
              4
    SQL> select seq.nextval from dual
      2  /
       NEXTVAL
             4
    SQL> select last_number from user_sequences
      2  where sequence_name = 'SEQ'
      3  /
    LAST_NUMBER
              7
    SQL>

  • Are there any APIs to move funds from one project to another?

    Hi,
    Are there any Project/Budget APIs to move funds from one project to another with in the same grant or different grant in R12?
    Thanks,

    Hi
    There are API's to load or update budget line amounts, PA_PROJECT_PUB.
    There are API's to load or update agreements and allocate funds to projects, PA_AGREEMENT_PUB
    Dina

  • Are there any APIs to create an Invoice in Oracle Payables?

    Hi,
    We have a requirement to import the invoices from the operational systems. We will be making approximately 7,000 checks a day. We need to import all these payments information into Oracle Payables as Invoices and then process the payments out of Oracle payments module. We are on EBS 12.1.1
    Were there any APIs to create the invoices directly in Payables as it comes from custom application? We could use payables open interface but as we would like to integrate the payables module with custom application it would be nice if invoice creates directly in Payables through APIs.
    Thanks,

    In the enterprise edition I am able to create all the below objects.But The job is not running after file arrival.
    Could you please me in this case also.
    BEGIN
      DBMS_SCHEDULER.create_credential(
        credential_name => 'LOCAL_CREDENTIAL',
        username        => 'upncommon',
        password        => '*******');
    END;
    BEGIN
      DBMS_SCHEDULER.create_file_watcher(
        file_watcher_name => 'test_file_watcher',
        directory_path    => '/home/upncommon/pub',
        file_name         => 'sample2.sh',
        credential_name   => 'LOCAL_CREDENTIAL',
        destination       => NULL,
        enabled           => FALSE);
    END;
    BEGIN
      DBMS_SCHEDULER.create_program(
        program_name        => 'file_watcher_test_prog',
        program_type        => 'STORED_PROCEDURE',
        program_action      => 'PROC_SCH',
        number_of_arguments => 1,
        enabled             => FALSE);
    END;
    BEGIN
      DBMS_SCHEDULER.define_metadata_argument(
        program_name       => 'file_watcher_test_prog',
        metadata_attribute => 'event_message',
        argument_position  => 1);
    END;
    BEGIN
      DBMS_SCHEDULER.create_job(
        job_name        => 'file_watcher_test_job',
        program_name    => 'file_watcher_test_prog',
        event_condition => NULL,
        queue_spec      => 'test_file_watcher',
        auto_drop       => FALSE,
        enabled         => FALSE);
    END;
    BEGIN
      DBMS_SCHEDULER.set_attribute('file_watcher_test_job','parallel_instances',TRUE);
    END;
    EXEC DBMS_SCHEDULER.enable('test_file_watcher');
    EXEC DBMS_SCHEDULER.enable('file_watcher_test_prog');
    EXEC DBMS_SCHEDULER.enable('file_watcher_test_job');

  • Are there any difference between iPhone 4S and iPhone 5? What are they?

    What I already know is that iPhone 5 has a larger screen and is slimmer, but are there any difference between the two.  I have iPhone 4S now, should I buy iPhone 5?

    There are a number of major differences between iPhone 4S and iPhone 5, the major one being the processor speed.  iPhone 5 has a much faster processor – two times faster than the processor in iPhone 4S.  This difference is only significant if you use your phone to play high graphics games that require a lot of processing power.  This processing speed also makes the applications load and run faster – iPhone 5 even boots in a shorter time than iPhone 4S.  You can use iPhone 4S comfortably now but when games and graphic apps designed for iPhone 5 are released, you may be forced to upgrade your phone to run the smoothly.

  • Are there any tools for data encryption and decryption ?

    Hi,
    i am using oracle 9i R2, i want encrypt my data. Are there any tools available in market.
    Please let me know the ways to do data encryption and decryption.
    Thanks in advance
    Prasuna.

    970489 wrote:
    using DBMS_OBFUSCATION_TOOLKIT.Encrypt /DESEncrypt we can't secure our password...So i am looking for an another alternative.As Blue Shadow said, what are you really trying to achieve?
    Encrypting a password is itself not secure. Anything that can be encrypted can be decrypted. That is why Oracle itself DOES NOT encrypt passwords.
    Surprised??
    Here's what Oracle does with passwords, and what others should be doing if they have to store them.
    When the password is created, the presented password - clear text - is concatenated with the username. The resulting character string is then passed through a one-way hashing function. It is that hashed value that is stored. Then when a user presents his credentials to log on to the system, the presented credentials are combined and hashed in the same manner as when the password was created, and the resulting hash value compared to the stored value.

  • Are there any problems with motion menus and buttons in DVDSP 2 on OS 10.4?

    I have not used DVD Studio Pro 2 since upgrading to Tiger but it appears to no longer be showing moving motion on menus and buttons.
    Are there any problems that I should be aware of when using DVDSP2 on OS 10.4?
    I have not upgrade to a newer version only because I do not have any HD software to create DVDs.
    Thanks
    Paul

    New Discussions ReponsesThe new system for discussions asks that after you mark your question as Answered, you take the time to mark any posts that have aided you with the tag and he post that provided your answer with the
    tag. This not only gives points to the posters, but points anyone
    searching for answers to similar problems to the proper posts.
    If we use the forums properly they will work well...

  • Are there any free down loads available for snow leopard os x10.5.8?

    ARE THERE ANY FREE DOWNLOADS FOR APPLE SNOW LEOPARD OS X 10.5.8?

    If you're trying to upgrade the OS, no; you need to buy 10.6 on DVD from the online Apple Store.
    If you're trying to download something else, it depends on the product.
    (100969)

  • Is there any API ( HTTP / WebService ) for listing the objects supported ?

    Hi
    I wish to know if there is some mechanism ( API ) that I can make use of to dynamically get the list of objects ( accounts , leads etc ) supported by Oracle CRM on Demand ?

    How to convert Vector elements into array of objects?
    Is there any API for this?
    For ArrayList class there is Method i.e.
    Object ob[]=arr.toArray();
    But i don't know abt vectors.
    plz give me the example.The toArray() method is available in the List interface. SInce ArrayList and Vector are both implementing classes... they should have this method. In short, the same would work for Vector. Logical, isn't it?
    ***Annie***
    (since when did I start thinking logically...)

  • I'm about to buy a Macbook pro in Spain, with a spanish QUERTY keyboard. Are there any differences with a UK one, other then a few keys.?

    I'm about to buy a Macbook pro in Spain, with a spanish QUERTY keyboard.
    Are there any differences with a UK Macbook Pro, other then a few keys on the keyboard.?

    Here’s a couple of links to get you started on your research...
    OS X Lion Overview
    iLife 11
    http://www.apple.com/ilife/video-showcase/
    http://www.apple.com/ilife/
    Running Windows on a Mac
    http://www.pcmag.com/article2/0,2817,2344661,00.asp
    And just in case you didn't know... This is a User to User Forum

  • Are there any links between HR organisation and user roles in R12

    Hi
    Do you know if there are any links between HR organisation and user roles i.e. can a role be assigned to an organisation in R12?
    Thanks
    Sean

    The thread stack sizes also depend on the type of threads you are
    working with.
    If you are working with POSIX threads :
    % man -s 3C pthread_create
    or if you are working with Solaris threads :
    % man -s 3C thr_create
    For these 2 cases, the default stacksize is 1MB for a 32-bit process.
    If you do not wish to use this default value, the man pages show
    you how to change this size in your code.
    There is a 3rd type of threads which you could be using that are
    generated by the compiler when doing compiler parallelization.
    By compiling with -xparallel or -openmp=parallel, the compiler
    can automatically parallelize loops in your code and create
    threads to do this work.
    For these type of threads, the default size is 4MB. However you
    can control this behavior through the environment variable
    ${STACKSIZE}
    The ${STACKSIZE} units are in KB, so to set your compiler
    generated threads stacksize to 8MB, you would say :
    % setenv STACKSIZE 8192
    If you are using Studio 11 as your compiler, see the "OpenMP
    API User's Guide" at :
    http://docs.sun.com/app/docs/doc/819-3694?a=load
    and look at section 5.5, "Stacks and Stack Sizes"

  • Are there any differences between Server 2012 and Server 2012 R2 that might impact TFS or SQL server required for TFS?

    Hi,
    In the interest of just getting started and learning the basics of setting up TFS, I previously setup an IDE using a large workstation running Windows 8.  I set up the required servers for TFS using VM's through Hyper-V.  I am now transferring
    everything to a new and separate physical server.
    My question stems from a problem I had when I originally setup the TFS system the 1st time.  I couldn't get SQL server to work using the Server 2012 R2 download from the subscription center.  When I used Server 2012, it worked, so I proceeded that
    way just to get going.
    So now I'm setting things up anew on a new physical box, I want to ask up front, is there some difference in the R2 version that causes problems with either TFS or SQL server, or was there likely some oversight on my part when I did things the 1st time?
    As an addendum to my question, I always assumed R2 merely means the Server software has progressed to a refined state and is ready for wide distribution and easy setup.  I assumed that there are no differences between the Standard version and the R2
    version.  Is that understanding correct?
    Thanks.

    Hi Daniel,
    Thanks for your response.  That's a great link.  I don't recall seeing a page that is so clear and easy to read back when I was doing this the 1st time, but I probably just missed it.  That helps.
    I am/was using TFS2013 and VS2013.  As I recall, my problem was getting SQL Server to work, but I thought asking this question on this forum was wiser because I figured everyone using TFS would be well familiar with these issues.
    At any rate, it seems as though TFS2013 is fine with Server 2012 standard or R2.
    I was using SQL Server 2012, and it also seems as though it works on R2:
    https://msdn.microsoft.com/en-us/library/ms143506(v=sql.110).aspx
    Anyway, thanks for your support.  I'll be trying this again and we'll see.

  • Are there any APIs to access user personalization data from java

    Hi gurus,
    We want to access personalization data for a user from java using API. This includes user mapping also.
    If you are aware of any api please let me know.
    Thanks in advance.
    Regards,
      Pratik Thakkar

    Hi Pratik,
    You can also retrieve a system object and get the user mapping for the system:
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY,IPcdContext.PCD_INITIAL_CONTEXT_FACTORY);
    env.put(Context.SECURITY_PRINCIPAL, request.getUser());
    env.put(Constants.REQUESTED_ASPECT, PcmConstants.ASPECT_SEMANTICS);
    iCtx = new InitialContext(env);
    ISystem pcdSys =(ISystem)iCtx.lookup(sysId);
    ISystemUserMappingData um = pcdSys.getUserMappingData(request.getUser());
    From this object you can get the user, password and other properties.
    As for personalized values of iView attributes, you can an environmental value before create the initial context to indicate to return personalized value, as follows:
    env.put(IPcdContext.PCD_PERSONALIZATION_PRINCIPAL, request.getUser());
    Hope this helps.
    Daniel

Maybe you are looking for

  • I movie 09 freezing upon startup of progam

    I have i movie 09 and have been using it successfully without any problems for over 6 months. During that time, I have been working on a movie. It is currently 45 minutes long and includes sound effects and songs that I have added from garageband. I

  • Sync Purchased/Downloaded Apple TV content to Itunes

    I have configured quite the home entertainment network replete with a mini, a NAS, a couple ATVs and a couple Airport Expresses over a new wireless N network. All is well. I have been using my ATVs for streaming content from the iTunes share only. Ho

  • Need ABAP  Code

    Hi,                          I want to write a small ABAP routine for a particular variable "ZS". The logic is .. I want to read a variable "ZV" , if the first char of the ZV is "A" then Assign a constant "Y" to ZS if not Assign "N" to ZS... Can any

  • Illustrator error msg

    I keep receiving the following error msg when I try to open an Illustrator file: The operation cannot complete because there isn't enough memory (RAM) available." Can someone help me so I can open up this file without this error msg?

  • HE 6.4 to HFM 11.1.1.3 Upgrade

    Hi, Our client is using Hyperion Enterprise 6.4 and they would like to upgrade HE to HFM with latest version of Oracle release i.e. 11.1.1.3. According to my opinion this should be possible because when we upgrade HE,physically we wont run any utilit