Email Has Triggered Many Times On Sunday To Many Users Even If It Has Not Met The Obj Workflow Condn
(Doc ID 2355402.1)
Last updated on DECEMBER 22, 2020
Applies to:
Oracle Fusion Sales Cloud Service - Version 11.12.1.0.0 and laterInformation in this document applies to any platform.
Goal
On : 11.12.1.0.0 version, Opportunities
Have written object workflow when an opportunity is updated. i.e., There is a Date field called "Quote Expiration Date", when a user changes or selects this field, he/she will get a notification one day after the selected "Quote Expiration Date". It is working fine.
But, last week, Sunday, Many users have received the mail even if they have not changed the or selected the "Quote Expiration Date".
------------------
Object workflow
------------------
def revenueItems = ChildRevenue;
if(isAttributeChanged('QuoteExpirationDate_c') && 'QuoteExpirationDate_c'!=null){
if(Status2_c == 'OPEN'){
while (revenueItems.hasNext()){
def revenueLine = revenueItems.next();
if(revenueLine.ProductDisposition_c == 'Active'){
return true
}
}
}
}
Solution
To view full details, sign in with your My Oracle Support account. |
|
Don't have a My Oracle Support account? Click to get started! |
In this Document
Goal |
Solution |
References |