Query to get the list of Employees Transferred from one dept to the other

Hi friends,
Can some one give me the abstract query for the employees who aare transferred from one dept to the other
thanks

In this table oracle auto upload data at particular time but if you want to upload at the same time, therefore you need to run request "Update Assignment Events Fact ", after running this request you will find data in this table.
--thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • Colors get desaturated when picked and transferred from one file to the other! Why?

    I used the color picker tool to choose colors from one file and fill it in another file. The color shows as desaturated when the other file is active. Both files are on the exact same settings, but I don't know what is happening. I reset the tools. But nothing.

    Are you sure that mode (RGB, CMYK, etc) and assigned color profiles is the same on both files?
    May be you turn on Proof Privew (Ctrl-Y) on one of the files.
    PS. my english is poor )

  • Employee transferred from one company code to another company code

    Hi
    I have an issue.
    If an employee is transfered from one company code to another company code.
    how can we transfer the master data and payroll data of the employee from existing company code  to new company code.
    Regards
    Vish

    1.Try with this report  RPUP0001  (read the documentation )
    2.The other option would be LSMW
    But you havent say how the payroll Should process from the persent period with changed company code or for previous periods with pervious company code

  • What should we do when an employee transfered from 1 comapny code to anoth

    Hi Experts,
    If an employee transfered from one company code to another code in the same organisation,what could be the implications.
    Now my system is calculating Tax part as a new employee,and showing a few tAX aMOUNT and more netpay.How to control the system.
    How should we maintain the system as tax calculations for the same employee.Please advice us.
    Regards,
    VSai.

    Hi Aby,
    Thanks for the reply.We did the Transfer Action.
    Could u please el0barate.
    We are not running termination action.
    I am asking about the total tax deductions and total amount.
    Please addvice,
    VSai.

  • Can't get iTunes to move from one song to the next

    I'm using iTunes 7.3.1 on an iMac with OS X 10.4.10. Everything was working fine, but now I can't get the playlists to move automatically from one song to the next. All the songs play if I double click on them individually, but when a song is finished playing, iTunes does not move automatically to the next song. I have to then double click on the next song I want to play. Furthermore, neither the "next," nor the "previous" track functions work. I have tried fiddling with the control settings (Repeat Off, Repeat All, Repeat One), but nothing I have tried makes a difference. Bottom line: If I want to sit at my computer and hear a playlist on iTunes, I have to manually click on each song I want to hear. Not too convenient when I want to listen while walking on my treadmill! Anyone suggestions would be appreciated.
    iMac   Mac OS X (10.4.10)  

    Have the tracks become unchecked? iTunes will skip unchecked tracks, so if they're all unchecked, iTunes will play one and then stop. If this is indeed the case, re-checkmark the tracks - Command-click on any checkbox will select or unselect them all - and you should then have continuous playback.
    Hope this helps.

  • How to get the list of employees whose Sal on hold and who are active

    HI Experts,
    We are trying to extract a report,where the list of employees whose  salary was hold  and who are active in a particular month.
    Please advice.
    Regards,
    V Sai.

    Hi,
    I can think of two different solutions. You can choose the one as per the requirement.
    1. Creating  a report of locked employees as on date.
      Active employee that are locked in Infotype 3.
    As infotype 3 doesnt have different Begin data and end dates, we cannot have historic data/report.
    2. Creating a report for payroll not run.
    Getting a list of active  employees
    Check the RT of the employees for previous payroll runs.
    You can use the selection criterila for dates/months.
    Hope this helps.
    Param

  • How to get the list of employees whose full n final setellment done in mont

    hi  Experts,
    We are trying to get the list of employees whose full and final settelemnt were done in a particular month.
    Is there any way to get the employees whose fnf was done in a particular month.
    Please advice.
    Regards,
    V Sai.

    Hi Experts,
    We are trying to get the list of employees from sap for whom  we ran the FNF  in the current month.
    For example,if an employee left the organisation in the month of April,we  are holding the salary of the employye.
    After approvals from different departments,may be after 2 months we change the control record to april and we run the payroll for the employee.later we change the control record to current period.  In posting we use the other period and maintain 01 2010  and post to accounts.
    Here we want to extract the list of employees for whom we post the  Full and final settelement in the particular month.
    Please helpme to solve it.'
    U r help is highly approciated.
    Regards,
    Sai.

  • SQL query to get a list of relations between workitems

    How can I create a SQL query to get a list of all problems with related changes?  And all problems with related incidents?
    I have tried to join the tables RelationshipTypeDim with ProblemDimKey and ChangeRequestDim, but the results are not correct.

    The relationships in the data warehouse can be kind of tricky. The relationships are contained in the WorkItemRelatesToWorkItemFactvw table. This table lists the related items by their WorkItemDimKey, so you cannot reference directly from the ChangeRequestDimvw
    or ProblemDimvw. You will need to reference the WorkItemDimvw to get the WorkItemDimKey for each entry.
    The query below will get all of the related work items from the Change Request class. The way the joins work is ChangeRequestDimvw gets the list of change requests. Then inner joins WorkItemDimvw to get the WorkItemDimKey for each CR. Then inner joins WorkItemRelatesToWorkItemFactvw
    to get all of the CRs with related work items. Then inner joins the WorkItemDimvw again to get the ID of the related work item. 
    Now the tricky part is it appears that these relationship are set based on which item  that created the relationship. So you need to union a second query that reverse the relationship on the WorkItemRelatesToWorkItemFactvw. 
    This query should give you a good start on getting the related work items. You can filter it down from here if you only want to include problems.
    SELECT C.ID, WIWI.ID
    FROM dbo.ChangeRequestDimvw C
    INNER JOIN dbo.WorkItemDimvw WI ON
    WI.EntityDimKey = C.EntityDimKey
    INNER JOIN dbo.WorkItemRelatesToWorkItemFactvw AS WIRWI ON
    WIRWI.WorkItemDimKey = WI.WorkItemDimKey
    INNER JOIN dbo.WorkItemDimvw AS WIWI ON
    WIWI.WorkItemDimKey = WIRWI.WorkItemRelatesToWorkItem_WorkItemDimKey
    union
    SELECT C.ID, WIWI.ID
    FROM dbo.ChangeRequestDimvw C
    INNER JOIN dbo.WorkItemDimvw WI ON
    WI.EntityDimKey = C.EntityDimKey
    INNER JOIN dbo.WorkItemRelatesToWorkItemFactvw AS WIRWI ON
    WIRWI.WorkItemRelatesToWorkItem_WorkItemDimKey = WI.WorkItemDimKey
    INNER JOIN dbo.WorkItemDimvw AS WIWI ON
    WIWI.WorkItemDimKey = WIRWI.WorkItemDimKey
    Order by C.ID
    Matthew Dowst |
    Blog | Twitter

  • Query for the list of publich holidays from the Project Server 2010 for reporting

    I would like to get the list of public holidays that is configured in the calendar from the reporting database. I am not sure if this information is available in the database.
    Please can you provide with the sql query . thanks
    Simi

    I just put together this query based on what Elli J did. My problem was to come up with a way to define a calendar-based "grace period" extension of the baseline finish date for a project. The grace period had to be based on a scale factor (here 1.1) applied
    to the project's official baseline duration. I then had to project forward, using the standard calendar, to the relevant grace period finish date on a per-project basis.
    Anyway, here is what I came up with. Note that I eliminated the SUM operations as unnecessary, and I also had to account for the fact that the official calendar days queryable using resource by day base capacity can "run out" before it should, so that it
    has to be extended by tacking on regular weekdays after that.
    SELECT
        P.ProjectUID,
        P.ProjectName,
        ProjectBaseline0StartDate = PSTB0.TaskBaselineStartDate,
        ProjectBaseline0FinishDate = PSTB0.TaskBaselineFinishDate,
        ProjectBaseline0DurationInDays = ROUND(PSTB0.TaskBaselineDuration / 8, 0),
        ProjectBaseline0GracePeriodDurationInDays = ROUND(ROUND(PSTB0.TaskBaselineDuration / 8, 0) * (GracePeriodParameters.MultiplierExcludingBase), 0),
        ProjectBaseline0GracePeriodFinishDate =
            SELECT TimeByDay
            FROM
                 SELECT
                     TimeByDay,
                     DayRank = RANK() OVER (ORDER BY TimeByDay)
                 FROM
                    -- Query all calendar days in standard calendar, using resource base capacity as proxy
                    -- Actual calendar data is not available in any of the MSPS relational databases.
                     SELECT TBD.TimeByDay
                     FROM dbo.MSP_TimeByDay TBD
                     JOIN dbo.MSP_EpmResourceByDay RBD ON TBD.TimeByDay = RBD.TimeByDay
                     JOIN dbo.MSP_EpmResource R ON R.ResourceUID = RBD.ResourceUID
                     WHERE
                        R.ResourceBaseCalendar = StandardCalendarInformation.CalendarName AND
                        TBD.TimeByDay > PSTB0.TaskBaselineFinishDate AND
                        RBD.BaseCapacity > 0
                    UNION
                    -- Extend genericallly with weekdays if the calendar days queried above run out too early
                    SELECT TBD2.TimeByDay
                    FROM dbo.MSP_TimeByDay TBD2
                    WHERE
                        TBD2.TimeDayOfTheWeek IN (2,3,4,5,6) AND
                        TBD2.TimeByDay > PSTB0.TaskBaselineFinishDate AND
                        TBD2.TimeByDay > StandardCalendarInformation.LatestDateWithNonZeroCapacity
                UnrankedUnion
            RankedUnion
            WHERE RankedUnion.DayRank = ROUND(ROUND(PSTB0.TaskBaselineDuration / 8, 0) * (GracePeriodParameters.MultiplierExcludingBase), 0)
    FROM dbo.MSP_EpmProject P
    LEFT JOIN dbo.MSP_EpmTask PST ON PST.TaskIsProjectSummary = 1 AND P.ProjectUID = PST.ProjectUID
    LEFT JOIN dbo.MSP_EpmTaskBaseline PSTB0 ON PSTB0.BaselineNumber = 0 AND PST.TaskUID = PSTB0.TaskUID
    CROSS JOIN (SELECT 1.1 AS MultiplierIncludingBase, 0.1 AS MultiplierExcludingBase) GracePeriodParameters
    CROSS JOIN
        SELECT TOP 1 CalendarName = C.CAL_NAME, LatestDateWithNonZeroCapacity = TBD.TimeByDay
        FROM dbo.MSP_TimeByDay TBD
        JOIN dbo.MSP_EpmResourceByDay RBD ON TBD.TimeByDay = RBD.TimeByDay
        JOIN dbo.MSP_EpmResource R ON R.ResourceUID = RBD.ResourceUID
        JOIN [Demo2010A_PWA_Published].dbo.MSP_CALENDARS C ON R.ResourceBaseCalendar = C.CAL_NAME
        WHERE C.CAL_IS_STANDARD_CAL = 1 AND RBD.BaseCapacity > 0
        ORDER BY TBD.TimeByDay DESC
    StandardCalendarInformation
    - William Schmidt

  • Customization of the list of employees LOV in selfservice

    Hi,
    I need to change the list of employees that occur when we click on Delegate button. When an Manager gets a notification he can delegate the notification to other employees. when we click on delegate a window pops up search and select User or Role, then there is an LOV that populates all the employees in the current implementation and As we are currently implementing only for few sites the LOV should populate employees who belong to these departments only. So can anyone please suggest what kind of customization needs to be done. I am using oracle Jdeveloper9i on a 11.5.10.2
    Regards,
    Prashanth

    Yes you can do it using design console but you can do it using admin console also.
    goto sysadmin url-> form-> search your form by passing the form type "Resoource" and resource type as your resource object.
    open your form and check if you can edit the property.
    However I haven't change using UI. Still Oracle working on sysadmin side. they will release the patches for same .

  • Updated my iPhone 5 to ios7, in the App store after installing updates I now have a never ending list of the Apps I've updated.  How do I get rid of the list after they've been updated?  In the previous version I did not have an annoying permanent list.

    Updated my iPhone 5 to ios7, in the App store after installing updates I now have a never ending list of the Apps I've updated.  How do I get rid of the list after they've been updated?  In the previous version I did not have an annoying permanent list.

    iOS 7 allows you to have your apps update automatically. Therefore, the list of what has been updated stays so that you can see what was updated, when and what the release notes say. It has been suggested that they list has a limit, much like Recents. Currently, there is no way for the user to delete the entries manually. Just try not to look at them.

  • I was reviewing my list of songs in my library "on my I-Pod".  I noticed that a few of the songs on the list have an Exclamation Point in front of the track, and the track won't play. How do I get rid of the Exclamation Point so that the track will play.

    I was reviewing my list of songs in my library "on my I-Pod". I noticed that a few of those tracks on the list have an Exclamation Point in front of the track and will not play. How do I get rid of the Exclamation Point so that the track will play.

    Hello enrique a.
    Instead of trying to re-invent the wheel on this one, take a look at an article such as this one to help you take care of these exclamations.  Basically, it means iTunes is unable to locate the file on your computer anymore.
    http://ipod.about.com/od/itunesproblems/qt/Fixing-The-Itunes-Exclamation-Point.h tm
    B-rock

  • How to delete the list of employee on SAP system?

    Dear all,
    I want to delete the list of employee on my SAp system but I don't know how to do this, What's the transaction code that use to delete mutil employee on SAp system?
    Please help me to do this.
    Thanks and Best Regards,
    Huyen Nguyen

    PU00 is the tocde for Single PERNR
    and check RPUDELPN  report for mass deletion of PERNR
    but dont do in production system
    Edited by: Sikindar on Aug 14, 2009 8:18 AM

  • Using SQL stored procedures How to get the list of .rar files from e:\Tempbackup directories from the different remote desktop windows server and delete the .rar files which contains the current month and date

    Concept:
    Every month i need to find the list of .rar files from the
    E:/TempBackup directory from the different environments (remote desktop servers) and i need to delete the current month
    .rar files alone from the respective (E:/TempBackup) directory. below is example files structure inside the
    E:/TempBackup.
    example:
    zDROP_2014_08_31_Backups.rar
    zDROP_2014_09_31_Backups.rar
    zDROP_2014_10_31_Backups.rar
    from the above list i need to delete the zDROP_2014_08_31_Backups.rar(current month) file alone and also logs should be capture for this deletion.
    key words for this are zDROP and Current month and date.
    i need a stored procedure for this concept. could you please help on this.

    Hello,
    You can schedule an operating system task (Control Panel -> Schedule task) to either call a batch file or a PowerShell script.
    Please read the following resources for examples:
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/61373719-fffb-4d94-bdbe-7d8ed8620b44/delete-filesfolders-on-remote-servers-using-powershell?forum=winserverpowershell
    http://www.networknet.nl/apps/wp/archives/943
    http://jeffwouters.nl/index.php/2011/10/powershell-script-to-delete-files-older-that-a-week/
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • How can I get a list of database names from environment

    Hi,
    How can I get a list of database names from environment.
    I had found a method in JE API Docs named Environment.getDatabaseNames(), and i couldn't found the same method in Berkeley DB.
    I use java interface, is it supported?
    Thanks.

    Hello,
    I don't know if it would work for you, but have you checked the db_archive utility at:
    http://download.oracle.com/docs/cd/E17076_01/html/api_reference/C/db_archive.html
    Check the -s option.
    Thanks,
    Sandra

Maybe you are looking for