cancel
Showing results for 
Search instead for 
Did you mean: 

Phase Details in cProject

Former Member
0 Kudos

Hello,

I want to read the Phase Details of a Particular Project in cProjects.

Which Tables are there for the relationship between Phase and Projects?

Accepted Solutions (1)

Accepted Solutions (1)

bjoern_panter
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hi,

I guess this will be done with CGPL engine.

Please check out the CGPL_HIER table

check out class CL_DPR_PROJECT_O

method GET_ACTIVE_PHASE

where you can find the common method

DATA:                                            
    LR_PHASE   TYPE REF TO CL_DPR_PHASE,           
    LR_PHASE_O TYPE REF TO CL_DPR_PHASE_O,         
    LT_PHASES  TYPE DPR_TT_ORDERED_PHASES,         
  CLEAR: RR_ACTIVE_PHASE.                          
*/Get all phases and return the active one         
  LT_PHASES = MR_PHASES->GET_ALL_ORDERED( ).       
  DESCRIBE TABLE LT_PHASES LINES LV_TFILL.         

Former Member
0 Kudos

Hi,

I want the Released on date and Completion date of a particular phase.

How can I get it?

bjoern_panter
Product and Topic Expert
Product and Topic Expert
0 Kudos

Der exists a BADI to acces the Phase data, but you can also check out the table DPR_PHASE.

First of all you have to find the depending phases of a

project.

With the BADIs you should find all possibilities.

Answers (0)