function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Joshua Anderson 17Joshua Anderson 17 

Trigger to update Opportunity with Lead in lookup after convert

I am looking to update a lookup field on the opportunity after a lead has been converted. Not sure if this is possible so I was first wondering if we could even do this. I currently have mapped the fields with a formula so that the lead ID shows on the opportunity but after the lead is converted the lookup will not allow me to select a converted lead. 

Does anyone have any suggestions to try and get me on the right track? 
Best Answer chosen by Joshua Anderson 17
Terri T JilesTerri T Jiles
My apologies for the delay Josh.  Thanks for all of this information!

It looks like there is an attempt to save an opportunity id to a lead lookup field that is expecting a record id for the lead.

Lead ids start with 00Q
Opportunities ids start with 006

In your record update action, set the  Opportunity.Lead__c = Lead.Id

As a side note, it looks like you have a number of workflow rules in your org.  You may want to consider refactoring all of the lead workflow rules into one process builder process and do the same thing with the opportunity process builders.

All Answers

Terri T JilesTerri T Jiles
I suggest using Process builder for this instead of a trigger.  

Create a new Process Builder on the Lead Object when a new record is created or updated.  

Here is the outline for this solution
Criteria step
- Lead.IsConverted = true AND hasChanged(Lead.IsConverted) AND Lead.OpportunityId is not Null

Immediate Action
- Update Record - the opportunity record related to the lead
- Update Opportunity.Lead__c = Lead.OpportunityId

Note, When a lead is converted, the resulting opportunity, account, and contact is related to the lead.  That is why this should work for you.  
Joshua Anderson 17Joshua Anderson 17
Terri, 

I wanted to make sure that I am understanding everything correctly. I have attached screenshots to show what I did just to confrim. I am also getting an error when I try and do ISCHANGED. 

User-added image

User-added image

Did I do everything correct besides the is changed? 
Terri T JilesTerri T Jiles
Hi Joshua,

Please, Try this as your criteria:  NOT(IsBlank([Lead].ConvertedOpportunityId)) && [Lead].IsConverted && ISCHANGED([Lead].IsConverted ).  I was able to save this without error.

In regards to update records step, it is correct.

 
Joshua Anderson 17Joshua Anderson 17
Terri, 

I was able to save via process builder. When I selected to convert the lead to test to see if the opportunity would populate the lead id information it is still not doing so. Any idea what might be happening with this? 
Joshua Anderson 17Joshua Anderson 17
I know that they are archiving after convert. Would this be the issue? 
Terri T JilesTerri T Jiles
The lead archiving shouldn't be an issue.  

My apologies.  On the Update record Immediate action, choose the Converted Opportunity reocrd instead of Opportunties__r
Joshua Anderson 17Joshua Anderson 17
Terri, 

I altered the process builder to reflect converted opportunity but when I try and convert I am now getting an error. 
User-added image
User-added image
Joshua Anderson 17Joshua Anderson 17
Bigger version of the error I am getting.

"Error: System.DmlException: Update failed. First exception on row 0 with id 00Q5C000000ya6yUAA; first error: CANNOT_EXECUTE_FLOW_TRIGGER, The record couldn’t be saved because it failed to trigger a flow. A flow trigger failed to execute the flow with version ID 3015C0000008Xwx. Flow error messages: <b>An unhandled fault has occurred in this flow</b><br>An unhandled fault has occurred while processing the flow. Please contact your system administrator for more information. Contact your administrator for help.: [] Class.leadconvert.BulkLeadConvert.updateLead: line 1440, column 1 Class.leadconvert.BulkLeadConvert.convertLead: line 157, column 1"
Terri T JilesTerri T Jiles
Hi Joshua,

Do you have any existing triggers, workflow rules or validation rules on the lead object?  It looks like that error may occur when there is an attempt to update a converted lead. 

Can you please monitor your user and generate a debug log and paste to the forum?  Please see this for more details https://help.salesforce.com/articleView?id=code_add_users_debug_log.htm&language=en_US&type=0

 
Joshua Anderson 17Joshua Anderson 17
23.0 APEX_CODE,FINEST;APEX_PROFILING,INFO;CALLOUT,INFO;DB,INFO;SYSTEM,DEBUG;VALIDATION,INFO;VISUALFORCE,INFO;WORKFLOW,INFO
10:56:52.0 (55530)|USER_INFO|[EXTERNAL]|0050P000006jNqq|joshua.anderson@televerde.com.joshdev1|Mountain Standard Time|GMT-07:00
10:56:52.0 (82110)|EXECUTION_STARTED
10:56:52.0 (86044)|CODE_UNIT_STARTED|[EXTERNAL]|066U0000000IBbt|VF: /apex/LeadConvertNoWorkflow
10:56:52.0 (207673)|VF_DESERIALIZE_VIEWSTATE_BEGIN|066U0000000IBbt
10:56:52.0 (2716943)|VF_DESERIALIZE_VIEWSTATE_END
10:56:52.0 (7157521)|CODE_UNIT_STARTED|[EXTERNAL]|VF Controller Save
10:56:52.0 (7168810)|SYSTEM_MODE_ENTER|false
10:56:52.0 (27081674)|CODE_UNIT_STARTED|[EXTERNAL]|Validation:Lead:00Q5C000000ya6y
10:56:52.0 (27088616)|VALIDATION_RULE|03dU000000053xC|Check_CompanyId_Value
10:56:52.0 (27204801)|VALIDATION_FORMULA|AND(
	(LID__LinkedIn_Company_Id__c <> NULL),
	NOT(ISNUMBER(LID__LinkedIn_Company_Id__c))
)|LID__LinkedIn_Company_Id__c=null
10:56:52.0 (27209385)|VALIDATION_PASS
10:56:52.0 (27211186)|VALIDATION_RULE|03dU00000004TUo|Rejected_Reason
10:56:52.0 (27374267)|VALIDATION_FORMULA|OR(ISPICKVAL( Status, "Reject/Recycle"), ISPICKVAL( Status, "Reject/Do Not Recycle")) && ISPICKVAL( Lead_Status_Reason__c,"" )|Status=MQL , Lead_Status_Reason__c=null
10:56:52.0 (27379369)|VALIDATION_PASS
10:56:52.0 (27380673)|VALIDATION_RULE|03dU00000004TUj|Rejected_Reason_Description
10:56:52.0 (27473042)|VALIDATION_FORMULA|OR(ISPICKVAL( Status, "Reject/Recycle"), ISPICKVAL( Status, "Reject/Do Not Recycle")) &&  ISBLANK(Lead_Status_Description__c)|Status=MQL , Lead_Status_Description__c=null
10:56:52.0 (27476881)|VALIDATION_PASS
10:56:52.0 (27501173)|CODE_UNIT_FINISHED|Validation:Lead:00Q5C000000ya6y
10:56:52.53 (53082646)|ENTERING_MANAGED_PKG|EVERSTRING_APP
10:56:52.53 (53789693)|ENTERING_MANAGED_PKG|EVERSTRING_APP
10:56:52.53 (53814486)|ENTERING_MANAGED_PKG|EVERSTRING_APP
10:56:52.53 (55087091)|SOQL_EXECUTE_BEGIN|[20]|Aggregations:0|SELECT EVERSTRING_APP__Lead__c, EVERSTRING_APP__SegmentName__c, EVERSTRING_APP__SegmentId__c, EVERSTRING_APP__SegmentScore__c FROM Segment_Lead__c WHERE EVERSTRING_APP__Lead__c = :tmpVar1
10:56:52.53 (57904113)|SOQL_EXECUTE_END|[20]|Rows:0
10:56:52.53 (58525654)|SOQL_EXECUTE_BEGIN|[26]|Aggregations:0|SELECT EVERSTRING_APP__Account__c, EVERSTRING_APP__SegmentName__c, EVERSTRING_APP__SegmentId__c, EVERSTRING_APP__SegmentScore__c FROM Segment_Account__c WHERE EVERSTRING_APP__Account__c = :tmpVar1
10:56:52.53 (60113026)|SOQL_EXECUTE_END|[26]|Rows:0
10:56:52.53 (60676617)|SOQL_EXECUTE_BEGIN|[32]|Aggregations:0|SELECT EVERSTRING_APP__Contact__c, EVERSTRING_APP__SegmentName__c, EVERSTRING_APP__SegmentId__c, EVERSTRING_APP__SegmentScore__c FROM Segment_Contact__c WHERE EVERSTRING_APP__Contact__c = :tmpVar1
10:56:52.53 (62242326)|SOQL_EXECUTE_END|[32]|Rows:0
10:56:52.62 (62576626)|CUMULATIVE_LIMIT_USAGE
10:56:52.62 (62576626)|LIMIT_USAGE_FOR_NS|(default)|
  Number of SOQL queries: 3 out of 100
  Number of query rows: 0 out of 50000
  Number of SOSL queries: 0 out of 20
  Number of DML statements: 0 out of 150
  Number of DML rows: 0 out of 10000
  Maximum CPU time: 0 out of 10000
  Maximum heap size: 0 out of 6000000
  Number of callouts: 0 out of 100
  Number of Email Invocations: 0 out of 10
  Number of future calls: 0 out of 50
  Number of queueable jobs added to the queue: 0 out of 50
  Number of Mobile Apex push calls: 0 out of 10

10:56:52.62 (62576626)|CUMULATIVE_LIMIT_USAGE_END

10:56:52.0 (64221029)|CODE_UNIT_STARTED|[EXTERNAL]|Workflow:Lead
10:56:52.0 (70994644)|WF_RULE_EVAL_BEGIN|Assignment
10:56:52.0 (71003384)|WF_SPOOL_ACTION_BEGIN|Assignment
10:56:52.0 (71007742)|WF_ACTION|.
10:56:52.0 (71009925)|WF_RULE_EVAL_END
10:56:52.0 (71018745)|WF_RULE_EVAL_BEGIN|Workflow
10:56:52.0 (71044909)|WF_CRITERIA_BEGIN|[Lead: test Joshua Anderson 00Q5C000000ya6y]|Lead Created Date|01QU00000004e8D|ON_CREATE_ONLY|0
10:56:52.0 (71050538)|WF_RULE_NOT_EVALUATED
10:56:52.0 (71056530)|WF_CRITERIA_BEGIN|[Lead: test Joshua Anderson 00Q5C000000ya6y]|Lead Status OPEN Date/Time Stamp|01QU00000004e0x|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:56:52.0 (71133535)|WF_RULE_FILTER|[Lead : Lead Status equals Open]
10:56:52.0 (71148778)|WF_RULE_EVAL_VALUE|MQL
10:56:52.0 (71151843)|WF_CRITERIA_END|false
10:56:52.0 (71159812)|WF_CRITERIA_BEGIN|[Lead: test Joshua Anderson 00Q5C000000ya6y]|New Event Lead Alert|01QU0000000UKpd|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:56:52.0 (71199713)|WF_RULE_FILTER|[Lead : Created By contains Juern]
10:56:52.0 (71207353)|WF_RULE_EVAL_VALUE|0050P000006jNqq
10:56:52.0 (71209298)|WF_CRITERIA_END|false
10:56:52.0 (71215026)|WF_CRITERIA_BEGIN|[Lead: test Joshua Anderson 00Q5C000000ya6y]|Lead Requalify Date/Time|01QU00000004ejO|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:56:52.0 (71234133)|WF_RULE_FILTER|[Lead : Lead Status equals Requalify]
10:56:52.0 (71239349)|WF_RULE_EVAL_VALUE|MQL
10:56:52.0 (71240855)|WF_CRITERIA_END|false
10:56:52.0 (71246230)|WF_CRITERIA_BEGIN|[Lead: test Joshua Anderson 00Q5C000000ya6y]|Lead Close Date/Time Stamp|01QU00000004Qnh|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:56:52.0 (71259982)|WF_RULE_FILTER|[Lead : Lead Status equals Close]
10:56:52.0 (71264423)|WF_RULE_EVAL_VALUE|MQL
10:56:52.0 (71265761)|WF_CRITERIA_END|false
10:56:52.0 (71270627)|WF_CRITERIA_BEGIN|[Lead: test Joshua Anderson 00Q5C000000ya6y]|New OMC Lead Alert|01QU00000004mdB|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:56:52.0 (71295881)|WF_RULE_FILTER|[Primary Campaign Source : Campaign Name contains OMC, Attrition, Eloqua Customers]
10:56:52.0 (71298423)|WF_CRITERIA_END|false
10:56:52.0 (71303534)|WF_CRITERIA_BEGIN|[Lead: test Joshua Anderson 00Q5C000000ya6y]|Lead Reject Date/Time|01QU00000004ejJ|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:56:52.0 (71320004)|WF_RULE_FILTER|[Lead : Lead Status equals Rejected]
10:56:52.0 (71325289)|WF_RULE_EVAL_VALUE|MQL
10:56:52.0 (71326638)|WF_CRITERIA_END|false
10:56:52.0 (71331605)|WF_CRITERIA_BEGIN|[Lead: test Joshua Anderson 00Q5C000000ya6y]|Lead_ID_Update_Opportunity3015C0000008Xwx|01Q5C0000004Nze|ON_ALL_CHANGES|0
10:56:52.0 (71384931)|WF_FORMULA|Formula:ENCODED:[treatNullAsNull]true|Values:
10:56:52.0 (71387716)|WF_CRITERIA_END|true
10:56:52.0 (72068827)|WF_CRITERIA_BEGIN|[Lead: test Joshua Anderson 00Q5C000000ya6y]|Lead MQL Date/Time Stamp|01QU00000004edB|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:56:52.0 (72084333)|WF_RULE_NOT_EVALUATED
10:56:52.0 (72090453)|WF_CRITERIA_BEGIN|[Lead: test Joshua Anderson 00Q5C000000ya6y]|New Lead Alert DC|01QU00000004blH|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:56:52.0 (72142961)|WF_RULE_FILTER|[Lead : Created By contains Eloqua, Sales Talk] 
AND [Lead : TVITSCampaignName does not contain OMC]
10:56:52.0 (72154143)|WF_RULE_EVAL_VALUE|0050P000006jNqq
10:56:52.0 (72156403)|WF_CRITERIA_END|false
10:56:52.0 (72163429)|WF_CRITERIA_BEGIN|[Lead: test Joshua Anderson 00Q5C000000ya6y]|Lead Opp Description Pop Update|01QU00000004NC2|ON_ALL_CHANGES|0
10:56:52.0 (72180753)|WF_RULE_FILTER|[Lead : Description not equal to ]
10:56:52.0 (72185596)|WF_RULE_EVAL_VALUE|
10:56:52.0 (72187036)|WF_CRITERIA_END|false
10:56:52.0 (72191620)|WF_CRITERIA_BEGIN|[Lead: test Joshua Anderson 00Q5C000000ya6y]|Lead Accepted Date/Time Stamp|01QU00000004PZj|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:56:52.0 (72209347)|WF_RULE_FILTER|[Lead : Lead Status equals Accepted]
10:56:52.0 (72214671)|WF_RULE_EVAL_VALUE|MQL
10:56:52.0 (72216186)|WF_CRITERIA_END|false
10:56:52.0 (72221002)|WF_CRITERIA_BEGIN|[Lead: test Joshua Anderson 00Q5C000000ya6y]|Lead Rejected Date/Time Stamp|01QU00000004Qky|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:56:52.0 (72234396)|WF_RULE_FILTER|[Lead : Lead Status equals Rejected]
10:56:52.0 (72238563)|WF_RULE_EVAL_VALUE|MQL
10:56:52.0 (72239865)|WF_CRITERIA_END|false
10:56:52.0 (72244207)|WF_CRITERIA_BEGIN|[Lead: test Joshua Anderson 00Q5C000000ya6y]|Lead Assigned Date/Time Stamp|01QU00000004Qkt|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:56:52.0 (72258315)|WF_RULE_NOT_EVALUATED
10:56:52.0 (72265650)|WF_SPOOL_ACTION_BEGIN|Workflow
10:56:52.0 (72280012)|WF_ACTION| Flow Trigger: 1;
10:56:52.0 (72281486)|WF_RULE_EVAL_END
10:56:52.0 (72312713)|WF_FLOW_ACTION_BEGIN|09L5C0000004EBk
10:56:52.72 (72347353)|FLOW_CREATE_INTERVIEW_BEGIN|00D5C0000008bkv|3005C0000008S5k|3015C0000008Xwx
10:56:52.72 (73568171)|FLOW_CREATE_INTERVIEW_END|1338de5a4ed91f1104244eddcbd91596fc13da-cece|Lead_ID_Update_Opportunity
10:56:52.73 (73777785)|FLOW_START_INTERVIEWS_BEGIN|1
10:56:52.73 (74369238)|FLOW_START_INTERVIEW_BEGIN|1338de5a4ed91f1104244eddcbd91596fc13da-cece|Lead_ID_Update_Opportunity
10:56:52.73 (105207322)|FLOW_START_INTERVIEW_END|1338de5a4ed91f1104244eddcbd91596fc13da-cece|Lead_ID_Update_Opportunity
10:56:52.73 (105216047)|FLOW_START_INTERVIEWS_END|1
10:56:52.0 (106294590)|WF_FLOW_ACTION_END|09L5C0000004EBk
10:56:52.0 (106387953)|WF_ACTIONS_END| Flow Trigger: 1;
10:56:52.0 (106394332)|CODE_UNIT_FINISHED|Workflow:Lead
10:56:52.0 (111322106)|CODE_UNIT_FINISHED|VF Controller Save
10:56:52.0 (117972343)|VF_SERIALIZE_VIEWSTATE_BEGIN|066U0000000IBbt
10:56:52.0 (118841634)|VF_SERIALIZE_VIEWSTATE_END
10:56:52.120 (120945115)|CUMULATIVE_LIMIT_USAGE
10:56:52.120 (120945115)|LIMIT_USAGE_FOR_NS|(default)|
  Number of SOQL queries: 3 out of 100
  Number of query rows: 0 out of 50000
  Number of SOSL queries: 0 out of 20
  Number of DML statements: 0 out of 150
  Number of DML rows: 0 out of 10000
  Maximum CPU time: 0 out of 10000
  Maximum heap size: 0 out of 6000000
  Number of callouts: 0 out of 100
  Number of Email Invocations: 0 out of 10
  Number of future calls: 0 out of 50
  Number of queueable jobs added to the queue: 0 out of 50
  Number of Mobile Apex push calls: 0 out of 10

10:56:52.120 (120945115)|CUMULATIVE_LIMIT_USAGE_END

10:56:52.0 (120979885)|CODE_UNIT_FINISHED|VF: /apex/LeadConvertNoWorkflow
10:56:52.0 (121813911)|EXECUTION_FINISHED

 
Joshua Anderson 17Joshua Anderson 17
38.0 APEX_CODE,FINEST;APEX_PROFILING,INFO;CALLOUT,INFO;DB,INFO;SYSTEM,DEBUG;VALIDATION,INFO;VISUALFORCE,INFO;WORKFLOW,INFO
10:57:19.0 (61087)|USER_INFO|[EXTERNAL]|0050P000006jNqq|joshua.anderson@televerde.com.joshdev1|Mountain Standard Time|GMT-07:00
10:57:19.0 (175595)|VARIABLE_SCOPE_BEGIN|[3]|BulkLeadConvert.EMPTY_KEY|String|false|true
10:57:19.0 (384997)|HEAP_ALLOCATE|[72]|Bytes:3
10:57:19.0 (423147)|HEAP_ALLOCATE|[77]|Bytes:152
10:57:19.0 (437987)|HEAP_ALLOCATE|[342]|Bytes:408
10:57:19.0 (451900)|HEAP_ALLOCATE|[355]|Bytes:408
10:57:19.0 (463868)|HEAP_ALLOCATE|[467]|Bytes:48
10:57:19.105 (105459943)|ENTERING_MANAGED_PKG|FormPos
10:57:19.105 (106876841)|ENTERING_MANAGED_PKG|FormPos
10:57:19.108 (108652671)|CUMULATIVE_LIMIT_USAGE
10:57:19.108 (108652671)|LIMIT_USAGE_FOR_NS|(default)|
  Number of SOQL queries: 0 out of 100
  Number of query rows: 0 out of 50000
  Number of SOSL queries: 0 out of 20
  Number of DML statements: 0 out of 150
  Number of DML rows: 0 out of 10000
  Maximum CPU time: 0 out of 10000
  Maximum heap size: 0 out of 6000000
  Number of callouts: 0 out of 100
  Number of Email Invocations: 0 out of 10
  Number of future calls: 0 out of 50
  Number of queueable jobs added to the queue: 0 out of 50
  Number of Mobile Apex push calls: 0 out of 10

10:57:19.108 (108652671)|CUMULATIVE_LIMIT_USAGE_END

10:57:19.186 (186888418)|ENTERING_MANAGED_PKG|FormPos
10:57:19.186 (186979350)|CUMULATIVE_LIMIT_USAGE
10:57:19.186 (186979350)|LIMIT_USAGE_FOR_NS|(default)|
  Number of SOQL queries: 0 out of 100
  Number of query rows: 0 out of 50000
  Number of SOSL queries: 0 out of 20
  Number of DML statements: 0 out of 150
  Number of DML rows: 0 out of 10000
  Maximum CPU time: 0 out of 10000
  Maximum heap size: 0 out of 6000000
  Number of callouts: 0 out of 100
  Number of Email Invocations: 0 out of 10
  Number of future calls: 0 out of 50
  Number of queueable jobs added to the queue: 0 out of 50
  Number of Mobile Apex push calls: 0 out of 10

10:57:19.186 (186979350)|CUMULATIVE_LIMIT_USAGE_END

10:57:19.0 (255359029)|DML_END|[326]
10:57:19.312 (312451772)|CODE_UNIT_STARTED|[EXTERNAL]|01qU00000004fxU|OpportunityTrigger on Opportunity trigger event AfterInsert for [0065C000002Q95U]
10:57:19.312 (312489152)|HEAP_ALLOCATE|[EXTERNAL]|Bytes:8
10:57:19.312 (314788602)|HEAP_ALLOCATE|[EXTERNAL]|Bytes:8
10:57:19.312 (314798037)|VARIABLE_SCOPE_BEGIN|[1]|this|OpportunityTrigger|true|false
10:57:19.312 (314850500)|VARIABLE_ASSIGNMENT|[1]|this|{}|0x6853cb2c
10:57:19.312 (314889249)|HEAP_ALLOCATE|[EXTERNAL]|Bytes:8
10:57:19.312 (314893906)|VARIABLE_SCOPE_BEGIN|[1]|this|OpportunityTrigger|true|false
10:57:19.312 (314903237)|VARIABLE_ASSIGNMENT|[1]|this|{}|0x6853cb2c
10:57:19.312 (314907041)|STATEMENT_EXECUTE|[1]
10:57:19.312 (314908664)|STATEMENT_EXECUTE|[2]
10:57:19.312 (314916848)|HEAP_ALLOCATE|[2]|Bytes:5
10:57:19.312 (314922181)|HEAP_ALLOCATE|[2]|Bytes:66
10:57:19.312 (314935168)|METHOD_ENTRY|[11]|01pU00000008K9w|OpportunityTrigger.OpportunityTrigger()
10:57:19.312 (314937582)|STATEMENT_EXECUTE|[11]
10:57:19.312 (314940165)|STATEMENT_EXECUTE|[11]
10:57:19.312 (315329143)|SYSTEM_MODE_ENTER|false
10:57:19.312 (315337686)|HEAP_ALLOCATE|[2]|Bytes:5
10:57:19.312 (315344783)|SYSTEM_MODE_EXIT|false
10:57:19.312 (315353356)|METHOD_EXIT|[11]|OpportunityTrigger
10:57:19.312 (315365322)|HEAP_ALLOCATE|[2]|Bytes:4
10:57:19.312 (315375900)|CONSTRUCTOR_ENTRY|[2]|01pU00000008K9w|<init>()
10:57:19.312 (315398138)|VARIABLE_SCOPE_BEGIN|[11]|this|OpportunityTrigger|true|false
10:57:19.312 (315412506)|VARIABLE_ASSIGNMENT|[11]|this|{}|0x459ccec4
10:57:19.312 (315418537)|SYSTEM_MODE_ENTER|false
10:57:19.312 (315422786)|HEAP_ALLOCATE|[EXTERNAL]|Bytes:5
10:57:19.312 (315442269)|SYSTEM_MODE_EXIT|false
10:57:19.312 (315444892)|STATEMENT_EXECUTE|[11]
10:57:19.312 (315447765)|SYSTEM_MODE_ENTER|false
10:57:19.312 (315449921)|HEAP_ALLOCATE|[EXTERNAL]|Bytes:5
10:57:19.312 (315453924)|SYSTEM_MODE_EXIT|false
10:57:19.312 (315458783)|CONSTRUCTOR_EXIT|[2]|01pU00000008K9w|<init>()
10:57:19.312 (315475492)|VARIABLE_ASSIGNMENT|[2]|this.ot|0x459ccec4|0x6853cb2c
10:57:19.312 (315482114)|STATEMENT_EXECUTE|[3]
10:57:19.312 (315483295)|STATEMENT_EXECUTE|[4]
10:57:19.312 (315522477)|METHOD_ENTRY|[4]|01pU00000008K9w|OpportunityTrigger.updateAccountSalesSummary(List<Opportunity>)
10:57:19.312 (315541186)|VARIABLE_SCOPE_BEGIN|[12]|this|OpportunityTrigger|true|false
10:57:19.312 (315551163)|VARIABLE_ASSIGNMENT|[12]|this|{}|0x459ccec4
10:57:19.312 (315553708)|VARIABLE_SCOPE_BEGIN|[12]|Opps|List<Opportunity>|true|false
10:57:19.312 (329606330)|VARIABLE_ASSIGNMENT|[12]|Opps|{"s":1,"v":[{"LastModifiedDate":"2017-01-05T17:57:19.000Z","Sales_Order__c":false,"Data_Intelligence_To (6 more) ...":0.00,"AccountId":"0015C000002ZR9XQAW","HasOpportunityLineIt (2 more) ...":false,"Billing_Information_ (12 more) ...":false,"No_Origninal_Account (6 more) ...":false,"ForecastCategory":"Omitted","Converted_From_Lead_ (2 more) ...":false,"Close_Date_Missing__ (1 more) ...":false,"CloseDate":"2017-03-31T00:00:00.000Z","mh_Associated_Blue_S (7 more) ...":false,"Name":"42 Riot- tester 19","PLM_Review__c":false,"Teleservices_Total__ (1 more) ...":0.00,"CreatedById":"0050P000006jNqqQAE","Stage_Validation_SOW (12 more) ...":"Not SOW Received","Marketing_Technology (9 more) ...":0.00,"CSM_Assigned__c":false,"Lead_Created_DateTim (4 more) ...":"2017-01-04T22:27:46.000Z","Internal_Approval_Da (10 more) ...":"2017-01-05T00:00:00.000Z","SmartForms__c":false,"Data_Total__c":0.00,"IsDeleted":false,"Commit_Probability__ (1 more) ...":"Low","Billing_Address__c":"3710 W Mission Lane_ (39 more) ...","Open_Won_Lost__c":"Open","Contact_Missing__c":false,"Setup_Management_Tot (5 more) ...":0.00,"Digital_Total__c":0.00,"Inbound_Support_Tota (4 more) ...":0.00,"CreatedDate":"2017-01-05T17:57:19.000Z","mh_Managers_Notes_Ex (6 more) ...":false,"Id":"0065C000002Q95UQAS","Data_Quality_Score__ (1 more) ...":40,"ForecastCategoryName":"Omitted","Dialogue_Total__c":0.00,"Research_Total__c":0.00,"Dialogue_Total_No_Ca (9 more) ...":0.00,"IsClosed":false,"Opportunity_Amount__ (1 more) ...":0.00,"Clients_Validation__ (1 more) ...":false,"Data_Quality_Descrip (7 more) ...":"Missing: Type, Lead  (18 more) ...","OwnerId":"0050P000006jNqqQAE","Lead_Create_Date__c":"2017-01-04T22:27:46.000Z","IsWon":false,"RecordTypeId":"012U00000000GAPIA2","StageName":"Long Range Forecast","Engagement_Planning_ (8 more) ...":0.00,"Probability":0,"Stage_Validation_Clo (10 more) ...":"Not Closed Won","mh_Additional_Notes_ (8 more) ...":false,"Stage_Missing__c":false,"Analytics_Total__c":0.00,"Reporting_Total__c":0.00,"SystemModstamp":"2017-01-05T17:57:19.000Z","Associated_Budget_Al (6 more) ...":"_IM1_/servlet/servle (117 more) ...","Viewpath__Viewpath_P (17 more) ...":"_HL_ENCODED_/_HL_ _H (11 more) ...","No_Owner_Match__c":false,"Marketing_Total__c":0.00,"IsPrivate":false,"LastModifiedById":"0050P000006jNqqQAE"}]}|0x132f8e51
10:57:19.312 (329627115)|SYSTEM_MODE_ENTER|false
10:57:19.312 (329634206)|HEAP_ALLOCATE|[17]|Bytes:5
10:57:19.312 (329638798)|STATEMENT_EXECUTE|[12]
10:57:19.312 (329640430)|STATEMENT_EXECUTE|[17]
10:57:19.312 (329650116)|HEAP_ALLOCATE|[17]|Bytes:4
10:57:19.312 (329708770)|VARIABLE_SCOPE_BEGIN|[17]|planIds|List<Id>|true|false
10:57:19.312 (329736776)|HEAP_ALLOCATE|[EXTERNAL]|Bytes:4
10:57:19.312 (329748635)|VARIABLE_ASSIGNMENT|[17]|planIds|{"s":1,"v":[]}|0x5a5c3c9f
10:57:19.312 (329888551)|HEAP_ALLOCATE|[18]|Bytes:5
10:57:19.312 (329907986)|VARIABLE_SCOPE_BEGIN|[18]|o|Opportunity|true|false
10:57:19.312 (333225555)|VARIABLE_ASSIGNMENT|[18]|o|{"LastModifiedDate":"2017-01-05T17:57:19.000Z","Sales_Order__c":false,"Data_Intelligence_To (6 more) ...":0.00,"AccountId":"0015C000002ZR9XQAW","HasOpportunityLineIt (2 more) ...":false,"Billing_Information_ (12 more) ...":false,"No_Origninal_Account (6 more) ...":false,"ForecastCategory":"Omitted","Converted_From_Lead_ (2 more) ...":false,"Close_Date_Missing__ (1 more) ...":false,"CloseDate":"2017-03-31T00:00:00.000Z","mh_Associated_Blue_S (7 more) ...":false,"Name":"42 Riot- tester 19","PLM_Review__c":false,"Teleservices_Total__ (1 more) ...":0.00,"CreatedById":"0050P000006jNqqQAE","Stage_Validation_SOW (12 more) ...":"Not SOW Received","Marketing_Technology (9 more) ...":0.00,"CSM_Assigned__c":false,"Lead_Created_DateTim (4 more) ...":"2017-01-04T22:27:46.000Z","Internal_Approval_Da (10 more) ...":"2017-01-05T00:00:00.000Z","SmartForms__c":false,"Data_Total__c":0.00,"IsDeleted":false,"Commit_Probability__ (1 more) ...":"Low","Billing_Address__c":"3710 W Mission Lane_ (39 more) ...","Open_Won_Lost__c":"Open","Contact_Missing__c":false,"Setup_Management_Tot (5 more) ...":0.00,"Digital_Total__c":0.00,"Inbound_Support_Tota (4 more) ...":0.00,"CreatedDate":"2017-01-05T17:57:19.000Z","mh_Managers_Notes_Ex (6 more) ...":false,"Id":"0065C000002Q95UQAS","Data_Quality_Score__ (1 more) ...":40,"ForecastCategoryName":"Omitted","Dialogue_Total__c":0.00,"Research_Total__c":0.00,"Dialogue_Total_No_Ca (9 more) ...":0.00,"IsClosed":false,"Opportunity_Amount__ (1 more) ...":0.00,"Clients_Validation__ (1 more) ...":false,"Data_Quality_Descrip (7 more) ...":"Missing: Type, Lead  (18 more) ...","OwnerId":"0050P000006jNqqQAE","Lead_Create_Date__c":"2017-01-04T22:27:46.000Z","IsWon":false,"RecordTypeId":"012U00000000GAPIA2","StageName":"Long Range Forecast","Engagement_Planning_ (8 more) ...":0.00,"Probability":0,"Stage_Validation_Clo (10 more) ...":"Not Closed Won","mh_Additional_Notes_ (8 more) ...":false,"Stage_Missing__c":false,"Analytics_Total__c":0.00,"Reporting_Total__c":0.00,"SystemModstamp":"2017-01-05T17:57:19.000Z","Associated_Budget_Al (6 more) ...":"_IM1_/servlet/servle (117 more) ...","Viewpath__Viewpath_P (17 more) ...":"_HL_ENCODED_/_HL_ _H (11 more) ...","No_Owner_Match__c":false,"Marketing_Total__c":0.00,"IsPrivate":false,"LastModifiedById":"0050P000006jNqqQAE"}|0x4c197f4a
10:57:19.312 (333239173)|STATEMENT_EXECUTE|[18]
10:57:19.312 (333241024)|STATEMENT_EXECUTE|[19]
10:57:19.312 (333288179)|HEAP_ALLOCATE|[EXTERNAL]|Bytes:4
10:57:19.312 (333305007)|HEAP_ALLOCATE|[18]|Bytes:5
10:57:19.312 (333318365)|VARIABLE_ASSIGNMENT|[18]|o|null|
10:57:19.312 (333321432)|STATEMENT_EXECUTE|[23]
10:57:19.312 (333329285)|HEAP_ALLOCATE|[23]|Bytes:4
10:57:19.312 (333339024)|VARIABLE_SCOPE_BEGIN|[23]|actualSales|Map<Id,Decimal>|true|false
10:57:19.312 (333353486)|VARIABLE_ASSIGNMENT|[23]|actualSales|{"s":1,"v":{}}|0x602d6666
10:57:19.312 (333355573)|STATEMENT_EXECUTE|[24]
10:57:19.312 (333359208)|HEAP_ALLOCATE|[24]|Bytes:194
10:57:19.312 (333363699)|HEAP_ALLOCATE|[24]|Bytes:4
10:57:19.312 (333722796)|SOQL_EXECUTE_BEGIN|[24]|Aggregations:0|SELECT Associated_Account_Plan__c, SUM(Opportunity_Amount__c) Amt FROM Opportunity WHERE (Associated_Account_Plan__c IN :tmpVar1 AND StageName = 'Closed Won') GROUP BY Associated_Account_Plan__c
10:57:19.312 (359263424)|SOQL_EXECUTE_END|[24]|Rows:0
10:57:19.312 (359284372)|HEAP_ALLOCATE|[24]|Bytes:4
10:57:19.312 (359292687)|HEAP_ALLOCATE|[24]|Bytes:0
10:57:19.312 (359352746)|HEAP_ALLOCATE|[24]|Bytes:4
10:57:19.312 (359363319)|VARIABLE_SCOPE_BEGIN|[24]|planActualSales|List<AggregateResult>|true|false
10:57:19.312 (359377837)|VARIABLE_ASSIGNMENT|[24]|planActualSales|{"s":1,"v":[]}|0x63d282ca
10:57:19.312 (359500499)|HEAP_ALLOCATE|[26]|Bytes:5
10:57:19.312 (359523941)|VARIABLE_ASSIGNMENT|[26]|pas|null|
10:57:19.312 (359527256)|STATEMENT_EXECUTE|[26]
10:57:19.312 (359528994)|STATEMENT_EXECUTE|[33]
10:57:19.312 (359533193)|HEAP_ALLOCATE|[33]|Bytes:4
10:57:19.312 (359539332)|VARIABLE_SCOPE_BEGIN|[33]|pendingSales|Map<Id,Decimal>|true|false
10:57:19.312 (359551254)|VARIABLE_ASSIGNMENT|[33]|pendingSales|{"s":1,"v":{}}|0x11930ca0
10:57:19.312 (359553548)|STATEMENT_EXECUTE|[34]
10:57:19.312 (359556849)|HEAP_ALLOCATE|[34]|Bytes:226
10:57:19.312 (359563562)|HEAP_ALLOCATE|[34]|Bytes:4
10:57:19.312 (359820440)|SOQL_EXECUTE_BEGIN|[34]|Aggregations:0|SELECT Associated_Account_Plan__c, SUM(Opportunity_Amount__c) Amt FROM Opportunity WHERE (Associated_Account_Plan__c IN :tmpVar1 AND StageName != 'Closed Won' AND StageName != 'Closed Lost') GROUP BY Associated_Account_Plan__c
10:57:19.312 (361935536)|SOQL_EXECUTE_END|[34]|Rows:1
10:57:19.312 (361949506)|HEAP_ALLOCATE|[34]|Bytes:8
10:57:19.312 (361962586)|HEAP_ALLOCATE|[34]|Bytes:46
10:57:19.312 (361975250)|HEAP_ALLOCATE|[34]|Bytes:8
10:57:19.312 (361983114)|VARIABLE_SCOPE_BEGIN|[34]|planPendingSales|List<AggregateResult>|true|false
10:57:19.312 (362005671)|VARIABLE_ASSIGNMENT|[34]|planPendingSales|{"s":1,"v":[{"s":2,"v":{"Amt":0.0}}]}|0x1722ff40
10:57:19.312 (362041410)|HEAP_ALLOCATE|[37]|Bytes:5
10:57:19.312 (362067298)|HEAP_ALLOCATE|[37]|Bytes:12
10:57:19.312 (362074489)|VARIABLE_SCOPE_BEGIN|[37]|pps|AggregateResult|true|false
10:57:19.312 (362086189)|VARIABLE_ASSIGNMENT|[37]|pps|{"s":1,"v":{"Amt":0.0}}|0x61007f3c
10:57:19.312 (362089275)|STATEMENT_EXECUTE|[37]
10:57:19.312 (362090704)|STATEMENT_EXECUTE|[38]
10:57:19.312 (362094445)|HEAP_ALLOCATE|[38]|Bytes:7
10:57:19.312 (362126977)|USER_DEBUG|[38]|DEBUG|Pending
10:57:19.312 (362132303)|STATEMENT_EXECUTE|[39]
10:57:19.312 (362134976)|HEAP_ALLOCATE|[39]|Bytes:4
10:57:19.312 (362137438)|HEAP_ALLOCATE|[39]|Bytes:26
10:57:19.312 (362206439)|HEAP_ALLOCATE|[39]|Bytes:6
10:57:19.312 (362209662)|HEAP_ALLOCATE|[39]|Bytes:3
10:57:19.312 (362227139)|HEAP_ALLOCATE|[39]|Bytes:28
10:57:19.312 (362240143)|HEAP_ALLOCATE|[39]|Bytes:3
10:57:19.312 (362251979)|HEAP_ALLOCATE|[39]|Bytes:17
10:57:19.312 (362259771)|USER_DEBUG|[39]|DEBUG|ID: null-Amt: 0.0
10:57:19.312 (362263518)|STATEMENT_EXECUTE|[40]
10:57:19.312 (362297602)|HEAP_ALLOCATE|[40]|Bytes:28
10:57:19.312 (362314137)|HEAP_ALLOCATE|[EXTERNAL]|Bytes:-4
10:57:19.312 (362325396)|HEAP_ALLOCATE|[37]|Bytes:5
10:57:19.312 (362335824)|VARIABLE_ASSIGNMENT|[37]|pps|null|
10:57:19.312 (362338586)|STATEMENT_EXECUTE|[44]
10:57:19.312 (362373301)|HEAP_ALLOCATE|[44]|Bytes:4
10:57:19.312 (362409632)|VARIABLE_SCOPE_BEGIN|[44]|updateAccountPlan|List<Account_Plan__c>|true|false
10:57:19.312 (362415305)|HEAP_ALLOCATE|[EXTERNAL]|Bytes:4
10:57:19.312 (362424308)|VARIABLE_ASSIGNMENT|[44]|updateAccountPlan|{"s":1,"v":[]}|0x7edf8a2
10:57:19.312 (362428425)|HEAP_ALLOCATE|[45]|Bytes:86
10:57:19.312 (362432752)|HEAP_ALLOCATE|[45]|Bytes:4
10:57:19.312 (362683819)|SOQL_EXECUTE_BEGIN|[45]|Aggregations:0|SELECT Id, Pending_Sales__c, Actual_Sales__c FROM Account_Plan__c 
10:57:19.312 (363563708)|SOQL_EXECUTE_END|[45]|Rows:0
10:57:19.312 (363759625)|HEAP_ALLOCATE|[45]|Bytes:49
10:57:19.312 (363766460)|HEAP_ALLOCATE|[45]|Bytes:8
10:57:19.312 (363774003)|SYSTEM_METHOD_ENTRY|[7]|QueryLocatorIterator.QueryLocatorIterator()
10:57:19.312 (363776554)|STATEMENT_EXECUTE|[7]
10:57:19.312 (363783950)|SYSTEM_METHOD_EXIT|[7]|QueryLocatorIterator
10:57:19.312 (363789502)|HEAP_ALLOCATE|[45]|Bytes:28
10:57:19.312 (363802756)|HEAP_ALLOCATE|[45]|Bytes:8
10:57:19.312 (363805042)|HEAP_ALLOCATE|[45]|Bytes:8
10:57:19.312 (363808661)|VARIABLE_SCOPE_BEGIN|[15]|this|Database.QueryLocatorIterator|true|false
10:57:19.312 (363830230)|VARIABLE_ASSIGNMENT|[15]|this|{}|0x6e095e64
10:57:19.312 (363832709)|VARIABLE_SCOPE_BEGIN|[15]|values|List<SObject>|true|false
10:57:19.312 (363836022)|VARIABLE_ASSIGNMENT|[15]|values|null|
10:57:19.312 (363837856)|VARIABLE_SCOPE_BEGIN|[15]|ql|Database.QueryLocator|true|false
10:57:19.312 (363851130)|VARIABLE_ASSIGNMENT|[15]|ql|{"query":"SELECT Id, Pending_S (66 more) ..."}|0x10c6260c
10:57:19.312 (363853291)|VARIABLE_SCOPE_BEGIN|[15]|totalNumRecords|Integer|false|false
10:57:19.312 (363856671)|VARIABLE_ASSIGNMENT|[15]|totalNumRecords|0
10:57:19.312 (363858527)|VARIABLE_SCOPE_BEGIN|[15]|queryMoreSize|Integer|false|false
10:57:19.312 (363861000)|VARIABLE_ASSIGNMENT|[15]|queryMoreSize|49990
10:57:19.312 (363905556)|HEAP_ALLOCATE|[45]|Bytes:28
10:57:19.312 (363920095)|METHOD_ENTRY|[45]||Database.QueryLocatorIterator.hasNext()
10:57:19.312 (363935641)|METHOD_EXIT|[45]||Database.QueryLocatorIterator.hasNext()
10:57:19.312 (363945176)|VARIABLE_ASSIGNMENT|[45]|ap|null|
10:57:19.312 (363947745)|STATEMENT_EXECUTE|[45]
10:57:19.312 (363960498)|STATEMENT_EXECUTE|[64]
10:57:19.312 (364012012)|HEAP_ALLOCATE|[EXTERNAL]|Bytes:4
10:57:19.312 (364020478)|SYSTEM_MODE_EXIT|false
10:57:19.312 (364026655)|METHOD_EXIT|[4]|01pU00000008K9w|OpportunityTrigger.updateAccountSalesSummary(List<Opportunity>)
10:57:19.312 (364039745)|STATEMENT_EXECUTE|[10]
10:57:19.312 (364041060)|STATEMENT_EXECUTE|[11]
10:57:19.312 (364100130)|METHOD_ENTRY|[11]|01pU00000008K9w|OpportunityTrigger.updateStageName(Map<Id,Opportunity>, Map<Id,Opportunity>, Boolean, Boolean)
10:57:19.312 (364119824)|VARIABLE_SCOPE_BEGIN|[67]|this|OpportunityTrigger|true|false
10:57:19.312 (364131853)|VARIABLE_ASSIGNMENT|[67]|this|{}|0x459ccec4
10:57:19.312 (364134730)|VARIABLE_SCOPE_BEGIN|[67]|oldOpps|Map<Id,Opportunity>|true|false
10:57:19.312 (364138119)|VARIABLE_ASSIGNMENT|[67]|oldOpps|null|
10:57:19.312 (364140063)|VARIABLE_SCOPE_BEGIN|[67]|newOpps|Map<Id,Opportunity>|true|false
10:57:19.312 (367450584)|VARIABLE_ASSIGNMENT|[67]|newOpps|{"s":1,"v":{"0065C000002Q95UQAS":{"LastModifiedDate":"2017-01-05T17:57:19.000Z","Sales_Order__c":false,"Data_Intelligence_To (6 more) ...":0.00,"AccountId":"0015C000002ZR9XQAW","HasOpportunityLineIt (2 more) ...":false,"Billing_Information_ (12 more) ...":false,"No_Origninal_Account (6 more) ...":false,"ForecastCategory":"Omitted","Converted_From_Lead_ (2 more) ...":false,"Close_Date_Missing__ (1 more) ...":false,"CloseDate":"2017-03-31T00:00:00.000Z","mh_Associated_Blue_S (7 more) ...":false,"Name":"42 Riot- tester 19","PLM_Review__c":false,"Teleservices_Total__ (1 more) ...":0.00,"CreatedById":"0050P000006jNqqQAE","Stage_Validation_SOW (12 more) ...":"Not SOW Received","Marketing_Technology (9 more) ...":0.00,"CSM_Assigned__c":false,"Lead_Created_DateTim (4 more) ...":"2017-01-04T22:27:46.000Z","Internal_Approval_Da (10 more) ...":"2017-01-05T00:00:00.000Z","SmartForms__c":false,"Data_Total__c":0.00,"IsDeleted":false,"Commit_Probability__ (1 more) ...":"Low","Billing_Address__c":"3710 W Mission Lane_ (39 more) ...","Open_Won_Lost__c":"Open","Contact_Missing__c":false,"Setup_Management_Tot (5 more) ...":0.00,"Digital_Total__c":0.00,"Inbound_Support_Tota (4 more) ...":0.00,"CreatedDate":"2017-01-05T17:57:19.000Z","mh_Managers_Notes_Ex (6 more) ...":false,"Id":"0065C000002Q95UQAS","Data_Quality_Score__ (1 more) ...":40,"ForecastCategoryName":"Omitted","Dialogue_Total__c":0.00,"Research_Total__c":0.00,"Dialogue_Total_No_Ca (9 more) ...":0.00,"IsClosed":false,"Opportunity_Amount__ (1 more) ...":0.00,"Clients_Validation__ (1 more) ...":false,"Data_Quality_Descrip (7 more) ...":"Missing: Type, Lead  (18 more) ...","OwnerId":"0050P000006jNqqQAE","Lead_Create_Date__c":"2017-01-04T22:27:46.000Z","IsWon":false,"RecordTypeId":"012U00000000GAPIA2","StageName":"Long Range Forecast","Engagement_Planning_ (8 more) ...":0.00,"Probability":0,"Stage_Validation_Clo (10 more) ...":"Not Closed Won","mh_Additional_Notes_ (8 more) ...":false,"Stage_Missing__c":false,"Analytics_Total__c":0.00,"Reporting_Total__c":0.00,"SystemModstamp":"2017-01-05T17:57:19.000Z","Associated_Budget_Al (6 more) ...":"_IM1_/servlet/servle (117 more) ...","Viewpath__Viewpath_P (17 more) ...":"_HL_ENCODED_/_HL_ _H (11 more) ...","No_Owner_Match__c":false,"Marketing_Total__c":0.00,"IsPrivate":false,"LastModifiedById":"0050P000006jNqqQAE"}}}|0x23edca8f
10:57:19.312 (367468336)|VARIABLE_SCOPE_BEGIN|[67]|isInsert|Boolean|false|false
10:57:19.312 (367473388)|VARIABLE_ASSIGNMENT|[67]|isInsert|true
10:57:19.312 (367475977)|VARIABLE_SCOPE_BEGIN|[67]|isDelete|Boolean|false|false
10:57:19.312 (367478436)|VARIABLE_ASSIGNMENT|[67]|isDelete|false
10:57:19.312 (367485659)|SYSTEM_MODE_ENTER|false
10:57:19.312 (367489533)|HEAP_ALLOCATE|[68]|Bytes:5
10:57:19.312 (367493471)|STATEMENT_EXECUTE|[67]
10:57:19.312 (367494934)|STATEMENT_EXECUTE|[68]
10:57:19.312 (367499229)|HEAP_ALLOCATE|[68]|Bytes:4
10:57:19.312 (367522697)|VARIABLE_SCOPE_BEGIN|[68]|changedOpps|Map<Id,Opportunity>|true|false
10:57:19.312 (367534685)|VARIABLE_ASSIGNMENT|[68]|changedOpps|{"s":1,"v":{}}|0x7334ae8
10:57:19.312 (367538219)|STATEMENT_EXECUTE|[70]
10:57:19.312 (367539341)|STATEMENT_EXECUTE|[71]
10:57:19.312 (370810546)|VARIABLE_ASSIGNMENT|[71]|changedOpps|{"s":1,"v":{"0065C000002Q95UQAS":{"LastModifiedDate":"2017-01-05T17:57:19.000Z","Sales_Order__c":false,"Data_Intelligence_To (6 more) ...":0.00,"AccountId":"0015C000002ZR9XQAW","HasOpportunityLineIt (2 more) ...":false,"Billing_Information_ (12 more) ...":false,"No_Origninal_Account (6 more) ...":false,"ForecastCategory":"Omitted","Converted_From_Lead_ (2 more) ...":false,"Close_Date_Missing__ (1 more) ...":false,"CloseDate":"2017-03-31T00:00:00.000Z","mh_Associated_Blue_S (7 more) ...":false,"Name":"42 Riot- tester 19","PLM_Review__c":false,"Teleservices_Total__ (1 more) ...":0.00,"CreatedById":"0050P000006jNqqQAE","Stage_Validation_SOW (12 more) ...":"Not SOW Received","Marketing_Technology (9 more) ...":0.00,"CSM_Assigned__c":false,"Lead_Created_DateTim (4 more) ...":"2017-01-04T22:27:46.000Z","Internal_Approval_Da (10 more) ...":"2017-01-05T00:00:00.000Z","SmartForms__c":false,"Data_Total__c":0.00,"IsDeleted":false,"Commit_Probability__ (1 more) ...":"Low","Billing_Address__c":"3710 W Mission Lane_ (39 more) ...","Open_Won_Lost__c":"Open","Contact_Missing__c":false,"Setup_Management_Tot (5 more) ...":0.00,"Digital_Total__c":0.00,"Inbound_Support_Tota (4 more) ...":0.00,"CreatedDate":"2017-01-05T17:57:19.000Z","mh_Managers_Notes_Ex (6 more) ...":false,"Id":"0065C000002Q95UQAS","Data_Quality_Score__ (1 more) ...":40,"ForecastCategoryName":"Omitted","Dialogue_Total__c":0.00,"Research_Total__c":0.00,"Dialogue_Total_No_Ca (9 more) ...":0.00,"IsClosed":false,"Opportunity_Amount__ (1 more) ...":0.00,"Clients_Validation__ (1 more) ...":false,"Data_Quality_Descrip (7 more) ...":"Missing: Type, Lead  (18 more) ...","OwnerId":"0050P000006jNqqQAE","Lead_Create_Date__c":"2017-01-04T22:27:46.000Z","IsWon":false,"RecordTypeId":"012U00000000GAPIA2","StageName":"Long Range Forecast","Engagement_Planning_ (8 more) ...":0.00,"Probability":0,"Stage_Validation_Clo (10 more) ...":"Not Closed Won","mh_Additional_Notes_ (8 more) ...":false,"Stage_Missing__c":false,"Analytics_Total__c":0.00,"Reporting_Total__c":0.00,"SystemModstamp":"2017-01-05T17:57:19.000Z","Associated_Budget_Al (6 more) ...":"_IM1_/servlet/servle (117 more) ...","Viewpath__Viewpath_P (17 more) ...":"_HL_ENCODED_/_HL_ _H (11 more) ...","No_Owner_Match__c":false,"Marketing_Total__c":0.00,"IsPrivate":false,"LastModifiedById":"0050P000006jNqqQAE"}}}|0x23edca8f
10:57:19.312 (370853951)|STATEMENT_EXECUTE|[83]
10:57:19.312 (370855993)|STATEMENT_EXECUTE|[85]
10:57:19.312 (370860519)|HEAP_ALLOCATE|[85]|Bytes:133
10:57:19.312 (370866361)|HEAP_ALLOCATE|[85]|Bytes:4
10:57:19.312 (370896080)|HEAP_ALLOCATE|[EXTERNAL]|Bytes:8
10:57:19.312 (370903087)|HEAP_ALLOCATE|[85]|Bytes:8
10:57:19.312 (381436270)|SOQL_EXECUTE_BEGIN|[85]|Aggregations:0|SELECT Id, Related_Opportunity__c, Opportunity_Stage_text__c FROM Campaign_Design_Profile__c WHERE Related_Opportunity__c IN :tmpVar1
10:57:19.312 (383751334)|SOQL_EXECUTE_END|[85]|Rows:0
10:57:19.312 (383770039)|HEAP_ALLOCATE|[85]|Bytes:4
10:57:19.312 (383778104)|HEAP_ALLOCATE|[85]|Bytes:0
10:57:19.312 (383825218)|HEAP_ALLOCATE|[85]|Bytes:4
10:57:19.312 (383834511)|VARIABLE_SCOPE_BEGIN|[85]|lstCDP|List<Campaign_Design_Profile__c>|true|false
10:57:19.312 (383848383)|VARIABLE_ASSIGNMENT|[85]|lstCDP|{"s":1,"v":[]}|0x352f4086
10:57:19.312 (383960435)|HEAP_ALLOCATE|[87]|Bytes:5
10:57:19.312 (383974678)|VARIABLE_ASSIGNMENT|[87]|cdp|null|
10:57:19.312 (383978299)|STATEMENT_EXECUTE|[87]
10:57:19.312 (383979955)|STATEMENT_EXECUTE|[93]
10:57:19.312 (384014169)|HEAP_ALLOCATE|[EXTERNAL]|Bytes:4
10:57:19.312 (384021620)|SYSTEM_MODE_EXIT|false
10:57:19.312 (384029582)|METHOD_EXIT|[11]|01pU00000008K9w|OpportunityTrigger.updateStageName(Map<Id,Opportunity>, Map<Id,Opportunity>, Boolean, Boolean)
10:57:19.384 (384037846)|CUMULATIVE_LIMIT_USAGE
10:57:19.384 (384037846)|LIMIT_USAGE_FOR_NS|(default)|
  Number of SOQL queries: 4 out of 100
  Number of query rows: 10 out of 50000
  Number of SOSL queries: 0 out of 20
  Number of DML statements: 0 out of 150
  Number of DML rows: 0 out of 10000
  Maximum CPU time: 0 out of 10000
  Maximum heap size: 0 out of 6000000
  Number of callouts: 0 out of 100
  Number of Email Invocations: 0 out of 10
  Number of future calls: 0 out of 50
  Number of queueable jobs added to the queue: 0 out of 50
  Number of Mobile Apex push calls: 0 out of 10
Joshua Anderson 17Joshua Anderson 17
10:57:19.384 (384037846)|CUMULATIVE_LIMIT_USAGE_END

10:57:19.312 (385465940)|CODE_UNIT_FINISHED|OpportunityTrigger on Opportunity trigger event AfterInsert for [0065C000002Q95U]
10:57:19.0 (396076803)|WF_RULE_EVAL_BEGIN|Workflow
10:57:19.0 (396108112)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Opp Stage: Discovery|01QU00000004eTG|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (402981811)|WF_RULE_FILTER|[Opportunity : Stage equals Discovery]
10:57:19.0 (403002755)|WF_RULE_EVAL_VALUE|Long Range Forecast
10:57:19.0 (403006091)|WF_CRITERIA_END|false
10:57:19.0 (403016897)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Stamp Actual - Analytics|01QU0000000UHRr|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (403043509)|WF_RULE_FILTER|[Opportunity : Stage equals Closed Won]
10:57:19.0 (403050989)|WF_RULE_EVAL_VALUE|Long Range Forecast
10:57:19.0 (403052797)|WF_CRITERIA_END|false
10:57:19.0 (403059450)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Stamp Next Step Last Modified|01QU00000004PEg|ON_ALL_CHANGES|0
10:57:19.0 (403224415)|WF_FORMULA|Formula:ENCODED:[treatNullAsNull]ISCHANGED( {!ID:NextStep} )|Values:NextStep=null
10:57:19.0 (403227919)|WF_CRITERIA_END|false
10:57:19.0 (403239185)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Digial Opportunity|01QU0000000DZXh|ON_ALL_CHANGES|0
10:57:19.0 (403273551)|WF_RULE_FILTER|[Opportunity : Primary Campaign Source contains OMC, Partner Alliance, Eloqua Customers]
10:57:19.0 (403285041)|WF_RULE_EVAL_VALUE|
10:57:19.0 (403286897)|WF_CRITERIA_END|false
10:57:19.0 (403293510)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Opp Stage: SOW Received|01QU00000004eTC|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (403314863)|WF_RULE_FILTER|[Opportunity : Stage equals SOW Received]
10:57:19.0 (403323106)|WF_RULE_EVAL_VALUE|Long Range Forecast
10:57:19.0 (403324979)|WF_CRITERIA_END|false
10:57:19.0 (403331288)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Opp Stage: Proposal|01QU00000004eTB|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (403349921)|WF_RULE_FILTER|[Opportunity : Stage equals Proposal]
10:57:19.0 (403355927)|WF_RULE_EVAL_VALUE|Long Range Forecast
10:57:19.0 (403357444)|WF_CRITERIA_END|false
10:57:19.0 (403362974)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Opportunity Close Date/Time Stamp|01QU00000004Qnm|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (403379777)|WF_RULE_FILTER|[Opportunity : Stage equals Closed Lost, Closed Won]
10:57:19.0 (403386509)|WF_RULE_EVAL_VALUE|Long Range Forecast
10:57:19.0 (403388043)|WF_CRITERIA_END|false
10:57:19.0 (403393793)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Stamp Actual - Teleservices|01QU0000000UHSL|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (403409748)|WF_RULE_FILTER|[Opportunity : Stage equals Closed Won]
10:57:19.0 (403414876)|WF_RULE_EVAL_VALUE|Long Range Forecast
10:57:19.0 (403416295)|WF_CRITERIA_END|false
10:57:19.0 (403421254)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Billing Adress Information|01QU00000004Xpb|ON_CREATE_ONLY|0
10:57:19.0 (403440136)|WF_RULE_FILTER|[Opportunity : Created By not equal to ]
10:57:19.0 (403450871)|WF_RULE_EVAL_VALUE|0050P000006jNqq
10:57:19.0 (403452994)|WF_CRITERIA_END|true
10:57:19.0 (404297209)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|DocuSign Status Signed|01QU00000004NcA|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (404330655)|WF_RULE_FILTER|[Opportunity : DocuSign Status equals Signed]
10:57:19.0 (404336687)|WF_RULE_EVAL_VALUE|
10:57:19.0 (404338759)|WF_CRITERIA_END|false
10:57:19.0 (404345926)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Stamp Actual - Marketing Technology|01QU0000000UHSG|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (404366998)|WF_RULE_FILTER|[Opportunity : Stage equals Closed Won]
10:57:19.0 (404375565)|WF_RULE_EVAL_VALUE|Long Range Forecast
10:57:19.0 (404377263)|WF_CRITERIA_END|false
10:57:19.0 (404383257)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Contact Description Notes|01QU00000004eTz|ON_ALL_CHANGES|0
10:57:19.0 (404413474)|WF_RULE_FILTER|[Opportunity : Created By not equal to ] 
AND [Opportunity : Sales Opportunity Objective equals ]
10:57:19.0 (404422344)|WF_RULE_EVAL_VALUE|0050P000006jNqq
10:57:19.0 (404426258)|WF_RULE_EVAL_VALUE|
10:57:19.0 (404427871)|WF_CRITERIA_END|true
10:57:19.0 (404437095)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|NEW OMC Opportunity Created|01QU00000004tlC|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (404459477)|WF_RULE_FILTER|[Opportunity : Primary Campaign Source contains OMC, Partner Alliance]
10:57:19.0 (404466716)|WF_RULE_EVAL_VALUE|
10:57:19.0 (404468894)|WF_CRITERIA_END|false
10:57:19.0 (404474442)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Opportunity - Update Name|01QU00000004PPK|ON_ALL_CHANGES|0
10:57:19.0 (404705428)|WF_FORMULA|Formula:ENCODED:[treatNullAsNull]NOT(CONTAINS( {!ID:Name} , {!ID:Account.TextName} ))|Values:Name=42 Riot- tester 19, Account.Name=42 Riot, LLC
10:57:19.0 (404708986)|WF_CRITERIA_END|true
10:57:19.0 (404723851)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Initial Approval Submitted - no status change|01QU00000004NnF|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (404752049)|WF_RULE_FILTER|[Opportunity : Approval Status equals Initial - Submitted]
10:57:19.0 (404757670)|WF_RULE_EVAL_VALUE|
10:57:19.0 (404759439)|WF_CRITERIA_END|false
10:57:19.0 (404765499)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Stamp Actual - Setup & Management|01QU0000000UHSB|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (404785211)|WF_RULE_FILTER|[Opportunity : Stage equals Closed Won]
10:57:19.0 (404794071)|WF_RULE_EVAL_VALUE|Long Range Forecast
10:57:19.0 (404795848)|WF_CRITERIA_END|false
10:57:19.0 (404801790)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Opp Stage: Internal Approval|01QU00000004eTV|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (404819234)|WF_RULE_FILTER|[Opportunity : Stage equals Internal Approval]
10:57:19.0 (404824841)|WF_RULE_EVAL_VALUE|Long Range Forecast
10:57:19.0 (404826366)|WF_CRITERIA_END|false
10:57:19.0 (404831491)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Opportunity Amount Changed|01QU00000004VXf|ON_ALL_CHANGES|0
10:57:19.0 (404975998)|WF_FORMULA|Formula:ENCODED:[treatNullAsNull]AND(ISCHANGED({!ID:Amount}), {!ID:IsWon})|Values:IsWon=0, Amount=null
10:57:19.0 (404979341)|WF_CRITERIA_END|false
10:57:19.0 (404989830)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Stamp Date Reconciled|01QU00000004Sfv|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (405017285)|WF_RULE_FILTER|[Opportunity : Stage equals Closed Won]
10:57:19.0 (405027007)|WF_RULE_EVAL_VALUE|Long Range Forecast
10:57:19.0 (405028914)|WF_CRITERIA_END|false
10:57:19.0 (405035105)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Stamp Actual - Dialogue|01QU00000004Sfq|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (405052847)|WF_RULE_FILTER|[Opportunity : Stage equals Closed Won]
10:57:19.0 (405058410)|WF_RULE_EVAL_VALUE|Long Range Forecast
10:57:19.0 (405059876)|WF_CRITERIA_END|false
10:57:19.0 (405065021)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Opportunity Signed SOW Received|01QU00000004Nbq|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (405080660)|WF_RULE_FILTER|[Opportunity : Stage equals SOW Received]
10:57:19.0 (405086030)|WF_RULE_EVAL_VALUE|Long Range Forecast
10:57:19.0 (405087424)|WF_CRITERIA_END|false
10:57:19.0 (405092540)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Stamp Actual - Data|01QU00000004Sfp|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (405108171)|WF_RULE_FILTER|[Opportunity : Stage equals Closed Won]
10:57:19.0 (405113009)|WF_RULE_EVAL_VALUE|Long Range Forecast
10:57:19.0 (405114450)|WF_CRITERIA_END|false
10:57:19.0 (405119328)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Register Digital Deal|01QU00000004nc4|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (405148044)|WF_RULE_FILTER|[Opportunity : Project Type_OLD includes Digital] 
AND [Opportunity : Register Deal with Partner equals Yes]
10:57:19.0 (405170197)|WF_RULE_EVAL_VALUE|
10:57:19.0 (405172162)|WF_CRITERIA_END|false
10:57:19.0 (405179750)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Stamp Actual - Digital|01QU00000004Sfr|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (405198665)|WF_RULE_FILTER|[Opportunity : Stage equals Closed Won]
10:57:19.0 (405204894)|WF_RULE_EVAL_VALUE|Long Range Forecast
10:57:19.0 (405206418)|WF_CRITERIA_END|false
10:57:19.0 (405211460)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Opportunity Approved - Changes Made|01QU00000004WW9|ON_ALL_CHANGES|0
10:57:19.0 (405345689)|WF_FORMULA|Formula:ENCODED:[treatNullAsNull]AND(ISCHANGED( {!ID:LastActivityDate} ), {!ID:IsWon})|Values:IsWon=0, LastActivityDate=null
10:57:19.0 (405350046)|WF_CRITERIA_END|false
10:57:19.0 (405360574)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Stamp Actual - Inbound Support|01QU0000000UHS6|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (405385513)|WF_RULE_FILTER|[Opportunity : Stage equals Closed Won]
10:57:19.0 (405394138)|WF_RULE_EVAL_VALUE|Long Range Forecast
10:57:19.0 (405395870)|WF_CRITERIA_END|false
10:57:19.0 (405401526)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Closed Won Mark as Named Account|01QU00000004qHs|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (405418217)|WF_RULE_FILTER|[Opportunity : Stage equals SOW Received]
10:57:19.0 (405423718)|WF_RULE_EVAL_VALUE|Long Range Forecast
10:57:19.0 (405425144)|WF_CRITERIA_END|false
10:57:19.0 (405430686)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Opportunity Billing Information Confirmed Date|01QU00000004PBN|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (405467512)|WF_RULE_FILTER|[Opportunity : Billing Information Confirmed equals true]
10:57:19.0 (405472487)|WF_RULE_EVAL_VALUE|0
10:57:19.0 (405474368)|WF_CRITERIA_END|false
10:57:19.0 (405480005)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|SmartForms Description|01QU00000004gAp|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (405502134)|WF_RULE_FILTER|[Opportunity : SmartForms equals true]
10:57:19.0 (405505180)|WF_RULE_EVAL_VALUE|0
10:57:19.0 (405506753)|WF_CRITERIA_END|false
10:57:19.0 (405511968)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Stamp Actual - Engagement Planning|01QU0000000UHS1|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (405528139)|WF_RULE_FILTER|[Opportunity : Stage equals Closed Won]
10:57:19.0 (405533933)|WF_RULE_EVAL_VALUE|Long Range Forecast
10:57:19.0 (405535845)|WF_CRITERIA_END|false
10:57:19.0 (405541044)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Opp Stage: Approved|01QU00000004eTa|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (405556530)|WF_RULE_FILTER|[Opportunity : Stage equals Approved]
10:57:19.0 (405561567)|WF_RULE_EVAL_VALUE|Long Range Forecast
10:57:19.0 (405563147)|WF_CRITERIA_END|false
10:57:19.0 (405567891)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Opportunity Approved Pricing Changed|01QU00000004RHh|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (406564779)|WF_FORMULA|Formula:ENCODED:[treatNullAsNull](( {!ID:Amount}  <>  {!ID:00NU0000001RF1s} ) &&  ISPICKVAL ({!ID:00NU0000001OAcs} , "Exception - Approved")) &#124;&#124;
(( {!ID:Amount}  <>  {!ID:00NU0000001RF1R} ) &&  ISPICKVAL ({!ID:00NU0000001OAcs} , "Initial - Approved"))|Values:Amount_At_Exception_Approval__c=null, Amount=null, Approval_Status__c=null, Amount_At_Initial_Approval__c=null
10:57:19.0 (406572934)|WF_CRITERIA_END|false
10:57:19.0 (406587649)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Lead Qualified (Date/Time)|01QU00000004Qnc|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (406612663)|WF_RULE_FILTER|[Opportunity : Lead Assignment (Date/Time) not equal to ]
10:57:19.0 (406620272)|WF_RULE_EVAL_VALUE|
10:57:19.0 (406622247)|WF_CRITERIA_END|false
10:57:19.0 (406628715)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Register Data Deal|01QU00000004nbz|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (406668807)|WF_RULE_FILTER|[Opportunity : Project Type_OLD includes Data] 
AND [Opportunity : Register Deal with Partner equals Yes]
10:57:19.0 (406683197)|WF_RULE_EVAL_VALUE|
10:57:19.0 (406685119)|WF_CRITERIA_END|false
10:57:19.0 (406692390)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Stamp Amount at Initial Approved|01QU00000004RHw|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (406711841)|WF_RULE_FILTER|[Opportunity : Approval Status equals Initial - Approved]
10:57:19.0 (406716164)|WF_RULE_EVAL_VALUE|
10:57:19.0 (406717704)|WF_CRITERIA_END|false
10:57:19.0 (406722988)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Lead to Opportunity Description Update|01QU00000004NBx|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (406735220)|WF_RULE_FILTER|[Opportunity : Opp Description Pop not equal to ]
10:57:19.0 (406738608)|WF_RULE_EVAL_VALUE|
10:57:19.0 (406739968)|WF_CRITERIA_END|false
10:57:19.0 (406744597)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|OMC Opportunity Stage Update|01QU00000004tlv|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (406779812)|WF_RULE_FILTER|[Opportunity : Primary Campaign Source contains OMC, Partner Alliance] 
AND [Opportunity : Stage equals Requirements Definition/Alignment, Proposal - 120 days, Negotiations - 90 days, Internal Approval, Approved, MSA + SOW Sent - 30 days, SOW Received, Closed Won, Closed Lost]
10:57:19.0 (406787648)|WF_RULE_EVAL_VALUE|
10:57:19.0 (406789281)|WF_CRITERIA_END|false
10:57:19.0 (406795357)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Sales Exception Approval Submitted - no status change|01QU00000004RH3|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (406812034)|WF_RULE_FILTER|[Opportunity : Approval Status equals Exception - Submitted]
10:57:19.0 (406815268)|WF_RULE_EVAL_VALUE|
10:57:19.0 (406816749)|WF_CRITERIA_END|false
10:57:19.0 (406821467)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Opp Stage: SOW Sent|01QU00000004eTk|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (406837293)|WF_RULE_FILTER|[Opportunity : Stage equals SOW Sent]
10:57:19.0 (406845635)|WF_RULE_EVAL_VALUE|Long Range Forecast
10:57:19.0 (406847410)|WF_CRITERIA_END|false
10:57:19.0 (406852838)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|PO status is updated|01QU00000004cVo|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (406865484)|WF_RULE_FILTER|[Opportunity : Client PO Number not equal to ]
10:57:19.0 (406868281)|WF_RULE_EVAL_VALUE|
10:57:19.0 (406869610)|WF_CRITERIA_END|false
10:57:19.0 (406874423)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Stamp Amount at Exception Approved|01QU00000004RHr|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (406890125)|WF_RULE_FILTER|[Opportunity : Approval Status equals Exception - Approved]
10:57:19.0 (406893078)|WF_RULE_EVAL_VALUE|
10:57:19.0 (406894439)|WF_CRITERIA_END|false
10:57:19.0 (406899042)|WF_CRITERIA_BEGIN|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Stamp Actual - Data Intelligence|01QU0000000UHRw|ON_CREATE_OR_TRIGGERING_UPDATE|0
10:57:19.0 (406914644)|WF_RULE_FILTER|[Opportunity : Stage equals Closed Won]
10:57:19.0 (406920345)|WF_RULE_EVAL_VALUE|Long Range Forecast
10:57:19.0 (406921801)|WF_CRITERIA_END|false
10:57:19.0 (406933061)|WF_SPOOL_ACTION_BEGIN|Workflow
10:57:19.0 (407758772)|WF_FIELD_UPDATE|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Field:Opportunity: Billing City|Value:Phoenix|Id=04YU00000004bAY|CurrentRule:Billing Adress Information (Id=01QU00000004Xpb)
10:57:19.0 (407820203)|WF_FIELD_UPDATE|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Field:Opportunity: Billing Country|Value:United States|Id=04YU00000004bAZ|CurrentRule:Billing Adress Information (Id=01QU00000004Xpb)
10:57:19.0 (407869322)|WF_FIELD_UPDATE|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Field:Opportunity: Billing Postal Code|Value:85051|Id=04YU00000004bAa|CurrentRule:Billing Adress Information (Id=01QU00000004Xpb)
10:57:19.0 (407913862)|WF_FIELD_UPDATE|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Field:Opportunity: Billing State|Value:Az|Id=04YU00000004bAb|CurrentRule:Billing Adress Information (Id=01QU00000004Xpb)
10:57:19.0 (407956981)|WF_FIELD_UPDATE|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Field:Opportunity: Billing Street|Value:3710 W Mission Lane|Id=04YU00000004bAc|CurrentRule:Billing Adress Information (Id=01QU00000004Xpb)
10:57:19.0 (408055641)|WF_FIELD_UPDATE|[Opportunity: 42 Riot- tester 19 0065C000002Q95U]|Field:Opportunity: Opportunity Name|Value:42 Riot, LLC- 42 Riot- tester 19|Id=04YU00000004RNg|CurrentRule:Opportunity - Update Name (Id=01QU00000004PPK)
10:57:19.0 (408070514)|WF_ACTION| Field Update: 7;
10:57:19.0 (408072695)|WF_RULE_EVAL_END
10:57:19.428 (428105212)|CODE_UNIT_STARTED|[EXTERNAL]|01qU00000004fxU|OpportunityTrigger on Opportunity trigger event AfterUpdate for [0065C000002Q95U]
10:57:19.428 (428131066)|HEAP_ALLOCATE|[EXTERNAL]|Bytes:8
10:57:19.428 (428155157)|HEAP_ALLOCATE|[EXTERNAL]|Bytes:8
10:57:19.428 (428192408)|HEAP_ALLOCATE|[EXTERNAL]|Bytes:8
10:57:19.428 (428198372)|VARIABLE_SCOPE_BEGIN|[1]|this|OpportunityTrigger|true|false
10:57:19.428 (428221422)|VARIABLE_ASSIGNMENT|[1]|this|{}|0x7ad6a4fe
10:57:19.428 (428240803)|HEAP_ALLOCATE|[EXTERNAL]|Bytes:8
10:57:19.428 (428244075)|VARIABLE_SCOPE_BEGIN|[1]|this|OpportunityTrigger|true|false
10:57:19.428 (428251223)|VARIABLE_ASSIGNMENT|[1]|this|{}|0x7ad6a4fe
10:57:19.428 (428254587)|STATEMENT_EXECUTE|[1]
10:57:19.428 (428255918)|STATEMENT_EXECUTE|[2]
10:57:19.428 (428260036)|HEAP_ALLOCATE|[2]|Bytes:4
10:57:19.428 (428267331)|CONSTRUCTOR_ENTRY|[2]|01pU00000008K9w|<init>()
10:57:19.428 (428271391)|VARIABLE_SCOPE_BEGIN|[11]|this|OpportunityTrigger|true|false
10:57:19.428 (428279063)|VARIABLE_ASSIGNMENT|[11]|this|{}|0x2fa58b6
10:57:19.428 (428662142)|SYSTEM_MODE_ENTER|false
10:57:19.428 (428670410)|HEAP_ALLOCATE|[EXTERNAL]|Bytes:5
10:57:19.428 (428692991)|SYSTEM_MODE_EXIT|false
10:57:19.428 (428696392)|STATEMENT_EXECUTE|[11]
10:57:19.428 (428700579)|SYSTEM_MODE_ENTER|false
10:57:19.428 (428703445)|HEAP_ALLOCATE|[EXTERNAL]|Bytes:5
10:57:19.428 (428708096)|SYSTEM_MODE_EXIT|false
10:57:19.428 (428713619)|CONSTRUCTOR_EXIT|[2]|01pU00000008K9w|<init>()
10:57:19.428 (428728168)|VARIABLE_ASSIGNMENT|[2]|this.ot|0x2fa58b6|0x7ad6a4fe
10:57:19.428 (428749376)|STATEMENT_EXECUTE|[3]
10:57:19.428 (428750707)|STATEMENT_EXECUTE|[4]
10:57:19.428 (428772466)|METHOD_ENTRY|[4]|01pU00000008K9w|OpportunityTrigger.updateAccountSalesSummary(List<Opportunity>)
10:57:19.428 (428777349)|VARIABLE_SCOPE_BEGIN|[12]|this|OpportunityTrigger|true|false
10:57:19.428 (428788361)|VARIABLE_ASSIGNMENT|[12]|this|{}|0x2fa58b6
10:57:19.428 (428790447)|VARIABLE_SCOPE_BEGIN|[12]|Opps|List<Opportunity>|true|false
10:57:19.428 (432835734)|VARIABLE_ASSIGNMENT|[12]|Opps|{"s":1,"v":[{"LastModifiedDate":"2017-01-05T17:57:19.000Z","Sales_Order__c":false,"Data_Intelligence_To (6 more) ...":0.00,"AccountId":"0015C000002ZR9XQAW","HasOpportunityLineIt (2 more) ...":false,"Billing_Information_ (12 more) ...":false,"No_Origninal_Account (6 more) ...":false,"ForecastCategory":"Omitted","Billing_City__c":"Phoenix","Converted_From_Lead_ (2 more) ...":false,"Close_Date_Missing__ (1 more) ...":false,"CloseDate":"2017-03-31T00:00:00.000Z","mh_Associated_Blue_S (7 more) ...":false,"Name":"42 Riot, LLC- 42 Rio (12 more) ...","PLM_Review__c":false,"Teleservices_Total__ (1 more) ...":0.00,"CreatedById":"0050P000006jNqqQAE","Stage_Validation_SOW (12 more) ...":"Not SOW Received","Marketing_Technology (9 more) ...":0.00,"Billing_Country__c":"United States","CSM_Assigned__c":false,"Lead_Created_DateTim (4 more) ...":"2017-01-04T22:27:46.000Z","Internal_Approval_Da (10 more) ...":"2017-01-05T00:00:00.000Z","SmartForms__c":false,"Data_Total__c":0.00,"Billing_Postal_Code_ (2 more) ...":"85051","IsDeleted":false,"Commit_Probability__ (1 more) ...":"Low","Billing_State__c":"Az","Billing_Address__c":"3710 W Mission Lane_ (39 more) ...","Open_Won_Lost__c":"Open","Contact_Missing__c":false,"Setup_Management_Tot (5 more) ...":0.00,"Digital_Total__c":0.00,"Inbound_Support_Tota (4 more) ...":0.00,"CreatedDate":"2017-01-05T17:57:19.000Z","mh_Managers_Notes_Ex (6 more) ...":false,"Id":"0065C000002Q95UQAS","Data_Quality_Score__ (1 more) ...":40,"ForecastCategoryName":"Omitted","Dialogue_Total__c":0.00,"Research_Total__c":0.00,"Dialogue_Total_No_Ca (9 more) ...":0.00,"IsClosed":false,"Opportunity_Amount__ (1 more) ...":0.00,"Clients_Validation__ (1 more) ...":false,"Data_Quality_Descrip (7 more) ...":"Missing: Type, Lead  (18 more) ...","OwnerId":"0050P000006jNqqQAE","Lead_Create_Date__c":"2017-01-04T22:27:46.000Z","IsWon":false,"RecordTypeId":"012U00000000GAPIA2","StageName":"Long Range Forecast","Engagement_Planning_ (8 more) ...":0.00,"Probability":0,"Stage_Validation_Clo (10 more) ...":"Not Closed Won","Billing_Street__c":"3710 W Mission Lane","mh_Additional_Notes_ (8 more) ...":false,"Stage_Missing__c":false,"Analytics_Total__c":0.00,"Reporting_Total__c":0.00,"SystemModstamp":"2017-01-05T17:57:19.000Z","Associated_Budget_Al (6 more) ...":"_IM1_/servlet/servle (117 more) ...","Viewpath__Viewpath_P (17 more) ...":"_HL_ENCODED_/_HL_ _H (11 more) ...","No_Owner_Match__c":false,"Marketing_Total__c":0.00,"IsPrivate":false,"LastModifiedById":"0050P000006jNqqQAE"}]}|0x7edeeb6e
10:57:19.428 (432856574)|SYSTEM_MODE_ENTER|false
10:57:19.428 (432863374)|HEAP_ALLOCATE|[17]|Bytes:5
10:57:19.428 (432867969)|STATEMENT_EXECUTE|[12]
10:57:19.428 (432869441)|STATEMENT_EXECUTE|[17]
10:57:19.428 (432873749)|HEAP_ALLOCATE|[17]|Bytes:4
10:57:19.428 (432886747)|VARIABLE_SCOPE_BEGIN|[17]|planIds|List<Id>|true|false
10:57:19.428 (432904098)|HEAP_ALLOCATE|[EXTERNAL]|Bytes:4
10:57:19.428 (432913864)|VARIABLE_ASSIGNMENT|[17]|planIds|{"s":1,"v":[]}|0x1d6212b1
10:57:19.428 (432935686)|HEAP_ALLOCATE|[18]|Bytes:5
10:57:19.428 (432953093)|VARIABLE_SCOPE_BEGIN|[18]|o|Opportunity|true|false
10:57:19.428 (436227613)|VARIABLE_ASSIGNMENT|[18]|o|{"LastModifiedDate":"2017-01-05T17:57:19.000Z","Sales_Order__c":false,"Data_Intelligence_To (6 more) ...":0.00,"AccountId":"0015C000002ZR9XQAW","HasOpportunityLineIt (2 more) ...":false,"Billing_Information_ (12 more) ...":false,"No_Origninal_Account (6 more) ...":false,"ForecastCategory":"Omitted","Billing_City__c":"Phoenix","Converted_From_Lead_ (2 more) ...":false,"Close_Date_Missing__ (1 more) ...":false,"CloseDate":"2017-03-31T00:00:00.000Z","mh_Associated_Blue_S (7 more) ...":false,"Name":"42 Riot, LLC- 42 Rio (12 more) ...","PLM_Review__c":false,"Teleservices_Total__ (1 more) ...":0.00,"CreatedById":"0050P000006jNqqQAE","Stage_Validation_SOW (12 more) ...":"Not SOW Received","Marketing_Technology (9 more) ...":0.00,"Billing_Country__c":"United States","CSM_Assigned__c":false,"Lead_Created_DateTim (4 more) ...":"2017-01-04T22:27:46.000Z","Internal_Approval_Da (10 more) ...":"2017-01-05T00:00:00.000Z","SmartForms__c":false,"Data_Total__c":0.00,"Billing_Postal_Code_ (2 more) ...":"85051","IsDeleted":false,"Commit_Probability__ (1 more) ...":"Low","Billing_State__c":"Az","Billing_Address__c":"3710 W Mission Lane_ (39 more) ...","Open_Won_Lost__c":"Open","Contact_Missing__c":false,"Setup_Management_Tot (5 more) ...":0.00,"Digital_Total__c":0.00,"Inbound_Support_Tota (4 more) ...":0.00,"CreatedDate":"2017-01-05T17:57:19.000Z","mh_Managers_Notes_Ex (6 more) ...":false,"Id":"0065C000002Q95UQAS","Data_Quality_Score__ (1 more) ...":40,"ForecastCategoryName":"Omitted","Dialogue_Total__c":0.00,"Research_Total__c":0.00,"Dialogue_Total_No_Ca (9 more) ...":0.00,"IsClosed":false,"Opportunity_Amount__ (1 more) ...":0.00,"Clients_Validation__ (1 more) ...":false,"Data_Quality_Descrip (7 more) ...":"Missing: Type, Lead  (18 more) ...","OwnerId":"0050P000006jNqqQAE","Lead_Create_Date__c":"2017-01-04T22:27:46.000Z","IsWon":false,"RecordTypeId":"012U00000000GAPIA2","StageName":"Long Range Forecast","Engagement_Planning_ (8 more) ...":0.00,"Probability":0,"Stage_Validation_Clo (10 more) ...":"Not Closed Won","Billing_Street__c":"3710 W Mission Lane","mh_Additional_Notes_ (8 more) ...":false,"Stage_Missing__c":false,"Analytics_Total__c":0.00,"Reporting_Total__c":0.00,"SystemModstamp":"2017-01-05T17:57:19.000Z","Associated_Budget_Al (6 more) ...":"_IM1_/servlet/servle (117 more) ...","Viewpath__Viewpath_P (17 more) ...":"_HL_ENCODED_/_HL_ _H (11 more) ...","No_Owner_Match__c":false,"Marketing_Total__c":0.00,"IsPrivate":false,"LastModifiedById":"0050P000006jNqqQAE"}|0x52dcb4b7
10:57:19.428 (436241976)|STATEMENT_EXECUTE|[18]
10:57:19.428 (436243830)|STATEMENT_EXECUTE|[19]
10:57:19.428 (436270388)|HEAP_ALLOCATE|[EXTERNAL]|Bytes:4
10:57:19.428 (436285501)|HEAP_ALLOCATE|[18]|Bytes:5
10:57:19.428 (436297936)|VARIABLE_ASSIGNMENT|[18]|o|null|
10:57:19.428 (436300706)|STATEMENT_EXECUTE|[23]
10:57:19.428 (436305426)|HEAP_ALLOCATE|[23]|Bytes:4
10:57:19.428 (436310981)|VARIABLE_SCOPE_BEGIN|[23]|actualSales|Map<Id,Decimal>|true|false
10:57:19.428 (436323576)|VARIABLE_ASSIGNMENT|[23]|actualSales|{"s":1,"v":{}}|0x23369b2
10:57:19.428 (436325752)|STATEMENT_EXECUTE|[24]
10:57:19.428 (436329190)|HEAP_ALLOCATE|[24]|Bytes:4
10:57:19.428 (436594499)|SOQL_EXECUTE_BEGIN|[24]|Aggregations:0|SELECT Associated_Account_Plan__c, SUM(Opportunity_Amount__c) Amt FROM Opportunity WHERE (Associated_Account_Plan__c IN :tmpVar1 AND StageName = 'Closed Won') GROUP BY Associated_Account_Plan__c
10:57:19.428 (438835474)|SOQL_EXECUTE_END|[24]|Rows:0

 
Joshua Anderson 17Joshua Anderson 17
10:57:19.428 (438853293)|HEAP_ALLOCATE|[24]|Bytes:4 10:57:19.428 (438860519)|HEAP_ALLOCATE|[24]|Bytes:0 10:57:19.428 (438874678)|HEAP_ALLOCATE|[24]|Bytes:4 10:57:19.428 (438882609)|VARIABLE_SCOPE_BEGIN|[24]|planActualSales|List<AggregateResult>|true|false 10:57:19.428 (438897229)|VARIABLE_ASSIGNMENT|[24]|planActualSales|{"s":1,"v":[]}|0x2eaa81e3 10:57:19.428 (438919579)|HEAP_ALLOCATE|[26]|Bytes:5 10:57:19.428 (438931039)|VARIABLE_ASSIGNMENT|[26]|pas|null| 10:57:19.428 (438934075)|STATEMENT_EXECUTE|[26] 10:57:19.428 (438935738)|STATEMENT_EXECUTE|[33] 10:57:19.428 (438938870)|HEAP_ALLOCATE|[33]|Bytes:4 10:57:19.428 (438943301)|VARIABLE_SCOPE_BEGIN|[33]|pendingSales|Map<Id,Decimal>|true|false 10:57:19.428 (438952967)|VARIABLE_ASSIGNMENT|[33]|pendingSales|{"s":1,"v":{}}|0x438d937c 10:57:19.428 (438955175)|STATEMENT_EXECUTE|[34] 10:57:19.428 (438958186)|HEAP_ALLOCATE|[34]|Bytes:4 10:57:19.428 (439197566)|SOQL_EXECUTE_BEGIN|[34]|Aggregations:0|SELECT Associated_Account_Plan__c, SUM(Opportunity_Amount__c) Amt FROM Opportunity WHERE (Associated_Account_Plan__c IN :tmpVar1 AND StageName != 'Closed Won' AND StageName != 'Closed Lost') GROUP BY Associated_Account_Plan__c 10:57:19.428 (441294972)|SOQL_EXECUTE_END|[34]|Rows:1 10:57:19.428 (441309144)|HEAP_ALLOCATE|[34]|Bytes:8 10:57:19.428 (441321613)|HEAP_ALLOCATE|[34]|Bytes:46 10:57:19.428 (441334499)|HEAP_ALLOCATE|[34]|Bytes:8 10:57:19.428 (441342236)|VARIABLE_SCOPE_BEGIN|[34]|planPendingSales|List<AggregateResult>|true|false 10:57:19.428 (441364351)|VARIABLE_ASSIGNMENT|[34]|planPendingSales|{"s":1,"v":[{"s":2,"v":{"Amt":0.0}}]}|0x7046cf86 10:57:19.428 (441386364)|HEAP_ALLOCATE|[37]|Bytes:5 10:57:19.428 (441410123)|HEAP_ALLOCATE|[37]|Bytes:12 10:57:19.428 (441416900)|VARIABLE_SCOPE_BEGIN|[37]|pps|AggregateResult|true|false 10:57:19.428 (441427774)|VARIABLE_ASSIGNMENT|[37]|pps|{"s":1,"v":{"Amt":0.0}}|0x1d8a0adb 10:57:19.428 (441430648)|STATEMENT_EXECUTE|[37] 10:57:19.428 (441432079)|STATEMENT_EXECUTE|[38] 10:57:19.428 (441446422)|USER_DEBUG|[38]|DEBUG|Pending 10:57:19.428 (441451018)|STATEMENT_EXECUTE|[39] 10:57:19.428 (441505970)|HEAP_ALLOCATE|[39]|Bytes:28 10:57:19.428 (441520749)|HEAP_ALLOCATE|[39]|Bytes:3 10:57:19.428 (441529876)|HEAP_ALLOCATE|[39]|Bytes:17 10:57:19.428 (441535786)|USER_DEBUG|[39]|DEBUG|ID: null-Amt: 0.0 10:57:19.428 (441539141)|STATEMENT_EXECUTE|[40] 10:57:19.428 (441560369)|HEAP_ALLOCATE|[40]|Bytes:28 10:57:19.428 (441574398)|HEAP_ALLOCATE|[EXTERNAL]|Bytes:-4 10:57:19.428 (441584496)|HEAP_ALLOCATE|[37]|Bytes:5 10:57:19.428 (441594434)|VARIABLE_ASSIGNMENT|[37]|pps|null| 10:57:19.428 (441596909)|STATEMENT_EXECUTE|[44] 10:57:19.428 (441600449)|HEAP_ALLOCATE|[44]|Bytes:4 10:57:19.428 (441608341)|VARIABLE_SCOPE_BEGIN|[44]|updateAccountPlan|List<Account_Plan__c>|true|false 10:57:19.428 (441613476)|HEAP_ALLOCATE|[EXTERNAL]|Bytes:4 10:57:19.428 (441620614)|VARIABLE_ASSIGNMENT|[44]|updateAccountPlan|{"s":1,"v":[]}|0x20add18 10:57:19.428 (441625006)|HEAP_ALLOCATE|[45]|Bytes:4 10:57:19.428 (441802072)|SOQL_EXECUTE_BEGIN|[45]|Aggregations:0|SELECT Id, Pending_Sales__c, Actual_Sales__c FROM Account_Plan__c 10:57:19.428 (442637512)|SOQL_EXECUTE_END|[45]|Rows:0 10:57:19.428 (442770600)|HEAP_ALLOCATE|[45]|Bytes:28 10:57:19.428 (442785669)|HEAP_ALLOCATE|[45]|Bytes:8 10:57:19.428 (442787809)|HEAP_ALLOCATE|[45]|Bytes:8 10:57:19.428 (442791602)|VARIABLE_SCOPE_BEGIN|[15]|this|Database.QueryLocatorIterator|true|false 10:57:19.428 (442815017)|VARIABLE_ASSIGNMENT|[15]|this|{}|0x73551991 10:57:19.428 (442817743)|VARIABLE_SCOPE_BEGIN|[15]|values|List<SObject>|true|false 10:57:19.428 (442821104)|VARIABLE_ASSIGNMENT|[15]|values|null| 10:57:19.428 (442822909)|VARIABLE_SCOPE_BEGIN|[15]|ql|Database.QueryLocator|true|false 10:57:19.428 (442835582)|VARIABLE_ASSIGNMENT|[15]|ql|{"query":"SELECT Id, Pending_S (66 more) ..."}|0xad7f9c9 10:57:19.428 (442837829)|VARIABLE_SCOPE_BEGIN|[15]|totalNumRecords|Integer|false|false 10:57:19.428 (442841251)|VARIABLE_ASSIGNMENT|[15]|totalNumRecords|0 10:57:19.428 (442843376)|VARIABLE_SCOPE_BEGIN|[15]|queryMoreSize|Integer|false|false 10:57:19.428 (442845725)|VARIABLE_ASSIGNMENT|[15]|queryMoreSize|49980 10:57:19.428 (442884717)|HEAP_ALLOCATE|[45]|Bytes:28 10:57:19.428 (442896129)|METHOD_ENTRY|[45]||Database.QueryLocatorIterator.hasNext() 10:57:19.428 (442910972)|METHOD_EXIT|[45]||Database.QueryLocatorIterator.hasNext() 10:57:19.428 (442918422)|VARIABLE_ASSIGNMENT|[45]|ap|null| 10:57:19.428 (442920858)|STATEMENT_EXECUTE|[45] 10:57:19.428 (442928433)|STATEMENT_EXECUTE|[64] 10:57:19.428 (442963398)|HEAP_ALLOCATE|[EXTERNAL]|Bytes:4 10:57:19.428 (442969427)|SYSTEM_MODE_EXIT|false 10:57:19.428 (442975364)|METHOD_EXIT|[4]|01pU00000008K9w|OpportunityTrigger.updateAccountSalesSummary(List<Opportunity>) 10:57:19.428 (442985321)|STATEMENT_EXECUTE|[10] 10:57:19.428 (442986680)|STATEMENT_EXECUTE|[11] 10:57:19.428 (443010803)|METHOD_ENTRY|[11]|01pU00000008K9w|OpportunityTrigger.updateStageName(Map<Id,Opportunity>, Map<Id,Opportunity>, Boolean, Boolean) 10:57:19.428 (443015210)|VARIABLE_SCOPE_BEGIN|[67]|this|OpportunityTrigger|true|false 10:57:19.428 (443027051)|VARIABLE_ASSIGNMENT|[67]|this|{}|0x2fa58b6 10:57:19.428 (443029032)|VARIABLE_SCOPE_BEGIN|[67]|oldOpps|Map<Id,Opportunity>|true|false 10:57:19.428 (446970895)|VARIABLE_ASSIGNMENT|[67]|oldOpps|{"s":1,"v":{"0065C000002Q95UQAS":{"Sales_Order__c":false,"Data_Intelligence_To (6 more) ...":0.00,"AccountId":"0015C000002ZR9XQAW","HasOpportunityLineIt (2 more) ...":false,"Billing_Information_ (12 more) ...":false,"No_Origninal_Account (6 more) ...":false,"ForecastCategory":"Omitted","Converted_From_Lead_ (2 more) ...":false,"Close_Date_Missing__ (1 more) ...":false,"CloseDate":"2017-03-31T00:00:00.000Z","mh_Associated_Blue_S (7 more) ...":false,"Name":"42 Riot- tester 19","PLM_Review__c":false,"Teleservices_Total__ (1 more) ...":0.00,"Stage_Validation_SOW (12 more) ...":"Not SOW Received","Marketing_Technology (9 more) ...":0.00,"CSM_Assigned__c":false,"Lead_Created_DateTim (4 more) ...":"2017-01-04T22:27:46.000Z","Internal_Approval_Da (10 more) ...":"2017-01-05T00:00:00.000Z","SmartForms__c":false,"Data_Total__c":0.00,"IsDeleted":false,"Commit_Probability__ (1 more) ...":"Low","Billing_Address__c":"3710 W Mission Lane_ (39 more) ...","Open_Won_Lost__c":"Open","Contact_Missing__c":false,"Setup_Management_Tot (5 more) ...":0.00,"Digital_Total__c":0.00,"Inbound_Support_Tota (4 more) ...":0.00,"mh_Managers_Notes_Ex (6 more) ...":false,"Id":"0065C000002Q95UQAS","Data_Quality_Score__ (1 more) ...":40,"ForecastCategoryName":"Omitted","Dialogue_Total__c":0.00,"Research_Total__c":0.00,"Dialogue_Total_No_Ca (9 more) ...":0.00,"IsClosed":false,"Opportunity_Amount__ (1 more) ...":0.00,"Clients_Validation__ (1 more) ...":false,"Data_Quality_Descrip (7 more) ...":"Missing: Type, Lead (18 more) ...","OwnerId":"0050P000006jNqqQAE","Lead_Create_Date__c":"2017-01-04T22:27:46.000Z","IsWon":false,"RecordTypeId":"012U00000000GAPIA2","StageName":"Long Range Forecast","Engagement_Planning_ (8 more) ...":0.00,"Probability":0,"Stage_Validation_Clo (10 more) ...":"Not Closed Won","mh_Additional_Notes_ (8 more) ...":false,"Stage_Missing__c":false,"Analytics_Total__c":0.00,"Reporting_Total__c":0.00,"Associated_Budget_Al (6 more) ...":"_IM1_/servlet/servle (117 more) ...","Viewpath__Viewpath_P (17 more) ...":"_HL_ENCODED_/_HL_ _H (11 more) ...","No_Owner_Match__c":false,"Marketing_Total__c":0.00,"IsPrivate":false}}}|0x11d5f520 10:57:19.428 (446983636)|VARIABLE_SCOPE_BEGIN|[67]|newOpps|Map<Id,Opportunity>|true|false 10:57:19.428 (450209588)|VARIABLE_ASSIGNMENT|[67]|newOpps|{"s":1,"v":{"0065C000002Q95UQAS":{"LastModifiedDate":"2017-01-05T17:57:19.000Z","Sales_Order__c":false,"Data_Intelligence_To (6 more) ...":0.00,"AccountId":"0015C000002ZR9XQAW","HasOpportunityLineIt (2 more) ...":false,"Billing_Information_ (12 more) ...":false,"No_Origninal_Account (6 more) ...":false,"ForecastCategory":"Omitted","Billing_City__c":"Phoenix","Converted_From_Lead_ (2 more) ...":false,"Close_Date_Missing__ (1 more) ...":false,"CloseDate":"2017-03-31T00:00:00.000Z","mh_Associated_Blue_S (7 more) ...":false,"Name":"42 Riot, LLC- 42 Rio (12 more) ...","PLM_Review__c":false,"Teleservices_Total__ (1 more) ...":0.00,"CreatedById":"0050P000006jNqqQAE","Stage_Validation_SOW (12 more) ...":"Not SOW Received","Marketing_Technology (9 more) ...":0.00,"Billing_Country__c":"United States","CSM_Assigned__c":false,"Lead_Created_DateTim (4 more) ...":"2017-01-04T22:27:46.000Z","Internal_Approval_Da (10 more) ...":"2017-01-05T00:00:00.000Z","SmartForms__c":false,"Data_Total__c":0.00,"Billing_Postal_Code_ (2 more) ...":"85051","IsDeleted":false,"Commit_Probability__ (1 more) ...":"Low","Billing_State__c":"Az","Billing_Address__c":"3710 W Mission Lane_ (39 more) ...","Open_Won_Lost__c":"Open","Contact_Missing__c":false,"Setup_Management_Tot (5 more) ...":0.00,"Digital_Total__c":0.00,"Inbound_Support_Tota (4 more) ...":0.00,"CreatedDate":"2017-01-05T17:57:19.000Z","mh_Managers_Notes_Ex (6 more) ...":false,"Id":"0065C000002Q95UQAS","Data_Quality_Score__ (1 more) ...":40,"ForecastCategoryName":"Omitted","Dialogue_Total__c":0.00,"Research_Total__c":0.00,"Dialogue_Total_No_Ca (9 more) ...":0.00,"IsClosed":false,"Opportunity_Amount__ (1 more) ...":0.00,"Clients_Validation__ (1 more) ...":false,"Data_Quality_Descrip (7 more) ...":"Missing: Type, Lead (18 more) ...","OwnerId":"0050P000006jNqqQAE","Lead_Create_Date__c":"2017-01-04T22:27:46.000Z","IsWon":false,"RecordTypeId":"012U00000000GAPIA2","StageName":"Long Range Forecast","Engagement_Planning_ (8 more) ...":0.00,"Probability":0,"Stage_Validation_Clo (10 more) ...":"Not Closed Won","Billing_Street__c":"3710 W Mission Lane","mh_Additional_Notes_ (8 more) ...":false,"Stage_Missing__c":false,"Analytics_Total__c":0.00,"Reporting_Total__c":0.00,"SystemModstamp":"2017-01-05T17:57:19.000Z","Associated_Budget_Al (6 more) ...":"_IM1_/servlet/servle (117 more) ...","Viewpath__Viewpath_P (17 more) ...":"_HL_ENCODED_/_HL_ _H (11 more) ...","No_Owner_Match__c":false,"Marketing_Total__c":0.00,"IsPrivate":false,"LastModifiedById":"0050P000006jNqqQAE"}}}|0x23923ff3 10:57:19.428 (450226600)|VARIABLE_SCOPE_BEGIN|[67]|isInsert|Boolean|false|false 10:57:19.428 (450231595)|VARIABLE_ASSIGNMENT|[67]|isInsert|false 10:57:19.428 (450234174)|VARIABLE_SCOPE_BEGIN|[67]|isDelete|Boolean|false|false 10:57:19.428 (450236552)|VARIABLE_ASSIGNMENT|[67]|isDelete|false 10:57:19.428 (450243504)|SYSTEM_MODE_ENTER|false 10:57:19.428 (450247267)|HEAP_ALLOCATE|[68]|Bytes:5 10:57:19.428 (450251365)|STATEMENT_EXECUTE|[67] 10:57:19.428 (450252803)|STATEMENT_EXECUTE|[68] 10:57:19.428 (450256216)|HEAP_ALLOCATE|[68]|Bytes:4 10:57:19.428 (450262731)|VARIABLE_SCOPE_BEGIN|[68]|changedOpps|Map<Id,Opportunity>|true|false 10:57:19.428 (450274019)|VARIABLE_ASSIGNMENT|[68]|changedOpps|{"s":1,"v":{}}|0x78d02381 10:57:19.428 (450277582)|STATEMENT_EXECUTE|[74] 10:57:19.428 (450314345)|HEAP_ALLOCATE|[EXTERNAL]|Bytes:8 10:57:19.428 (450321213)|HEAP_ALLOCATE|[76]|Bytes:8 10:57:19.428 (450343442)|HEAP_ALLOCATE|[76]|Bytes:5 10:57:19.428 (450357317)|VARIABLE_SCOPE_BEGIN|[76]|oppty|Opportunity|true|false 10:57:19.428 (453625031)|VARIABLE_ASSIGNMENT|[76]|oppty|{"LastModifiedDate":"2017-01-05T17:57:19.000Z","Sales_Order__c":false,"Data_Intelligence_To (6 more) ...":0.00,"AccountId":"0015C000002ZR9XQAW","HasOpportunityLineIt (2 more) ...":false,"Billing_Information_ (12 more) ...":false,"No_Origninal_Account (6 more) ...":false,"ForecastCategory":"Omitted","Billing_City__c":"Phoenix","Converted_From_Lead_ (2 more) ...":false,"Close_Date_Missing__ (1 more) ...":false,"CloseDate":"2017-03-31T00:00:00.000Z","mh_Associated_Blue_S (7 more) ...":false,"Name":"42 Riot, LLC- 42 Rio (12 more) ...","PLM_Review__c":false,"Teleservices_Total__ (1 more) ...":0.00,"CreatedById":"0050P000006jNqqQAE","Stage_Validation_SOW (12 more) ...":"Not SOW Received","Marketing_Technology (9 more) ...":0.00,"Billing_Country__c":"United States","CSM_Assigned__c":false,"Lead_Created_DateTim (4 more) ...":"2017-01-04T22:27:46.000Z","Internal_Approval_Da (10 more) ...":"2017-01-05T00:00:00.000Z","SmartForms__c":false,"Data_Total__c":0.00,"Billing_Postal_Code_ (2 more) ...":"85051","IsDeleted":false,"Commit_Probability__ (1 more) ...":"Low","Billing_State__c":"Az","Billing_Address__c":"3710 W Mission Lane_ (39 more) ...","Open_Won_Lost__c":"Open","Contact_Missing__c":false,"Setup_Management_Tot (5 more) ...":0.00,"Digital_Total__c":0.00,"Inbound_Support_Tota (4 more) ...":0.00,"CreatedDate":"2017-01-05T17:57:19.000Z","mh_Managers_Notes_Ex (6 more) ...":false,"Id":"0065C000002Q95UQAS","Data_Quality_Score__ (1 more) ...":40,"ForecastCategoryName":"Omitted","Dialogue_Total__c":0.00,"Research_Total__c":0.00,"Dialogue_Total_No_Ca (9 more) ...":0.00,"IsClosed":false,"Opportunity_Amount__ (1 more) ...":0.00,"Clients_Validation__ (1 more) ...":false,"Data_Quality_Descrip (7 more) ...":"Missing: Type, Lead (18 more) ...","OwnerId":"0050P000006jNqqQAE","Lead_Create_Date__c":"2017-01-04T22:27:46.000Z","IsWon":false,"RecordTypeId":"012U00000000GAPIA2","StageName":"Long Range Forecast","Engagement_Planning_ (8 more) ...":0.00,"Probability":0,"Stage_Validation_Clo (10 more) ...":"Not Closed Won","Billing_Street__c":"3710 W Mission Lane","mh_Additional_Notes_ (8 more) ...":false,"Stage_Missing__c":false,"Analytics_Total__c":0.00,"Reporting_Total__c":0.00,"SystemModstamp":"2017-01-05T17:57:19.000Z","Associated_Budget_Al (6 more) ...":"_IM1_/servlet/servle (117 more) ...","Viewpath__Viewpath_P (17 more) ...":"_HL_ENCODED_/_HL_ _H (11 more) ...","No_Owner_Match__c":false,"Marketing_Total__c":0.00,"IsPrivate":false,"LastModifiedById":"0050P000006jNqqQAE"}|0x52dcb4b7 10:57:19.428 (453639308)|STATEMENT_EXECUTE|[76] 10:57:19.428 (453730226)|STATEMENT_EXECUTE|[77] 10:57:19.428 (453743043)|HEAP_ALLOCATE|[76]|Bytes:5 10:57:19.428 (453756248)|VARIABLE_ASSIGNMENT|[76]|oppty|null| 10:57:19.428 (453765782)|STATEMENT_EXECUTE|[83] 10:57:19.428 (453769783)|SYSTEM_MODE_EXIT|false 10:57:19.428 (453777174)|METHOD_EXIT|[11]|01pU00000008K9w|OpportunityTrigger.updateStageName(Map<Id,Opportunity>, Map<Id,Opportunity>, Boolean, Boolean) 10:57:19.453 (453784393)|CUMULATIVE_LIMIT_USAGE 10:57:19.453 (453784393)|LIMIT_USAGE_FOR_NS|(default)| Number of SOQL queries: 7 out of 100 Number of query rows: 20 out of 50000 Number of SOSL queries: 0 out of 20 Number of DML statements: 0 out of 150 Number of DML rows: 0 out of 10000 Maximum CPU time: 0 out of 10000 Maximum heap size: 0 out of 6000000 Number of callouts: 0 out of 100 Number of Email Invocations: 0 out of 10 Number of future calls: 0 out of 50 Number of queueable jobs added to the queue: 0 out of 50 Number of Mobile Apex push calls: 0 out of 10 10:57:19.453 (453784393)|CUMULATIVE_LIMIT_USAGE_END

 
Joshua Anderson 17Joshua Anderson 17
10:57:19.428 (455045548)|CODE_UNIT_FINISHED|OpportunityTrigger on Opportunity trigger event AfterUpdate for [0065C000002Q95U]
10:57:19.0 (456626640)|WF_TIME_TRIGGERS_BEGIN
10:57:19.0 (460061897)|WF_ACTIONS_END| Field Update: 7;
10:57:19.0 (460644664)|DML_END|[740]
10:57:19.0 (460668066)|HEAP_ALLOCATE|[EXTERNAL]|Bytes:8
10:57:19.680 (680668212)|ENTERING_MANAGED_PKG|EVERSTRING_APP
10:57:19.680 (682757192)|ENTERING_MANAGED_PKG|EVERSTRING_APP
10:57:19.680 (682803652)|ENTERING_MANAGED_PKG|EVERSTRING_APP
10:57:19.680 (684457290)|SOQL_EXECUTE_BEGIN|[20]|Aggregations:0|SELECT EVERSTRING_APP__Lead__c, EVERSTRING_APP__SegmentName__c, EVERSTRING_APP__SegmentId__c, EVERSTRING_APP__SegmentScore__c FROM Segment_Lead__c WHERE EVERSTRING_APP__Lead__c = :tmpVar1
10:57:19.680 (697757623)|SOQL_EXECUTE_END|[20]|Rows:0
10:57:19.680 (698838445)|SOQL_EXECUTE_BEGIN|[26]|Aggregations:0|SELECT EVERSTRING_APP__Account__c, EVERSTRING_APP__SegmentName__c, EVERSTRING_APP__SegmentId__c, EVERSTRING_APP__SegmentScore__c FROM Segment_Account__c WHERE EVERSTRING_APP__Account__c = :tmpVar1
10:57:19.680 (710886586)|SOQL_EXECUTE_END|[26]|Rows:0
10:57:19.680 (712030043)|SOQL_EXECUTE_BEGIN|[32]|Aggregations:0|SELECT EVERSTRING_APP__Contact__c, EVERSTRING_APP__SegmentName__c, EVERSTRING_APP__SegmentId__c, EVERSTRING_APP__SegmentScore__c FROM Segment_Contact__c WHERE EVERSTRING_APP__Contact__c = :tmpVar1
10:57:19.680 (721878715)|SOQL_EXECUTE_END|[32]|Rows:0
10:57:19.722 (722154973)|CUMULATIVE_LIMIT_USAGE
10:57:19.722 (722154973)|LIMIT_USAGE_FOR_NS|(default)|
  Number of SOQL queries: 10 out of 100
  Number of query rows: 20 out of 50000
  Number of SOSL queries: 0 out of 20
  Number of DML statements: 0 out of 150
  Number of DML rows: 0 out of 10000
  Maximum CPU time: 1 out of 10000
  Maximum heap size: 0 out of 6000000
  Number of callouts: 0 out of 100
  Number of Email Invocations: 0 out of 10
  Number of future calls: 0 out of 50
  Number of queueable jobs added to the queue: 0 out of 50
  Number of Mobile Apex push calls: 0 out of 10

10:57:19.722 (722154973)|CUMULATIVE_LIMIT_USAGE_END

10:57:19.0 (848855714)|DML_END|[1440]

 
Joshua Anderson 17Joshua Anderson 17
I do know that we have some validation rules on the opportunity. 

Flow error email: 

An error occurred at element myRule_1_A1 (FlowRecordUpdate).
UPDATE --- UPDATE FAILED --- ERRORS : (FIELD_INTEGRITY_EXCEPTION) Lead: id value of incorrect type: 0065C000002Q95UQAS

This report lists the elements that the flow interview executed. The report is a beta feature.
We welcome your feedback on IdeaExchange (https://success.salesforce.com/ideaSearch).
Flow Details
Flow Name: Lead_ID_Update_Opportunity
Type: Workflow
Version: 2
Status: Active
Flow Interview Details
Interview Label:
Current User: Joshua Anderson (0050P000006jNqq)
Start time: 1/5/2017 10:57 AM
Duration: 0 seconds
How the Interview Started
Joshua Anderson (0050P000006jNqq) started the flow interview.
Some of this flow's variables were set when the interview started.
myVariable_old = 00Q5C000000ya6yUAA
myVariable_current = 00Q5C000000ya6yUAA
ASSIGNMENT: myVariable_waitStartTimeAssignment
{!myVariable_waitStartTimeVariable} Equals {!Flow.CurrentDateTime}
Result
{!myVariable_waitStartTimeVariable} = "1/5/2017 10:57 AM"
DECISION: myDecision
Executed this outcome: myRule_1
Outcome conditions: and
1. {!formula_myRule_1} (true) Equals true
Logic: All conditions must be true (AND)
RECORD UPDATE: myRule_1_A1
Find all Opportunity records where:
Id Equals {!myVariable_current.ConvertedOpportunityId} (0065C000002Q95UQAS)
Update the records’ field values.
Lead__c = {!formula_2_myRule_1_A1_Lead_c} (0065C000002Q95UQAS)
Result
Failed to update records that meet the filter criteria.

Error Occurred: UPDATE --- UPDATE FAILED --- ERRORS : (FIELD_INTEGRITY_EXCEPTION) Lead: id value of incorrect type: 0065C000002Q95UQAS
Terri T JilesTerri T Jiles
My apologies for the delay Josh.  Thanks for all of this information!

It looks like there is an attempt to save an opportunity id to a lead lookup field that is expecting a record id for the lead.

Lead ids start with 00Q
Opportunities ids start with 006

In your record update action, set the  Opportunity.Lead__c = Lead.Id

As a side note, it looks like you have a number of workflow rules in your org.  You may want to consider refactoring all of the lead workflow rules into one process builder process and do the same thing with the opportunity process builders.
This was selected as the best answer
Joshua Anderson 17Joshua Anderson 17
Success! Thank you so much for your help on this. 
Joshua Anderson 17Joshua Anderson 17
I just had another question.. For the older records that already have been archived is there a way for us to populate those records with the lead information? I know that since they are look ups I m not able to select them but can we do any kind of apex push or through data loader? 
Terri T JilesTerri T Jiles
Yes, Use data loader.  Extract your converted leads.  They will have the reference to the opportunities.  Use that as the base file for updating the opportunities with the lead id.  Disable business rules related to opportunity prior to updating opportunities (i.e. opportunity triggers, opportunity workflow rules, opportunity process bulders, and opportunity validation rules).  Do this when your users are not in the system.  You can temporarily lock out your users while you do this.


A better approach long term so you won't have to lock out your users and disable business rules is to add bypass logic to all of your business rules.  The bypass logic allows you to run data loads for the data migration user without firing the business logic.  

An example on how toTo do this,
  • Define a hierarchy custom setting called DataAdmin with a checbox field called BypassDataAdmin
  • Modify trigger framework to include bypass logic
  • Modify TriggerFactory.cls method createHandler to include logic to get instance of DataAdmin custom setting based on the current logged in user.  If the instance of DataAdmi.BypassDataAdmin = True, then don’t execute the trigger, else execute the trigger
  • In Every Process Builder Decision Step, add NOT(BypassDataAdmin__c.DataAdmin__c) && to the other conditions in the logic
  • In Every Validation Rule Decision Step, add NOT(BypassDataAdmin__c.DataAdmin__c) && to the other conditions in the logic
  • In Every Workflow Rule Criteria, add add NOT(BypassDataAdmin__c.DataAdmin__c) && to the other conditions in the logic
  • To bypass logic for specific users, Add users as records in the DataAdmin custom setting with BypassDataAdmin checked
Mike Smith 82091Mike Smith 82091
SBC Global Technical Support Phone Number
SBC Global Technical Support TollFree Number
SBC Global Customer Care Phone Number
SBC Global Helpline Number
SBC Global Customer Service Phone Number
SBC Global Customer Service TollFree Number
SBC Global TollFree Number
SBC Global Contact Number
SBC Global Support Number
SBC Global Customer Support Number
SBC Global Help Number
SBC Global Customer Care
SBC Global Customer Support 
Mike Smith 82091Mike Smith 82091
SBCGlobal Email Helpline Number 1-877-909-5113