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.

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 enhance OM infotypes

    Hi experts can any one tell me how to enhance OM Infotypes. I mean to say what is the Tcode? i think it PPCI is it correct ? and what is the procedure to enhance the OM infotype? if possible explain with an example.
    Thanks in advance.
    vamsi.

    Hi,
    Tcode PPCM  is used to create OM infotypes.
    Give the infotype no. & create the CI include first & then All button.
    Hope this helps.
    Thanks,
    Sarika.

  • Enhance OM infotype

    Hi
    I want to enhance infotype 1050 with a note. Could anyone explain (just in short) how i could do that? I can imagine how to enhance with a single entry field - but in this case i want a note (like in 1002 or something like that).
    Is there an easy way to do this?
    Jakob

    Hi Jakob,
    1002 infotype is a table infotype which stores tabnr against every entry in 1002.
    the actual text is stored in hrt1002 where the tabnr is the key field and the seqnr is each line entered of 79 characters.
    I suggest not to follow the same approach in 1050, instead enhance the infotype to include a field which stores a unique no. generated by some custom number range. Then create a text id and element and store the text against it in the z program generated for the enhanced infotype using function modules read_text, save_text.
    If you still do not want to do this the best approach would be to add a subtype in 1002 infotype where the job evaluation results are stored, this will require no development.
    Regards,
    Divya

  • 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

  • Regarding Enhancing Standard Infotype

    Dear All,
    We have a requirement where in we need to enhance a Infotype which already got enhancement.
    I have added a new field in ci_xxxx include of that infotype through PM01. It alreay has a custom field called A and now I want to add Custom field B. But I do not see that field when I open this infotype using PB30. Please advice whether I need to regenerate this infotype or what I need to do so that existing development ( validations or checks) will not get effected and I should be able to see my field there.
    Thank you very much in advance.
    Waiting for your response.
    Best Regards,
    Amar

    Hello,
    You need to regenerate the Infotype for the new field to reflect in the Infotype screen.Add the custom changes again.
    Hope you have selected both radio button for generating the Infotype for applicant as well employee data.
    Alternate way is you need to add the new field to the Infotype screen manually .You can do this from SE51.From PM01 you can dierctly goto screen painter by chosing the Screen radiobuton.
    Once You have added the field to the screen ,you also need to make the declarations for the field in the module pool program.
    Regards,
    Malathi V

  • 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.

  • Enhance Standard Infotype 1005 in HR

    Dear All,
    Please suggest how to enhance standard infotype 1005 - Planned Compensation in HR.Transcation PM01 is not allowing to do so ...as no CI include is attached for the same.
    Please guide.
    Regards,
    Subhash

    hi,
      maybe you can achieve your requirement by creating a new custom OM infotype
    ( if the custom information are linked to the OM entity :  org unit, positions.. ) or a new PA infotype ( if the custom information are linked to the employee ) .
    Regards luigi
    Edited by: luigi la motta on Sep 2, 2011 11:46 AM

  • 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

  • Enhancing Attendances infotype

    hello Experts,
    We would like to add a text field to the Attendances infotype. When trying to ehance the infotype 2002 using PM01 transaction in Single screen, we receive the below error:
    Infotype 2002 can not be enhanced
    Message no. PG383
    Diagnosis
    Infotype 2002 cannot be enhanced because it is not intended to be so by the system.
    Individual standard infotypes are not intended for enhancement with the enhancement concept.
    Is there an alternate way of enhancing Time infotypes?
    Your help is highly appreciated.
    Thanks.

    Our requirement is simply to have an additional qualifying decription for the attendance info record.
    In addition to logging attendance hours, we would like our users to specify an additional description (text50) to further describe the attendance.
    You are right, I noticed that the structure PS2002 is set to, cannot be enhanced in the ehancement category, not sure why that is!?
    Hi ,
    Its SAP std , not to enhance certain infotypes as it would create issues while running quota generation(for time infotypes) .
    May you can try this option.
    1) Create a 9XXX infotype with the fields you want to capture.
    2) Call it immediately / or update in the background whenevr 2002 gets created/changed.(thro dynamic actions)
    3) Default info from 2002 like dates, sy-uname and other details required.
    4) Make sure the end user does not skip this step ,if its done frontend.
    Hope this helps.
    Rgds
    G

  • Enhancing PD Infotype

    Hi all,
    How to enhance the Table Infotype in PD (as I know to enhance Field Infotype through PPCM) and may I know is it possible to enhance Table Infotype. If possible, pls help in this regard.
    Regards,
    V Kumar

    Hi nachiappan mv,
        Thanks for the reply and there is no information in the material of how to enhance the standard table Infotype and tried with PPCI and it seems there is no CI Include for Table Infotype and may I know how can I enhance the standard Table Infotype. Pls help in this regard.
    @ pratyush v
    I tried in PPCI but there is no CI Include for Table Infotype and may I know how can I enhance the standard Table Infotype. Pls help in this regard.
    Regards,
    V Kumar

  • Enhancing an Infotype

    Hi ,
    I need to enhance a standard infotype(0743 - Discipline Infotype) .This Infotype has subscreens(tabs).I need to add fields in these subscreens(tabs) . Going through transaction PM01 and enhancing an infotype allows new fields to be added in the main screen ( the common area) , and not the individual tabs .Is there any way to add fields in the tabs of a Standard Infotype ?
    Thanks in advance .
    Regards,
    Sujata

    search this question in the HR forum, this has been answered before
    SAP ERP Human Capital Management (SAP ERP HCM)

  • 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.

  • 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.

Maybe you are looking for

  • Content not appearing after first time

    I could really do with some help on this one. I have a screen (State) in my application that displays some custom mxml components using a repeater. The first time I come to this screen, all the data appears correctly. However if I navigate away from

  • Html code in flash

    hi, i have the macromedia flash professional 8, and i'm building a web site in flash. Although i have some questions: 1- I want to put a counter, a mp3 player and a mailing list code that is in HTML code how can i do it? example of the code of the co

  • Copy within content area

    I am trying to copy a folder which contains sub-folders and files to the root level of a content area. I am doing so from within the navagator. I navigate to the folder I want to copy and click its copy link. I select the root level of the content ar

  • INTERMEDIA TEXT - INSO FILTER의 사용방법과 한글 설정

    제품 : ORACLE SERVER 작성날짜 : 2003-02-05 INTERMEDIA TEXT - INSO FILTER의 사용방법과 한글 설정 ==================================================== Purpose Intermedia text에서 INSO filter를 사용할 때 한글을 설정하여 이용하는 방법을 알아보자. Explanation INSO Filter 에는 자체적인 속성이 없기 때문에, 한글 환

  • Final Cut and Logic Studio

    I have a MacBook with: Processor-2.1 GHz Intel Core Duo Memory-1 GB 667 MHz DDR2 SDRAM Question: A) Can I run Final Cut Studio 2 and/or Logic Studio B) If not, will a timecapsule or mimi mac give me the power needed?