Difference between revisions of "Script Callout"
From iDempiere en
(→See Also: hmm both Process and Callout the same.. how to make redirect?) |
(→See Also: more links) |
||
| Line 48: | Line 48: | ||
=See Also= | =See Also= | ||
*[[Script ModelValidatorLogin]] | *[[Script ModelValidatorLogin]] | ||
| + | *[[Rule Engine Implementation]] | ||
| + | *[https://scripting.dev.java.net/ Java Scripting] | ||
Revision as of 02:22, 26 January 2008
Status: working in version > 3.3.1b
Contributed by:
Quality Systems & Solutions - QSS Ltda.
Carlos Ruiz
Improvements by:
E-Evolution
Víctor Pérez
make it work with any java scripting language https://scripting.dev.java.net
Create the Rule
Within the script you can use:
- Window context variables start with a single underscore _
- Login context variables start with two underscores __
- Parameters for callout start with three underscores ___
- ___WindowNo
- ___Tab
- ___Field
- ___Value
- ___OldValue
In standard Adempiere were uploaded jars to work with groovy, jython and beanshell
Configure the callout
Code provided for copy/paste testing
On the Table and Column, callout reference:
@script:beanshell:BP_fillDescriptionFromName
On the Rule Search Key:
beanshell:BP_fillDescriptionFromName
On the Rule Script:
if (___Tab.getValue("Name") != null) {
___Tab.setValue("Description", ___Tab.getValue("Name"));
}
result = "";


