Creation of attendance types

Hi experts,
How do i create an attendance types??? please help me with the whole process. Also please provide the paths for creation.
when i assign attendances in PA30... it should display in the selection list.
regards

Hi Archana,
Attendances are used to record the actual hours worked by an employee. 
Define Attendance Types: In this step, you define attendance types for a personnel subarea grouping for attendance/absence types. It also describes how to determine the system reaction to attendances recorded for a day or a period when the employee has time off.
IMG --> Time Management --> Time Data Recording and Administration --> Attendances/Actual Working Times --> Define Attendance Types.
Rules for Attendance Counting (New): In this step, you determine rules for attendance counting using the new tables.
IMG --> Time Management --> Time Data Recording and Administration --> Attendances/Actual Working Times --> Attendance counting --> Rules for Attendance counting (New) --> Assign Counting Rules to Attendance Types.
Define Counting Classes for the Period Work Schedule: In this section, the settings for attendance/absence counting are made. Counting classes for PWS are used to evaluate absences& attendances. Use different counting classes for PWS. When you maintain a counting class you must define a separate rule for each Counting class.
IMG --> Time Management --> Time Data Recording and Administration --> Absences --> Absence Catalog --> Absence Counting --> Define Counting Classes for the Period Work Schedule.
Define Absence Quota Types: In this step, the valid absence quota types (entitlement to time off and leave types) for the employee subgroup and personnel subarea groupings for time quota types are defined. We define Absence quota, because, in this we define unit of time measurement whether you want the entitlement to time off to be maintained in Hours or in Days.
IMG --> Time Management --> Time Data Recording and Administration --> Managing Time Accounts Using Attendance/Absence Quotas --> Time Quota Types --> Define Absence Quota Types.
If attendances are recorded in detail, you can assign the hours worked by a particular employee to specific orders or cost centers, and to maintain data on business trips, meeting. It is also possible to record all attendance times manually in the Attendances infotype (2002). You can evaluate them using the time evaluation report.
I hope it will help you.
Thanks,
Padmaja.

Similar Messages

  • Creation of new Attendance types

    Hi Experts
    I want to create 2  new attendance subtypes,in this attendance types sat & sun also should show attendance hours, if employee worked on that day.how to achieve this??plse reply me asap....
    Thanks&best regds
    teki

    Hi Friends
    Copying PCR here.
    &ZC9 Adhoc on call allowance.                     
          " VARPRTYP   Att. cat. in v. key            
            " 9830                                    
              " VARSTWEDAY Relative weekday           
                    HRS=1      Set                    
                    ADDDBZSQ1  Add to day balance     
                    ADDZL 9840 Add to table ZL        
                " 6                                   
                    HRS=1      Set                    
                    ADDDBZSQ1  Add to day balance     
                    ADDZL 9810 Add to table ZL        
                " 7                                   
                    HRS=1      Set                    
                    ADDDBZSQ1  Add to day balance     
                    ADDZL 9810 Add to table ZL        
            " 9840                                    
              " VARSTWEDAY Relative weekday           
                    HRS=1      Set                    
                    ADDDBZSQT  Add to day balance     
                    ADDZL 9820 Add to table ZL        
                " 6                                   
                    HRS=1      Set                    
                    ADDDBZSQT  Add to day balance     
                    ADDZL 9830 Add to table ZL        
                " 7                                   
                    HRS=1      Set                    
                    ADDDBZSQT  Add to day balance     
                    ADDZL 9830 Add to table ZL        
    Regds
    Shailaja.B

  • Error in creation of Object Type from XML passed

    Hi,
    I am facing a problem creating a appropriate a object type for a XML.
    Below are the details:
    XML Passed
    <mer_offer_action_data>
    <form_id>
    134039588
    </form_id>
    <action_cd>
    OA
    </action_cd>
    <offer_decline_reason_cd>
    </offer_decline_reason_cd>
    <start_dt>
    </start_dt>
    <candidate>
    <ds_prs_id>
    109315
    </ds_prs_id>
    <ds_prs_id>
    110534
    </ds_prs_id>
    <ds_prs_id>
    110059
    </ds_prs_id>
    </candidate>
    </mer_offer_action_data>
    Types Declaration
    +CREATE OR REPLACE type MER_OFF_CANDIDATE
    AS
    OBJECT
    DS_PRS_ID NUMBER
    CREATE OR REPLACE TYPE MER_OFF_CANDIDATE_t
    AS
    TABLE OF MER_OFF_CANDIDATE;
    CREATE OR REPLACE type MER_OFFER_ACT_DATA
    AS
    OBJECT
    FORM_ID NUMBER,
    ACTION_CD VARCHAR2(6),
    OFFER_DECLINE_REASON_CD VARCHAR2(6),
    START_DT VARCHAR2(11),
    CANDIDATE MER_OFF_CANDIDATE_t
    CREATE OR REPLACE TYPE MER_OFFER_ACT_DATA_t
    AS
    TABLE OF MER_OFFER_ACT_DATA;
    CREATE OR REPLACE type MER_OFFER_ACTION_DATA
    AS
    OBJECT
    MER_OFF_ACT_DATA MER_OFFER_ACT_DATA_t
    /+
    My Declaration
    +merOffActDataXML      xmltype;
    merOffActData     MER_OFFER_ACTION_DATA := MER_OFFER_ACTION_DATA(MER_OFFER_ACT_DATA_t());+
    Inside Pl/SQL block
    +-- Converts XML data into user defined type for further processing of data
    xmltype.toobject(merOffActDataXML,merOffActData);+
    when I run the Pl/Sql block it gives me error
    ORA-19031: XML element or attribute FORM_ID does not match any in type ORADBA.MER_OFFER_ACTION_DATA
    which means the object type mapping is wrong
    I would like to know whether the object type I had created is correct or not.
    Thanks for your help
    Beda

    Bedabrata Patel wrote:
    Below are the details:The details except for a description of the problem
    I am facing a problem creating a appropriate a object type for a XML.And which error you are getting
    Error in creation of Object Type http://download.oracle.com/docs/cd/E11882_01/server.112/e10880/toc.htm
    And which version of Oracle you are getting the unknown error creating the unknown problem.

  • Error in creation of Object Type

    Hi,
    I am facing a problem creating a appropriate a object type for a XML.
    Below are the details:
    XML Passed
    <mer_offer_action_data>
         <form_id>
              134039588
         </form_id>
         <action_cd>
              OA
         </action_cd>
         <offer_decline_reason_cd>
         </offer_decline_reason_cd>
         <start_dt>
         </start_dt>
         <candidate>
              <ds_prs_id>
                   109315
              </ds_prs_id>
              <ds_prs_id>
                   110534
              </ds_prs_id>
              <ds_prs_id>
                   110059
              </ds_prs_id>
         </candidate>
    </mer_offer_action_data>
    Types Declaration
    +CREATE OR REPLACE type MER_OFF_CANDIDATE
    AS
    OBJECT
    DS_PRS_ID NUMBER
    CREATE OR REPLACE TYPE MER_OFF_CANDIDATE_t
    AS
    TABLE OF MER_OFF_CANDIDATE;
    CREATE OR REPLACE type MER_OFFER_ACT_DATA
    AS
    OBJECT
    FORM_ID NUMBER,
    ACTION_CD VARCHAR2(6),
    OFFER_DECLINE_REASON_CD VARCHAR2(6),
    START_DT VARCHAR2(11),
    CANDIDATE MER_OFF_CANDIDATE_t
    CREATE OR REPLACE TYPE MER_OFFER_ACT_DATA_t
    AS
    TABLE OF MER_OFFER_ACT_DATA;
    CREATE OR REPLACE type MER_OFFER_ACTION_DATA
    AS
    OBJECT
    MER_OFF_ACT_DATA MER_OFFER_ACT_DATA_t
    /+
    My Declaration
         +merOffActDataXML          xmltype;
         merOffActData          MER_OFFER_ACTION_DATA := MER_OFFER_ACTION_DATA(MER_OFFER_ACT_DATA_t());+
    Inside Pl/SQL block
         +-- Converts XML data into user defined type for further processing of data
         xmltype.toobject(merOffActDataXML,merOffActData);+
    Thanks for your help
    Beda
    Edited by: Bedabrata Patel on Jul 12, 2010 5:51 AM

    Bedabrata Patel wrote:
    Below are the details:The details except for a description of the problem
    I am facing a problem creating a appropriate a object type for a XML.And which error you are getting
    Error in creation of Object Type http://download.oracle.com/docs/cd/E11882_01/server.112/e10880/toc.htm
    And which version of Oracle you are getting the unknown error creating the unknown problem.

  • Training and Event Management - 2 Specify Attendance Types

    Hi
    Is it possible to assign 1 attendance types to each course type or an specific event.
    For example:
    There is a course that generates payed attendance and another course that generates non payed attendance. So to discriminate for the payroll we need to assign 2 different attendance type for each course type or for an specific event.
    Is this possible? Please answer us asap.
    Kind Regards,

    As far as i know,  settings for individual business events are made when you define the at BEtype of which there is none of the settings you require. One solution could be to remove time management integration for the ones that are unpaid and maintain them as unpaid absences:training. Hope someone else provides you with a more helpful response.

  • HOW TO Change behaviour of attendance type

    Hi guys,
    I have a question for you:
    - I have an attendance "9500 Extra Time", for overtime, introduced through IT 2002, which belongs to attendance type "O" (Overtime). When time schema is executed, attendances of this type are added to table TIP (6th time pair):
    Inizio   Fine     1  P  Cl  Ct  V  VR    CI   CF   V  O  I  PinI  PinF  PT    ALP  C1    AB  Numero
    00.0000  05.8833     0  01  00  -  0000                                                        5,8833
    05.8833  06.0000     1  01  00  P  0310  P10  P20     E                 0001                   0,1167
    06.0000  11.8333     1  02  00  P  0110  P10  P20     E                 0001                   5,8333
    11.8333  12.3333     1  02  00  P  0110  P10  P20     E                 0001                   0,5000
    12.3333  14.0000     1  02  00  P  0110  P10  P20     E                 0001                   1,6667
    14.0000  15.0000  0  3  01  00  O  0330               P                                        1,0000 <----
    14.0000  15.2500     1  01  00  P  0310  P10  P20     E                 0001                   1,2500
    15.2500  48.0000     0  01  00  -  0000                                                       32,7500
    But after that, when function "P2005" is processed, this time pair overwrites overlapped pair, and time pair type is changed to "M":
    Inizio   Fine     1  P  Cl  Ct  V  VR    CI   CF   V  O  I  PinI  PinF  PT    ALP  C1    AB  Numero
    00.0000  05.8833     0  01  00  -  0000                                                        5,8833
    05.8833  06.0000     1  01  00  P  0310  P10  P20     E                 0001                   0,1167
    06.0000  11.8333     1  02  00  P  0110  P10  P20     E                 0001                   5,8333
    11.8333  12.3333     1  02  00  P  0110  P10  P20     E                 0001                   0,5000
    12.3333  14.0000     1  02  00  P  0110  P10  P20     E                 0001                   1,6667
    14.0000  15.0000  0  3  01  00  M  0310               P                                        1,0000 <----
    15.0000  15.2500     1  01  00  P  0310  P10  P20     E                 0001                   0,2500
    15.2500  48.0000     0  01  00  -  0000                                                       32,7500
    As you can see, one hour of the time pair 14.00-15.25 is overwritten by the presence "9500 Extra Time" This is all rigth.
    But I have other attendance "9000 Formation", which belongs to attendance type "B". This is the table TIP just before "P2005" execution:
    Inizio   Fine     1  P  Cl  Ct  V  VR    CI   CF   V  O  I  PinI  PinF  PT    ALP  C1    AB  Numero
    00.0000  05.8833     0  01  00  -  0000                                                        5,8833
    05.8833  06.0000     1  01  00  P  0310  P10  P20     E                 0002                   0,1167
    06.0000  11.8333     1  02  00  P  0110  P10  P20     E                 0002                   5,8333
    11.8333  12.3333     1  02  00  P  0110  P10  P20     E                 0002                   0,5000
    12.3333  14.0000     1  02  00  P  0110  P10  P20     E                 0002                   1,6667
    14.0000  15.0000  0  3  01  00  B  0330               P                                        1,0000     <----
    14.0000  15.2500     1  01  00  P  0310  P10  P20     E                 0002                   1,2500
    15.2500  48.0000     0  01  00  -  0000                                                       32,7500
    And after "P2005" execution. There is not overwriting in this case:
    Inizio   Fine     1  P  Cl  Ct  V  VR    CI   CF   V  O  I  PinI  PinF  PT    ALP  C1    AB  Numero
    00.0000  05.8833     0  01  00  -  0000                                                        5,8833
    05.8833  06.0000     1  01  00  P  0310  P10  P20     E                 0002                   0,1167
    06.0000  11.8333     1  02  00  P  0110  P10  P20     E                 0002                   5,8333
    11.8333  12.3333     1  02  00  P  0110  P10  P20     E                 0002                   0,5000
    12.3333  14.0000     1  02  00  P  0110  P10  P20     E                 0002                   1,6667
    14.0000  15.0000  0  3  01  00  B  0330               P                                        1,0000 <----
    14.0000  15.2500     1  01  00  P  0310  P10  P20     E                 0002                   1,2500
    15.2500  48.0000     0  01  00  -  0000                                                       32,7500
    Note: Function P2005 is called without parameters and IT 2005 is empty for this date and employee, so nothing is transfered.
    OK, THIS IS MY QUESTION:
    I need attendance "Formation" to work as attendance "Extra Time". I'm not going to change Formation's attendance type (B), so I want to know how can I change the behaviour of absence type "B" so overlapped time pairs are overwritten as now actually happens with attendance type "O".
    I don't know where to change this, could you please help me?
    Thank you a lot.

    Try to use TextField1.access = "readOnly";
    Jasmin

  • Reg: Creation of Table Types

    Hi All,
    I have a small question regaridng the creation of Table type.
    Let us suppose I am creating Table type for a custom table zsample which is having 5 fields. I am generally creating a structure similar to custom table and using that structure as line type for the table type. Let us suppose if there are any changes in the custom table like change in the order of fields or if new fields are added the table type will give dump.
    My question is If I use the custom table itself as a line type, will there be any effect in the performance or some thing or I can go ahead and use it..
    Thanks,
    Ravee

    What dump are you expecting ???
    It is idea behind the creation with reference to get structures and tables which always look like
    the tables they refer to.
    I can not see a possibilty for a dump as long as you create only an internal table.
    A dump could appear, if the internal table is later used to update another db-table. But there it should be clear that the structure of an internal should be created with reference to the tables which they change.
    Siegfried

  • Creation of data type

    hi all.
    sorry i just want some information in creation of data type which i svery ease to solve.
    and it is i had seen one data type which was creatd by my colleague and its haveing occurance 1..unbounded for some and 1..10 for remaining elements and the other thing is in details she has given MAXLENGHT.
    i just want to know y she has given these things under data type.
    waiting for any great answer.
    bye.
    regards.
    seeta ram.

    Hi,
    All data types are described by XML Schema. All required information about XML Schemas you will get from:
    <a href="http://W3C XML Schema">http://www.w3.org/XML/Schema</a>
    You can create data types either directly in IR using data type editor or import from external definitions.
    Occurence, maxlength are properties of tags, attributes etc. and are defined by XML Schema.
    Regards,
    Jakub

  • Creation of Document type

    Hi Please guide me about creation of document types for PR/PO.
    If i want to create document type for the capital item as say ZCAP.
    What are the item categories I should select. Also how does the item category affects the document type and further creation of PO/PR?
    What is the significance of linkage PR.?
    Also for creating the new document type we use the NB document type , why? Why do we create new one, cant we use the NB instead of creating new one?
    If any body can explain with example that would be great.
    Warm Regards,
    Bhasker VB.

    <b>Hi Please guide me about creation of document types for PR/PO.</b>
    U can create new non standred document type for PR and Po
    <b>If i want to create document type for the capital item as say ZCAP.
    What are the item categories I should select. Also how does the item category affects the document type and further creation of PO/PR?</b>
    U can create Doc type ZCAP bu coping std Doc type NB or u can creat as your own
    Item categories help system to ask for a relevent data as if u give item category L which is for subcontracting then it will ask for supplied components
    If u say U the it will change venter in to suppling plant and also change relevent things for stock transfer
    <b>Also for creating the new document type we use the NB document type , why? Why do we create new one, cant we use the NB instead of creating new one?</b>
    We can use NB document type for creating new one but ist not compalsory u can directely create your own. We copy so that, all the releating item catagories can be copied.
    we create new one if u want different number range for asset proc and others.
    or if u want to have subcontracting po diffrent form others. etc.
    but there is no relation between Account assig cat and document type.
    hope things r clear
    reward accordingly

  • Attendance type in time evaluation

    Hi All,
    Need solutions for the below issues.
    1) Clock in and clock out information for an employee is stored in SAP in IT2011, if clock in or clock out information is missing for an employee it should trigger a mail to employee and his manager.
    2) Currently using one attendance type : On duty would be raised by employee when is on business trip. System should consider this as working.
    During time evaluation it should consider if any attendance type and clock in and clock out details for an employee. and generate the absence quotas.
    There is no integration with payroll.
    3) If the accumulated earned leaves cross 90 days, rest of the leaves to be encashed, is there any standard sap solution for this or need to write a PCR or custom development to be done.
    Please let me know ho to do.
    Regards
    Vish

    1. The TD20 PCR in time schema evaluates time pairs and errors out if times are missing. The errors are stored in the FEHLER table. Maybe you can write a custom program to read this table and send messages.
    2. The On duty will be entered in IT2002 I guess. The positive TE schema will read both IT2011 and IT2002 and so should not be a problem.
    3. You need to write a PCR to accomplish this. There are useful doc on this forum. This doc by Vivek is very helpful:
    http://scn.sap.com/docs/DOC-55755
    Regards
    Pramod

  • Change behaviour of attendance type

    Hi guys,
    I have a question for you:
    - I have an attendance "9500 Extra Time", for overtime, introduced through IT 2002, which belongs to attendance type "O" (Overtime). When time schema is executed, attendances of this type are added to table TIP (6th time pair):
    Inizio   Fine     1  P  Cl  Ct  V  VR    CI   CF   V  O  I  PinI  PinF  PT    ALP  C1    AB  Numero
    00.0000  05.8833     0  01  00  -  0000                                                        5,8833
    05.8833  06.0000     1  01  00  P  0310  P10  P20     E                 0001                   0,1167
    06.0000  11.8333     1  02  00  P  0110  P10  P20     E                 0001                   5,8333
    11.8333  12.3333     1  02  00  P  0110  P10  P20     E                 0001                   0,5000
    12.3333  14.0000     1  02  00  P  0110  P10  P20     E                 0001                   1,6667
    14.0000  15.0000  0  3  01  00  O  0330               P                                        1,0000 <----
    14.0000  15.2500     1  01  00  P  0310  P10  P20     E                 0001                   1,2500
    15.2500  48.0000     0  01  00  -  0000                                                       32,7500
    But after that, when function "P2005" is processed, this time pair overwrites overlapped pair, and time pair type is changed to "M":
    Inizio   Fine     1  P  Cl  Ct  V  VR    CI   CF   V  O  I  PinI  PinF  PT    ALP  C1    AB  Numero
    00.0000  05.8833     0  01  00  -  0000                                                        5,8833
    05.8833  06.0000     1  01  00  P  0310  P10  P20     E                 0001                   0,1167
    06.0000  11.8333     1  02  00  P  0110  P10  P20     E                 0001                   5,8333
    11.8333  12.3333     1  02  00  P  0110  P10  P20     E                 0001                   0,5000
    12.3333  14.0000     1  02  00  P  0110  P10  P20     E                 0001                   1,6667
    14.0000  15.0000  0  3  01  00  M  0310               P                                        1,0000 <----
    15.0000  15.2500     1  01  00  P  0310  P10  P20     E                 0001                   0,2500
    15.2500  48.0000     0  01  00  -  0000                                                       32,7500
    As you can see, one hour of the time pair 14.00-15.25 is overwritten by the presence "9500 Extra Time" This is all rigth.
    But I have other attendance "9000 Formation", which belongs to attendance type "B". This is the table TIP just before "P2005" execution:
    Inizio   Fine     1  P  Cl  Ct  V  VR    CI   CF   V  O  I  PinI  PinF  PT    ALP  C1    AB  Numero
    00.0000  05.8833     0  01  00  -  0000                                                        5,8833
    05.8833  06.0000     1  01  00  P  0310  P10  P20     E                 0002                   0,1167
    06.0000  11.8333     1  02  00  P  0110  P10  P20     E                 0002                   5,8333
    11.8333  12.3333     1  02  00  P  0110  P10  P20     E                 0002                   0,5000
    12.3333  14.0000     1  02  00  P  0110  P10  P20     E                 0002                   1,6667
    14.0000  15.0000  0  3  01  00  B  0330               P                                        1,0000     <----
    14.0000  15.2500     1  01  00  P  0310  P10  P20     E                 0002                   1,2500
    15.2500  48.0000     0  01  00  -  0000                                                       32,7500
    And after "P2005" execution. There is not overwriting in this case:
    Inizio   Fine     1  P  Cl  Ct  V  VR    CI   CF   V  O  I  PinI  PinF  PT    ALP  C1    AB  Numero
    00.0000  05.8833     0  01  00  -  0000                                                        5,8833
    05.8833  06.0000     1  01  00  P  0310  P10  P20     E                 0002                   0,1167
    06.0000  11.8333     1  02  00  P  0110  P10  P20     E                 0002                   5,8333
    11.8333  12.3333     1  02  00  P  0110  P10  P20     E                 0002                   0,5000
    12.3333  14.0000     1  02  00  P  0110  P10  P20     E                 0002                   1,6667
    14.0000  15.0000  0  3  01  00  B  0330               P                                        1,0000 <----
    14.0000  15.2500     1  01  00  P  0310  P10  P20     E                 0002                   1,2500
    15.2500  48.0000     0  01  00  -  0000                                                       32,7500
    Note: Function P2005 is called without parameters and IT 2005 is empty for this date and employee, so nothing is transfered.
    OK, THIS IS MY QUESTION:
    I need attendance "Formation" to work as attendance "Extra Time". I'm not going to change Formation's attendance type (B), so I want to know how can I change the behaviour of absence type "B" so overlapped time pairs are overwritten as now actually happens with attendance type "O".
    I don't know where to change this, could you please help me?
    Thank you a lot.

    Hi Gurus,
    Thanks for the reply,
    I have change text through KL02,but when i enter again in KL02,the system shows:
    Act type  COAr  Short Text   Language  Valid from   to
    LABOR    9000   Labour        EN           1.4.07        31.3.99
    Hence it is still showing LOBOR but in short text it is coming as "LABOUR"
    Pl advise,how i can change "Act Type Col" and put Labour in said column.
    Regards,
    Samar

  • Creating attendance types

    Hi folks,
    I am about to create 3 new attendance types: 1000 and 1001 should be processed in time evaluation and the other 1002 shouldn't be processed in time evaluation. I created them using the old attendance types and excluded the attendance type 1002 in a PCR in time evaluation. So far no problems, please suggest me what things I need to take care of and also any extra configuration I need to perform:
    All experts, please type in all ur suggestions or the problems u solved in creating attendance types: (it might help me in not doing the same mistake again)
    All suggesstions will be rewarded.
    Thanks
    SA.

    Hi SA,
    I never had to exclude an attendance but I guess I would delete the corresponding time pair in a PTIP rule (I guess it is what you did) taking care of the impact (example: the abs/attend standard flag generated in TE20)
    and/or I would check all functions/operations in the schema calling the attendance type (example in an ACTIO rule for seniority cumulation) to check the default value....
    I would also check outside time eval (reports, variants etc...) if it causes an impact on users
    hope this will give you ideas

  • PROBLEM AT THE TIME OF CREATION OF VALUATION TYPE(SPLIT VALUATION)

    Dear cons
      I want to create a valuation type ( t-code- OMWC) in configuration client. Then I will transport to quality as well as production. but it is a matter of great regret that at the time creation of valuation type no transport request no. is genereted. without TRansport request no. how can I transport to quality as well as production. pl. help me.
    nrk

    Hi,
    This is a client level configuration so Transport Requests are not getting generated directly. Here follow this procedure;
    Go to OMWC, Click on Global types. , Click on Types > Transport in the menu bar
    The sytem will prompt for a request, create the request. A new screen for selcection of Valuation cateogires & valuation types will come. You can select here & transport.
    Click on Save after selection, all the selcted items will be added to the request

  • Using of attendance types.

    Hi,
    my company wants to use CATS and currently we have identified a list of activites which are required and majority of these activties are shared by different departments. Since activies are shared, can we create activity type based on department and seperate the activities by attendance type?
    e.g.
    activity types - manufacturing 1, manufaturing 2
    attendance type - installing, assembly, packing
    is it logical to use attendance in such manner or do we need to create all the activity types and link them to work centers?
    Thanks.
    Rgds
    Ed.

    Usage of attendance types is mandated by your HR requirements. If HR time management requires that the actual worked times be captured and there is no system of collecting swipe-in or swipe-out data, it would be best advised to use attendance types.
    In case the only reason to use CATS is to carry out cost and activity allocation, using attendance types will be redundant and is not really required.

  • CRM_ORDER_MISC 020 : Please report valid absence/attendance type

    Hi,
    When I am creating a serviceconfirmation in using crmd_order, I am getting an this error: CRM_ORDER_MISC 020.
    An error has occurred in the system RSUCLNT070 while copying the document
    Message no. CRM_ORDER_MISC 020
    Diagnosis
    Errors have occurred while transferring the document into another system. Refer to the enclosed log to view the error messages.
    Transmission log
    Please report valid absence/attendance type for previous week records! (Notification W Z000CATS 011)
    A master record for 423430/ORDT exists only in 2010 (Notification E KL 002)
    I thought this could probably be because the time reporting was not done for the previous weeks when i was using old service orders to create confirmations. I have created new service orders and created new service confirmations but its till throws the same error.
    Any idea how I can find the origin of this error. How is this error triggered?
    Edited by: NeenaJ on Jan 4, 2012 3:39 PM

    Hi Team,
    I am also facing the same issue. Our CRM consultant is running a program to post a labour Cost.
    We are getting below error msg :
    Error
    in system ECDCLNT120 while copying the document
      Message no. CRM_ORDER_MISC 020
    Diagnosis
      Errors occurred while transferring the document into another system. To view the error
    messages, see the enclosed log.
    Transmission log
      The attendance/absence type 03/*      does not exist on 18.03.2014 (Notification E HRTIM00CATS 081)
    Could you please help me on this?
    Thanks & Regards,
    Uttam

Maybe you are looking for

  • Saving PDF report on Client machine

    Dear All, I have one form where the user can select the path he want to save PDF report (generated by Report Bulder) to (I am using Webutil). I set that path as DESFORMAT before calling the repot but when the report is run, it is saved on server (App

  • Requirement in MRP even after Sales order completely delivered/cleared

    I see a sales order in md04 even after that order is already cleared completely delivered I have checked the pGI quantity in order and document flow. everything matches and status is completed/cleared. I also ran SDRQCR21 in se38 with data transfer c

  • Bridge CS5 will not open camera raw - but hangs!!

    Just installed CS 5 web premium upgrade from CS4 web P - but Bridge CS5 will not open camera raw - it hangs!! - but camera raw can open via Photoshop ext. 64 bit on my Windows 7 pc. Whats wrong??? Bent Medvind

  • Email CSV file as an attachment

    Hi, I am sending a CSV file as an e-mail attachment. Now, i use the character '0D0A' to get the lines onto a new line. But the extra spaces which are left in the previous lines are coming on to the next line. now there are spaces of the previous line

  • Setting up a Wireless laptop to the Linksys router wrt310n

    I was able to set up my PC to the router with no problems, the advisor sees my desktop, printers, it will only see my wireless laptop only if it is hard wired, it does not see the laptop when it is wireless.  I have tried the faq's and still no resul