cancel
Showing results for 
Search instead for 
Did you mean: 

Functin Module

Former Member
0 Kudos

Hi All,

Is there any function module which gets list of qualification for a job or position??? Please revert its urgent.

Regards

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Priya,

Pls try BAPI_JOBREQUIRE_GETLIST.

Regards,

Dilek

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi ,

  • Get Qualification Details(Requirements) for position

CALL FUNCTION 'BAPI_JOBREQUIRE_GETLIST'

EXPORTING

plvar = '01'

otype = 'S'

sobid = l_sobid

from_date = sy-datum

to_date = sy-datum

IMPORTING

return = wa_return

TABLES

requirementprofile = it_quali_s.

IF wa_return-type EQ 'E'.

MOVE text-003 TO return_message.

ENDIF.

CLEAR: l_sobid,wa_return.

  • Get Qualification Details for pernr

CALL FUNCTION 'BAPI_QUALIFIC_GETLIST'

EXPORTING

plvar = '01'

otype = 'P'

sobid = l_sobid

from_date = sy-datum

to_date = sy-datum

IMPORTING

return = wa_return

TABLES

qualificationprofile = it_quali_p.

IF wa_return-type EQ 'E'.

MOVE text-002 TO return_message.

ENDIF.

CLEAR: l_sobid,wa_return.

l_sobid = position.

Former Member
0 Kudos

Hi Dilek & Anurag,

Thanx for the replies. Its very useful.

Points awarded.

Regards