Infotype 2011 data is missing

how to check the data is getting stored in infotype2011 , i cannot c any recored in infotype2011,please advice me to trouble shoot.

dear sujit
thanx a lot for your answer, can u plz advice me as i have check the table in that data is getting store, but when i select form pa30 infotype  2011  for any employ it gives an error  like no data is store for any period like monthly ,weekly and yearly for any employ but when i check the data in TEVEN  TABLE It is there .kindly advice me help.if u can.

Similar Messages

  • Unable to Determine the Change Date and Time for records in infotype 2011

    Hi Everyone,
    We need to know on when the clock-in and clock-out records were interfaced to SAP in infotype 2011.
    The change date/time field in infotype 2011 is blank/not populated. Hence, we're unable to determine on when the clock-in records were updated in infotype 2011.
    It is not possible to get the audit logs for infotype 2011 as it is switched off.
    We found this table TEVEN and just the same thing, the field "change on" is blank.
    Kindly help us on how we can determine the change date and time for records in infotype 2011.

    Hi Prasad,
    Here's the scenario.
    On June 3, it was reported that staff's clock-in record on june 1, 7:00AM is missing in infotype 2011.
    However, when I checked infotype 2011, the record is there.
    So, they are now asking me on when this record was updated in infotype 2011 as they are thinking that there might be some delays in sending of the data to SAP.
    The created on and created at in table TEVEN shows the same, june 1, 7:00AM which seems to be not true as on june 3, it was reported to be missing.
    Can you help further on this?

  • How to Add data in HR infotype 2011 through ABAP

    Hi All,
    Can any one please give me an idea about how to insert time record in Infotype 2011 through ABAP. I cannot use the front end recording (SHDB) as it locks the person's master data. I need to Add the record through ABAP Query. I have inserted record in Table TEven and it works fine but then there is a conflict of sequence number field and system does not allow to change the data in infotype 2011 and gives error message.
    Thanks

    Hi amit
           even i have same requirement i tried with the same code but i'm getting error No data stored for infotype 2011 in the period.
    code:
       CALL FUNCTION 'BAPI_EMPLOYEE_ENQUEUE'
            EXPORTING
              number        = wa_modify-pernr
           IMPORTING
             RETURN        = return
          clear return.
          CALL FUNCTION 'HR_INFOTYPE_OPERATION'
            EXPORTING
              infty                  = p_infty
              number                 = wa_modify-pernr
    *         SUBTYPE                =
    *         OBJECTID               =
    *         LOCKINDICATOR          =
    *         VALIDITYEND            = wa_modify-ldate
    *         VALIDITYBEGIN          =
    *         RECORDNUMBER           =
              record                 = wa_modify
              operation              = 'MOD'
             TCLAS                   = 'A'
             DIALOG_MODE             = '0'
    *         NOCOMMIT               =
    *         VIEW_IDENTIFIER        =
    *         SECONDARY_RECORD       =
           IMPORTING
             RETURN                 = return
    *         KEY                    =
          CALL FUNCTION 'HR_EMPLOYEE_DEQUEUE'
            EXPORTING
              number        = wa_modify-pernr
    *       IMPORTING
    *         RETURN        =

  • Can any body tell me how to upload data for infotype 2011

    hi gurus,
    please tell me hw to create the bdc for infotype 2011.

    Go to SHDB and record the Tcode PA30 with Infotype 2011.
    ~BiSu

  • Payroll not possible because data is missing: WPBP: 01 SV: 00 ST: 00

    Hi,
    I have created a new org structure with a set of employee. I have maintained all the needed infotypes ( 0000,0001,0003,0007,0008..)
    When i try to run payroll for those emp's, im getting the error message:
    <u>Payroll not possible because data is missing: WPBP: 01 SV: 00 ST: 00</u> under rejected personal numbers.
    What setting i have to do inorder to run payroll.
    Rgds,
    Ven.

    Hello,
    How absen quota 2006 is related to payrun..
    However i have maintained all the said infotype, but still get the error .
    Rgds,
    Ven.
    Message was edited by:
            ven onk

  • Infotype 2011 - Load complete

    Hello people,
    I have a question about infotype  2011.
    I made a follow code:
    INFOTYPE: 2011
    PROVIDE .... P2011 BETWEEN PN-BEGDA AND PN-ENDDA
    On screen parameter I put 21.06 until 20.07 in Other period , and same period in P.SelcPeriod.
    But the table p2011 is load all period with current person. All data the current person the infotype p2011 is loaded! My report be slowly...
    what's solution for this?  I need only the period 21.06 until 20.07 in table p2011.
    thanks in advance,
    André

    Hi,
    Thanks for help-me.
    I used TEVEN table with SELECT .
    but still don't understand , Why get pernr, load all data in INFOTYPE 2011.
    My report is very speed now
    Thanks again!
    André

  • Function for deleting and modifying Infotype 2011 : HR_TMW_DB_UPDATE_TEVENT

    Hello experts,
    we have and requirement where we have to insert/delete or modify specific clock in/out posts from infotype 2011. Looking trough this forum I was not able to find how to delete or modify specific events from SAP correctly.
    We are able to insert new record via FM : HR_INFOTYPE_OPERATION with ease, but can not use the same function module to either delete or modify the same record.
    I was able to find FM: HR_TMW_DB_UPDATE_TEVENT and tried it in combination with HR_TMW_DB_READ_TEVENT, with out any succes.
    My question is: in what way must the tables be filled for deletion or modification, for FM HR_TMW_DB_UPDATE_TEVENT to work?
    With testing deleting a record, function explicitly demands taht all four tables are set
             del_teven      = t_teven_del
             ins_teven      = t_teven_ind
             del_teven_more = t_teven_more_del
             ins_teven_more = t_teven_more_ins 
    , but still the record is not deleted form table TEVEN.
    Thank you in advance for any given anwsers,
    Matevž

    Hello Rajesh,
    the code goes:
    * get original data:
        CALL FUNCTION 'HR_TMW_DB_READ_TEVENT'
          EXPORTING
            pernr    = iv_pernr
            fromdate = iv_begda
            todate   = iv_endda
          IMPORTING
            result   = result_tmw.
    * get next seq. nr.:
    CALL FUNCTION 'NUMBER_GET_NEXT'
      EXPORTING
        nr_range_nr                   = lv_ragne
        object                        = lv_object
    IMPORTING
       NUMBER                        = lv_number
    EXCEPTIONS
       INTERVAL_NOT_FOUND            = 1
       NUMBER_RANGE_NOT_INTERN       = 2
       OBJECT_NOT_FOUND              = 3
       QUANTITY_IS_0                 = 4
       QUANTITY_IS_NOT_1             = 5
       INTERVAL_OVERFLOW             = 6
       BUFFER_OVERFLOW               = 7
       OTHERS                        = 8.
          LOOP AT result_tmw INTO s_result_tmw.
            s_teven = s_result_tmw-teven.
            IF s_teven-ldate = iv_ldate AND s_teven-ltime = iv_ltime AND s_teven-satza = iv_satza.
              "set TEVEN_DEL tables for reading
              APPEND s_teven TO t_teven_del.
              APPEND s_teven_more TO t_teven_more_del.
              "set status for change to TEVEN_INS tables
              s_teven-pdsnr = lv_number.
              s_teven-ldate = iv_ldate.
              s_teven-ltime = iv_ltime.    
              s_teven-satza = iv_satza.
              APPEND s_teven TO t_teven_ins.
              MOVE-CORRESPONDING s_teven TO s_teven_more.
              APPEND s_teven_more TO t_teven_more_ins.
              EXIT.
            ENDIF.
          ENDLOOP.
    * execute deletion of current record:
          CALL FUNCTION 'HR_TMW_DB_UPDATE_TEVENT'
            TABLES
              del_teven      = t_teven_del
              ins_teven      = t_teven_ins
              del_teven_more = t_teven_more_del
              ins_teven_more = t_teven_more_ins
            EXCEPTIONS
              insert_failed  = 1
              update_failed  = 2
              OTHERS         = 3.
          COMMIT WORK.
    Now I am using the following code, that is working:
    * get original data:
        CALL FUNCTION 'HR_TMW_DB_READ_TEVENT'
          EXPORTING
            pernr    = iv_pernr
            fromdate = iv_begda
            todate   = iv_endda
          IMPORTING
            result   = result_tmw.
    ********************************************************************** modification
    * CODE :                            MODIFY CLOCK IN/OUT
        IF iv_operation = 'MOD'.
          LOOP AT result_tmw INTO s_result_tmw.
            s_teven = s_result_tmw-teven.
            IF s_teven-ldate = iv_ldate AND s_teven-ltime = iv_ltime AND s_teven-satza = iv_satza.
              "set TEVEN_DEL tables for reading
              APPEND s_teven TO t_teven_del.
              APPEND s_teven_more TO t_teven_more_del.
              "set status for change to TEVEN_INS tables
              APPEND s_teven TO t_teven_ins.
              MOVE-CORRESPONDING s_teven TO s_teven_more.
              APPEND s_teven_more TO t_teven_more_ins.
              EXIT.
            ENDIF.
          ENDLOOP.
    * execute deletion of current record:
          CALL FUNCTION 'HR_TMW_DB_UPDATE_TEVENT'
            TABLES
              del_teven      = t_teven_del
              ins_teven      = t_teven_ins
              del_teven_more = t_teven_more_del
              ins_teven_more = t_teven_more_ins
            EXCEPTIONS
              insert_failed  = 1
              update_failed  = 2
              OTHERS         = 3.
          COMMIT WORK.
    * insert new (updated) record of clock registration:
          s_p2011-pernr = iv_pernr.
          s_p2011-infty = '2011'.
          s_p2011-ldate = iv_ldate_new.
          s_p2011-ltime = iv_ltime_new.
          s_p2011-erdat = sy-datum.
          s_p2011-ertim = sy-uzeit.
          s_p2011-satza = iv_satza_new.
          s_p2011-origf = 'E'.
          s_p2011-begda = iv_ldate.
          s_p2011-endda = iv_ldate.
          CALL FUNCTION 'HR_INFOTYPE_OPERATION'
            EXPORTING
              infty            = '2011'
              number           = iv_pernr
    *         SUBTYPE          =
    *         OBJECTID         =
    *         LOCKINDICATOR    =
              validityend      = iv_begda
              validitybegin    = iv_endda
              recordnumber     = f_recordnumber
              record           = s_p2011
              operation        = 'INS'                       
              tclas            = 'A'
              dialog_mode      = '0'
    *         NOCOMMIT         =
    *         VIEW_IDENTIFIER  =
    *         SECONDARY_RECORD =
            IMPORTING
              return           = fm_return
              key              = personaldatakey.
          COMMIT WORK.
    ENDIF.
    Kind regards,
    Matevž

  • Bapi or function mudule to insert or update enteries in Infotype 2011.

    Hello Experts,
    I am working on travel request workflow where I need to feel attendance for employee for those travel days journey.
    For that I need to use Infotype 2011( Table TEVEN).
    Anyone please tell me the Function module name or BAPI name to update attendance with input as employee number and trip begin date and starting date?,  or suggest me with other possibility if any there.

    Hi,
    The link you send me out of that I think below can help me, Can you please tell me the possible entries in HR_TMW_DB_UPDATE_TEVENT function module if I want to update the table for subtype 0001 and giving employee number with trip start date and end date as I am trying to use the same but my record is not getting update.
    CALL FUNCTION 'NUMBER_GET_NEXT'
    EXPORTING
    nr_range_nr = '01'
    object = 'PD_SEQ_NR'
    quantity = '00000000000000000001'
    IMPORTING
    number = lw_nextnr
    quantity = lw_qty
    returncode = lw_return
    EXCEPTIONS "#EC
    CALL FUNCTION 'HR_TMW_DB_UPDATE_TEVENT'
    TABLES
    del_teven = p_del_teven
    ins_teven = p_ins_teven
    del_teven_more = t_del_teven_more
    ins_teven_more = t_ins_teven_more
    EXCEPTIONS
    insert_failed = 1
    update_failed = 2
    OTHERS = 3.

  • Infotype 2011 corresponding  RFC in Component version 5.0

    Hi all ,
       I am very new to SAP. Basicaly i am a XI consutnat. Now i am working on HR scenario infotype 2011. what my task is i have to insert employee, third party access control data to the R/3 system. I am woking on SAP ERP Central Component 5.0. What my question is through which RFC i can insert value manullay and in which table the data will store. I have gone thourugh the TEVEN table but those value I inserted through infotype 2011 is not store to the TEVEN table. Its is saving some other table, because i can see those value through infotype 2011 . How can i find it out the actual table ? Please help me .

    What was the exact wording of the error message?  If it said network timeout, try disabling the antivirus and firewall on the computer during the download and update.  Kaspersky is especially bad.

  • Enhance Infotype 2011

    Hi.
    Is there any way to enhance infotype 2011??
    I'm going through pm01 transaction but i got an error message??
    Anybody can help?

    No,
    Unfortunately, enhancement is only possible for ifty 0002-0999
      or
    u see this link
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PT/PT.pdf
    regards
    Giridhar

  • Infotype 2011 TEVEN table

    Dear All,
                 TEVEN is a time event table of infotype 2011. satza is a field which has P10 value as clock-in time of an employee. I want to select first P10(Clock-In time) of an employee on a distinct date. How can i do that.
    there is a field of pdsnr which is a unique number, but in which table i have to join it to get a first P10 record of an employee on a particular date.
    Thanks.
    Sohail

    Dear Muhammed,
    First please close all the threads which were answered,also please give points to the answers which helped you.Its a motivation factor for us.
    I have seen all the threads posted by you. None of them have been closed or given points.
    We are here to help you.
    Regards,
    Pankaj

  • Infotype 2011 behavior

    Hi there,
    is there a way to change infotype 2011 behavior? I mean, when a user manipulates a time event on this infotype it automatically deletes the original record and creates a new one on it with the new data.
    Best regards,
    Bruno Krebs.

    It depends on how you r uploading data in 2011. If you are using a flat file which is uploaded then it will overwrite the existing one

  • Table for infotype 2011

    Hi Experts,
    In which table data for infotype 2011 stored (Time Event)?
    Im looking that table PA2011, but table is empty.
    Thanks
    RR

    Hi,
    Check out table TEVEN.
    Clock in & out info is there.
    Regards,
    Dilek

  • Urgent help needed: registry.dat is missing when i run my form in web base

    Hi gurus,
    i configured my forms and report server in windows 2003 and i received the following error msg when tryin to access my web base forms 6I.
    FRM-92129: Registry file http://domain.com/form60java/oracle/forms/registry/Registry.dat is missing.
    Details...
    Java Exception:
    oracle.forms.engine.RunformException: FRM-92120: Registry file http://domain.com/form60java/oracle/forms/registry/Registry.dat is missing.
    at oracle.forms.engine.Runform.initRegistry(Unknow Source)
    at oracle.forms.engine.Runform.startRegistry(Unknow Source)
    at oracle.forms.engine.Main.createRunform(Unknow Source)
    at oracle.forms.engine.Main.start(Unknow Source)
    at sun.applet.JinitAppletPanel.run(Compiled code)
    at java.lang.Tread.run(Thread.java:466)
    what can be goes wrong with my steps to receive the above error?? i tried in windows XP and Vista, and i getting the same error message as above.
    Your urgent help and advise is needed plssssssss.......
    Many thanks in advance.

    The URL doesn't seem correct: http://domain.com/form60java/oracle/forms/registry/Registry.dat
    I'm expecting a slash (/) between forms60 and java. Have a look in the formsweb.cfg if any paths are misconfigured.
    Also, try if the URL with the slash:
    http://domain.com/form60/java/oracle/forms/registry/Registry.dat
    does work when you just paste it in a browser. It should download the Registry.dat file

  • FRM 92120  Registry dat is missing

    The error> FRM-92120 <to log into an EBS instance and click on a Form (with all the forms).
    ------- error ------
    FRM-92120 Registry file http://hhh.xxx.com.br:8000/OA_JAVA/oracle/forms/registry/Registry.dat is missing
    Details:
    Java Exception:
    oracle.forms.engine.RunformExeception: FRM-92120:Registry file http://hhh.xxx.com.br:8000/OA_JAVA/oracle/forms/registry/Registry.dat is missing.
    at oracle.forms.engine.Runform.initRegistry(Unknow Source)
    at oracle.forms.engine.Runform.startRunform(Unknow Source)
    at oracle.forms.engine.Main.createRunform(Unknow Source)
    at oracle.forms.engine.Main.start(Unknow Source)
    at sun.plugin2.applet.Plugin2Manager$AppleExecutionRunnable.run(Unknow Source)
    at java.lang.Thread.run(Unkwon Source)
    I have done the following steps
    ----------------------------------------------------- >>>> http://finance-kc.gsa.gov/webbill/faq.shtml#l10
    Step 1: Verify that SSL v2.0 and v3.0 options are checked in Java Control Panel.
    a. Click 'Start' menu on Windows taskbar and select 'Control Panel'. If you do not find 'Control Panel' directly under 'Start' menu, then you should find it under 'Settings'
    b. Locate an entry named 'Java' on Control Panel window and double click on it
    c. Click 'Advanced' tab on Java Control Panel window
    d. Locate setting named 'Security' and click on the plus sign prefixing it to show options
    e. Verify the option 'Use SSL 2.0' is checked and if not check it
    f. Verify the option 'Use SSL 3.0' is checked and if not check it
    g. Click 'Apply'
    h. Click 'OK'
    Step 2: Close your browser session.
    Step 3: Open a new browser session and try the register or login action again to see if it works okay. If not, proceed to next set of steps.
    Step 4: Re-start your computer.
    Step 5: Open a browser session.
    Step 6: Clear your browser temporary Internet files by taking the steps stated below.
    a. Select 'Tools' from Internet Explorer browser menu
    b. Select 'Internet Options'
    c. On the 'General' tab, under section labeled 'Temporary Internet Files', click 'Delete Files' button
    d. Click 'OK' on Delete Files confirmation box
    e. Upon completion of delete files, click 'OK' on Internet Options
    Step 7: Close your browser session.
    Step 8: Open a new browser session and try the register or login action again to see if it works okay. If not, proceed to next set of steps.
    Step 9: Clear your Java temporary Internet files by taking the steps stated below.
    a. Click 'Start' menu on Windows taskbar and select 'Control Panel'. If you do not find 'Control Panel' directly under 'Start' menu, then you should find it under 'Settings'
    b. Locate an entry named 'Java' on Control Panel window and double click on it
    c. On the 'General' tab, under section labeled 'Temporary Internet Files', click 'Delete Files' button
    d. Click 'OK' on Delete Files confirmation box
    e. Upon completion of delete files, click 'OK' on Java Control Panel
    Step 10: Close your browser session.
    Step 11: Open a new browser session and try the register or login action again to see if it works okay. If not, provide the following to the help desk: the browser name and version used, Java plug-in version used, sequence of events leading up to the issue or problem being reported and any message displayed in a screenshot or text format and/or describe browser behavior that will help us with troubleshooting.
    ====================================================================================================
    And also did not resolve the error then appealed to the Deployment Guide in página157 --http://otndnld.oracle.co.jp/products/forms/htdocs/install/Materials/doc/EN/B14032_02.pdf
    A.2.3.6 FRM-92120
    Cause:
    This is a server configuration error, which occurs when the client is unable to find the
    file Registry.dat on the middle tier.
    Solution:
    When this error occurs, check if the file Registry.dat is present on the middle tier in the
    directory ORACLE_HOME/forms/java/oracle/forms/registry. If it is not
    present, then it needs to be placed.
    In a running Forms application, if you suddenly come across this error, there is a
    possibility that the HTTP server has gone down. You may verify this by typing the
    Diagnosing Server Crashes with Stack Traces
    A-8 Deployment Guide
    URL http://myserver.com:NNNN in your browser. Here you need to replace
    myserver.com with your host name and NNNN with your HTTP server’s port
    number. If your browser says that it could not connect to the server, then your HTTP
    server is down and you need to contact your system administrator to bring it up.
    When the HTTP server is up and running, on giving the URL
    http://myserver.com:NNNN your browser will show the “OracleAS welcome”.
    =============================================================================================
    also had no positive effect.
    I test in different browsers, different machines, the Jinitiator removed and installed again.
    The versions I'm using are
    EBS - R12.0.4
    Java 1.6.0_15
    Browsers - IE 8 e Mozzila Firefox 3.0
    Can someone suggest something else.
    Extremely grateful for any suggestion.

    Hi,
    What changes have been done recently?
    Did AutoConfig complete successfully on all tiers?
    If SSL has been enabled recently, please run SSL diagnostics tests and make sure all runs successfully -- Search "My Oracle Support" for "SSL Diagnostics R12".
    Enable debug and see if you get more details about the error -- See (Note: 422419.1 - R12, 12.1.1 - How To Enable and Collect Debug for HTTP, OC4J and OPMN) and (Note: 438652.1 - R12: Forms Runtime Diagnostics (FRD), Tracing And Logging For Forms In Oracle Applications).
    Regards,
    Hussein

Maybe you are looking for

  • Desktop Manager Not Working After Security Wipe

    I had to do a security wipe on my Tour to fix a problem I was having with the Bluetooth on my phone (which surpisingly worked!).  However, now when I try to sync my phone with my computer, Desktop Manager has a problem.  When the program gets to sync

  • F110: control for payment cycle ID

    Hello guys, does any one of you know how I could check the codification of the payment cycle ID (LAUFI) compared to the payment medium entered into the cycle? Expemle : - if payment medium = "X" then payment ID first digit = "X", AND - if payment ID

  • Applying 10.2.0.5 Cpu Patch

    Hello All, I am a newbie here. We are applying the CPU patch to our 10.2.0.5 Database. I have some general questions. The database is in archive mode and jobs are scheduled in crontab. As we have to down the database to apply the patch, should i stop

  • Exposure inconsistent relative to PS

    Some images look way brighter in bridge than they open in PS, some darker, some the same. I can't make heads or tails of it, I'm not seeing a pattern yet, I just know not to expect a shot viewed in bridge to look the same in PS. And I'm talking about

  • WebDynPro: Drop-Down Box

    Hi there, I'm making a web dyn pro application which has a drop-down box in the initial screen. I have populated the drop-down box with values and corresponding texts. When I click on the button that allows me to select a line, it shows me the texts