How to remove annual leave accrued in  time management

Hi all.
I have question in Time management. When I run some employees, their annual leave increase 15 days every day. So at the end of the year
their annual leave become more than 10000 days. How I want to stop this.What I want annual leave for this staff is 15 days every year and
the max carry forward can is 15 days per year. Can you help me.I'm too new in time management let alone negative time management.
Thanks

I believe you are referring to Absence Quota Accrual right?
If it is, table T556C (SM30) has all the customizing for counting and deduction rule. For the counting rule, check if you haven't set a multiplier.
But more important, is to check V_T559L -> Selection Rules. I believe you have a bad customizing for the ACcrual Period. If you want to accrue yearly based, I would recommend maintaining IT0041 with the date employee entered company and use it on the field Rel. to Date Type.
Of course, you can accrue as per calendar year as well.
Please check that and get back in case you still have issues.
Regards,
Bentow.

Similar Messages

  • How to craete  'annual leave 1/2day-AM' in ESS leave request

    Hi ,
    I have created 2001- subtype 670 : "annual leave 1/2day-AM".
    I wanted to see "annual leave 1/2day-AM" in the ESS leave request list down box ( already we have few ) ... please let me know what are the steps i need to follow ...
    thanks,
    sunitha

    Hi,
    Your ABAPer will be the best person to let you know the table name or some experts here who have come across this situation will guide you. Also check where other types of leaves are populated in SAP and your new value is there or not.
    Thanks,
    Preetham

  • How to remove old backup files from time machine? Lion OSx

    Hi everyone,
    I am just wondering how to efficiently and safely remove the old backup files from time machine? I tried once with command, but it damaged my extra-disk... Does Lion OSx have fixed that?
    Many thanks
    Hong

    Blue-
    Time Machine will automatically delete back-ups as the need for space arises. If you want to delete a certain file (application, document, whatever) and have it gone for good you can do that as well.
    The best place on the web for information about Time Machine is...
    http://pondini.org/TM/Home.html
    ...it covers everything!
    Clinton

  • How to calculate annual leave - please advise

    Hi,
    I need your advise please..
    here is the detail:::
    The employee contract can be definite (with expiry date) or indefinite (open without expiry date).
    The employee contract will always have date of join
    if the contract is definite then employee will have 30 days every year where the year is the period between the date of join and
    +365 days and the renewal is the same (from the renewal date and +365)
    if the contract is indefinite then employee will have 30 days every year where the year is the period between the date of join
    it's every 365 days so the contract has not renewal but the employee will have 30 days annually.
    for example, if indefinite and date of join is 1 April 2010 then every period from 1 April until 30 March will have 30 days for
    the employee
    I want to calculate the leaves for the employee without having to keep a renew table so it will be calculated based on the leave
    date and the first date of join.
    so the data will be just one leave table with from and to indicating the leave period for every leave and the result will be
    1 April - 31 March - [Total Taken Leaves] - [Total Remaining Leaves]
    hope
    I explained it well...

    I think I understand what you're saying.  Try out the code below to see if it works for you.
    I know you mentioned possibly have a table with leave_from and leave_to as the structure for how you would keep track of each employee's leave days, but I would simplify it to just EmployeeID and the LeaveDate, which is what I did below. 
    If you choose to go with a range, then you need to start dealing with only business days in your leave range calculations.
    -- CREATE SOME DATA
    IF OBJECT_ID('tempdb..#Employee', 'U') IS NOT NULL DROP TABLE #Employee;
    CREATE TABLE #Employee (
    EmployeeID int NOT NULL
    ,FullName varchar(30) NOT NULL
    ,JoinDate date NOT NULL
    ,EndDate date NULL
    IF OBJECT_ID('tempdb..#EmployeeDaysOnLeave', 'U') IS NOT NULL DROP TABLE #EmployeeDaysOnLeave;
    CREATE TABLE #EmployeeDaysOnLeave (
    EmployeeID int NOT NULL
    ,LeaveDate date NOT NULL
    INSERT #Employee
    SELECT A.*
    FROM (SELECT * FROM #Employee WHERE 1=2
    UNION ALL SELECT 1, 'Joe', '01/01/2014', NULL
    UNION ALL SELECT 2, 'Bob', '07/01/2014', '01/01/2015'
    UNION ALL SELECT 3, 'Eve', '10/15/2007', NULL
    UNION ALL SELECT 4, 'Ila', '09/08/2000', NULL
    UNION ALL SELECT 5, 'Oto', '07/01/2014', '01/01/2017'
    UNION ALL SELECT 6, 'Pop', '01/01/2013', '06/01/2013' -- Already let go
    ) A
    INSERT #EmployeeDaysOnLeave
    SELECT A.*
    FROM (SELECT * FROM #EmployeeDaysOnLeave WHERE 1=2
    UNION ALL SELECT 1, '01/30/2013'
    UNION ALL SELECT 1, '01/31/2013'
    UNION ALL SELECT 1, '02/01/2013'
    UNION ALL SELECT 1, '02/04/2013'
    UNION ALL SELECT 1, '04/15/2013'
    UNION ALL SELECT 1, '04/16/2013'
    UNION ALL SELECT 1, '04/17/2013'
    UNION ALL SELECT 1, '04/18/2013'
    UNION ALL SELECT 1, '04/19/2013'
    UNION ALL SELECT 1, '01/30/2014'
    UNION ALL SELECT 1, '01/31/2014'
    UNION ALL SELECT 1, '02/03/2014'
    UNION ALL SELECT 1, '02/04/2014'
    UNION ALL SELECT 1, '04/14/2014'
    UNION ALL SELECT 1, '04/15/2014'
    UNION ALL SELECT 1, '04/16/2014'
    UNION ALL SELECT 1, '04/17/2014'
    UNION ALL SELECT 1, '04/18/2014'
    UNION ALL SELECT 2, '07/21/2014'
    UNION ALL SELECT 2, '07/22/2014'
    UNION ALL SELECT 2, '07/23/2014'
    UNION ALL SELECT 2, '07/24/2014'
    UNION ALL SELECT 2, '07/25/2014'
    UNION ALL SELECT 2, '07/28/2014'
    UNION ALL SELECT 2, '07/29/2014'
    UNION ALL SELECT 2, '07/30/2014'
    ) A
    -- NOTE: I'm throwing all these calculations into a quick temp table, but you may want to put this logic into a view or table function
    IF OBJECT_ID('tempdb..#EmployeeLeaveCalculations', 'U') IS NOT NULL DROP TABLE #EmployeeLeaveCalculations;
    DECLARE @DaysPerYear int
    ,@CurrentDate date
    SELECT @DaysPerYear = 30
    ,@CurrentDate = CONVERT(date, GETDATE())
    SELECT A.EmployeeID
    ,A.FullName
    ,A.JoinDate
    ,A.EndDate
    ,A.LeaveCalculationStartDate
    ,A.LeaveCalculationEndDate
    ,CASE WHEN A.LeaveCalculationEndDate < A.LeaveCalculationStartDate -- Ignore if they are no longer with the company
    THEN 0
    ELSE CASE WHEN DATEDIFF(DAY, A.LeaveCalculationStartDate, A.LeaveCalculationEndDate) < 365
    THEN @DaysPerYear * DATEDIFF(DAY, A.LeaveCalculationStartDate, A.LeaveCalculationEndDate) / 365.0
    ELSE @DaysPerYear * 1.0
    END
    END as LeaveDaysEntitledTo
    ,CASE WHEN DATEDIFF(DAY, A.LeaveCalculationStartDate, A.LeaveCalculationEndDate) = 0 OR -- Avoid divide by zero
    A.LeaveCalculationEndDate < A.LeaveCalculationStartDate -- Ignore if they are no longer with the company
    THEN 0
    ELSE ROUND(DATEDIFF(DAY, A.LeaveCalculationStartDate, @CurrentDate) * 1.0 /
    DATEDIFF(DAY, A.LeaveCalculationStartDate, A.LeaveCalculationEndDate)* 1.0 *
    CASE WHEN DATEDIFF(DAY, A.LeaveCalculationStartDate, A.LeaveCalculationEndDate) < 365
    THEN @DaysPerYear * DATEDIFF(DAY, A.LeaveCalculationStartDate, A.LeaveCalculationEndDate) / 365.0
    ELSE @DaysPerYear * 1.0
    END
    , 1)
    END as CurrentLeaveDaysAccrued
    INTO #EmployeeLeaveCalculations
    FROM (
    SELECT EmployeeID
    ,FullName
    ,JoinDate
    ,ISNULL(EndDate, '12/12/9999') as EndDate
    -- If the Month/Date of their JoinDate is less than the current Month/Date,
    -- then we reset the leave start date to this year
    -- else it will be the previous year
    ,CASE WHEN CONVERT(int, RIGHT(CONVERT(char(8), JoinDate, 112),4)) <= CONVERT(int, RIGHT(CONVERT(char(8), @CurrentDate, 112),4))
    THEN CONVERT(date, CONVERT(char(4), YEAR(@CurrentDate)) + RIGHT(CONVERT(char(8), JoinDate, 112),4))
    ELSE CONVERT(date, CONVERT(char(4), YEAR(@CurrentDate)-1) + RIGHT(CONVERT(char(8), JoinDate, 112),4))
    END as LeaveCalculationStartDate
    ,CASE WHEN EndDate IS NOT NULL AND EndDate < DATEADD(YEAR,1,JoinDate)
    THEN EndDate
    WHEN CONVERT(int, RIGHT(CONVERT(char(8), JoinDate, 112),4)) <= CONVERT(int, RIGHT(CONVERT(char(8), @CurrentDate, 112),4))
    THEN CONVERT(date, CONVERT(char(4), YEAR(@CurrentDate)+1) + RIGHT(CONVERT(char(8), JoinDate, 112),4))
    ELSE CONVERT(date, CONVERT(char(4), YEAR(@CurrentDate)) + RIGHT(CONVERT(char(8), JoinDate, 112),4))
    END as LeaveCalculationEndDate
    FROM #Employee
    ) A
    SELECT X.*
    ,Y.TotalLeaveDaysTaken
    ,X.CurrentLeaveDaysAccrued - Y.TotalLeaveDaysTaken as CurrentLeaveDaysBalance
    ,X.LeaveDaysEntitledTo - Y.TotalLeaveDaysTaken as TotalRemainingLeaveDays
    FROM #EmployeeLeaveCalculations X
    JOIN (
    -- Get the total leave days taken from the given Employee's leave calculation start date
    SELECT A.EmployeeID
    ,SUM(CASE WHEN B.EmployeeID IS NOT NULL THEN 1 ELSE 0 END) as TotalLeaveDaysTaken
    FROM #EmployeeLeaveCalculations A
    LEFT JOIN #EmployeeDaysOnLeave B
    ON A.EmployeeID = B.EmployeeID
    AND A.LeaveCalculationStartDate <= B.LeaveDate
    GROUP BY A.EmployeeID
    ) Y
    ON X.EmployeeID = Y.EmployeeID

  • How to remove an external drive from time machine backup

    In time machine I also backup to an external drive. I recently bought a new external drive and thats working fine. However, it still wants to backup to my previous drive which I dont want to use. In time machine preferences I see the old and new drive listed. Both are greyed out so I cannot deselect the older drive.
    Suggestions?

    mhattonmd wrote:
    So when I open time machine preferences I see time machine and both external drives listed. If I click on options I see both external drives but I cant select either as they are both greyed out.
    If you see them both listed on the initial screen of TM prefs, they are both selected as backup drives. They are not being backed up. They are being used by Time Machine as a destination. You need to use “Select Disk…” to remove the external drives from the destination drives. Select Disk does not choose the drives you want to back up. It chooses the drives you wan to back up to.

  • How to remove swf file after some time?

    Hi all,
    I am working in flex 3.5 . i have loaded one swf file in mxml, i want to make invisible after some sec's. for that what i have to do. pleae anyone help me.....

    SetTimeout?

  • How to remove the grid at the time of printing?

    I could not find where to disable printing of the grid. The printer prints it constantly.

    Hi SA,
    Numbers does not have a print gridlines/don't print gridlines option.
    In Numbers, there are Cell Borders. They are not the same as Gridlines in Excel. In Numbers, you must set the Cell Borders to your liking.
    Here is a screen shot of Table 1 with 1 pt gridlines. Those gridlines will print.
    Table 1-1 (selected in the Sheets Pane on the left of this screen shot) has a grid that is visible to help you while you are working on it:
    I selected Table 1-1 (the square 'handles' show that the whole Table is selected)
    and then in Inspector > Graphic > Stroke > None.
    Here is a screen shot of Sheet 1 after File > Print...
    Table 1 (1 pt cell borders) will print with borders. Table 1-1 (Stroke > None) will not print with Cell borders.
    Regards,
    Ian.

  • How to remove archive log files from ASM managed 11g R2 database?

    Hi,
    I am planning to automate deletion of older archive log files from my 11g R2 Production instance which is ASM managed.
    Also want to remove the archive log files files from standby database.
    Please provide your inputs on how can I remove the older archive log files.
    Regards,
    Avinash

    Greetings
    Did you check RMAN,
    RMAN>show all;
    CONFIGURE RETENTION POLICY . . . .
    CONFIGURE ARCHIVELOG DELETION POLICY TO [CLEAR | NONE | APPLIED ON STANDBY];
    DELETE NOPROMPT EXPIRED ARCHIVELOG ALL;
    DELETE NOPROMPT ARCHIVELOG ALL COMPLETED BEFORE 'SYSDATE-10';
    This will be part of your RMAN Backup scripts/process
    Check the urls below:
    11gRel2:
    http://download.oracle.com/docs/cd/E11882_01/backup.112/e10642/rcmmaint.htm#BRADV90079
    http://download.oracle.com/docs/cd/E11882_01/backup.112/e10642/rcmmaint.htm#BRADV89634
    10g:
    http://download.oracle.com/docs/cd/B19306_01/backup.102/b14193/toc.htm#sthref45
    http://download.oracle.com/docs/cd/B19306_01/backup.102/b14191/rcmconc1.htm#i1008093
    http://download.oracle.com/docs/cd/B19306_01/backup.102/b14192/maint003.htm#sthref712
    Regards & Thanks
    BN

  • How to remove all hyperlinks at once?

    Hi guys,
    I want to know how to remove all hyperlinks in a text at once. I know how to remove one link at a time. But it's time consuming if you paste a text with a lot of hyperlinks.
    Thanks,
    Adriano.

    Duplicate your document for safe then drag and drop the icon of the copy of the icon of this script saved as an application.
    --[SCRIPT remove links]{code}
    Enregistrer le script en tant qu'Application ou Progiciel : remove links.app
    Déposez le sur le bureau par exemple.
    Glisser-déposer l'icône d'un document Pages sur celle du script
    va éliminer tous les Hyperliens et signets prédsents dans le document.
    On peut également qlisser déposer un fichier index.xml.
    +++++++
    Save the script as an Application or an Application Bundle: remove links.app
    Store it on the desktop for instance.
    Drag and drop the icon of a Pages document on the script's icon
    to remove the Hyperlinks and Bookmarks embedded in the document.
    We may also drag & drop an index.xml file.
    Yvan KOENIG (Vallauris, FRANCE)
    16 février 2009
    enhanced 17 février 2009
    --=====
    property removeBookmarks : true
    true = remove the bookmarks
    false = don't remove the bookmarks *)
    property removeLinks : true
    true = remove the Links
    false = don't remove the Links *)
    property liste : {}
    --=====
    on open (sel)
    set theDoc to (item 1 of sel) as text
    tell application "System Events" to tell disk item theDoc
    set nn to name
    set uti to type identifier
    set isPackage to package folder
    end tell
    if nn is "index.xml" then
    my traiteIndex(theDoc)
    else if uti is not in {"com.apple.iwork.Pages.Pages", "com.apple.iwork.pages.sffpages"} then
    error "Not a Pages document !"
    else if isPackage then
    -- here the document is a package
    if theDoc ends with ":" then set theDoc to text 1 thru -2 of theDoc
    tell application "Finder"
    set the_index to (theDoc & ":index.xml")
    set indexGzAvailable to exists file (the_index & ".gz")
    set indexAvailable to exists file the_index
    end tell -- Finder
    if indexGzAvailable then
    if indexAvailable then tell application "Finder" to delete file the_index
    my expandIndex(the_index & ".gz")
    my traiteIndex(the_index)
    else
    if indexAvailable then
    my traiteIndex(the_index)
    else
    error "No Index available !"
    end if
    end if -- indexGzAvailable
    else
    -- here the document is a flat one
    tell application "Finder"
    set cont to (container of file theDoc) as text
    set name of file theDoc to (nn & ".zip")
    end tell -- Finder
    set theDocZ to cont & nn & ".zip"
    my expandDoc(theDocZ, theDoc)
    tell application "Finder"
    set name of file theDoc to (nn & "yk")
    set theDocF to cont & nn & "yk"
    set the_index to (theDocF & ":index.xml")
    set indexAvailable to exists file the_index
    end tell -- Finder
    if indexAvailable then my traiteIndex(the_index)
    end if -- nn …
    end open
    --=====
    on traiteIndex(theIndex)
    local theKey1, theKey2, theKey3, theKey4, theKey5, itm, itm1, itm2, itm2
    my nettoie()
    (* Lis le contenu du fichier Index.xml *)
    set texte to read file theIndex from 1
    if removeBookmarks then
    (* supprime les descripteurs de signets *)
    set theKey1 to "<sf:bookmark sf:name"
    set theKey2 to "</sf:bookmark>"
    if texte contains theKey1 then
    set my liste to my decoupe(texte, theKey1)
    repeat with i from 2 to count of my liste
    set itm to my decoupe(item i of my liste, theKey2)
    set itm1 to item 1 of itm
    set itm1 to text (1 + (offset of ">" in itm1)) thru -1 of itm1
    set itm2 to my recolle(items 2 thru -1 of itm, theKey2)
    set item i of my liste to (itm1 & itm2)
    end repeat -- i
    set texte to my recolle(my liste, "")
    end if
    end if -- removeBookmarks
    Here are samples of Hyperlinks in the index.xml file
    --link to bookmark
    <sf:p sf:style="paragraph-style-32">
    <sf:bookmark sf:name="page 3" sf:ranged="true" sf:page="3">
    page 3
    </sf:bookmark>
    <sf:br/>
    --link to URL
    <sf:p sf:style="paragraph-style-32">
    <sf:link href="http://discussions.apple.com/thread.jspa?threadID=1905618&amp;tstart=0" sf:style="SFWPCharacterStyle-7">
    <sf:span sf:style="SFWPCharacterStyle-7">
    Change cell color if number is different from previous cell
    </sf:span>
    </sf:link>
    <sf:br/>
    --link to an other Pages document
    <sf:p sf:style="paragraph-style-32">
    <sf:link href="pages:///Users/yvan_koenig/Documents/Sans%20titre%20-%20copie.pages#un%20 signet%20externe">
    <sf:file-alias sf:file-alias="0000000001ae000200010c4d6163696e746f7368204844000000000000000000 000000000000c45c8cef482b00000008a77c1853616e73207469747265202d20636f7069652e7061 67657300000000000000000000000000000000000000000000000000000000000000000000000000 000000360f06c5c03419000000000000000000010002000009200000000000000000000000000000 0009446f63756d656e747300001000080000c45c70cf0000001100080000c5c0260900000001000c 0008a77c0008a76f00006bdf000200414d6163696e746f73682048443a55736572733a7976616e5f 6b6f656e69673a446f63756d656e74733a53616e73207469747265202d20636f7069652e70616765 7300000e0032001800530061006e00730020007400690074007200650020002d00200063006f0070 00690065002e00700061006700650073000f001a000c004d006100630069006e0074006f00730068 0020004800440012003455736572732f7976616e5f6b6f656e69672f446f63756d656e74732f5361 6e73207469747265202d20636f7069652e7061676573001300012f00001500020012ffff0000"/>
    <sf:span sf:style="SFWPCharacterStyle-7">
    vers autre document
    </sf:span>
    </sf:link>
    <sf:br/>
    if removeLinks then
    (* supprime les descripteurs de liens *)
    set theKey1 to "<sf:link href="
    set theKey3 to "<sf:span sf:style="
    set theKey4 to "</sf:link>"
    set theKey5 to "</sf:span>"
    if texte contains theKey1 then
    set my liste to my decoupe(texte, theKey1)
    repeat with i from 2 to count of my liste
    set itm to my decoupe(item i of my liste, theKey4)
    set itm1 to item 2 of my decoupe(item 1 of itm, theKey3)
    set itm1 to text (1 + (offset of ">" in itm1)) thru -1 of itm1
    set itm1 to item 1 of my decoupe(itm1, theKey5)
    set itm2 to my recolle(items 2 thru -1 of itm, theKey4)
    set item i of my liste to (itm1 & itm2)
    end repeat -- i
    set texte to my recolle(my liste, "")
    end if -- texte contains
    This piece of code takes care of a bug in the save as Pages '08 process.
    A link to an other document is not completely disabled so the 'disabled' link remains blue.
    The link is stored this way:
    <sf:p sf:style="paragraph-style-32">
    <sf:span sf:style="SFWPCharacterStyle-7">vers autre document</sf:span>
    <sf:br/>
    when it would be:
    <sf:p sf:style="paragraph-style-32">
    vers autre document
    <sf:br/>
    if texte contains theKey3 then
    set my liste to my decoupe(texte, theKey3)
    repeat with i from 2 to count of my liste
    set itm to my decoupe(item i of my liste, theKey5)
    set itm1 to item 1 of itm
    set itm1 to text (1 + (offset of ">" in itm1)) thru -1 of itm1
    set itm2 to my recolle(items 2 thru -1 of itm, theKey5)
    set item i of my liste to (itm1 & itm2)
    end repeat -- i
    set texte to my recolle(my liste, "")
    end if -- texte contains
    end if -- removeLinks
    set lineFeed to ASCII character 10
    if texte contains (lineFeed & lineFeed) then set texte to my recolle(my decoupe(texte, lineFeed & lineFeed), lineFeed)
    if texte contains (return & return) then set texte to my recolle(my decoupe(texte, return & return), return)
    set eof of file theIndex to 0
    write texte to file theIndex
    my nettoie()
    end traiteIndex
    --=====
    on decoupe(t, d)
    local l
    set AppleScript's text item delimiters to d
    set l to text items of t
    set AppleScript's text item delimiters to ""
    return l
    end decoupe
    --=====
    on recolle(l, d)
    local t
    set AppleScript's text item delimiters to d
    set t to l as text
    set AppleScript's text item delimiters to ""
    return t
    end recolle
    --=====
    on nettoie()
    set liste to {}
    end nettoie
    --=====
    (* Expands the zip file z in the container d, z and d are pathnames as strings *)
    on expandDoc(z, d)
    do shell script "unzip " & quoted form of (POSIX path of (z)) & " -d " & quoted form of (POSIX path of (d))
    end expandDoc
    --=====
    on expandIndex(f)
    do shell script "gunzip " & quoted form of (POSIX path of (f))
    end expandIndex
    --=====
    on lisIndex_xml(f)
    local t
    try
    set t to ""
    set t to (read file f)
    end try
    return t
    end lisIndex_xml
    --=====
    on compactIndex(nDoc)
    local aliasNDoc
    set aliasNDoc to nDoc as alias
    write leTexte to aliasNDoc starting at 0
    do shell script "gzip " & quoted form of POSIX path of aliasNDoc
    end compactIndex
    --=====
    --[/SCRIPT](code}
    Yvan KOENIG (from FRANCE samedi 14 mars 2009 20:55:42)

  • Waht does time management status 0 without payroll integration mean

    In our project, the client does not want to use time evaluation and so, we have set the time management status value as 0 (no time evaluation). Also, the client is not implementing (at least now) SAP-Payroll, as they are processing payroll through a different software. We have configured work schedules ( they need just 4 different work schedules) and assigned appropriate ork schedules to all employees in infotype 0007. We have also configured one absence quota (Earned Leave of 20 days per year).
    My query is how will the system behave now with time management status value as 0? Can we process absence quotas? What is the use of work schedules, in this context, as any way the system does not evaluate employee time in Time Management. Neither the time wage types are evaluted in Payroll, as SAP Payroll is not implemented.
    -Shambhvi

    My thanks to all of you. I would like to summarize the answer for my query:
    Since time management status = 0, there won't be any time evaluation, which means attendance and absence data, even if entered won't be evaluated in Time Management. Since Payroll is not implemented, the question of time data getting evaluated in Payroll does not exist. However, absence quotas can be maintained, irrespective of the value of time managment status.
    Please correct me, if my understanding is wrong
    -Shambhvi

  • Time Management Concepts

    Hi All,
            i am new to SAP-HR  and  i need some basic clarifications i searched the forum before posting but i am getting a exactly correct answer that is why i am posting it
    why we need time management component?
    what is  Shift Planning?
    What is  Work schedule ?
    what is time evaluation?
    and how these  components are integrated in the time management module .
    please  answer in the very  layman language i am confused with the  help.sap document.

    Hi,
    why we need time management component?
               Employees' time data maintained in Time management is transferred to payroll to calculate employees pay.
    what is Shift Planning?
    Here you can assign shift times, locations and the number of required employees for the enterprise.
    What is Work schedule ?
    Work schedule defines the working pattern of the employees.
    what is time evaluation?
       Employee's time data is valuated in time evaluation. It determines planned working time, overtime, create wage types like overtime or bonus wage types.
    Hope it helps. If more clarification needed let me know.
    regards,
    kalyani

  • Generation of Annual Leave Quota at a time for the whole  year

    Hi All,
    Kindly give some suggestions.
    I am working on Time evaluation. We have a quota , Annual leave which is now given on monthly basis, means lets 12 annual leave are for whole year and employee are getting 1 leave on each month.
    Now  my requirement is to give this quota at a time in the start of every year. That means all the 12 annual leave should be generated in the start of a year.
    When I select the option no pro rata calculation then I am getting all this leave in the start of the year. But when an employee is joined in the mid of the year then also 12 leave is been generated which is not correct.
    Please suggest me how to make this leave as prorated so that for new joinee , this leave is generated taking into account the period and generate the prorate value for the whole year at the time of joining.
    Thanks
    Tanuja.

    Hi Sikinder,
    I am using + time evaluation Status-2. We have to generate quota in PT60 for each period.
    Write now we are getting annual leave quota getting generated in monthly basis. We want to genarate whole quota  for the  year in the 1st month of the year.
    When I have given calender year in the accrual period , i am not getting any quota in the 1st month rather getting the whole quota in the end of the year.
    Please suggest me what to do.
    Regards,
    Tanuja.

  • How to remove the time slider from my project and keep only buttons

    How to remove the time slider from my project and keep only buttons to interact with my project .

    If I understand you correctly, go to the skin editor (Project, Skin Editor in Captivate 4), select the Playback Control tab, uncheck the Progressbar check box.  Leave checked the buttons for play/pause, rewind, forward, back, etc.
    I hope this helps.
    Mister C.

  • I install LION on my mac pro 2008 and it's alway's pop with " there was a problem connecting to the server " Time Capsule" .How can i remove this popup. My Time machine is working fine and also rename it. But the popup keeps on coming with the old name.

    I installed LION on my mac pro 2008 and it's alway's pop with " there was a problem connecting to the server " Time Capsule" .How can i remove this popup. My Time machine is working fine and also rename it with less than 7 karakters. But the popup keeps on coming with the old name.

    I have a BT Infinity router plugged into the Time Capsule, not sure where the radio settings are?
    They are able to use the network settings of the TC i.e. they can connect to the internet via the wifi through the TC but when they try and connect to the AirPort Disk this is where it is not allowing a connection.
    I don;t have the drive shared out at all at the moment, is this necessary?  How do I do this if so?
    I have attached the screen shots of all the settings.
    Thanks again for your help.

  • ICal prints times in front of event entries, I don't want these times entered. How to remove them?

    iCal prints times in front of event entries, I don't want these times entered. How to remove them?

    Go to your Flagged Photos Smrt Album on the Left.
    Command - a will select All
    Then File -> New -> Album
    Regards
    TD

Maybe you are looking for