cancel
Showing results for 
Search instead for 
Did you mean: 

time recording / time entry functionality in SRM 5.0

Former Member
0 Kudos

Hi Gurus,

Can any one knows about how to activate time recording in SRM 5.0.

Right now when i try to confirm services the time entry sheet functionality is inactive.

What all the setting that i need to maintain the time entry sheet active.

Thanks,

mahesh

Accepted Solutions (1)

Accepted Solutions (1)

richard_feco
Advisor
Advisor
0 Kudos

FuGroup: SAPLBBP_PDH_SEARCH

LBBP_PDH_SEARCHF16 (Form SCREEN_2000_MODIFY)

...

WHEN gc_fcode_button_create_time.

IF gs_application_info-search_object EQ c_po AND

gs_application_info-action_result EQ c_grse.

screen-input = 1.

ELSE.

screen-active = 0.

ENDIF.

So this works only if:

gs_application_info-search_obj = BUS2201

gs_application_info-action_res = BUS2203

So in case you try to enter time for non local PO the option for TIME_RECORDING is not active.

Hope this helps,

Richard

Former Member
0 Kudos

Hi Richard,

I am in extended classic scenario, so the po is created in SRM and copied to R/3.

Is it possible to activate the time entry functionality using the code in ECS also.

Thanks,

mahesh

Former Member
0 Kudos

Dear Mahesh,

How did you solved this problem, i have to activate the time sheet for Classic Scenario.

Regards,

Vivek

Answers (1)

Answers (1)

former_member583013
Active Contributor
0 Kudos

Hi,

you might also check this spot:

BBP_PDH_SEARCH_PO_FOR_CONF_INV

IF lt_po_list-object_type EQ c_b_po.

lt_po_list_search-time_create = gc_no.

ELSE.

lt_po_list_search-time_create = gc_yes.

ENDIF.

as soon as lt_po_list-object_type = BUS2012 (backend PO) this functionality will be deactivated.

BR

Michael