Hi,
I found certain rule in creation of a business object via process using ENTER NEW action are not executing well.
Having two business objects
Business Objects
Customer
RULE
If Customer IS NEW AND Customer.CustomerID IS UNDEFINED Then
FIND IDCreator WHERE IDCreator.ObjectName='Customer'
Customer.CustomerID='CU000'+IDCreator.CurrectSeq
INCREASE IDCreator.CurrentSeq BY 1
[b]IDCreator[/b]
Process CreateNewCustomer
RULE-> ENTER NEW Customer
when customer is created with CREATE OBJECT action CustomerID is updated and rule is executed nicely.
but when i add new customer using ENTER NEW action in process, rule is not working (INCREASE IDCreator.CurrentSeq BY 1 not updated)
I suppose it must be bug
I can send the bsv if needed.
Thanks,