Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

BDC for T-Code PA30 Infotype 0008(Basic Pay)

ak_upadhyay
Contributor
0 Likes
1,020

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

6 REPLIES 6
Read only

Former Member
0 Likes
800

Hi,

make use of Fm HR_INFOTYPE_OPERATION and see the documentation

Regards

Kiran Sure

Read only

Former Member
0 Likes
800

hi,

how to upload the basic pay details(hr abap) infty 0008 could u explain it pls with example

Read only

GauthamV
Active Contributor
0 Likes
800

Hi,

u can do this very easily using lsmw.

try to use it.

Read only

Former Member
0 Likes
800

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

Read only

Former Member
0 Likes
800

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

Read only

Former Member
0 Likes
800

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.