Op PPINC, attendance reason, over or above planned working time frame.

Hi all,
We need to automatically generate attendances/absences from the att/abs reasons from time events. So we are using TD80 rule and V_T705A.
It works OK for almost all cases, except when the attendance is over or above the planned working time frame.
I've read TD80, R555D, PPINC, PPINU help, and I can't find the solution.
i.e. working time is from 12 to 7pm hs. and the employee was present from 8 am to 7 pm, so i need to generete an attendance from 8 am to 12.
Any help?
Thanks a lot.
Laura

we need to automatically generate (through time evaluation, using td80 rule and V_T705A table), attendances/absences (it2002 and it2001) from the att/abs reasons from time events (it2011).
We are already doing this, for attendances /absences within the planned working time frame and it's working OK.
The problem is that, when the attendance is over or above the planned working time frame, stdandard function send an error message:
u201CError entry no. 28 Error when generating abs./att.
02.05.2011 Processing terminated for EE 00000077 RUBEN ALFONS QUIROGA MAYAu201D.
I understand, this control must exists for abscences outside the working time frame, but it seems not to be logical for attendances (it can be  done through PA61).
Example:
Working time for an employee is from 1 pm to 7pm hs.
The employee was present from 8 am to 7 pm, so we need to generate an attendance (it2002) from 8 am to 1 pm.
The system allows to do this, through standard transaction PA61, so, I think it should be possible to do the same, using time evaluation too.
Iu2019ve already tried with the different variables for operations R555D, PIPNC y PPINU, but I could not find a combination that works properly for this case.
Besides, help documentation about PPINU function says u201CABSENCES of less than one day are never generated over and above the planned
working time frame. It would not be possible to enter these records online either.u201D
But unfortunally, it says nothing about ATTENDANCES over and above the planned working time frame.
Hope I have clarified.
Thanks a lot!!
Laura

Similar Messages

  • Error when create Infotype 0007-Planned Working Time of Personnel data

    Hi Experts,
    I'm creating Infotype 0007-Planned Working Time for Personnel data then having a error below.( I created Work schedule rule and Gennerated it).
    Feature structure cannot be recognized, please see documentation
    Message no. P0568
    Diagnosis
    Cause 1:
    The structure of the feature is not saved in the feature directory.
    Cause 2:
    The feature structure is not defined in the program that reads the feature.
    Cause 3:
    The feature that the program expects does not match the actual feature structure.
    Procedure
    Cause 1:
    Please advise your system administrator that all features must be regenerated. Please note that this generation must take place in client 000 first, and then in all other clients (report RPUMKF00 or the Generation function in the feature maintenance transaction (transaction PE03)).
    Cause 2:
    The feature structure must always be defined in the program reading the feature (see documentation for program RPUMKC00).
    Cause 3:
    Please contact your system administrator
    I did using T.Code PE03 in Client 000 but I don't know what is Features?
    Please tell me how solves it ?
    Thanks so much.
    Dungnv

    infotype 0007 reads two features
    SCHKZ  - Default value for Shift indicator
    TMSTA     DEFAULT VALUE FOR TIME MANAGEMENT STATUS
    Please have a look at both these features

  • How to make Planned working time Override Substitution ?

    Dear Friends,
    The User wants to make Planned working time to always OVERRIDE / PREVELANT on substition.
    Is it possible ?
    Thanks,
    Sri

    Dear Friends,
    The User wants to make Planned working time to always OVERRIDE / PREVELANT on substition.
    Is it possible ?
    Thanks,
    Sri

  • Number of weekly working hours 48 exceeded error in Planned Working Time

    Hi,
    I have a group of employees called labors who work all 7 days a week, 10 hours a day so I have created the work schedule accordingly. When I maintain the Planned Working Time infotype, the system gives a warning message "Number of weekly working hours 48 exceeded". In table T77S0, value of PERCK is set to D & DAYWK is set to 700. Please guide me to solve the problem

    Hi,
    VJ for which country are you implementing this? Some countries have regulations that a person's working time may not exceed XX hours.
    cheers
    Ajay

  • No infotype record 0007(Planned working time) on 03/07/2011

    Hi,
    In our scenario, Time sheet is integrated with work order and while submiting we are getting an error :
        "No infotype record 0007(Planned working time) on 03/07/2011".
    Where as I checked infotype 0007 but it is maitained with proper data.
    Please suggest what could have gone wrong and why this error is coming?

    I am assuming 03/07/2011 in your problem refers to March 07, 2011.
    Please check: Has the work schedule in IT 0007 been generated? Check transaction PT03 in your production system and see if you can display the work schedule for the month.
    If it has not been generated, you will need to generate it for the month.
    If it has been generated, please check the details for the day in question (03/07/2011). Please make sure that the DWS and PWS are all consistent with the configured values. Run teams, too often, try and create different schedules by changing the DWS value in a PT01 run.

  • Start of planned working time in Time Statement

    Hi experts,
    I have a issue with Time Statement Form, the problem is that i don't know how to make appear sobeg (Start of planned working time) and soend (End of planned working time)
    ¿Does anybody know how to solve this?
    Regards,
    dpungitore.

    WPBP is a clauster table which contains the combined data from Infotypes 0, 1, 7, 8 and 27. Hence it also have IT0007 data. You can check the same in cluster results. In WPBP same field is named as DIVGV (Working Hours per Payroll Period) which you can use.
    But i i am not sure why it is not wrking with P0007. Can u pls check if you have an entry in T514K as P0007 for your molga.
    Also pls check the 'Output length' in the change single field screen.
    I have tried with WPBP - DIVGV with output length 10 just to simulate your scenario and it works for me.

  • Infotype "Planned Working Time";

    hi gurus,
    i need to create a report to check infotype "planned working time"
    and to check if workschedule exists
    please let me know how to go bout its logic.
    thanks in advance.
    anuj

    to check for the work schedule status
    you just need to hit 1 field for selection crteria and ie,pa0007-schkz Work Schedule Rule .
    and the given below code  can get you what you want
    tables:pa0007.
    parameter:p_pernr like pa0007-pernr.
    data: itab type table of p0007 with header line.
    start-of-selection.
      select * from pa0007
      into corresponding fields of table itab where pernr = p_pernr.
    if itab-schkz = ''.
        message 'data is not  maintained' type 'E'.
    else.
    loop at itab.
      write:/ itab-pernr, itab-schkz.
    endloop.
    endif.
    hope this will solve your problem
    thankx
    bhanu....

  • Mapping of Planned Working Time to Work Schedule

    Hi ,
    I have the following query.
    For a partiular employee 'abc' , i check his planned working time from 'IT 0007' .
    From the planned working time how can i get the work schedule in coding , ie for an employee in IT 0007 how do i write a code to read his work schedule ?
    Can anyone please tell me from where is the work schedule mapped to the employee number? (ie which table or field)
    Thanks,
    Rohit

    Hi Rohit,
    The relavant code would be:
    tables : PA0007.
    select SCHKZ from pa0007 where pernr EQ lv_pernr (and the begda and endda constraint) into lv_wrksch .
    This is I think what you would want. Also the master table for work schedules is T508A, but the mapping for pernr and work schedule is done in IT0007.
    Hope this helps.
    Vivek
    PS: Plese <b>reward points </b>if useful.

  • Planned working time changed and we need to change work schedule for multip

    Hi All
    I have 2 senarios on time mgmt
    1.We have a transfer absence quota where this can be used in day off but it count day offs.It has to show the Calendar days and absence days equal.I am not getting this when i tried 
    I have a scenario that company management wants to cahnge the planned work timings due to whether for multiple work schedules which already exsist and running.How we can change these new timings and can generate work schedule in single shot/config change?
    Can any one through light on these two?
    Thanks in advance

    Any body plz give me a clue.
    Final Out put should be
    "Finally check the Abs Days and Calendar days are diff, but  the requirement is both should be same."

  • User exit (PBO) does not work for IT0107 (Planned working time Belgium)

    Hello,
    I have written a simple code in program ZXPADU01 in order to default a field of IT0107 (part of IT0007 for Belgium). However, my field is not defaulted to the correct value.
    The problem seems to be a
    CLEAR P0107
    statement in module "default" of dynpro MP010700 (screen 0100):
      if psyst-ioper = insert and PSYST-IINIT = YES.          "XEOPH0K010351
        clear p0107.
        SELECT SINGLE * FROM T5B9G WHERE PERSG = P0001-PERSG
                                   AND   PERSK = P0001-PERSK.
        IF SY-SUBRC NE 0.
          CLEAR T5B9G.
        ENDIF.
        IF p0107-BESTE IS INITIAL.      "RIB12Jun01
          PERFORM READ_BESTE USING p0107-BESTE.
          IF p0107-BESTE EQ SPACE OR 549BRC NE 0.
            p0107-BESTE = T5B9G-BESTE.
          ENDIF.
        ENDIF.                          "RIB12Jun01
        IF p0107-BERGM IS INITIAL.      "RIB12Jun01
          PERFORM READ_BERGM USING p0107-BERGM.
          IF p0107-BERGM EQ SPACE OR 549BRC NE 0.
            p0107-BERGM = T5B9G-BERGM.
          ENDIF.
        ENDIF.                          "RIB12Jun01
        IF p0107-BEREG IS INITIAL.      "RIB12Jun01
          PERFORM READ_BEREG USING p0107-BEREG.
          IF p0107-BEREG EQ SPACE OR 549BRC NE 0.
            p0107-BEREG = T5B9G-BEREG.
          ENDIF.
        ENDIF.                          "RIB12Jun01
    *   Set defaults from features
        perform set_DefbyFeat using    p0007
                                    psyst-ioper
                                    psyst-iinit
                           CHANGING p0107.
      endif.
    Prior to the clear statement, table p0107 contains my default values, but the statement clears those values...
    Any idea how to solve this?
    Many thanks in advance!

    Problem is solved with OSS note 1376481.

  • ShiftSubstitution(2003) / Planned working Time(0007)

    Hello Evryone,
    Our client side , employees will come different shifts ,so every week they have to change the shifts and the manager will assign shifts through portal.
    So my question is where we have to assign or change shifts in 0007 infotype or 2003 infotype .
    we are not going to maintain shift rotating we have generated all shifts according to their timings these work schedule manager will use to change shifts for thier employees
    So how to do in which infotype manager can assign shifts
    0007 or 2003???
    which is correct\
    thanks in advance
    nitu

    They have to choose IT 0007....
    Each shift to be recognised as a normal shift and values to be populated in IT 0007 so that the capacity level passes to IT 0008 for payroll..
    Yes, Manager should maintain this for every employee whom he wants to work in  a particular shift.. Hope yr portal has such a facility.. cos MSS has this facility wherein Manager can choose employees reporting to him...
    Once the manager chooses the shift for every employee and saves the record, the details should get synchronised into SAP system (for this check with your portal guys.. they should help u on this)..
    2nd option : once the manager saves the record, an e-mail can be generated to the Time Administrator and he needs to maintain the shift under work schedule manually... this is not recommended as it is a tedious process..
    Regards,
    Nima

  • Attendance Reasons in PA30 PA61 TMW

    Hi all, part of our business has requested reason codes for OT to be entered against a custom OT attendance type in infotype 2002.
    The entry of OT is currently performed via a number of transactions PA30, PA61 (both customised to use the 2051 screen) and TMW,
    Is it possible to use the Attendance reason codes configured in Time Management -> Personnel Time Events -> Maintain Attendance/Absence Reasons in the screen/transaction combination mentioned above or are these reasons only available in the 2011 infotype ?
    Looking at view V_T588M there is no way to add the field to screen 2051.
    If anyone has done this I would appreciate some direction on the solution.
    Thankyou.
    J

    Hi,
    I think it would be possible but with some customization.
    We have done for IT2001- SL Absence to in of our client to enter medical certificate number.
    Thanks,
    Ketul

  • Why is the iPhone 5 using so much data I have read a lot of complaints and I have went over on my plan and never have?

    Why is the iPhone 5 using so much data I have read a lot of complaints and I have went over on my plan and never have?
    I have even turned off LTE. Cut off my cellular data off of apps. Still uses data I switched back to my iPhone 4 cause I had used my
    Data in 2 weeks!

    I have the same problem on my 4S 64G: I updated to 7.1.1 and burned through my cellular data allowance without running anything that ought to be using it. I incurred an overage charge on Thursday, my new billing cycle started on Friday, and I immediately had used 3/4 of my allowance for the new cycle. I typically do not use my allowance in an entire month so burning through it in a day or two twice in one week is very much not right.
    Possibly unrelated or not: last night I was out, did NOT use any apps that should use cellular data, and came home and my phone refused to connect to my home wifi despite turning this and that on and off. I burned cellular allowance while wifi was available.
    It seems like someting on my phone, whether an app or the iOS itself, is using cellular data even while my phone is not in use. All I could do is turn off Cellular Data in Settings but that very much diminishes the usefulness of a phone that has served me well -- without data overages! -- for several years.
    Please fix this, Apple!

  • CallManager Attendant Console over WAN connection

    Does anyone know if it is possible to run Attendant Console over the WAN. I have a branch office that I would like to install AC, but I cannot seem to get the Call Control layer up when I start the AC gui.
    Any suggestions?

    Hi,
    The use of the Attendant Console outside of the central site can require a considerable amount of bandwidth if the remote sites must access large user account directories without caching them.
    -Apart from IP Phone requirements , AC needs Jtapi messages communications
    -Line State Updates..It depends on number of phones which change line state at a given time ..TCD server sends this as UDP packets..And how many of these are listed on the console directory/speed dial at a given
    time..
    Say we have 10 phones getting a new call at a time and for of these are listed on Console , we will get line state for 4 phones.
    -At each login , the console connects to server and checks if userlist file has changed and if changed it downloads the same..Workaround is to have local copy of this file
    But this is usually a one time step per login session.
    Regarding your question, it should work, verify that no ACLs, FW or other network device is blocking traffic from|to CCM and AC console|IP Phone.
    You may check this link to verify configuration is fine.
    AC user password (12345)
    PP|IP Phones associations
    CTI|TCD started
    etc
    http://www.cisco.com/univercd/cc/td/doc/product/voice/c_callmg/4_0/sys_ad/4_0_1/ccmcfg/b04ccmac.htm

  • When actual work goes over planned work

    Is there a way to show that is a task is over 100% for work complete?
    Here is the situation.
    Planned work is 80 hrs and actual work is 93 hours but project shows work complete to 100% but the task is not finished yet.
    Can I show over 100%?

    % complete is (Actual Duration/Duration) * 100
    % Work Complete is (Actual work/work) * 100
    As Guillaume notes, if the Actual work exceeds the original work estimate, Project will assume the task is complete.  You can add the Remaining Work field to a task view but if you have multiple resources assigned you may wish to add the field to the
    Task Usage view to capture Actual and Remaining Work on an assignment by assignment basis.
    If you have saved a baseline before tracking - Project will calculate Work Variance for you -- the difference between baseline Work (your plan) and Work.

Maybe you are looking for

  • N8 music player problem

    When i open music player it always starts with the albums and i have to select songs all the time to show me all the songs. How do i do to make songs list open instead of albums everytime when i open the player?

  • Payload XML

    Hi All, Payload XML in BPM Process should contain element with '*response' or not??? When I added a service task activity in the BPM process i can see some .xsd got generated in the SOA project under xsd. Can I consider this as my payload?? But, it d

  • Next Button in a Hide and Show Region is not displayed correctly

    I created a new button at the bottom of the region in a Hide and Show Region called [Next >]. The button is displayed to the right of the region. I want it displayed at the right end of the bottom of the region. The following is the button properties

  • DIMM - Interleaved or not?

    I can't seem to find any technical data to tell me if the two DIMM sockets are used in an interleaved or not interleaved mode. I'm trying to determine if a combination of a boot.ini switch (/maxmem) and possibly registry entry (MEM_TOP_DOWN) could be

  • How to know my ipod gen  model num is MB531LL

    How to know my ipod gen  model num is MB531LL