Difference between revisions of "Reference Table with Dynamic Validation"

From ADempiere
Jump to: navigation, search
This Wiki is read-only for reference purposes to avoid broken links.
m (Case Study)
m (Steps)
Line 5: Line 5:
  
 
=Steps=
 
=Steps=
 +
==Table and Column Setting for Vehicle==
  
 
[[Image:ReferenceTable1.png]]
 
[[Image:ReferenceTable1.png]]
  
 
*The ET_TripBegin field Reference is set to Table instead of String. A new Reference 'Departures' is created. You can do that on the fly by right-clicking on it and select Zoom.
 
*The ET_TripBegin field Reference is set to Table instead of String. A new Reference 'Departures' is created. You can do that on the fly by right-clicking on it and select Zoom.
 
+
 +
<br>
 +
==Reference Table Validation Setting for TripBegin Field==
 
[[Image:ReferenceTable1Validation.png]]
 
[[Image:ReferenceTable1Validation.png]]
  
 
*The table is selected here and the field chosen is the ET_Departure which becomes distinct origins during pull down.
 
*The table is selected here and the field chosen is the ET_Departure which becomes distinct origins during pull down.
 
*You can see the result from the following screen.  
 
*You can see the result from the following screen.  
 +
 +
<br>
 +
==Booking Window Result==
 
[[Image:PulldownReference.png]]
 
[[Image:PulldownReference.png]]
 +
 
*It shows all the available origins that the user can choose from.
 
*It shows all the available origins that the user can choose from.
 
*Now we shall do the same for the other field which concerns destinations or arrivals.
 
*Now we shall do the same for the other field which concerns destinations or arrivals.
 +
<br>
 +
==Table and Column Setting For Booking==
 
[[Image:ReferenceTable2.png]]
 
[[Image:ReferenceTable2.png]]
  
 
*This second field ET_TripEnd will refer the same table. Note that it has an extra duty under Dynamic Validation.
 
*This second field ET_TripEnd will refer the same table. Note that it has an extra duty under Dynamic Validation.
  
 +
<br>
 +
==Reference Table Validation for TripEnd Field==
 
[[Image:ReferenceTable2Validation.png]]
 
[[Image:ReferenceTable2Validation.png]]
  
 
*The pull down will show all the arrivals. But we do not want all of them. We just want those that correspond to the origin.
 
*The pull down will show all the arrivals. But we do not want all of them. We just want those that correspond to the origin.
  
 +
<br>
 +
==Dynamic Validation SQL Code==
 
[[Image:DynamicValidation.png]]
 
[[Image:DynamicValidation.png]]
  

Revision as of 08:48, 24 May 2009

Case Study

  • We are doing this as a prototype for an E-ticketing system.
  • We are going to create a Reference to a Table in the database.
  • The Reference are created for the field ET_TripBegin (Origins) and ET_TripEnd (Destinations) from table ET_Booking. They will access the Table called ET_Vehicle that is a holder of available routes or schedule trips.

Steps

Table and Column Setting for Vehicle

ReferenceTable1.png

  • The ET_TripBegin field Reference is set to Table instead of String. A new Reference 'Departures' is created. You can do that on the fly by right-clicking on it and select Zoom.


Reference Table Validation Setting for TripBegin Field

ReferenceTable1Validation.png

  • The table is selected here and the field chosen is the ET_Departure which becomes distinct origins during pull down.
  • You can see the result from the following screen.


Booking Window Result

PulldownReference.png

  • It shows all the available origins that the user can choose from.
  • Now we shall do the same for the other field which concerns destinations or arrivals.


Table and Column Setting For Booking

ReferenceTable2.png

  • This second field ET_TripEnd will refer the same table. Note that it has an extra duty under Dynamic Validation.


Reference Table Validation for TripEnd Field

ReferenceTable2Validation.png

  • The pull down will show all the arrivals. But we do not want all of them. We just want those that correspond to the origin.


Dynamic Validation SQL Code

DynamicValidation.png

  • Dynamic Validation allows for SQL injection, where we supply the WHERE clause.
  • Here we ask it to access the ET_Vehicle table for records similar to the origin by ensuring similar ET_Departure values.
  • @..@ traps the field value in play. We place it within single quotes '@..@' for SQL to take it as a string value.