Bug 1158176
| Summary: | Guided Rule Editor: Displays blank screen when I tried to opening the saved rule | ||
|---|---|---|---|
| Product: | [Retired] JBoss BPMS Platform 6 | Reporter: | Jey <jpaulraj> |
| Component: | Business Central | Assignee: | manstis |
| Status: | CLOSED EOL | QA Contact: | Jiri Locker <jlocker> |
| Severity: | high | Docs Contact: | |
| Priority: | high | ||
| Version: | 6.0.3 | CC: | kverlaen, mbaluch |
| Target Milestone: | ER4 | ||
| Target Release: | 6.1.0 | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2020-03-27 18:33:18 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
Fixed in ER4. The rule in description reopens correctly. |
Description of problem: blank screen while opening guided editor rule Version-Release number of selected component (if applicable):6.0.3 How reproducible: Steps to Reproduce: 1. created rule using guided editor 2. added consequence using "freeform drl" - refer actual rule below 3. saved and closed the editor. 4. try to open the same rule. Actual results: when I tried to open the rule on the editor shows blank screen Expected results: Supposed open actual rule in guided editor Additional info: rule "AgentBooking Rule" dialect "mvel" when agent : Agent( ) currentDate : TransactionDate( ) Number( eval( intValue >=2 )) from accumulate ( resEvent : ReservationEvent( agentId == agent.agentId , resdate == currentDate.eventDate ) from entry-point "reservationEvent" , count(resEvent)) then ReservationThresoldEvent thresoldevent = new ReservationThresoldEvent(); thresoldevent.setAgentId( agent.getAgentId() ); thresoldevent.setTxEventDate( currentDate.getEventDate() ); kcontext.getKnowledgeRuntime().getEntryPoint("reservationTraceEvent").insert( thresoldevent ); end