You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Martin Danielsson edited this page Nov 17, 2025
·
1 revision
Maps boolean-like values to Acumatica-compatible boolean integers.
Description
The acubool operator converts various boolean representations (true/false, True/False, 1/0) to Acumatica's boolean format, which uses 1 for true and 0 for false.
Parameters
Parameter
Type
Description
value
String
The value to convert. Accepts: "true", "True", "1" (mapped to 1), "false", "False", "0" (mapped to 0), or any other value (defaults to 0)
Return Value
Returns "1" for true values, "0" for false values or any unrecognized input.