cancel
Showing results for 
Search instead for 
Did you mean: 

Vacant role search for projects

Former Member
0 Kudos

Hi All,

I want some information regarding the Vacant role search. We have to create a report where in when the Project lead search for vacant role , the search option should show only the roles of the resources assigned to the respective project lead, where as in our case the search will display all the resources available .

In which transaction can we check the resources and roles allocated to the particular manager.

In which table is these data stored.

I have checked the PPOM transaction in which it gives information about the reporting structure is there any other transaction which shows the roles.

Regards,

GVK

Accepted Solutions (0)

Answers (1)

Answers (1)

judith_gabriel
Contributor
0 Kudos

Dear GVK,

the selection of vacant roles is started in webdynpro DPR_VACANT_ROLES , VI_RESULT, HANDLEIN_SHOW_ALV.

Then the following coding is relevant:

CL_DPR_UI_LOG_VACANT_ROLES

GENERATE_RESULT_LIST

CALL METHOD lr_proj_retrieval->get_vacant_participants

    EXPORTING

      iv_projectrole  = iv_role_type

      iv_projecttype  = iv_project_type

      iv_beg_date     = iv_begin_date

      iv_end_date     = iv_finish_date

      iv_location     = iv_location

      iv_area         = iv_area

      iv_function     = iv_function

    IMPORTING

      et_participants = lt_search_results.

The selection itself is done from table DPR_PART at:

CL_PRP_PROJECT_RETRIEVAL

GET_VACANT_PARTICIPANTS

   

You can try to implement your own logic here.

Best regards,

Judith