cancel
Showing results for 
Search instead for 
Did you mean: 

Replication of scheduled date (of phase or task) into assigned WBS-element

jochen_koch
Member
0 Kudos

Hi Experts,

One of my customers raised the following question:

Is there a possibility to transfer/replicate the scheduled dates of a phase or task into the assigned WBS-element of the financial integration scenario (PS)??

I know, this is not included in SAP standard functionality... but maybe there is a possibilty with a BADI etc.

Thanks for any hints, comments etc.

Best regards,

Jochen

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member201206
Active Contributor
0 Kudos

Hi Jochen,

the scheduled dates can neve be tranferred, because they are determined during scheduling. What may be possible is to set or map the scheduled date sto the basic dates of WBS. Ther is no standard Badi to extend it. The communication between cProject -> PS is done via Bapi calls.

GCC_PS_PROJECT_MANAGER:

...

CALL FUNCTION 'BAPI_BUS2001_CREATE'

EXPORTING

I_PROJECT_DEFINITION = LS_PROJECT_DEFINITION

TABLES

ET_RETURN = LT_PRO_DEF_RETURN

  • EXTENSIONIN =

  • EXTENSIONOUT =

EXCEPTIONS

error_message = 1 "t9

others = 2. "t9

...

...

CALL FUNCTION 'BAPI_BUS2054_CREATE_MULTI'

EXPORTING

I_PROJECT_DEFINITION = gv_project_definition

TABLES

IT_WBS_ELEMENT = LT_WBS_ELEMENT

ET_RETURN = LT_RETURN

  • EXTENSIONIN =

  • EXTENSIONOUT =

EXCEPTIONS

error_message = 1 "t9

others = 2. "t9

Kind regards,

Zhenbo