Is it possible to combine 2 Threading Database Items?

Is is possible to combine multiple Threading Database Items in HCM Extract? I am trying to extract the Personal Details ( i.e just Employee Name, Person Number, Primary Email Address etc.) and Assignment Details (i.e. Salary Details, Department, etc.) in file. I need to extract the new employees and changes using Threading Database item option. Please let me know the relevant option for it or let me know how can we combine Person and Assignment Threading Database Items.

I am not HCM expert so I am not sure what "combine multiple Threading Database Items" means in this context. You may find this blog post covering various tools useful specifically the link to the HCM extract documentation that contains a concrete example ..
Jani Rautiainen
Fusion Applications Developer Relations                             
https://blogs.oracle.com/fadevrel/

Similar Messages

  • Is it possible to combine several system database files?

    Hi,
    I am doing some practice runs where I am upgrading our 11i/EBS instance's rdbms from 9208 (9iR2 to 11201 (11gR2), and then OATM for the apps tablespaces. OATM is kind of cool in that it combines all of the small app tablespaces into many few files -- can I do the same with the SYSTEM data files for this database, either before or after the db upgrade or OATM? I currently have 11 1G system files which I'd like to combine into say 3 4GB system data files, or 2 6GB system data files. Is there an OATM-like utility to do this? BTW I will also be "going live" by cloning prod to a new system, and then making the new system the live on, so I suppose I could do an export or import in the process if it is the only way...
    Thanks Marvin.

    I currently have 11 1G system files which I'd like to combine into say 3 4GB system data files, or 2 6GB system data files.WHY is any change needed?
    What is gained by doing so?
    Do you suffer from CTD?
    Never confuse movement with progress.
    Going around in circles is movement, but most folks do not consider it to be progress,

  • Is it possible to combine multiple Pur Reqs for multiple materials to one vendor into one PO through MD07?

    We have material planners who use MD07 (traffic signal screen) Stock/Requirements List, Collective Access tab to review material requirements by MRP Controller.  Once the list is created, they select individual materials and review them in MD04.  In a lot of cases, Purchase Reqs (PRs) are reviewed and adopted into POs individually for each material.  Sometimes they will combine multiple PRs for one material into one PO.  This is a good practice.  However, from what I have found, it is not possible to combine multiple PRs for multiple materials into one PO.  If this was done it would dramatically reduce the number of POs that we are issuing to suppliers.  Problem statement:  We issue too many POs which causes additional influxes down the line (receiving dock/goods receipts processing, receiving issues, invoices, invoice issues, etc.).  Does anyone know of a way to address this problem without a major overhaul in approach or customization of the system?  Thank you in advance!   

    Hello Michael
    As far as I know, this is not possible directly from MD07, only from the MM transactions.
    The following thread suggests the following procedure to convert several PRs into one PO:
    Conversion of multiple PR into single P.O
    Drag and drop the first PR from the item overview to the shopping card on top of ME21N,
    then open the PO detail delivery schedule tab and drag  and drop all other PR to the shopping card shown  in the schedule tab
    You can use the same procedure, calling the order conversion from MD07 and then drag and drop another PRs into this PO.
    BR
    Caetano

  • Is it possible to combine SDN account into OSS account?

    Hi Friends,
       I had a SDN account and now I got my OSS account.when I want to go to http://sdn.sap.com and I will login this forum with my OSS account automatically. It seems it is because of my setting of SAP Passport in my OSS profile. It is not so convenient when I want to check/manage my threads, which were posted by my SDN account. So I want to know it is possible to combine my SDN account into my OSS account. (for example, accredit all my SDN thread into the name of my OSS account, or link my oss account to SDN account, etc).
    Thanks very much.
    Joe

    here you are: Merge - User Accounts!!

  • Is it Possible to Combine Hibernate + Swing?????

    Hi Xperts,
    Is it possible to combine Hibernate + Swing?
    (My Point of View Hibernate Contains Transaction, Session... But In Swing Session??????)
    So i have lot of confusions.
    SO
    if Hibernate + Swing
    IF YES. HOW? ELSE TELL THE REASON.
    I EAGERLY WAITING FOR YOUR REPLY
    Thanks
    Edward and Hari

    Hi Duffymo - thanks for responding. It's fun to discuss this with somebody; I don't usually get many reasonable/friendly responses on the Hibernate user forum.
    What I mean by transaction based identity is thatin
    the normal, recommended Hibernate process (one
    session per transaction), objects fetched in
    different transactions do not == each other. Solet's
    say I do the following:
    * Start session 1 and transaction 1, fetch object
    with primary key 5, and store it in variable obj1.
    Commit transaction 1 and close session 1.
    * Start session 2 and transaction 2, fetch object
    with primary key 5, and store it in variable obj2.
    Commit transaction 2 and close session 2.
    * At this point, even though they represent thesame
    row in the database, obj1 != obj2. I'll assume you mean !obj1.equals(obj2)here, because [obj1 != obj2[/code] even without
    Hibernate if the two references point to different
    locations in memory in the same JVM. The equals
    method can be overridden. You can decide to check
    equality only examining the primary keys, or you can
    do a field by field comparison. If the class checks
    equality on a field by field basis, the only way
    they'll not be equal is if you change values.I really do mean == in this case. If those two fetches happened within the same session, Hibernate would return the identical object from it's cache. Here's some pseudo-code illustrating what I mean:
    Session firstSession = sessionFactory.openSession(); //Start an empty session
    Transaction tx1 = firstSession.beginTransaction();
    Object obj1 = firstSession.get( Person.class, new Long(5) ); //Fetches row 5 from the database
    tx1.commit();
    Transaction tx2 = firstSession.beginTransaction(); //Start a new database transaction, but still use the same session cache.
    Object obj2 = firstSession.get( Person.class, new Long(5) ); //Just returns the same object it previously fetched
    tx2.commit();
    obj1 == obj2; //Returns true, because we're pointing to the exact same objects
    obj1.equals( obj2 ); //Obviously returns true since they're pointing to the same object
    Session secondSession = sessionFactory.openSession(); //Start an empty session
    Transaction tx3 = secondSession.beginTransaction(); //New transaction in the empty session, no cached objects
    Object obj3 = secondSession.get( Person.class, new Long(5) ); //Returns a newly created object, not in our session cache
    tx3.commit();
    obj1 == obj3; //Returns FALSE, these are two separate objects because they were fetched by different sessions.
    obj1.equals( obj3 ); // Depends on whether the database row was modified since we fetched obj1
    It sounds like you want an Observer pattern, where
    every client would deal with a single model and
    changes are broadcast to every registered Observer.
    That's just classic MVC, right? In that case, every
    y client might have an individual view, but they're
    all dealing with the same model. Changes by one is
    reflected in all the other views in real time.That would be awesome, but doesn't seem feasible. Our Swing clients are spread all around the world, and creating a distributed event notification system that keeps them all in sync with each other sounds very fun but extremely out of scope for this project. We're trying to make Hibernate manage the object freshness so that our Swing application clients may slowly become out of date, but when we trigger certain actions on the client (like a user query, or the user clicking a 'refresh' button) they refresh portions of their data model from the central shared database.
    >
    The reason that this is pertinent is because Swing
    expects objects to be long-lived, so that they canbe
    bound to the UI, have listeners registered withthem,
    they can be used in models for JTables, JLists,etc.
    In a typical complex Swing application, your only
    choice is to use a very long-lived session,because
    it would break everything if you were getting
    different copies of your data objects every timeyou
    wanted to have a transaction with the database. As
    shown above, a very long-lived session will leadto
    very out-of-date information with no good way to
    refresh it.Maybe the problem is that you don't want copies of
    the data. One model. Yes?One data model with real-time updates between all the connected clients would be ideal. However, I don't think that Hibernate is designed to work this way - it's really not even a Hibernate issue, that would be some separate change tracking infrastructure.
    Realistically, what I was hoping for is that we could have a single long-running Hibernate session so that we're working with the same set of Java objects for the duration of the Swing application lifetime. The problem that I'm running into is that Hibernate does not seem structured in a way that lets me selectively update the state of my in-memory objects from the database to reflect changes that other users have made.
    Certainly you've used JDBC. 8) That's what
    Hibernate is based on. TopLink is just another O/R
    mapping tool, so it's unlikely to do better. JDO
    doesn't restrict itself to relational databases, but
    the problem is the same.You're right, I have used JDBC, in fact we wrote a JDBC driver for FileMaker Pro so I'm pretty familiar with it. What I meant is that I've never tried using raw JDBC within a Swing application to manage my object persistence.
    I have not used TopLink and I haven't heard much about it, but I did see some tidbits on an Oracle discussion board comparing Hibernate with TopLink that made it sound like TopLink had better support for refreshing in-memory objects. Not having used TopLink myself, I can't say much else about what it's strengths/weaknesses are compared to Hibernate. It's not really an option for us anyway, because you have to pay a per-seat licensing charge, which would not work for this project.
    I know almost nothing about JDO except that it sounds really cool, is pseudo-deprecated, and it's probably too late for us at this point to switch our project to use it even if we wanted to.
    I don't think the problem is necessarily the
    persistence; it's getting state changes broadcast to
    the view in real time. It's as if you're writing a
    stock trading app where changes have to be made
    available to all users as they happen. Fair?Yes, I agree that the core issue is getting state changes broadcast to the view, but isn't that within the responsibility of the persistence management? How are we supposed to accomplish this with Hibernate?
    An excellent, interesting problem. Thanks for
    answering. Sincerely, %Likewise. I would stress again that I'm not anti-Hibernate in general (well maybe a little, but that's mostly because of bad attitudes on the support forums), I just have not found a way to make it work well for a desktop GUI client application like Swing. Thanks for your help, and I would love to continue the conversation.

  • Is it possible to create a Clone database with the same name of source db ?

    Is it possible to create a Clone database with the same name of source db using RMAN ...
    DB version is 11.2.0.2
    Is it possible to clone a 11.2.0.2 database to 11.2.0.3 home location directly on a new server . If it starts in a upgrade mode , it is ok ....

    user11919409 wrote:
    Is it possible to create a Clone database with the same name of source db using RMAN ...
    yes
    >
    DB version is 11.2.0.2
    Is it possible to clone a 11.2.0.2 database to 11.2.0.3 home location directly on a new server . If it starts in a upgrade mode , it is ok ....yes
    Handle:     user11919409
    Status Level:     Newbie (10)
    Registered:     Dec 7, 2009
    Total Posts:     102
    Total Questions:     28 (22 unresolved)
    why do you waste time here when you rarely get any answers to your questions?

  • Is it possible to create a thread and run it in background in nokia ??

    Is it possible to create a thread and run it in background in nokia series 40 mobile phones using j2me ??

    Probably a good question for ForumNokia. If you mean start up a thread and run in the background while your MIDlet UI does other things, then sure, why not. If you mean that you want to exit your MIDlet, but leave a thread running in the background, then I don't believe you can do this on series 40. S60 is another story since it supports multiple tasks.

  • Is it possible to combine multiple pdf's into one without saving them onto your computer?

    Hello
    I open pdf's in an application (no add ons for acrobat exist), and want to combine them without having to use time on saving them before merging them into one single document.
    Is it possible to do this without having the files saved onto your computer? I use acrobat x pro.

    I dont think you understand my question. Of course Adobe reader cant combine pdf's, if it could I would not have had to purchase Adobe acrobat.
    The problem I am trying to solve is how to combine pdf files when they are not opened/saved locally on my computer.
    If I make Acrobat the standard program for opening pdf files on my computer - then will it be possible to combine the files that are opened without saving them first?
    I dont have the program installed on my computer now, and have to know this before we purchase it.

  • Is it possible to Combine photostream in iphoto?

    Hello,
    It woud be great if It is possible to combine more single photostreams into one iPhoto application.
    My wife and daughter have each their own iCloud account. But we would like That The photos come together in iPhoto without syncing with My iMac.
    Is this at the moment possible?
    Best Regards,
    Bart Collet

    I agree, this would be a great addition to iPhoto, for it to support multiple photo streams. Currently my work around is to have my iCloud account be the primary on my wife's iPhone with all features turned off excluding Photo Stream, and then her account is an additional iCloud/email account with all features turned on (except Photo Stream).
    One major downside to this is that all of her backups are going against my iCloud quota.
    You should submit iPhoto Feedback to request this feature/enhancement.
    http://www.apple.com/feedback/iphoto.html

  • Is it possible to read a mySQL database from an ABAP report?

    We have some information stored in a mySQL database which is now required on ABAP reports.
    Is it possible to read the mySQL database from an ABAP report? I'm still a bit confused on that.
    So far I have setup DBCO with information about the mySQL server using MMS as the DBS because mySQL was not an option. I have made sure we have the latest dbmssslib.dll installed.
    When I try to run the following code
    EXEC SQL.
        CONNECT TO :con
    ENDEXEC.
    I get error: SQL Server does not exist or access denied.
    Then I have tried to connect using the function CHECK_CONNECTION_SDB.
    I get the following messages in the return table:
    1     OS-AppServ:Windows NT
    2     dbmcli_neg: no_client_software
    3     dbmrfc_c_neg: no_client_software
    4     dbmrfc_s_neg: no_client_software
    5     sql_neg
    6     work_proc: 1
    Does anyone know what I need to do to connect to the mySQL database.
    Thank you
    Karen

    Thank you for your reply. I've gone through all the documentation you sent and much more and I'm still not sure what the problem is.
    One thing that concerns me is that this all relates to MS SQL server and I'm trying to link to a mySQL database. Is this even possible?
    Some posts talk about changing Oracle settings and having J2EE installed. Is this necessary to connect to a mySQL database via ABAP?
    Which user should I enter into DBCO? Is it the mySQL server user or a SAP user? Does the person in charge of the mySQL database need to add any permissions for SAP to access the database or is that done by the user in DBCO?
    Does anyone have any more advice?
    Thank you
    Karen
    Also, does anyone know what the messages from the CHECK_CONNECTION_SDB function mean
    1 OS-AppServ:Windows NT
    2 dbmcli_neg: no_client_software
    3 dbmrfc_c_neg: no_client_software
    4 dbmrfc_s_neg: no_client_software
    5 sql_neg
    6 work_proc: 1
    Edited by: Karen Dean on Oct 6, 2009 4:44 AM

  • Is it possible to combine a address list with a Pages document and a data base in Numbers, the equivalent of "Mail Merge" using Microsoft?

    Is it possible to combine an address list with a Pages 5.1 document and a data base in Numbers 3.1, the equivelent of Microsoft "Mail Merge"?

    It is possible in Pages 09 and Numbers 09 but not in the versions you name.

  • Is it possible to import an Access database and forms

    Is it possible to import an Access database and forms into apex

    Yes and no.. Sorry.. The Access data tables and data can be imported into the database, through SQL Developer. The forms I don't believe will be ported over. What will be created through is a set of maintenance report and form sets for each table you convert over.
    That is a good start to converting the database over, since you will probably want to re-do your Access style vba coding to use the available templates and pl/sql code..
    Thank you,
    Tony Miller
    Webster, TX

  • Possible to combine photo libraries?

    Presumably as a result of setting up my iMac and using it before running Migration Asst. to transfer files from an old G4, I ended up with two photo libraries. I intend to erase my hard drive for other reasons. I believe I have all data folders copied onto an external hard drive and the photo libraries are separately copied. I also have Time Machine back-ups on a separate EHD but don't want to use that since I intend to start clean.
    Is it possible to combine the photo libraries by carrying them in from the EHD to the "clean" hard drive? If so, what steps should be followed?
    My apologies if this has been addressed before and I just didn't find the answer. A link to the answer would be welcome if it has been addressed.
    Thanks for any assistance.
    Steve

    Welcome to the Apple Discussions.
    You can merge iPhoto Libraries using the paid ($20) version of iPhoto Library Manager. It's the only way to do this.
    Regards
    TD

  • It should be possible to close a thread without saying it's answered.

    It should be possible to close a thread without saying it's answered.
    Maybe closed - resolved or closed - not resolved.
    Edited by: Mike Angelastro on Jan 29, 2010 6:43 AM

    Mark it answered may not mean your question is answered.  If you do not satisfy all replies, you simply do not assign any points.  Everyone will know it is not answered.  You may post the last message as No satisfied answer.
    Thanks,
    Gordon

  • FS[3988]: Possible network disconnect with primary database

    Hi All,
    In the standby database alert log I'm getting the below error:
    Thu Feb 10 11:09:10 2011
    RFS[3971]: Possible network disconnect with primary database
    Thu Feb 10 11:10:11 2011
    RFS[3976]: Possible network disconnect with primary database
    Thu Feb 10 11:11:12 2011
    RFS[3979]: Possible network disconnect with primary database
    Thu Feb 10 11:12:13 2011
    RFS[3982]: Possible network disconnect with primary database
    Thu Feb 10 11:13:15 2011
    RFS[3985]: Possible network disconnect with primary database
    There is no error in the primary database regarding this.
    And after this no archive logs are being pushed to the standby database.
    In V$ARCHIVE_DEST_STATUS view the column synchronizaion_status says CHECK NETWORK for dest_name LOG_ARCHIVE_DEST_2
    Please advice.
    Thanks.
    Regards,
    Ashwani N.

    Both messages look crystal clear to me.
    Did you check the network?
    If not, why not?
    Your posting history here is a bit appalling
    823436      
         Newbie
    Handle:      823436
    Status Level:      Newbie
    Registered:      Dec 24, 2010
    Total Posts:      28
    Total Questions:      9 (7 unresolved)
    Sybrand Bakker
    Senior Oracle DBA

Maybe you are looking for

  • Flex 3 DataGrid

    Flex 3 DataGrid Control - How can i set cross rollover (Row & Column) in my datagrid ?

  • Can I erase a dvd once it is burned and use it again?

    I purchase MyLife DVD to burn a movie on to a memorex dvd. MyLife is no longer supported and I can not get rid of the the watermark until I purchase a $14.99 version. What can I do now?

  • I can't download OSX Mountain Lion

    This is what appears when I try to download the OSX Mountain Lion Software => Error, The product distribution file could not be verified. It may be damaged or was not signed.

  • HT4095 Where are my downloaded movies on my ipad

    I downloaded movies on my iPad but they have disappeared. I still have been charged for them..

  • SplitByValue Mapping issue

    Hi All, I am trying to achieve the following using the graphical mapping tool. Source: Document..... 1-1 .....rows........ 0-unbounded .........documentNumber.....1-1 Target: Document.....1..1 ..... header ....0-unbounded ..........documentNumber...1