Difference between revisions of "Tutorials"

From ADempiere
Jump to: navigation, search
This Wiki is read-only for reference purposes to avoid broken links.
(FAQ)
Line 56: Line 56:
  
 
==FAQ==
 
==FAQ==
1. What is or what mean "callout"
+
1. What is or what mean "callout"?
 +
 
 
Callout is java method which is executed when field in Adempiere window is modified.
 
Callout is java method which is executed when field in Adempiere window is modified.
  
2. Where are the methods called when i click the buttons in the window (example. "Save record" or "Delete record")
+
2. Where are the methods called when i click the buttons in the window (example. "Save record" or "Delete record")?
  
  
3. Where are the methods called when i start a process (example: Synchronize Terminology)
+
3. Where are the methods called when i start a process (example: Synchronize Terminology)?
 +
 
 
This process are described in AD (Application Dictionary). This Processes can be java classes or database procedures.
 
This process are described in AD (Application Dictionary). This Processes can be java classes or database procedures.
 +
  
 
4. In dbPort/scr/../../model /** Generated Model - DO NOT CHANGE */; how generates it? (example: X_AD_****.java)
 
4. In dbPort/scr/../../model /** Generated Model - DO NOT CHANGE */; how generates it? (example: X_AD_****.java)
Line 70: Line 73:
 
In dbPort project developer can find Eclipse launch file which start this class. Please check proper  
 
In dbPort project developer can find Eclipse launch file which start this class. Please check proper  
 
setting.
 
setting.
 +
  
 
5. Where are the methods called when i click on menu's node? That one how generate
 
5. Where are the methods called when i click on menu's node? That one how generate
 
windows and form?
 
windows and form?
  
6. Where i can find an example of code for calling stored procedures and functions?
 
  
 +
6. Where i can find an example of code for calling stored procedures and functions?
 +
Login as System Admin in Adempiere, open window "Process".
  
 
==See also==
 
==See also==

Revision as of 10:03, 17 March 2007

Developer's Section

OS and DB Setup

Step By Step Series

contributed by Alejandro Falcone

contributed by Michael Judd

  • ExtensionExample How to extend Adempiere - a practical example of adding "Interest Free Credit" payment method

contributed by Armen Rizal (Goodwill Consulting)

Step By Step Series (Arabic)

contributed by Information Technology Accountants

Other Tutorials

The alternative is check all out in one big project:

Projects Section

Application Dictionary Section

Flash Movies

FAQ

1. What is or what mean "callout"?

Callout is java method which is executed when field in Adempiere window is modified.

2. Where are the methods called when i click the buttons in the window (example. "Save record" or "Delete record")?


3. Where are the methods called when i start a process (example: Synchronize Terminology)?

This process are described in AD (Application Dictionary). This Processes can be java classes or database procedures.


4. In dbPort/scr/../../model /** Generated Model - DO NOT CHANGE */; how generates it? (example: X_AD_****.java)

You need to start GenerateModel class. In dbPort project developer can find Eclipse launch file which start this class. Please check proper setting.


5. Where are the methods called when i click on menu's node? That one how generate windows and form?


6. Where i can find an example of code for calling stored procedures and functions? Login as System Admin in Adempiere, open window "Process".

See also