cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

SAP table cProjects -> earliest scheduled start and finish date PHASE

Former Member
0 Likes
403

Dear,

Could somebody please tell me in which table I can find the earliest scheduled start and finish dates for the PHASE of cProjects?

thanks!!!!

grtz,

b

View Entire Topic
Former Member
0 Likes

Bert,

You can get all these values using SAP given classes. The process is as following.

1. Get the instance of class CL_DPR_APPL_OBJECT_MANAGER using static method GET_INSTANCE.

2. Use method LOAD_PHASES of CL_DPR_APPL_OBJECT_MANAGER instance to load the phase by its GUID.

3. The method will return an internal table ET_PHASES ( table type DPR_TT_GUID_PHASES). The row of this internal table will give you hold on Phase object ( *CLDPR_PHASE_*).

4. Use method GET_DATA_EXT to get all scheduling related information.

I hope this will help.