0HR_PT_2 doesn't extract InfoType 2010

Hi,
I'm trying to extract HR infotype 2010 into BW. But it returns me only annual leave, etc. Is there any special customizing, etc for this ?
Regards,
Yigit

Hi,
Have you created "Reporting time types" in your ERP system?
=> see customzing SBIW / view V_T557B (there is an abap program to generate a template - now, I don't know the name)
Sven

Similar Messages

  • How to Unlock a Locked Recoed for Infotype 2010..

    Dear Expert,
    How can I unlock a locked record from Infotype 2010. When I am using BDC how should I decide which record to select in PA30 once I have passed the date and Employee Number details on the screen.
    If on the same date if there are more than one record and if the first one is not locked then the BDC is locking them insted of unlocking it.
    Is there any function module which can help me. The Code I have used is as below.
    The field SPRPS is coming during recording but bdc gives error stating this field is not there on the screen so could not use this one as well..
    IF T_REPORT-INFOTYPE = '2010'.
              PERFORM BDC_DYNPRO USING 'SAPMP50A' '1000'.
              PERFORM BDC_FIELD  USING 'BDC_OKCODE' '=LIST'.
              PERFORM BDC_FIELD  USING 'RP50G-PERNR' T_REPORT-PERNR.
              PERFORM BDC_FIELD  USING 'RP50G-TIMR6' 'X'.
              PERFORM BDC_FIELD  USING 'RP50G-BEGDA' TEMP_BEGDA.
              PERFORM BDC_FIELD  USING 'RP50G-ENDDA' TEMP_BEGDA.
              PERFORM BDC_FIELD  USING 'RP50G-CHOIC' '2010'.
              PERFORM BDC_FIELD  USING 'RP50G-SUBTY' T_REPORT-LGART.
             PERFORM BDC_FIELD  USING 'P50G-SPRPS' 'X'.
              PERFORM BDC_DYNPRO USING 'MP200000' '3450'.
              PERFORM BDC_FIELD  USING 'BDC_CURSOR' 'P2010-BEGDA(01)'.
              PERFORM BDC_FIELD  USING 'BDC_OKCODE' '=EDQ'.
              PERFORM BDC_FIELD  USING 'RP50M-BEGDA' TEMP_BEGDA.
              PERFORM BDC_FIELD  USING 'RP50M-ENDDA' TEMP_BEGDA.
              PERFORM BDC_FIELD  USING 'RP50M-PAGEA' ' 1'.
              PERFORM BDC_FIELD  USING 'RP50M-SELE2(01)' 'X'.
              PERFORM BDC_DYNPRO USING 'MP200000' '2450'.
              PERFORM BDC_FIELD  USING 'BDC_OKCODE' '/00'.
              PERFORM BDC_DYNPRO USING 'MP200000' '2450'.
              PERFORM BDC_FIELD  USING 'BDC_CURSOR' 'P2010-LGART'.
              PERFORM BDC_FIELD  USING 'BDC_OKCODE' 'UPD'.
    Unlock the Details to the R/3 using Tcode PA30.
              CALL TRANSACTION 'PA30' USING BDCDATA MODE 'P' MESSAGES INTO MESSTAB.
    Regards,
    Vidya..

    first of all, use a BAPI instead of BDC.. HR_MAINTAIN_MASTERDATA
    you may have to do some up-front logic to determine which records to unlock, if necessary.
    EDIT: that is a FM, not BAPI.
    Edited by: robert phelan on Mar 16, 2009 8:57 PM

  • Submit By Email Doesn't Launch Outlook 2010 as Default Mail Client, though Outlook is properly set a

    A form designed in LiveCycle Designer with a Submit By Email button, doesn't launch Outlook 2010 (Standard Edition) when clicked, although Outlook is properly configured as Default Mail Client.  Checked with Microsoft and followed all proper steps yet the button doesn't invoke Outlook onClick.  However, Outlook is launched if a link or html button, set to the mailto syntax is clicked.  Is this a PDF form issue for LiveCycle or is there something I am missing?  Please any ideas?

    I have this problem on Win7 64bit, but it seems to work fine with XP and Vista. Not sure about Win7 32bit.
    I've also seen the problem in the past with programs like Thunderbird set to be the default email client (on XP).
    I've never been able to figure out if it's an Adobe or Microsoft problem. Adobe uses the MAPI settings to find the email client.

  • Dynamic table for infotype 2010 in HCM form

    Hi,
    I have a project requirement for a form that has got me stuck for days now, so I was wondering if anyone could help.
    The form in question is a statement of allowances (recording overtime), which ideally will allow the user to enter in any overtime within a fortnight. For each day in the fortnight, they are to be able to enter in any number of infotype 2010 records. As such, the layout requires a table with the columns being the 14 days, and the rows being the 2010 records (based on wagetypes).
    As the user is able to enter in any amount of 2010 records for each day, the table needs the ability to grow dynamically. I have no problem doing this in the Adobe form itself, but my issue right now is defining the fields for the form.
    As I understand it, there are some infoypes (such as 0041 and 0008) that are able to be defined in the form scenario fields as a line type. This will allow multiple instances of that infotype to be created/updated. However, since 2010 does not have this option, I am only able to define a single instance of that infotype.
    I am still fairly new to this framework, and I did play around with generic services to see if I could define my structure there and map it across to the form, but so far I have not been successful. I was hoping to be able to define a table of type p2010 and pull it across to be used in the form.
    My issues in summary are as follows:
    1. Need to define a table/structure of type p2010 to be used in the form
    2. As the number of rows in the table will only be specified at runtime, how do I map the cells to the corresponding fields?
    Any ideas or suggestions would be very helpful.
    Joanna

    See you will manually get the relevant data from IT2010 and save it an internal table.
    now this data for eg contains 3 line items whcih you need to show in the form in a table.
    itab-fld1         itab-fld2               itab-fld3
    val1                  val2                     val3
    val4                  val5                     val6
    val7                  val8                     val9
    Now you must have defined the fields in the generic service. add the fields in the service_dataset not the standard service fields.
    in the get field info method
    DATA ls_field_info TYPE hrasr00gs_field_info .
      DATA ls_service_field TYPE fieldname.
      CLEAR field_infos.
      LOOP AT service_fields INTO ls_service_field.
        CASE ls_service_field.
          WHEN c_fieldname1.
    Reason
            CLEAR ls_field_info.
            ls_field_info-fieldname = c_fieldname1.
            ls_field_info-field_data_element_name = c_dtel_reason.
            ls_field_info-supports_value_help = true.
            ls_field_info-supports_default_value = true.
            APPEND ls_field_info TO field_infos.
    endcase.
    endloop.
    IN method get operations
    DATA ls_operation TYPE hrasr00gs_operation.
      CLEAR operations .
    operation GET 2010
      CLEAR ls_operation.
      ls_operation-operation = c_oper_get_reason.
      ls_operation-fieldnames = get_fields_of_operation( ls_operation-operation ).
      APPEND ls_operation TO operations.
    in method get fields of operation
      CASE operation.
        WHEN c_oper_get_reason.
          APPEND c_fieldname1          TO fieldnames.      
    Now in the initization method you will find your fields in service_field_values. Now for table entry fields increase the index value as mentioned before.

  • How to load infotype 2010 data in to R/3?

    Hi,
    I posted the same question earlier but with a wrong subject line.
    My question is how can I load infotype 2010 data in to ECC 6.0? I am using PI to convert a flat file, but depending on the feature available on R/3 side(either IDOC, BAPI, or a flat file) I am going to convert to the required format.
    Can anyone tell me what is the best way to push this data in to R/3.
    Appreciate your answers.
    Thanks
    Raju

    Sorry My Bad.
    Use this BAPI
    BAPI_PTMGREXTREMSPEC_INSERT and below id the description of the BAPI.
    This method stores the data records in the interface tables PTEX2010 and PTEXDIR. Then, the report RPTEXTPT (External Transfer -> Time Management reads the data from PTEX2010 and stores it in the Employee Remuneration Info infotype 2010. Neither cost assignment nor activity allocation is supported with this method.
    You can try these as well.
    BAPI_PTMGREXTREMSPEC_INSWACT Insert EE remuneration info in table (with activity allocation)
    BAPI_PTMGREXTREMSPEC_INSWCOST Insert external EE remuneration info in table (w/ cost assignment)

  • Excluding the wages from Infotype 2010

    Hello there!
    I want to Payroll schema to exclude the information stored in Infotype 2010 or Table P2010 (however you would like to consider it).
    Please let me know where do you add or remove such validation. I could find for 14 and 15 but unsure of where is 2010.
    You can give me direct PCR/Schema or a path such as:
    XT00 -> XAP9 -> P0015 Disable the line with P0015 to exclude all Additional Payments in Payroll Processing.
    Thanks
    Yash

    Friends
    As I check the US Schema, I see the 2010 is processed in subschema UT00.
    U000 -> UT00 -> P2010
    If I disable the same line with * all the wages stored in 2010 should not be processed by schema. I don't have the development server or test server ready yet so cannot say for sure. Can someone please confirm me if I am going right?
    Thanks
    Yash

  • Problems with Upload record to Infotype 2010 together with Cost Assignment (PREF)

    Hi
    I create program using your guide
    http://scn.sap.com/people/aditya.palekar/blog/2010/01/19/uploading-a-pa-infotype-record-with-cost-assignment
    but I have two problems:
    If I call method "CALL METHOD ref2->modify_data" is obligatory parameter SECONDARY_RECORD, but I update only infotype 2010 as PRIMARY_RECORD and PREF (I don't have secondary record).
    When for secondary_record use same record as primary_record, give me an error. When for secondary_record use null record give me a error.
    I try used "ref2->MODIFY_PRIMARY_RECORD" and "ref2->MODIFY_PREF" together, but using method "CALL METHOD g_masterdata_bl->INSERT" updated only last record (in this case is PREF because is call as last method"ref2->MODIFY_PREF")
    What InfoType is Secondary_Record for InfoType 2010?
    I have problem with NO COMMIT data. Method "CALL METHOD g_masterdata_bl->flush" have a parameter no_commit with two possible options. When I use no_commit = 'X', this commit data even if this do don't commit.
    Why still commit data? When this method no_commit data?
    Thank you

    Hi
    I create program using your guide
    http://scn.sap.com/people/aditya.palekar/blog/2010/01/19/uploading-a-pa-infotype-record-with-cost-assignment
    but I have two problems:
    If I call method "CALL METHOD ref2->modify_data" is obligatory parameter SECONDARY_RECORD, but I update only infotype 2010 as PRIMARY_RECORD and PREF (I don't have secondary record).
    When for secondary_record use same record as primary_record, give me an error. When for secondary_record use null record give me a error.
    I try used "ref2->MODIFY_PRIMARY_RECORD" and "ref2->MODIFY_PREF" together, but using method "CALL METHOD g_masterdata_bl->INSERT" updated only last record (in this case is PREF because is call as last method"ref2->MODIFY_PREF")
    What InfoType is Secondary_Record for InfoType 2010?
    I have problem with NO COMMIT data. Method "CALL METHOD g_masterdata_bl->flush" have a parameter no_commit with two possible options. When I use no_commit = 'X', this commit data even if this do don't commit.
    Why still commit data? When this method no_commit data?
    Thank you

  • Extract assets doesn't extract the 0.5x or 0.25x files but does the 2x and 3x, why?

    Dear Photoshop Community,
    I'm trying to extract assets but this doesn't extract the 0.5x or 0.25x files but does the 2x and 3x, why?
    I get the original file, and 2 folders, one named scaled-at-200 and one named scaled-at-300.
    I am using Photoshop CC 2014 on windows 7 and i don't get any other extracted assets.
    However using Photoshop CC 2014 on my windows 8.1 machine i get all the assets and two additional folders scaled-at-50 and scaled-at-25.
    Why is this? Is there a fix for this issue?
    Thanks,
    Craig Williams.

    Hi Ganesh,
    Thank you for your reply.
    However I don't think the problem I got is related to the boldFont object. I actually want all the column hearders to be bold so I did the following codings and it works:
    Font headerFont = table.getTableHeader().getFont();
    Font boldFont = new Font(headerFont.getFontName(), Font.BOLD, headerFont.getSize());
    table.getTableHeader().setFont(boldHeaderFont);
    It is actually working - it changes all the headers (except for the column0 which has its own hearderRenderer) to be bold. So I think the object boldFont itself is ok.
    My problem is that when I set the boldFont to the myHeaderRenderer for colomn 0, I just can't that that column header to be bold. I guess the problem is related to the header renderer.
    -wdyaoj

  • 0CRM_SALES_ACT_1 7.1 doesn't extract Sales Rapresentative

    HI all,
    My standard extractor 0CRM_SALES_ACT_1 version 7.1 doesn't extract Sales Rapresentative into field SALES_EMPLOYEE for the activity Appointments.
    The source system is CRM 7.0.
    The activity data extracted are as following:
    - for activity call the field SALES_EMPLOYEE is filled with Call center Operator --> it's correct
    - for activity appointments the field SALES_EMPLOYEE is filled with Call center Operator --> it's wrong.
    It's a strange situation because in my old model based on BW 3.x and CRM 4.0, the same extractor works well, so as in this case:
    - for call the field SALES_EMPLOYEE is filled with Call center Operator --> it's correct
    - for appointments the field SALES_EMPLOYEE is filled with Sales Rapresentative --> it's correct
    In both systems versions, Call center Operator and Sales Rapresentative have employee Role and Sales Rapresentative has a standard partner function.
    Both extractor versions are identical and on the old system there are not custom enhancement.
    Which could be the problem?
    Hope you can help me.
    thanks in advance.
    Claudia

    Hi Silvio,
    I've experienced a similar problem with this extractor.  I attempted to Initialize Delta with Data Transfer to no avail.  The job ran for 12+ hours and stayed in "yellow" status (0 records extracted).  The following steps worked for me:
    1.  Initialize Delta without Data Transfer
    2.  Run Delta Update
    3.  Run Full Update and Indicate Request as Repair Request
    Worked like a champ, data load finished in less than 2 minutes.
    Hopefully this will help.
    Regards.
    Jason

  • Extract infotype free text

    hi all,
    I would like to use adhoc query to extract free text from an infotype record. However, adhoc only has a 'text exists' field (Pxxxx-ITXEX), which only indicates whether text exists or not.
    Does anyone know if a custom field needs to be created in adhoc to extract this, and how I can do this?
    many thanks,

    thanks semvladigo, This error has gone now, great!
    However, now i'm getting a short dump in adhoc query instead
    Error analysis                                                                               
    An exception occurred that is explained in detail below.                                   
        The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not                  
         caught in                                                                               
    procedure "HR_ECM_ADD_MESSAGE" "(FUNCTION)", nor was it propagated by a RAISING            
         clause.                                                                               
    Since the caller of the procedure could not have anticipated that the                      
        exception would occur, the current program is terminated.                                  
        The reason for the exception is:                                                           
        You attempted to use a 'NULL' object reference (points to 'nothing')                       
        access a component.                                                                        
        An object reference must point to an object (an instance of a class)                       
        before it can be used to access components.                                                
        Either the reference was never set or it was set to 'NULL' using the                       
        CLEAR statement.

  • Extracting Exchange 2010 Alert and Severity

    Hi All,
    Have been trying to extract the Severity Critical and Priority high for the Exchange 2010 Management packs.
    Tried the latest MP viewer but the Severity and Priority were blank.Used powershell and it did not display information either.Tried SQL queries as well.
    Any other options i can try to extract the Exchange 2010 management pack so that we can tunethe Severity and Priorities ?
    Cheers
    J

    I know that Sridhar's comments are true for a standard management pack, but is this actually true for the Exchange 2010 Management pack? I am required to export Severity-Priority to provide a monitoring template to application teams, but I have a similar
    issue where the Exchange 2010 MP Viewer export does not show Severity Priority. Is this because of the Correlation Engine and how it works? How does one export the actual default Severity/Priority of Exchange 2010 alerts?
    dsloyer

  • Nokia Suite doesn't "see" Outlook 2010 contacts

    I"ve recently installed on a new PC with windows 7 (32bit) MS Outlook 2010 and latest version of Nokia Suite. (3..2.100). I wanted to sync my contacts with my nokia phone (C2-01). However Nokia Suite doesn't "see" that I have MS Outlook installed. In the options to syncronize contacts it has only windows contacts.
    Can anyone help how can I sync my contacts in MS Outlook with my nokia phone in this case?

    Hi Toshkentlik,
     I would like to add one thing more here.
     You could first also check in Nokia Suite -> Tools -> Options -> Contacts ; See if Microsoft Outlook is selected there!
     If yes, then
     Diconnect/Connect you phone
    Click Sync -> Repair Sync
    Now Syn contacts again
    Hope it helps!
    Thanks,
    Best regards,
    taza99
    Nokia Suite Team.

  • Adobe Shared Review Doesn't Recognize Outlook 2010 as Default Email Program

    We just received new laptops from our company with Windows 7 on them and Acrobat 9.4.0. Previously, we were using Windows XP with Acrobat 8.3.2 and didn't have the following issue.
    When I begin a shared review and get to the Add Email dialog, I click To: and Acrobat pops up an error that Outlook is not the default email program. Fact is, though, it is the default email program. I checked under Default Programs and made sure Microsoft Outlook was set.
    Needless to say, this completely prohibits us from using Shared Review. There is no way around this that I can see (I tried just typing in email addresses but then it tells me it can't send it because I don't have an email client).
    Outlook opens fine via email links from my browsers (IE and FF), other documents, etc. The IE default email is set to Outlook as well (not sure that makes a difference).
    My fear is that this is a result of Windows 7 'not being fully supported by Adobe until an undisclosed release'. Please tell me I am wrong and there is a setting I am missing.
    I am inserting an image of the error.

    There have been other messages concerning compatibility issues with MS Office 2010
    Since Outlook is part of Office, I will guess that is your problem
    Will NOT work with MS Office 2010 - http://forums.adobe.com/thread/687988?tstart=0
    http://ptihosting.com/blog/it-blog/microsoft-office-2010-rtm-and-adobe-acrobat-incompatibl e/
    Also discussed in the Acrobat FAQ http://www.adobe.com/products/acrobat/faq/

  • Receiver Determination, condition to select receiver doesn't extract values

    Dear all!
    I have SAP PI 7.1
    I am facing problem in Receiver Determination while using Condition to select receiver based on the values in the payload.
    I need, if Identificador = 1 then receiver BC_1 and if Identificador = 2 then the receiver BC_2
    My payload has the value:
    <?xml version="1.0" encoding="utf-8"?>
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:p1="http://pruebas.endesa.es/AME4S_2">
      <soap:Body>
        <p1:MT_WS_SENDER_Q>
          <IDENTIFICADOR>1</IDENTIFICADOR>
          <OBJECT_ID>7600000009</OBJECT_ID>
        </p1:MT_WS_SENDER_Q>
      </soap:Body>
    </soap:Envelope>
    But, the trace shows following:
    <Trace level="2" type="T">......extracting (new) for Extractor: XP /p1:MT_WS_SENDER_Q/IDENTIFICADOR </Trace>
    <Trace level="2" type="T">......extracting values found: 0 </Trace>
    I tried with double quotes, simple quotes, without quotes...
    I tried too with a Receiver Rule (with context) and local rule with xpath....
    Can someone please advise?
    Thanks in advanced!!

    Hello,
    /p1:MT_WS_SENDER_Q/IDENTIFICADOR = 1
    Can you try //p1:MT_WS_SENDER_Q/IDENTIFICADOR = 1 ? I'm sure I read it somewhere here in SDN regarding the xPath difference for stateless and stateless XI 3.0 compatible version is an additional /. It's worth to try
    Hope this helps,
    Mark

  • Idoc hrmd_a  doesn't create infotype 0003 automatically

    Hello !
    When a new Person is created in One R3 system -
    we send It's infotypes to another R3 system
    with idoc hrmd_a.
    We send only these infotypes :
    0000,0001,0002,0006,0105,0041,0900.
    We expect infotype 0003 to be created automatically in the new system ,
    but it does not happen and for that reason
    The Person is not created fully in the target system.
    only 0000,0001,0002 are created and for each of the other infotypes we got a message like this :
    "You have tried to create infotype XXXX for the following object: plan version 01, object type P, object ID 00XXXXXX. However, the object does not exist.
    PA objects exist if infotypes 0000, 0001, 0002, and 0003  have been created. "
    How can we make 0003 infotype to be created automatically
    without sending it by the Idoc ?
    Is there a flag in the idoc declarations or
    a customization we can fill to make this happen ?
    Thanks ,
      Nitzan S.

    Hi Nitzan,
    I don't think there is any easy way to get 0003 infotype being created automatically on idoc input. At least I have none in Release 4.6 c.
    Why not send it? IMHO there is no sensitive data in it? Besides there are ways to manipulate that data when replicated via ALE.
    If you really need that infotype to be created, you could check EXIT_SAPLRHA0_003 of RHALE001 via transaction CMOD. There you can code your requirements in ALE-user-exit.
    Regards
    Herbert
    Message was edited by: Herbert B.

Maybe you are looking for

  • Ipod is recognized by itunes but it wont upload songs into ipod help!!!

    My ipod is recognized by my computer and the itunes sidebar but it doesnt upload songs that are in my library into the ipod itself. I've tried uninstalling the itunes program and reinstalling it but it doesnt work. i've also restored my ipod but that

  • When I manually add songs to iphone 4s many appear gray and won't play. How do I fix this?

    When I manually add songs to iphone 4s many appear gray and won't play. How do I fix this? I have the manually manage music button checked, and I can play them on itunes, but on my iphone they appear gray and won't play.  There doesn't seem to be any

  • HP Photosmart C4780 scanning

    Had a problem with computer yesterday caused by Norton apparently.  PC World uninstalled Norton, reinstalled and all OK. However my printer will now print and copy but not Scan?  Anyone any ideas?

  • BUT000-BPKIND history

    Hello I am looking for a database table which contains the history of changes of BUT000-BPKIND. Please help me. Thank you.

  • Connection to FullHD LCD through VGA

    I have connected my X200s to a Philips LCD TV before by VGA (TV resolution 1300something x whatever)  but I am wondering if Full HD would be too much (1920x1080px) and if the image quality will be good enough to make it worth buying. I have searched