HRMD_ABA, Infotype 0006

Hi,
I am trying to distribute HR organisational structure to a different system (ECC 5.0).
I have selected the HRMD_ABA infotypes 0000, 0001, 0002, 0006 (sub type 1) as filters in the distribution model.
I have seen that the employees assigned to one Organisation have the infotype 0006 maintained, so I selected that Organisation in transaction PFAL with evaluation path as O-S-P.
The Idocs are generated but they do not have the infotype 0006 assigned to them, due to which the Org structure is not replicated in ECC system though the IDocs are posted successfully.
Can anybody help me in this. This is urgent and any help from you would be highly appreciated and rewarded.
Warm regards,
Sidhu.

Ted,
I have access to read IT 0006, and I have created IDocs using the organisation containing this particular employee through PFAL transaction.
I have used the evaluation path as O-S-P, and have created IDocs, the Idocs was created. It had employees in this Idoc too, but it had segments IT000, 0001, 0002 populated but not IT0006.
I have used my used to view IT0006 and also to create IDocs(as versus to ALEUSER id).
Please suggest what else needs to be done.
Thank you in advance,
Sidhu.

Similar Messages

  • BAPI to update enhanced Infotype 0006

    Hi,
       I have enhanced the standard infotype 0006 to add a new field zzrelation. I wanto to update values for this field using a BAPI.
       Is there a standard BAPI which has extension tables, for updating this enhanced 0006 infotype. So that I can pass the value of the custom field through the extension tables.
    Thanks in advance

    Hi Mukul,
    Use HR_INFOTYPE_OPERATION FM. The example is for info type 2006, replace it with 0006, also fill the table p0006 properly else it will give problem. You may use HR_READ_INFOTYPE to fill p0006.
    DATA:          p2006              TYPE p2006,
             gs_return          TYPE bapireturn1.
                             MOVE-CORRESPONDING <ABWKONTI_PTO> TO p2006.
                             CALL FUNCTION 'HR_INFOTYPE_OPERATION'
                                 EXPORTING
                                      INFTY            = '2006'
                                      NUMBER           = pernr-pernr
                                      SUBTYPE          = '94'
                                    OBJECTID         =
                                    LOCKINDICATOR    =
                                      VALIDITYEND      = p2006-endda
                                      VALIDITYBEGIN    = p2006-begda
                                    RECORDNUMBER     =
                                      RECORD           = p2006
                                      OPERATION        = 'MOD'
                                    TCLAS            = 'A'
                                    DIALOG_MODE      = '0'
                                    NOCOMMIT         =
                                    VIEW_IDENTIFIER  =
                                    SECONDARY_RECORD =
                                 IMPORTING
                                      RETURN           = gs_return
                                    KEY              =
    Br/Manas

  • How to update infotype 0006

    Hello,
    I want to update infotype 0006.
    I tried the things in following way using 'HR_INFOTYPE_OPERATION' function.
    CALL FUNCTION 'HR_INFOTYPE_OPERATION'
        EXPORTING
          INFTY                       = '0006'
          NUMBER                   =  PERNR
          SUBTYPE                  =  '1'
          VALIDITYEND           = IT_PA0006-ENDDA
          VALIDITYBEGIN        = IT_PA0006-BEGDA
          RECORD                   = ls_p0006
          OPERATION              = 'CHANGE'
         TCLAS                      = 'A'
          nocommit      = ''
          dialog_mode   = '0'
        IMPORTING
          RETURN                   = RETURN.
    Function was executed successfully but there was no updation in the record.
    Thanks in advance.

    ****Data declaration
    Return Table for ENQUEUE - DEQUEUE messages
    DATA: zreturn TYPE bapireturn1,
          user TYPE sy-uname.
    DATA: wa_0001 TYPE p0001.
    ****Lock the pernr for editing
              CALL FUNCTION 'HR_EMPLOYEE_ENQUEUE'
                EXPORTING
                  number       = pernr
                IMPORTING
                  return       = zreturn
                  locking_user = user.
    CALL FUNCTION 'HR_INFOTYPE_OPERATION'
                  EXPORTING
                    infty                  = '9009'
                    number                 = wa_0001-pernr
                   validityend            = wa_0001-endda
                   validitybegin          = wa_0001-begda
                    record                 = wa_0001
                    operation              = 'MOD'                  "It can be 'INS' for insert or 'DEL' for delete
                 IMPORTING
                   return                 = zreturn
    *******Unlock the Pernr
                CALL FUNCTION 'HR_EMPLOYEE_DEQUEUE'
                  EXPORTING
                    number = pernr
                  IMPORTING
                    return = zreturn.
    Hope this will help you.
    Regards,
    Aniruddha

  • Change time constraint of Infotype 0006 subtype 1 and subtype 2

    Hi
    Can anyone tell me how to change the TC of infotype 0006 subtype 1 and subtype 2.
    Currently I tried to change the TC in table V_T582A but its giving me an error : "Text maintenance not permitted as infotype part of Data Sharing (T582G)  "
    Can anyone please advise.
    Currently the TC is T
    I want to change it to 2.

    hi ,
    you can use SE38 to create a report like :
    to change the time constraint for IT0006 +subty 1 + 2
    REPORT  ZTEST.
    tables: t591a.
    data: wt_tc type table of t591a.
    select * from t591a into table wt_tc where infty = '0006' AND
                                                 ( subty = '1' OR
                                                  subty = '2').
    if sy-subrc = 0.
    loop at wt_tc into t591a.
    t591a-zeitb = 'x'. "new TC that you need
    modify table t591a from t591a.
    endloop.
    endif.
    regards

  • Time constraint of Infotype 0006 subtype 1 and 2

    Hi All,
    Currently the TC of infotype 0006 subtype 1 is 1.
    I have changed it to 2, so that the gaps are there but no overlapping.
    However, when I go in SAP and create a new record, its delimiting the previous record. But if I click on change button, its overwriting the original record instead of delimiting it.
    Please advise what can be done regarding the same.

    So that means, whenever an employee updates his address from the front end, the create address standard BAPI should be fired to update the data in R/3.
    This will delimit the previous record, since I have maintained TC as 2 for subtype 1 and 2.
    Please correct me if I am wrong.

  • LSMW of infotype 0006 of PA30.

    Hi friends,
    Can anyone suggest me how to upload data through LSMW of infotype 0006 of PA30.
    i am new to abap, so can some one send me the whole procedureor send the whole code required for this.
    Thanxs and Regards.
    hitesh kumar

    make use of this FM
    HR_INFOTYPE_OPERATION
    and see its documentation.
    Regards
    Peram

  • Add ifnotype field to an Infotype Screen Control for Infotype 0006

    How do I add an infotype field to an Infotype Screen Control for Infotype 0006. We need to add an additional Field for mobile phones. I have lloked in screen control (V_T588M) with no joy.
    Edited by: Henry Manana on Sep 1, 2010 12:11 PM
    Edited by: Henry Manana on Sep 1, 2010 12:12 PM

    You may copy your current screen into a new screen (e.g. 2099) for MP000600 and add the 2 fields into the element list as well as the screen layout of screen 2099. Then set an appropriate Modification Group 3 to these 2 fields in T588M detail screen for screen 2099. Configure feature P0006 and table T588M to set screen 2099 for molga 16.

  • Infotype 0006

    HI All,
    A) I need to create new entries to infotype 0006 ( address Data) .
    What would be a better approach
    1)  BADI
    2) Use FM
    3) Is there some other  way??
    B) Also if there exists a record I need to modify few fields
    How to do this ?

    Hi,
    To change data in an infotype as part of a custom development I would recommend using FM HR_INFOTYPE_OPERATION. It will handle modification or delimiting a current record and creating a new one (depending on the time constraint configured for the infotype and sub type combo)
    BADI would be for adding logic to perform another task during the save / display of the data (as would the user exits)
    PA30 is for maintaining the data as a user
    PM01 would be used to customise the infotype
    Cheers
    Phil

  • PA30 - Infotype 0006 (Region field)

    Hi:
    Recently we applied couple of service packs in our system as we were behind on the packs. After that, we noticed that for country India, region/state field is required in infotype 0006 (for country India). It was optional before. I am trying to find out where we can change this field to optional as we have interface maintaining the HR master which does not bring the region field for india. Any suggestions on how to make it optional?
    Thanks.
    Rahul

    Did you try "Change Screen Modifications" in the IMG?
    Change View "infotype Screen Control": Overview
    Table is T588M.
    Check module pool MP000600 and feature P0006.
    Be sure to test that new functionality has not been introduced that requires the region.
    Hope that helps with your particular issue.
    Thanks, Chantel

  • Enhancement in infotype 0006

    Hello,
    How to add custom address fields (Building and Apt No) to Infotype 0006. Could you give me the approach and sequence steps to accomplish this task.
    Regards
    RM

    Hi Ratnakar,
    To create custom fields in standard infotype 0006,
    Go to PM01 T-code.
    Go to enhance infotype tab.
    Enter your infotype number 0006 and choose "ALL" on the right of infotype's input box,instead of "CREATE" at bottom.
    This will lead you to the CI include structure creation.
    Here enter the fields that you want to add to your infotype and save and activate it.
    Chhosing "ALL" instead of "CREATE" all the components one by one will reduce the complexity and labour of your work.
    Chhosing "ALL" creates all the modules of the Module Pool program itself and appends the CI include in the table PA0006 itself.
    Thats It!!
    Regards,
    Tejas.

  • Cannot lock the infotype 0006.

    Dear All,
            I have to lock the employee infotype 0006.When I do so,I get error message as "Lock/key change not permitted(time constraint 1).
            It seems there should be a transaction or table where time constraint can be changed or should have some other solution.
            Please let me on the solution for which I will be grateful.
    With thanks and regards,
    S.Suresh

    Sikinder I belive you can't controll autharizations at the screen level.
    Even basis people can't do it they can controll it at screen level. They can do it at Tcod level
    Hi Suresh
    But they shld not worry about the changes in SAP becuase every body having user and changes will be tracked by user ID always
    But i will give some alternative idea it may be useful for you
    Create a dynamic action on IT0006 which throw a mail to the administrator. Based on that administration will get notice that and tract it
    Best Regards

  • Recruitment - Infotype 0006 Address

    Dear All,
    In the PB30 When creating Infotype 0006 Address Subtype 03 Home Address system is taking default values of permanent Address subtype 01. This is happening only with subtype 03 that too in QAS & PRD.
    Can any one tell what could be the reason.
    Thanks,
    Ravi

    Please check the dynamic action configuration.  (T588Z).  Also perform table comparision with other systems in the landscape,
    If you do not want the defaults, you can deactivate the table entries by putting *.  Also please check whether there is any user exit development.
    Hope this helps
    Sunil

  • Infotype 0006 dynamic actions

    Hi Experts,
    0006>0207>210
    We need everytime begda of 0006 to all other infotypes.
    Plz let me know what i need to insert the records in  V_T588z .
    Regards,
    Lava.

    Hi Prashanth,
    Could you please send me the T588z table entries, in the order which you created.  I think there might be some mistake in that.
    Venu

  • Getting the data for the infotype 0006 and Subtype 4 in HR ABAP

    Hi All,
       I need to get the data from the info type 0006 and the subtype 4 , only i need to fetch the data in communications . Could you any one tell me best way to fetch that data.
    Thanks,
    SAP SAR.

    Write a select single on PA0006 for the given pernr begin and end dates and for subtype 4 ...
    select single * from PA0006
               where pernr = p_pernr
               and SUBTY = '0004'
               and ENDDA >= s_date-low
               and BEGDA <= s_date-high.

  • FM to Update infotype-0006 without ZIP Code

    Hi All,
    I am trying to create new entry in info type - 0006 (address) without using state and zip code.. I have tried with FM 'HR_INFOTYPE_OPERATION' . Using this I am able to save address without state but it is still giving zip code error is mandatory.. Even though I can create entry with out using state and zip using PA30..
    Please assist..
    -Rajesh

    Hi Ronaldo,
    Looking to this FM it is calling FM - 'HR_MAINTAIN_MASTERDATA' which in turn calling BDC..
    I was able to create record without state but not able to by pass state code validation.
    I am performing this action from external application so looking for FM or options by which I dont need to go for enhancement..
    -Rajesh

Maybe you are looking for

  • Logic won't quit/close/save on 10.6.8

    Hi, I hope you can help. I have recently upgraded osx from 10.6 to 10.6.8 and logic doesnt work properly now. I cant save a project, close,quit or export key commands or anything.. sometimes it crashes but other times it just blinks so i have to cmd

  • DVI-D - HDMI switcher - DVI-D

    Hey friends, I've got a fairly convoluted and confusing HDMI situation. As DVI matrix switchers are so expensive, I decided to get a HDMI switcher and HDMI to DVI cables. I have two Mac Pro towers, each with two DVI outputs, and two 24" Cinema HD dis

  • Can you convert a PDF to Word in Arabic?

    Hello, Can you convert a pdf to word in Arabic? When I want to convert a file, adobe does not offer me Arabic. Can you help me please? Thank's

  • How to include apostrophe in group description?

    How can I include an apostrophe or single quote in a Portal group's description? I tried using 2 single quotes and / to no avail. When I have an apostrophe in the group description, it displays as an upside down question mark (¿). For example, settin

  • How do I cancel a subscription?

    How do I cancel a subscription to an app I bought , Jillian Michaels? I get emails?