RE: Multiple select from dialog field in RunbaseBatch
Hi Will,
Thanks for the link. As I tried to follow, what is the meaning of the "macro" ->
#define.CurrentVersion(1)
#localMacro.CurrentList
warehouses
#endmacro
I got stuck at the "DialogPostRun" method, at the line -> warehouseMultiSelect.set
([
this
.warehouseIdsToRecIds(warehouses), warehouses]);
Obviusly I changed to my object name, but it keep telling me the variable "warehouses" (which I replaced, and is the same as the one I declared in the macro) is not declared
By looking at the whole Variable declaration, actually there are 2 variable "warehouses"
container warehouses;
SysLookupMultiSelectCtrl warehouseMultiSelect;
FormBuildStringControl warehouseCtrl;
DialogField warehousesField;
#define.CurrentVersion(1)
#localMacro.CurrentList
warehouses
#endmacro
Is it refer to the container variable ? and why need to put in the "local macro" ? what is the usage and purposes ?
Thanks,