AthiraHari77 opened a new issue, #2074: URL: https://github.com/apache/incubator-kie-issues/issues/2074
The value property was introduced for temporal types such as date, date and time, years and months duration, and days and time duration. While this property works as expected when used directly on a constructed temporal value, it throws a validation error when accessed via an InputData variable of the same type. Working case : **date(2025, 8, 21).value** - This compiles and returns the expected result. Failing Case: Define an InputData named InputA with type date. Access its value using: **InputA.value** This will throw below error. ``` DMN: Error compiling FEEL expression 'InputA.value' for name 'New Decision' on node 'New Decision': Unknown variable 'InputA.value'(DMN id: _CA5FF584-E3FA-407 F-BED2-246 C48FA1FEE, Error compiling the referenced FEEL expression). ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
