cancel
Showing results for 
Search instead for 
Did you mean: 

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

Former Member
0 Kudos

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

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

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.

Former Member
0 Kudos

Hi Bert,

Please have a look to CGPL_PROJECT.

Matthias

Former Member
0 Kudos

Thx Matthias,

this table indeed gives me the phase details;

but, where can I found the link between the phases and the project?

Is it table CGPL_HIERARCHY? however how do make the distinction between the different project elements (phases, tasks,etc)?

..am a bit confused with the external number, GUI ID, CGPL ID...

rgds,

bert

Former Member
0 Kudos

Hi,

That's right, you can get the links in CGPL_HIERARCHY.

In CGPL_PROJECT, you can filter on object type to know which project element it is, for instance:

- DPT: project definition in teamplate,

- DPO: project definition in operational project

- PPT: phase in template

- PPO: phase in operartional project

- ...

Matthias