Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

use of TCJ04(Person in Responsible for Project) and TCJ05(Project ) TABLES

Former Member
0 Kudos

Hi Experts

TCJ04(Person in Responsible for Project) and

TCJ05(Project applica) TABLES

could any one tell me how these above two tables.

why we use two table , what we are maintaing .

Thanks

1 ACCEPTED SOLUTION

GauthamV
Active Contributor
0 Kudos

These tables are maintained for the below transactions.

CJ01 - Create Work Breakdown Structure

CJ06 - Create Project Definition

CJ11 - Create WBS Element.

2 REPLIES 2

GauthamV
Active Contributor
0 Kudos

These tables are maintained for the below transactions.

CJ01 - Create Work Breakdown Structure

CJ06 - Create Project Definition

CJ11 - Create WBS Element.

Former Member
0 Kudos

Hi,

These tables are related to SAP PS Module.

[http://www.sapfans.com/forums/viewtopic.php?f=13&t=269754]

Sample information


I have a report which gives information abt various employees like Project manager, Technical lead, contract manager and Acct manager. I have to find the cost centre for all these employess.

right now Im getting these employees from TCj04 table using verna ,comparing it with vernr and Proj table respective field. then iam using CRHD and CRCO table to get the cost centre but Im not getting any value .

sample code

SELECT SINGLE VERNA FROM TCJ04 "Tech Rep name from TCJ04
INTO (ETAB-X_GRPH) WHERE VERNR = PROJ-ZGRPHD.

SELECT * FROM CRHD WHERE OBJTY = 'A'
AND ARBPL = TCJ04-VERNR.
ENDSELECT.

SELECT SINGLE KOSTL FROM CRCO
INTO (ETAB-X_PM_COST)
WHERE OBJID = CRHD-OBJID 
AND OBJTY = CRHD-OBJTY.