Day type selection rule

Hi to all,
Its very urgent,
Can any one explain the day type rule one by one in detail, which i listed below.
Rule     Day type Weekday     Day type Saturday     Day type Sunday
01      1 1111111      1 1111111      1 1111111                                       
03      1 1111111        1111111       1 1111111
10      1 1111111      1 1111111      1 1111111
01      1 1111111      1 1111111      1 1111111
Thanks in advance for your valuable concept.
Regards,
babu.A

Hi Babu,
According to the rule 01, on Weekdays, if it is working day or Half day (b or 2 ) it will be Work and paid...And if it is weekday and any other holiday class, it will be Work off and Paid including 1 & 3 to 9.
As I don't see any difference in other rules, same is applicable to all.
I understand that last rule 01 is not possible as it will not allow the entry with same Rule name/number.
Now, we need to define these selection rules, if we want to distinguish between certain Group of employees, by paying / not paying them in case of Holiday.
Reward the suitable points if you find helpful and close the thread, if you understand that you got the answer of your query...
Regards,
Dev

Similar Messages

  • Define Selection Rules

    Hi
    can any one explain the Selection rules in Time Management and how we can define them.
    Thanks
    Sirisha

    Hi Sirisha,
    If none of these three, which one were you asking ?
    The three listed by me:
    1.Seletion rule/Variants, I have already explained.
    2.Day Type selection rule is defined to set your Pay conditions, wether company want to pay to the employee on particular week day keeping Holiday class on that day in mind.
    TM>Work Schedule>Day Type-->Define Seletion rules.
    3.Based on Time Quota grouping and a Quota type selection group,
    We have to define Selection rule for the particular absence quota.
    Which is dependent on Applicablility conditions, accrual period,Base Entitlement,
    accrual entitlementand total entitlement etc.
    Go to TM>Time data Recording>Managing time accounts using Att/Abs.quotas>Calculating Absence Entitlement>Rules for Generating absence Quotas-->
    Define Generation Rules for Quota Type Selection-->Selection rule.
    I am sorry if my answer confused you more, as all these three concepts need detailed understanding, before we configure them...
    Regards,
    Dev

  • Define selection rule for Day type

    Dear Experts
        As I want to "Define selection rule" for "day types" in Time Management-> work schedule-> Day types-> define selection rule, the third and 4th columns are default weekdays of SAP, But weekend is different in our system. How can we handle this subject? Can we change these columns to our needs? How?
    For example we want to define that friday is not working day in our company and it should be payed, is there any other option?
    Thank you all,...

    Hi friend,
    Check:
    Time Management -> Work Schedules -> Period Work Schedules -> Define Period Work Schedules
    btw, you should check factory Holiday calendar (Tcode: SCAL) and generate Work schedule for year.
    IMG: Time Management -> Work Schedules -> Work Schedule Rules and Work Schedules -> Generate Work Schedules in Batch
    Regard,
    Michael.

  • Creation of  rule for day type  for Unpaid Day off

    Hi,
    i working on two types of day off one is paid another one is unpaid.
    For first one i selected the standerd SAP rule 01
    And for unpaid I created one rule Like
    Dy.ty Wd      d.ty sat     d.Sud.
    2 2222222   2 2222222  2 2222222
    like that i was created i assigned to the work schedule rule.
    can u any body tell me is it correct or wrong.
    Thanks in Advance
    Edited by: bhaskar K on Sep 23, 2008 12:33 PM

    hi bhaskar
    want to make some thing clear when ur creating a rule u take into account the holiday class along with day type when u try to combine and match them u can precisely say tht ur rule wud be correct based on ur requirements.
    please make it clear
    regards
    sb

  • Special day type rule

    Hi,
    I need to a special day type rule assigned in period work schedule to a group of expatriate employees since they will not be using the standard public holiday calendar.
    The days need include 23Nov, 25,26, Dec, 14 April. How do I create this and how can I link this to  the PWS.
    Many thanks,
    Tomuri

    Hi,
    Create the public holidays and assign those PHs a particular holiday class which is not used for others and assign these holiday classes to the workshcedules for expatriates.
    ~BiSu

  • Creation of Day type rule

    Hi all,
    Does anybody have a doc on creation of daytype rules and can share
    Thanks in advance
    Raghu

    hi
    in day type rules we are linking holiday classt to day type
    if holiday class b  (blank) i.e. full working day
    day type specifies whether full working day is paid or unpaid
    let us see the link
    holiday class   b
       day typ            b
    b and b means on full working day work paid is possible
    Edited by: M. Madhu on May 13, 2009 1:26 PM

  • Can I modify the the day type with a time rule???

    Hello,
              I´m trying to modify the day type,I want to change in some particular cases the day type from 1 to 0 for example. I´m looking in the documentation but I don´t find no operation to do this trough a time rule.
    I think that it would be abble to do with a function that modify the table PSP.
    Anybody knows how can I do it??
    Thank you very much!!!.Regards,
    Emi DF

    Thank you Valéire,
                                  I´ve solved the problem with your answer.Regards,
    Emi DF

  • Returning all the days in selected Month in a Year using Report Builder

    I am working Report Builder with SharePoint List Data Source. Report builder has to parameters Month and Year. If i select month as March and year as 2014 the report have to display
    March 1 2014 Saturday
    March 2 2014 Sunday
    March 3 2014 Monday
    March 31 2014 Monday
    Can any one help on this, do i have to write this in Dataset Property query, Report Builder Properties or calling any function.....!
    Appreciate if any example query. Thank you

    Hi SPBee,
    If the all fields are already returned by dataset with SharePoint List Data Source, we can directly add filters in your dataset to achieve your requirement.
    Expression: [Month]
    Operator: In
    Value: [@Month]
    Expression: [Year]
    Operator: In
    Value: [@Year]
    If you want to create a report that display the data as you post, we can create a function in SQL Server Management Studio as below:
    IF EXISTS (SELECT 1 FROM INFORMATION_SCHEMA.ROUTINES WHERE ROUTINE_NAME ='CalendarTable1' AND ROUTINE_SCHEMA = 'dbo' AND ROUTINE_TYPE='FUNCTION')
    DROP FUNCTION dbo.CalendarTable1
    GO
    CREATE FUNCTION dbo.CalendarTable1
    @StartDate datetime,
    @EndDate datetime,
    @WeekDaysOnly bit = 0,
    @MonthStart bit=0
    RETURNS @CALENDAR TABLE
    Date datetime,
    [Monthname] varchar(20),
    [Dayname] varchar(20),
    [Day] int
    AS
    BEGIN
    ;With Calendar_CTE (Date,[Monthname],[Dayname],[Day])
    AS
    SELECT @StartDate,datename(Month,@StartDate),  DATENAME(dw,@StartDate), DATEPART(day,@StartDate)
    UNION ALL
    SELECT DATEADD(dd,1,Date),datename(month,DATEADD(dd,1,Date)),  DATENAME(dw,DATEADD(dd,1,Date)) ,
    DATEPART(day,DATEADD(dd,1,Date))
    FROM Calendar_CTE
    WHERE DATEADD(dd,1,Date) < = @EndDate
    INSERT INTO @CALENDAR
    SELECT Date,[monthname],[Dayname],[Day]
    FROM Calendar_CTE
    RETURN
    END
    Create two parameters start and end with Date/Time type in the report, then use the query like below in the dataset:
    SELECT * from dbo.CalendarTable1 (@start,@end,0,0)
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • How to define Template Selection Rules according to doc language code

    hi All,
    I am using ucm10g, I need to use DC to convert word to html, by defining Template Selection Rules, it worked perfect.
    Question is I have to use different template for different content that use different languages, for example, if a content has a primary file writing in English, that content will be checked in with langCode attribute of "en", and according to this langCode attribute, I will use different template that will show "nextpage" or "previouspage" according to langCode field, other content will use other template that show "nextpage" or "previouspage" in other language.
    I donot think the fields used in Template Selection Rules(such as author, type, profile) in ucm10g can be used in this case, any suggestion?
    Best regards

    I will ask easier.
    is it possible to set in RSCUR -> Exchange rate type 'Y' and Exchange rate from InfoObject '0EXRATE_ACC' AND use it in BEx?
    If yes, how, if now why?
    Thank you
    Standa

  • Selection rule for work schedule

    Hi experts ,
    Anyone know the meaning of the selection rule ?
    Rule        D.ty.wkdy            D.typ.Sat.            D.typ.Sun
    01            1 1111111           1 1111111          1 1111111
    02              Blank                      Blank                    Blank
    03             1 1111111               1111111              1 1111111
    10             1 1111111            1 1111111        1 1111111
    Why there is blank in front ? and some blank in between ?
    Anyone can explain to me ?
    Thanks in advance.
    Chris.

    Hi friend,
    Check:
    Time Management -> Work Schedules -> Period Work Schedules -> Define Period Work Schedules
    btw, you should check factory Holiday calendar (Tcode: SCAL) and generate Work schedule for year.
    IMG: Time Management -> Work Schedules -> Work Schedule Rules and Work Schedules -> Generate Work Schedules in Batch
    Regard,
    Michael.

  • Day Types in WSR

    Hi Gurus,
    Have a question on Day Types. Have defined spl day rules and assigned it to WSR. Got the work schedule re generated.
    Defined Bridge day:
    Say Nov 6 is Weekly off - where they are intended to work. specified as 0/ work and paid
    Following week they have PH on Thu and Fri is scheduled as work day so we need to change the work day to holiday - defined the rule as 3 Spl Day off Paid
    But when we check the work schedule in IT0007 it shows day type as specified in the special day type rule.
    but the work timings for that special day off is not  changed to "0"(Zero) still showing the work timings defined in DWS nor the work timings for Sat is showing the daily working time.
    Please let me know how this can be achieved.
    Regards,
    M Bharath

    Posting the solution can sometimes help others.

  • Time Management- Wrong Day Types coming when updating leave records

    Dear Experts
    Can anyone help me on what I should do to change my Day Type in Time management. The greatest challenge is that the system is not able to read the day type for Work/Paid. Despite that I have created my dailly working schedules, work schedule rule and my calender showing working and non-working periods, I still face a challenge when I want to give employees leave because the system says the whole period is a non working period. If I check in the employeeu2019s personal work schedule I notice that all the day types are Off/Paid hence that leave cannot be given especially if its vacation which does not count weekends and public holidays.
    I am using the same customization as that I was using in the testing environment and was working fine but then in production, it is not. Where exactly can I check and change so that the day types are read correctly. When I run time evaluation, the system is accruing days normally but then it is picking Day type 1(one) in Table PSP
    thanx

    Hi,
    For the daily WSR that you used (in table V_T550A) check that in Valuation section Daily WS class does not have value 0
    Cheers

  • Assigning day types to the weekdays and holidays

    Hi,
          Using the submodule Time Management, day types 1(time off/paid), 2(Time off / not paid), 3(time off/special) are created
        The different positions of the weekday, saturday and sunday are b(working), 1-public holiday, 2- half day holiday, 3 to 9 - customer specific holidays
    Can anyone explain me how the day types are assigned to the different positions of the weekdays, saturday and sunday?
    Thanks
    Gracy

    Hey Gracy,
    What you have done will assign day type 1 ( Paid/OFF) to all the calendar days. If you use this Day type rule in your Work Schedule rule then the use this WSR for an employee in IT 0007 then your Employee will be in Honeymoon period As he will be paid for all days and his attendance won't matter
    OK.. lets start afresh.
    Day types are used for determining whether employees have to work on public
    holidays and whether they are still paid on these days.
    The main purpose of Day type rules is to assign a day type ( 0 or blank, 1,2 and 3) to each calendar day.  A week has 7 days. Mon - Fri are weekdays and then we have Saturday and sunday.
    While generating work schedule, the system will assign a day type to each day. For this it will reference the day type rule.
    First it will check what day it is evaluating i.e a weekday or a saturday or a sunday. Then it will check the Public holiday class of that day and finally depending on the combination of day of the week and the public holiday class of the day it will assign a day type.
    Eg Consider this
    Weekday              Saturday                   Sunday
    b123456789          b123456789        b123456789
    .1.1111111          .1.1111111          .1.1111111
    Explanation for above example
    If a day with public holiday class BLANK(indicated as dot in above example) falls on WEEKDAY then it is a PAID/WORK day
    If a day with public holiday class 1 falls on WEEKDAY then it is PAID/OFF day
    If a day with public holiday class 2 falls on WEEKDAY then it is a PAID/WORK day
    and so on for other Public holiday classes for WEEKDAY.
    The same applies to Saturday and Sunday.
    Suppose
    Weekday              Saturday                   Sunday
    b123456789          b123456789        b123456789
    Suppose if blank is assigned in the rule for all days and for all public holiday classes then your employees will have to work on all public holidays.
    Hope this clarifies your doubt. Read what I have written very carefully. I know its a little confusing
    Cheers
    Ajay

  • Output type selection is missing for report  S_ALR_87013558

    Hi,
    In report S_ALR_87013558 output type selection is not seen in production. whereas it was there before, and its there in quality. Please help how should i bring it back.
    Points are awarded in full for correct answer.
    Thanks

    Hi Krishna
    Just check whether you the authorization to display the report in Production. You might have the authorisation if the development and quality, but some times not in Production.
    Regards
    Sridhar

  • Use of Selection Rule in Report Writer.

    Hello Everybody,
    I am trying to make use of selection rule in report writer.   We have a mixed chart of accounts using both IFRS and USGAAP account.  Distinction between USGAAP and IFRS is based on certain value in gl account master data.  Using report writer rule I wish to exclude IFRS account for a specfic report.
    For example
    REPORT = X = Rule to restrict selection to only USGAAP account
    REPORT = Y = Rule to restrict selection to only IFRS account.
    I have created a rule and tried to build user-exit around it.  However during the callup of the selection rule no values are transferred to user-exit and therefore the ABAP consultant is not able to write any specific code.
    Request your inputs on usage of selection rules in report writer.
    Regards
    Jayesh.

    Hi Jayesh,
    Please have a look at the below attachment.
    [http://help.sap.com/saphelp_470/helpdata/en/5b/d22e3843c611d182b30000e829fbfe/content.htm]
    Warm regards,
    Murukan Arunachalam

Maybe you are looking for

  • Using a Family Members upgrade

    Ok so i know this has been asked before and I think I get the gist of it. I currently have the Dinc and am giving it to my bro for his upgrade. My Dinc has insurance and unlimited data. I know I will have to activate it on his line before mine. My qu

  • Problem including jdk.dio into Hello World Example

    Hi I followed the Hello World Example and this worked on my raspberry pi. Then I tried to use jdk.dio to access some hardware via GPIO unfortunately then the build of the Deployment Package fails with : # 2/7/15 4:35:16 PM CET # Eclipse Compiler for

  • It seems that I have erased the address bar and can only access firefox thru google. I am using a mac. How do I get it back?

    there is an icon in the upper right corner that closes or opens a portion of the top of the page, and I accidentally clicked it, and the address bar was gone. Now I can not open the home page and type where I want to go.

  • Need help troubleshooting imap/gmail account

    For reasons not worth getting into I changed my port setting from 25 to 587 (I think) to 25 again. Ever since, I can't get mail to sync with my gmail account. I have the right account name (gmail address), the right server (imap.gmail.com), the right

  • GDC problem or network outage

    Hi Friends, As this is related to SAP i am posting it here. Because of the GDC outage we had 118 short dumps in SAP, In SM59 we have the WORKFLOW_LOCAL_900 and user  WFbatch is used . Our manager has a question i don't know what exactly to answer, hi