Data of infotype 0031

Hello,
In what table data of infotype 0031 is saved?
I checked it in pa0031 and it is empty.
Thanks,
Paulina

Hello Paulina
Infotype 0031 is stored in table PA0031. If the table is supposed to hold data then you should see it in transaction <b>PA30 </b>(choosing infotype 0031).
Regards
  Uwe

Similar Messages

  • Error coming while modifying data in infotype through HR_INFOTYPE_OPERATION

    I have created a report which reads a excel file fom the system and then upload data in infotype 0077 through HR_INFOTYPE_OPERATION. In this report first I check if the record exists in IT0077 for a particular employee , if not then creates a new record with the input file data and if the records exists then I need to modify that record.
    But the problem is that on updation the function module HR_INFOTYPE_OPERATION always return an error that "Infotype doesnot exist", although its exists in the system.
    Why this error comes when once I excuted the report with a pernr number for creation and then I execute with teh same data to modify it, it gives an error in modification.

    iam not sure
    When we create we have to use INS in the code and when we modify we have to use Operation  MOD
    Since Dilek  our Techinical consultant  is there hope your issue is solved

  • Short dump while changing the end date of infotype 0167 through PA30

    Hi all,
    I am getting short dump while changing the end date of infotype 0167(Health Plans) through Tcode PA30.
    dump descript is as below
    An exception occurred that was not caught.
    Runtime Errors         UNCAUGHT_EXCEPTION
    Except.                CX_HRPA_VIOLATED_POSTCOND
    Date and Time          11.03.2010 07:06:26
    What happened?
        The exception 'CX_HRPA_VIOLATED_POSTCONDITION' was raised, but it was not
         caught anywhere along
        the call hierarchy.
        Since exceptions represent error situations and this error was not
        adequately responded to, the running ABAP program
         'CL_HRPA_SAPUP50R_ADAPTER======CP' has to be
        terminated.
    thanks
    shahid

    Search OSS Notes for that.

  • Download data from infotypes

    Hi,
    My client wants me to download all the data in infotypes(std and custom) from production client. Then they will migrate this data to their new system. What would be the approach for downloading?
    1. Through SE16N (we are not authorized to use SE11/SE16)? But couldnt save the data to local file when we use se16n.
        even i get se11 authorization -> we can download only 64,000 records in excel. Do i need to split? or any other way?
    2. Write custom progms to download data from infotypes.
    3. Any data migration tools ?
    4. Basis can do client copy?
    Thanks!

    Hi,
    U can write a report to donwload data, but my preferde way is to use the hr toolbox (Transaction PU12), it's very simple to use .
    Here is a link to know how ti use it :
    http://shafiq.us/sap/index.php?option=com_content&view=article&id=47:hr-interface-toolbox-pu12&catid=36:pu12tutorial&Itemid=14
    i Hope it helps u.

  • Fetching data from infotype

    Hi Experts,
    I have to fetch all data from infotype 0581,can you suggest me how to do this
    in sap abap-hr.
    I am not using LDB in my report.
    Thanks&Regards
    Priyaranjan

    You can use Function module "HR_READ_INFOTYPE"

  • How to upload data in infotype 0025 (Appraisals)

    I want to make an upload program for infotype 0025 (Appraisals). The program will upload the data in 'Potentials' but I cannot make a recording work in it. Each time the system posts the data into next row and recording does not work since the line number is fixed in recording. There is no + sign to add a row at the top. Can someone please tell me a way to do this or if there is a Function Module that can upload data into infotype 0025.
    Thanks

    Dear Sohaib,
    This upload could not be performed by BDC recording. You will have to make use of around four Appraisal BAPI's to create an entry in Infotype 25(Appraisals). I had the same scenario of uploading appraisal data here at NBP(National Bank of Pakistan). Here is the link for the article i wrote,covering this topic in depth,along with the complete solution:
    http://scn.sap.com/docs/DOC-32084
    If you like this article,kindly flag it as a 'Correct Answer.
    Regards,
    Fahad

  • Insert Data Into Infotypes

    Hello!
    I am developing an inbound IDoc, during which i am suppose to insert respective segment structure into infotypes PA0000, PA0001, PA0002, PA0006 & PA0008 through Function Module RH_INSERT_INFTY, its throwing error sy-subrc 1, i can give sample code of it
    CALL FUNCTION 'RH_INSERT_INFTY'
    EXPORTING
    fcode = 'INSE'
    vtask = 'S'
    order_flg = 'X'
    commit_flg = 'X'
    repid = sy-repid
    TABLES
    innnn = innnn
    EXCEPTIONS
    no_authorization = 1
    error_during_insert = 2
    repid_form_initial = 3
    corr_exit = 4
    begda_greater_endda = 5
    OTHERS = 6.
    The internal table innnn has record of type as follows
    710 12080033 12/31/2006 12/27/2005 000 01/02/2006
    When Idoc is posted through We19 through 'RH_INSERT_INFTY', it throws Sy-Subrc 1.
    When the same record is input manually through SE37 into function Module 'RH_INSERT_INFTY', it throws error_during_insert,
    Can any guys suggest me to come out of this problem, if possible suggest any other standard Fuction Module to insert data into Infotypes,
    Thank You
    Regards
    Rajesh

    Hi Rajesh,
    The function module 'RH_INSERT_INFTY lets you insert multiple infotype records for OM objects into the Personnel Planning databases (HRPnnnn). ie the PD infotypes. For updating PA infotypes pl use 'HR_INFOTYPE_OPERATION' as suggested by others earlier.
    Regards,
    Suresh Datti

  • Reading dates from infotype 41

    I need to obtaint a subtype of date from infotype 41 but the problem is that infotype 41 has many fields like
    dar01 - dat01, dar02 - dat02, darN - datN the subtype that I need is the '01' but I don't know how to get it becuase sometimes is in the dar01, or in the dar02, or darN, is there any function module that can help me?
    Thanx in advance

    Hi ,
    This exactly what you are trying to do
    *--Decleare internal table
    TYPES : BEGIN OF ty_pa0041,
               pernr TYPE pa0041-pernr,
               dar01 TYPE pa0041-dar01,
               dat01 TYPE pa0041-dat01,
               dar02 TYPE pa0041-dar02,
               dat02 TYPE pa0041-dat02,
               dar03 TYPE pa0041-dar03,
               dat03 TYPE pa0041-dat03,
               dar04 TYPE pa0041-dar04,
               dat04 TYPE pa0041-dat04,
              END OF ty_pa0041.
    DATA : lt_pa0041 TYPE STANDARD TABLE OF ty_pa0041,
                ls_pa0041 TYPE ty_pa0041.
    *--Read Secondment end date ( For my case it's RG)
    SELECT pernr
            dar01 dat01 dar02 dat02 dar03 dat03 dar04 dat04
       INTO TABLE lt_pa0041
       FROM pa0041
       WHERE pernr = gs_final-pernr AND
                    endda = '99991231'.
    *--Find out corrosponding date according to 'RG'
    LOOP AT lt_pa0041 INTO ls_pa0041.
       IF ls_pa0041-dar01 = 'RG'.
         lv_date1 = ls_pa0041-dat01.
       ELSEIF ls_pa0041-dar02 = 'RG'.
         lv_date1 = ls_pa0041-dat02.
       ELSEIF ls_pa0041-dar03 = 'RG'.
         lv_date1 = ls_pa0041-dat03.
       ELSEIF ls_pa0041-dar04 = 'RG'.
         lv_date1 = ls_pa0041-dat04.
        ENDIF.
    ENDLOOP.
    I hope it fits your requirement

  • Uploading data in infotype-0586 and infotype-0587

    Dear Experts,
         Can i use the standard bapi HR_INFOTYPE_OPERATION for uploading data into infotype-0586( sec 80c deduction) and infotype-0587 (pf related).if so what are the parameters to be passed for the upload.
      Please inform if there are any other bapi for the upload process.
    regards,
    Aeroshil Nameirakpam

    Hi,
    yes you can use...HR_INFOTYPE_OPERATION for your purpose.
    in that you should pass....
    INFTY                - infotype number
    NUMBER           --pernr
    SUBTYPE          --subtype of infotype (if applicable)
    VALIDITYEND      -ENDDA
    VALIDITYBEGIN   -BEGDA
    but before you call this FM...make sure that you lock the employee for which you are updating the record and after this FM updates the record for that employee make sure you unlock the employee...
    to lock the pernr ...use FM....HR_EMPLOYEE_ENQUEUE
    and to unlock...use FM...  HR_EMPLOYEE_DEQUEUE
    in both of these FMs you just need to passs PERNR..
    summerizing this...first use...
    HR_EMPLOYEE_ENQUEUE
    then call...HR_INFOTYPE_OPERATION
    and then...
    HR_EMPLOYEE_DEQUEUE
    thats it!
    <b>Reward Points if answer was helpful,</b>
    Regards,
    Tejas

  • Bapi - upload data for infotypes 0016 and 0019

    hello,
    Please let me know bapi to upload data for infotypes 0016 and 0019 as i am unable to find any bapi for this infotypes.
    Please use a more meaningful subject in future - I've edited it for you this time.
    Edited by: Matt on Nov 6, 2008 12:08 PM

    Hi Sunny,
    My suggestion is go txcode BAPI.
    After this in the left side of the window complete information on BAPIs will be available search out in Human resource you may get the BAPI, in the mean while some one may help you.
    Cheers!!
    VEnk@

  • Maintain data in infotype 0695

    Hi All,
    I need to maintain data in infotype 0695 for printed forms sequence number.
    Can any one help me how to enter data in Infotype 0695?
    And what is the transaction code & function module for that.
    Because i checked PA30 we can not use PA30 for this.
    Thanks

    Did you try the Std report RPUPAV00?
    ~Suresh

  • Picking up data from infotype 0025

    hi all,
    I want to read some data from infotype in my abap program. In infotype 0025, in the tab 'Appraisals where Appraisee' ,  when I click on the first link, say 'Supervisor appraisal', I get a screen where there is a table . I want to select the value of 'HAP_S_DYNP_3100_TB-COL_01_VALUE_TXT', but HAP_S_DYNP_3100_TB is a structure and COL_01_VALUE_TXT' is a field of a table control, so how to pick up this kind of data in my program???? Please suggest some sample code for that.
    Thanks
    Ribhu

    hi all,
    I want to read some data from infotype in my abap program. In infotype 0025, in the tab 'Appraisals where Appraisee' ,  when I click on the first link, say 'Supervisor appraisal', I get a screen where there is a table . I want to select the value of 'HAP_S_DYNP_3100_TB-COL_01_VALUE_TXT', but HAP_S_DYNP_3100_TB is a structure and COL_01_VALUE_TXT' is a field of a table control, so how to pick up this kind of data in my program???? Please suggest some sample code for that.
    Thanks
    Ribhu

  • How to retrive data from infotype 0008 &0021 and dispaly as alv output

    hi all,
    i have to read data from infotype 0008 and infotype 0021 and display as alv grid..
    can any one help me..
    <removed by moderator>
    regards,
    viswanath
    Moderator message: please search for information and try yourself before posting here.
    Edited by: Thomas Zloch on Jan 12, 2012

    Hello Sourabh,
    If I am not wrong, there are two parts two your query...
    a) Data or Content Retrieval
    b) Displaying Retrieved content
    Here is my feedback
    a) The Content can be Retrieved using the FM ARCHIV_GET_TABLE.
    Pass the Archive Object, SAP Object and the SAP Object ID and based on the Connection table entries (TOA*), the underlying Content Repository (T-code OAC0) is determined and a request for synchronous retrieval is made to the Content Server.
    b) Display of Retrieved content is normally done through dedicated viewers (Ex: Livelink Viewer) or front-end applications (Excel, Word) based on the Protocol (OAA3/OAA4) specified in the Content Reository Configuration. Hence, to my knowledge, you cannot display the content directly in the Smartform.
    With Regards
    Vijay Gajavalli

  • Query on uploading data into infotype

    Hi,
    I am in search of a method to upload data into infotypes  IT0001,HRP1001.
    I have serached and found we can do it using BDC,LSMW and through Hr_INOFYTPE_OPERATION--fm.
    But in my flat file am having pernr ,begda,endda and supervisor..
    Some of my searches said if i had a pernr in flat file its impossible to do with HR_INFOTYPE_OPERATION.
    CAN ANYONE PLS SUGGEST ME THE BEST WAY TO DO?
    Thanks

    Hi Salini
    Using BDC or LSMW might lead to some inconsistencies.
    Uploading of various infotype data depends upon its volume.
    There is a FM: HR_MAINTAIN_MASTERDATA through which you can upload the data. But this does for one record at a time. So the performance gets affected at times. Before calling this FM each time, clear the buffer using the FM:  'HR_PSBUFFER_INITIALIZE'. This will be of great help.
    Incase you want to upload all your data at once, you can use BAPI_HRMASTER_SAVE_REPL_MULT.
    Let me know incase you need any help in any of these.
    Regards
    Harsh

  • How to retrieve time data from infotypes 2001 and 2002 when we use PNPCE

    Hello Everyone,
       I am new in using PNPCE ldb.In the requirement i have to retrieve time data from infotypes 2001 and 2002 between the begda and endda.I tried using the macro RP-READ-ALL-TIME-ITY to retrieve data.But its not supporting.Can some body help me in doing this.
    THanks in Advance..
    Regards,
    Chinni.

    Hi
       Try the following code:
    REPORT  ZHRTM41.
    nodes peras.
    Tables: PERNR.
    Infotypes: 2001.
    start-of-selection.
    get peras.
    rp_read_all_time_ity pn-begda pn-endda.
    end-of-selection.
    loop at p2001.
    write:/ p2001-abwtg,p2001-stdaz.
    endloop.
        It worked for me when using PNPCE. let me know if you have any problem
    Thanks,
    V.Nagaraju

Maybe you are looking for

  • Reg : Error in flat file in BDC

    hi friends... let consider 10 records in my flat file... suppose 5th record is error means In BDC Session method, what happen records before and after the error record, its get update or not ? like In BDC Call Transaction method, what happen records

  • Tuning SQL query

    Please help me in tuning this query. This view has around 2 million of records SELECT * FROM employee_v WHERE status_id IN (SELECT MAX(v2.status_id)status_id FROM employee_v v2 WHERE UPPER(v2.name) LIKE UPPER(:v_name)||'%' GROUP BY v2.emp_id, v2.proj

  • Apps not installing or updating

    When I am away from my computer and want to upgrade an app, I go to the App Store and do the regular thing. I enter my password and the app starts installing but in the middle of it, it stops and there is no more installation bar. It just sits there

  • Reading Data

    Let's say that I have to read 50 file names. What would be more efficient, 1) Searching the files directly from the computer? 2) Searching a text file that already has the names of all of the files? 3) Writing the names of all of the files to a text

  • DiskWarrior: "not enough contiguous space"? -What does this mean??

    Having issues, cannot reboot, after software update. Grey screen + Apple comes up, but no wheel and no further booting. I'm able to boot from the DW CD. Hard drive capacity is 74.41GB/ available space 21.81GB. Graph of hard drive shows 5% out of orde