List Of All Info Types Maintained For Employee

Is there any way by which I can know all infotypes which are maintained in my environment. Also, among all maintained infotypes, for any particular employee which infotypes has been maintained. I don't want to go to PA20 and check all infotypes. What I wanted, whether there any table/tcode which provide the information for infotypes.

Solution:

Make use of the standard report RPLINFC0

T-code: PC00_M02_LINF0

List Of All Info Types Maintained For Employee

Notes for Abaper:

There are a few function modules associated with Infotype.

HR_GET_LEAVE_DATA

HR_INFOTYPE_OPERATION

HR_READ_INFOTYPE

RP_LAST_DAY_OF_MONTHS

An example:

Use this FM 'HR_INFOTYPE_OPERATION'

Example:

EXPORTING

infty = '0169'

subty = 'RRSP'

number = p_pernr

record = l_p0169

validitybegin = '20121001'

validityend = '99991231'

operation = 'INS'

dialog_mode = '0' "Use default

nocommit = '1' "Use default

IMPORTING

return = l_bapireturn

key = bapipakey_tab.

IF l_bapireturn-id NE space.

WRITE: / p_pernr,

20 'Create was unsuccessful',

l_bapireturn-id,

l_bapireturn-message+0(40).

ELSE.

WRITE: / p_pernr,

20 'Create was successful',

l_bapireturn-id,

l_bapireturn-message+0(40).

ENDIF.

*--- End of example ---

SAP HR Tips

Also See
Reports For Training and Event Management

SAP Human Resouce Books
SAP HR Books - Certification, Interview Questions and Configuration

SAP Human Resource Tips
SAP HR Tips and Human Resource Management

Main Index
SAP ERP Modules, Basis, ABAP and Other IMG Stuff

All the site contents are Copyright © www.erpgreat.com and the content authors. All rights reserved.
All product names are trademarks of their respective companies.  The site www.erpgreat.com is in no way affiliated with SAP AG. 
Every effort is made to ensure the content integrity.  Information used on this site is at your own risk. 
 The content on this site may not be reproduced or redistributed without the express written permission of 
www.erpgreat.com or the content authors.