Infotype for Dependents data

Hi Experts,
We need to store additional data of Dependents in an infotype other than 0021.
Please let me know if there is any international infotype where we can store dependents data.
We don't want to add custom fields to the standard infotype 0021.
Thanks in advance,
S M

Thanks Sikindar  & Carlos.
I have check T582L before posting the query but didn't find anything out there.
We don't want to enhance IT0021 with new fields.
I am looking for something like IT0106 for US but need the same for International.
Please let me know if you have any idea
Thanks for your suggestions,
S M

Similar Messages

  • Change Time Constraint for Personal Data InfoType

    Hi,
    How to change the Time Constraint for Personal Data InfoType.
    I tried to do it in Customisation Procedure --> Infotypes, but the option to change Time Constraint is disabled for Infotype 0002.
    Thanks

    Hi,
    you can change time constraints in general attributes of infotype attributes,this can be done through table maintenace view V_T582A.
    But note that we cannot change the time contraints for mandatory infotyepe of personnel in an organization i.e -0000,0001,0002.
    ex:- without personal details like names no personnel will exist in an organization.
    regards,
    Soori

  • Any BAPI for Infotype 0015(Additional Data)

    Hi,
    Can anyone provide information on BAPI for Infotypes 0015(Additional Data).
    Your help will be appreciated !!!
    Vijayanand.

    To upload data into infotype 0015
    Use HR_INFOTYPE_OPERATION to create your a wrapper BAPI. You would also have to use BAPI_EMPLOYEE_ENQUEUE and BAPI_EMPLOYEE_DEQUEUE for locking and unlocking of the record in your BAPI or program.
    Enqueue personnel number
    call function 'BAPI_EMPLOYEE_ENQUEUE'
    create 0015
    call function 'HR_INFOTYPE_OPERATION'
    Use FM :  HR_MAINTAIN_MASTERDATA to update IT 0015
    check bapi : BAPI_HRMASTER_SAVE_REPL_MULT
    Dequeue personnel number
    call function 'BAPI_EMPLOYEE_DEQUEUE'
    You could also use LSMW Tool to upload the data.
    Regards
    Vasu

  • Country specific infotypes for brazil and argentina

    Dear All,
    We are going for implementation of our client for brazil and argentina........can any body guide with country specific infotypes for the same

    Hi,
    Brazil:
    Infotype 0398: Agreement Components: Further Information
    Infotype 0397: Information about Dependents
    Infotype 0410: Transportation Allowance
    Infotype 0437: Simultaneous Jobs
    Infotype 0661: Employment Contract Termination
    Infotype 0598: Dismissal Protection
    Infotype 0185: Personal IDs
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/0f/1605350928385ee10000009b38f844/frameset.htm
    Argentina:
    Family Data Infotype: Special Schooling Assistance
    Termination of Contract Infotype (0551)
    Infotype Social Insurance (0392)
    Income Tax Infotype (0389)
    Income Tax: Deductions Infotype (0390)
    Income Tax: Other Employer Infotype (0391)
    Infotype Life Events for My Simplification (0875)
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/ee/28fd346f0f4661e10000009b38f844/frameset.htm
    Cheers

  • Upload Photo for Dependents

    Hi Experts,
    How to upload Family Member/Dependents Photo in Infotype 21.
    I done with the Employee Photo Upload(with Mass Upload).
    But Unable to do for Dependents.
    Please Advice.

    dear Arasu after u configure the setting using the above steps given by
      Re: Upload Photo for Dependents
        Avik Sinha Roy
    then try to write the code below.It works for me even in back ground.(try to change the given directory only)
    here is the code to upload photos of employee into sap infotype 0002 .
    and am glad if some one helps me to upload into family members info type 0021!!!!!!!!!!
    *& Report  YPHOTO_UP
    REPORT  YPHOTO_UP.
    *DATA: BEGIN OF FILETAB OCCURS 1.
    *        INCLUDE STRUCTURE SALFLDIR.
    *DATA: END OF FILETAB.
    data: filetab like table of SALFLDIR with header line.
    DATA: SAPOBJID LIKE SAPB-SAPOBJID,
           SAPPFAD LIKE SAPB-SAPPFAD.
    DATA: FILENAME LIKE  SALFLDIR ,
           FILEEXT(10) TYPE C ,
           LEN TYPE I ,
           PICFILENAME TYPE STRING.
    DATA: FILEPATH LIKE SALFILE-LONGNAME VALUE 'd:\abaptest\yuri123\'.
    DATA WA type zerror1.
    *DATA: FILEPATH1 LIKE SALFILE-LONGNAME VALUE 'd:\abaptest\yuri\'.
    CALL FUNCTION 'RZL_READ_DIR_LOCAL'
       EXPORTING
         NAME           = FILEPATH
       TABLES
         FILE_TBL       = FILETAB[]
       EXCEPTIONS
         ARGUMENT_ERROR = 1
         NOT_FOUND      = 2
         OTHERS         = 3.
    loop at filetab.
         if filetab-name+0(1) ne '.'.
         SPLIT FILETAB-NAME AT '.' INTO FILENAME FILEEXT.
           LEN = STRLEN( FILENAME ) .
           IF LEN <> 8 AND FILEEXT EQ 'jpg' and FILEEXT ne 'db'.
    *        or FILEEXT EQ 'jpg'.
    *      MESSAGE :  e000(oo) WITH 'Employee id is not correct'.
    *        WRITE : / 'Upload fail','Employee id ',FILETAB-NAME+0(8),'is not valid'.
    *      ELSE.
             WA-error_id = filetab-name.
             WA-error_msg = 'is not valid Employee Id'.
             wa-error_date = SY-DATLO.
             wa-error_time = SY-UZEIT .
    modify zerror1 from wa.
    *INSERT INTO zerror1 VALUES wa.
    else.
             CONCATENATE FILEPATH '\' FILETAB-NAME INTO SAPPFAD.
             CONCATENATE FILETAB-NAME+0(8) '0002' INTO SAPOBJID.
       CALL FUNCTION 'ARCHIV_CREATE_FILE'
         EXPORTING
           AR_OBJECT               = 'HRICOLFOTO'
           OBJECT_ID               = SAPOBJID
           SAP_OBJECT              = 'PREL'
           DOC_TYPE                = 'JPG'
           PATH                    = SAPPFAD
         EXCEPTIONS
           ERROR_CONECTIONTABLE    = 1
           ERROR_PARAMETER         = 2
           ERROR_ARCHIV            = 3
           ERROR_UPLOAD            = 4
           ERROR_KERNEL            = 5
           NO_ENTRY_POSSIBLE       = 6
           ERROR_COMUNICATIONTABLE = 7
           OTHERS                  = 8.
       IF SY-SUBRC <> 0.
         MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                 WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    *    WRITE : / 'Upload ',SAPPFAD,'Employee id ',FILETAB-NAME+0(8),'Successfully'.
       ELSE.
    *    WRITE : / 'Upload ',SAPPFAD,'Employee id ',FILETAB-NAME+0(8),'Successfully'.
       ENDIF.
       ENDIF.
    *ENDLOOP.
    *          DO WHAT EVER YOU WANT HERE
       ENDIF.
       ENDLOOP.
    best regards,
    HaHu

  • Issue in confirmation links for personal data ESS application (CA)

    Hi All,
    We have implemented EXIT button configuration for ESS applications and the Exit button along with 'Go to Home page' link is navigating to custom created page in portal.
    The configuration done earlier for ESS applications like Address Update, Family Member/Dependents works fine.
    We got a new service added (Personal data) & tried configuring the Exit button for this application also.
    Some how the exit button doesnt seem working for Canada besides it working for US.
    Please help in figuring out if there is any cause of the Exit button not working for personal data application for molga 07 specially. Adding to it, the links for confirmation screen are also not working for the same application
    Appreciate your help.
    Thanks

    Hi,
    As per your Req.....
    Its seems to be the Services exits that are county specific Services .........mease the Molga ( country  Code )  is set for this services is "US"
    That Y its working fine .....
    But as per your REq you want this Services working  for the Molga 07 ...
    I thikn for this you need to set the Molga 07 in the contry specific home pages......
    Then it will work fine

  • Infotype 0082 - variable data

    Hi,
    In the user exit ZXPADU02 I put some logic for infotype 0082 (variable data)
    The  variable data screen have table control with few fields.
    When I issue an error message the table control is close for input and I can't change any fields.
    Any clue why and how to avoid this situation.
    E.g.
    When other screens are running and message type E is issue the fields are open for change
    Thanks in advance
    Itzik

    Thanks Sikindar  & Carlos.
    I have check T582L before posting the query but didn't find anything out there.
    We don't want to enhance IT0021 with new fields.
    I am looking for something like IT0106 for US but need the same for International.
    Please let me know if you have any idea
    Thanks for your suggestions,
    S M

  • Not able to select/display dependents data in IT0167

    Hi,
    We would like to use the dependents tab in IT0167 to display the dependents data from IT0021. I have configured the max/min number of dependents in IMG as well as the below. However, there is still no dependents displayed for selection in the IT0167. There are valid dependent records in IT0021 for Spouse and Child.
    Benefits
    Flexible Administration
    Dependent/Beneficiary Eligibility
    -Define Family Member Groupings
    - Define Dependent Eligibility Rule Variants
    - Define Dependent Eligibility Rules
    - Assign Eligibility Rule Variant to Plan
    After configuring the above, when I go to IT0167 dependents tab, there is information message pop up "At least 1 person of type Spouse are required for dependent coverage 1-Empl & 1 Depend". However, there is no dependent records in the screen for selection. There is a new "Person" button to create new IT0021 records, but after trying to create there it is also not bringing up any data in the dependents tab in IT0167. Please advise. Thanks.

    Hi Sarah,
    I have click on error list, the error is " No entry found in the adjustment authorization table"
    can you suggestion what is missing and how to resolved  this error.
    please check the screen shot
    As you you send the screen what excellently i am looking.
    I hope this error resolved than i will able to check the family members details.
    Many Many thanks
    Urvashi

  • Expense reports are not processing for future date?

    hi folks,
    in our co.expense reports are not processing for future date, even though the end date is one month from now the expense reports are not getting paid.
    can anybody assist me to come out of this issue.
    thanks in advance,
    regards
    bhanu

    HI,
               Could you please share how to go  Debug mode in Dymanic program, I have scenarion in SAP HR , when Employee is hire , during the hiring action Infotype 32 is updating based on following conditions
    ********INSERT IT0032 FOR CANDIDATE ID *************
    P0001-PERSG<>'5' - True
    P0000-MASSN='01'/X
    P0000-MASSN='H1'/X
    P0000-MASSN<>'84'/X
    P0000-MASSN<>'86'/X
    P0000-MASSN<>'99'/X
    GET_PNALT(ZHR_CREATEP0032)
    RP50D-FIELDS <> ''
    INS,0032,,,(P0000-BEGDA),(P0000-ENDDA)/D
    P0032-PNALT=RP50D-FIELD1
    P0032-ZZ_COMPID='05' _ True
                  Infotype record is being created but there is no data in "RP50D-FIELD1 , so i tried to debug the  subroutine GET_PNALT(ZHR_CREATEP0032) as mention in Dynamic action, its not going in debugger mode.
    Do you have any Idea about how to debug the  program.  used in dynamic action
    Regards,
    Madhu

  • Is there any retro effect for this changes we made in 2001 Infotype for

    HI Experts...
    Please advice me on the follwing absence issue.
    In my clients company.... .... one of Personnel areas employees Earned leave records are not updating in 2001 Infotype from the begining.
    Now they wish to have to update in 2001 Infotype.
    What  are the  Retro effects after updating the EL s in 2001 IT for previous dates.
    Is there any retro effect for this changes we made in 2001 Infotype for the past dates.
    We dont need retro effected from those changes.
    Please advice...
    Sai.

    HI Vincent....
    Thanks for the reply.
    Last month professional tax rates were shown up correctly only.
    For the employees slab rates are similar  that is  200 per month.
    Last month professional  tax rates  were correct only.
    For the current month also the prof tax amount is showing up correctly only.
    Please advice to get the professional tax amount in the payslip.
    Regards,
    V Sai.

  • Create an infotype for Training and Events

    Hello SAP HCM Community,
    Does anyone have a step-by-step procedure on how to create an infotype for Training and Events (specifically for External Persons - H)?
    I also need to find out how do I edit an existing Training and Events or PD infotype, i.e. to add fields or remove them?
    Kind regards
    Dorianne

    Hi Dilek,
    Firstly before I give you the example please advise if IT1690 is a SAP standard infotype?
    Example:
    When creating a Business Event (E) via transaction PSV2, PV10 or PV11 I want certain rules to be in place when the user selects the following:
    When selecting an option under 'Location' for example "Internal", the user will then go to "Organizer Data". Under "Organizer Data" there will be a drop down list of A, B or C. For "Internal" Location the user should only pick option B, so if they select any of the other options and attempt to save the transaction will be stopped with an error with a message, i.e. " Incorrect Organiser Data Captured for Internal".
    I look forward to your response.
    Kind regards
    Dorianne

  • Problem while creation custom Infotype for HRP (Organization mgmt)

    Hiii...
    Newbie to HR-ABAP...
    I have successfully created a custom infotype for HRP (Organization mgmt)....how can i see the infotype in t-code PP01.
    Thanks
    A

    Hi
    Perhaps MM11/12 can't update your custom field because you have use a data element where the flag Document change isn't setted.
    Max

  • Requirements for master data template

    HI,
    Please let me know the basic requirements for master data template. What all the infotype to be involved in collecting master data template.
    Thanks and regards,
    Aylwin

    Hi Alwyn,
    If you dealing with india payroll definately Yes subject to you business process again.
    Even though it is indian payroll some item may not applicable
    For exmple other income resourece will be  if you go to manufaturing industries you may face problem even though they got some they don't want reveal it to the employee.
    in such that infotype is not required as per your business process.
    Some states like UP there is no profession tax. Genrally we say profession tax need to be configure you need that master data.
    If such case that might be wrong for that you need to give all the info
    use PA30 t code go in side check what are the mandatory fields and take them as master data fields and put it in template.
    If your client is able to give other field you can very well add them no harm in it.
    But make sure you filled mandatory fields
    That is the reason i was asking you to tell which coutry payroll you using
    Best Regards

  • Infotype 0032 - Internal Data extend field length

    Dear All,
    We have a requirement to store employee's office location in SAP infotype through inbound interface from Active Directory. It seems infotype 0032 - Internal data is design to store such information under Work Center fields - Building number (6 char length), Room number (6 char length) & Telephone number but these fields are too small, Can I make these fields long? How? Some of EE's location is very long, so I am looking at around 30 Char so it does not chop-off the office location. Same with Phone number too, should be able to store international numbers with country codes e.g. 61-3- 7890-1234.
    Please guide. Thank you.

    Thank you for your reply.
    Looking into above related threads, I am confused about the ways it could be done. It is obvious SAP has delivered above fields so small and it is necessary for us to make it longer. what is the right way - modify these standard fields (w/ getting access key to change) or create custom fields with same label description - Building number, Room number, Tel. number; which sounds redundant.
    And if suggested creating custom fields to standard infotype then how to achieve thru PM01 or shown in above link - Append structure and ETC. I am a functional analyst not techincal person.

  • Bapi for updating data

    I am using a bapi for getting data into infotype BAPI_EMPLOYEE_GETDATA.
    Is there any BAPI for updating data ?
    regards
    Balaji

    these links might be useful...
    http://help.sap.com/saphelp_nw70/helpdata/EN/44/b78765378b56a5e10000000a1553f6/content.htm

Maybe you are looking for

  • HP Laserjet 4 M plus

    I have the laserjet 4m plus plugged into the time capsule via a CAT5 cord and it worked fine in 10.5. Now I do not see the printer when I go to set it up. Does anyone know how to retrieve the IP address from the printer? Also which driver should I us

  • Deskjet 3050 no longer printing wireless or wired

    I have an HP Envy widows 8. and deskjet 3050 J610a and it no longer prints.  I keep getting an error message :"Unable to Communicate with Printer".  it worked just great a couple days ago and nothing has changed since then other than it stopped print

  • Drawing collumn line

    Hi can anyone let me know how to draw a collumn/vertical line in report display

  • OS X Autocorrect in Google Chrome

    Is there a way to enable the native OS X autocorrect so that it works in Chrome? It work excellently in Safari but for work purposes I have to use Chrome :/ Thanks for any help!! Skyler

  • Does Apple have any future plans to add the 8x DL SuperDrive to the 15.4"?

    Just as the thread reads: Does Apple have any future plans to add the 8x SuperDrive (DVD+R DL/DVD±RW/CD-RW) to the 15.4" MacBook Pro? I'm very interested in this unit for college, but I need to have DL burning capabilities. Thanks! Randy   Mac OS X (