‎2008 Jun 11 7:20 AM
Hi All,
M working on BDC for HR Transaction PA30 for Infotype 0008(Basic pay).
Problem is it is not entering the Amount for wage type from excel file.
Anyone having BDC for PA30 for Infotype 0008(Basic Pay).
It's urgent.
Thanks in Advance.
AK
‎2008 Jun 11 7:26 AM
Hi,
make use of Fm HR_INFOTYPE_OPERATION and see the documentation
Regards
Kiran Sure
‎2008 Jun 28 7:10 AM
hi,
how to upload the basic pay details(hr abap) infty 0008 could u explain it pls with example
‎2008 Jun 28 7:14 AM
‎2008 Jun 28 7:16 AM
Hi AG,
Just check the format of cell containing the amount in excel file...
try to change the format to text and then try to upload the data... i think that would solve it.... if not please do reply
regards
padma
‎2008 Jun 28 7:20 AM
Hi AK,
There are many posts in SDN for this issue.
Anyway, check ther following links. I hope these links could help you.
http://www.saptechnical.com/Tutorials/HRABAP/PA30/Config1.htm
https://forums.sdn.sap.com/click.jspa?searchID=12950397&messageID=4648961
https://forums.sdn.sap.com/click.jspa?searchID=12950397&messageID=2756267
If these are helpful, reward points and close the thread.
Regards,
Chandra Sekhar
‎2008 Jun 28 11:33 AM
hi bdc is not good enough for the infotypes because some times infotypes are conntry dependent then the screens will be different for different countries for the same tcode and for same infotype . so it is better to use the
hr_infotype_operation...
like this..
CALL FUNCTION 'HR_INFOTYPE_OPERATION'
EXPORTING
INFTY = '0008
NUMBER = PERNR
SUBTYPE = AWART
VALIDITYEND = BEGDA
VALIDITYBEGIN = BEGDA
RECORD = P0008
OPERATION = 'MOD
NOCOMMIT = ''
TCLAS = 'A'
IMPORTING
RETURN = RETURN
KEY = PERSONALDATAKEY
EXCEPTIONS
OTHERS = 0.