-
Bug
-
Resolution: Obsolete
-
Major
-
None
-
7.50.0.Final, 7.53.0.Final
-
None
-
-
Undefined
-
NEW
-
NEW
-
---
-
---
This issue is related to the new feature implemented as DROOLS-5892
If user removes one of action call in BRL action column, the produced DRL is updated incorrectly. Please follow the steps to reproduce.
The original table produced a snippet
application.addAmount( 1 ); application.addExplanation( "exp" ); application.deadline( sdf.parse("08-Mar-2021") ); application.negateApproved( true ); application.numFunction( 1B );
After we remove addExplanation and deadline, we would expect:
application.addAmount( 1 );
application.negateApproved( true );
application.numFunction( 1B );
However the result is:
application.addAmount( 1 ); application.negateApproved( exp ); application.numFunction( 08-Mar-2021B );
- is caused by
-
DROOLS-5892 Guided Rule Editor: Method calls do not support template keys
- Resolved
-
RHPAM-3183 Convert to XLS functionality generates incorrect result
- Closed
- is cloned by
-
RHDM-1729 BRL action column containing method calls with template keys is modified inappropriately
- Closed