Difference between revisions of "How Projects Work"

From ADempiere
Jump to: navigation, search
This Wiki is read-only for reference purposes to avoid broken links.
m
Line 2: Line 2:
 
In implementing, developing or just understanding ADempiere there are always three sides of the story: the ''application'' (client's GUI), the ''database'' (tables and stuff) and the ''source code'' (all the Java files, etc.).
 
In implementing, developing or just understanding ADempiere there are always three sides of the story: the ''application'' (client's GUI), the ''database'' (tables and stuff) and the ''source code'' (all the Java files, etc.).
  
== Project Management through ADempiere ==
+
== Project Management in ADempiere ==
 
[[Image:Projects_in_Menu.png|200px|thumb|'''Project Management''''s node in functional menu]]
 
[[Image:Projects_in_Menu.png|200px|thumb|'''Project Management''''s node in functional menu]]
In the application's functional Menu there is a separate 'master' node called '''Project Management'''. This branch contains twelve predefined functionalities (one Workflow, four Windows, two Processes and five Reports).
+
In the application's functional Menu there is a separate 'master' node called '''Project Management'''. This branch contains twelve predefined functionalities:
 +
* one ''Workflow''
 +
** '''Project Setup and Use''' - hows the necessary steps to configure a Project for use (this one is explained below).
 +
* four ''Windows''
 +
** '''Project Type'''
 +
** '''Project'''
 +
** '''Project (Lines/Issues)'''
 +
** '''Project Reporting'''
 +
* two ''Processes''
 +
** '''Generate PO from Project'''
 +
** '''Issue to Project'''
 +
* five ''Reports''
 +
** '''Project Lines not Issued'''
 +
** '''Project POs not Issued'''
 +
** '''Project Margin (Work Order)'''
 +
** '''Project Cycle Report'''
 +
** '''Project Detail Accounting Report'''
  
 +
----
 +
[[Image:Project_setup_workflow.png|200px|thumb|left|Project Setup Workflow]]
 +
As can be seen in the Project's workflow in order to use the main functionality ('''Project''' window) two preliminary features should be customized ('''Project Type''' and '''Project Reporting''' windows).
  
  
Line 17: Line 36:
  
  
----
 
[[Image:Project_setup_workflow.png|200px|thumb|left|Project Setup Workflow]]
 
As can be seen in the Project's workflow in order to use the main functionality ('''Project''' window) two preliminary features should be customized ('''Project Type''' and '''Project Reporting''' windows).
 
  
  
Line 29: Line 45:
  
 
== Database foundation ==
 
== Database foundation ==
The Projects are core functionality of ADempiere, so their tables are prefixed with ''''C_''''.
+
The Projects are core functionality of ADempiere, so their tables are prefixed with ''''C_''''. The functionality revolves around the '''C_Project''' table. The rest of the tables involved are:
 +
[[Image:ProjectMain_tables.jpg|150px|thumb|Project ERD - main tables*]]
 +
* '''C_ProjectLine'''
 +
* '''C_ProjectPhase'''
 +
* '''C_ProjectTask'''
 +
* '''C_Project_Acct'''
 +
The relationshps are represented in the diagram
 +
 
 +
* '''C_ProjectIssue'''
 +
 
 +
* '''C_Cycle'''
 +
* '''C_CycleStep'''
 +
* '''C_CyclePhase'''
 +
 
 +
 
 +
* '''C_ProjectType'''
 +
* '''C_Phase'''
 +
* '''C_Task'''
  
 +
(* All Entity Relationship Diagrams are made with [http://www.aquafold.com/ '''Aqua Data Studio'''] )
  
  
 
== Activities defined throughout the source code ==
 
== Activities defined throughout the source code ==
 
How the Projects functionality is dispersed into the bunch of ADempiere's subprojects?
 
How the Projects functionality is dispersed into the bunch of ADempiere's subprojects?

Revision as of 03:20, 4 January 2008

The Basics

In implementing, developing or just understanding ADempiere there are always three sides of the story: the application (client's GUI), the database (tables and stuff) and the source code (all the Java files, etc.).

Project Management in ADempiere

Project Management's node in functional menu

In the application's functional Menu there is a separate 'master' node called Project Management. This branch contains twelve predefined functionalities:

  • one Workflow
    • Project Setup and Use - hows the necessary steps to configure a Project for use (this one is explained below).
  • four Windows
    • Project Type
    • Project
    • Project (Lines/Issues)
    • Project Reporting
  • two Processes
    • Generate PO from Project
    • Issue to Project
  • five Reports
    • Project Lines not Issued
    • Project POs not Issued
    • Project Margin (Work Order)
    • Project Cycle Report
    • Project Detail Accounting Report

Project Setup Workflow

As can be seen in the Project's workflow in order to use the main functionality (Project window) two preliminary features should be customized (Project Type and Project Reporting windows).










Database foundation

The Projects are core functionality of ADempiere, so their tables are prefixed with 'C_'. The functionality revolves around the C_Project table. The rest of the tables involved are:

Project ERD - main tables*
  • C_ProjectLine
  • C_ProjectPhase
  • C_ProjectTask
  • C_Project_Acct

The relationshps are represented in the diagram

  • C_ProjectIssue
  • C_Cycle
  • C_CycleStep
  • C_CyclePhase


  • C_ProjectType
  • C_Phase
  • C_Task

(* All Entity Relationship Diagrams are made with Aqua Data Studio )


Activities defined throughout the source code

How the Projects functionality is dispersed into the bunch of ADempiere's subprojects?