Note: This bug is displayed in read-only format because the product is no longer active in Red Hat Bugzilla.

Bug 1218308

Summary: [GSS](6.1.z)Non existing imports in "rdrl" files prevents the rule to be opened in Business Central
Product: [Retired] JBoss BRMS Platform 6 Reporter: William Antônio <wsiqueir>
Component: Business CentralAssignee: manstis
Status: CLOSED EOL QA Contact: Jiri Locker <jlocker>
Severity: unspecified Docs Contact:
Priority: high    
Version: unspecifiedCC: ahoffer, alazarot, jlocker, kverlaen, manstis
Target Milestone: CR1   
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: 1217871 Environment:
Last Closed: 2020-03-27 20:07:57 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:
Bug Depends On: 1217871    
Bug Blocks: 1220521, 1220522    

Comment 6 manstis 2015-05-05 20:32:48 UTC
This change supports opening any "rule" definition in the Guided Rule Editor (whether the DRL can be parsed or not.... provided it contains "rule", "when" and "then" keywords). Parsing errors are shown in the "Messages" panel.

Comment 13 Jiri Locker 2015-05-29 11:55:41 UTC
Rules using classes that are not present in the project will now open with the following fallback mechanism:

rule "example 1"
    dialect "mvel"
    when
        var : MissingClass( )     // frozen (disabled)
        User( name != var.name )  // 'var' and 'users' displayed in text inputs
        User( ) from var.users    // 'users' displayed in a text input
    then
end