• Norm_Sherman
  • NEWBIE
  • 0 Points
  • Member since 2011

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 4
    Replies

Hi All,

We are using Campaigns and Person Accounts as Members (Contacts).

 

In the Campaign Settings, Automatic Association is Enabled, but I am finding the parent campaign source is not populated when the member has a new opportunity created.

 

From what I read and experienced on other models (not Person Accounts), the last campaign is automatically selected when a new oppportunity is created.

 

Why isn't this working for Person Accounts?

 

Thanks,

Norm

So with Batch Apex we have to define 3 methods; start, execute, finish.

 

Start = The data source. This is called once

Execute = Callback for each "chunk" of data. This is called N times

Finish = Execute at the end of the batch, and only called once

 

In my execute, I need to keep a running total of counters. Based on how 'execute' works, it will be called over and over, thus "resetting" my counter.

 

So what I am looking for are variables that are passed by reference? 

 

Thanks!

What is the best way to get this from reports?

 

I would like to know all customers (including contact info) who have opportunity products A and B, but A and B don't necessarily have to be in the same opportunity.

 

So with Batch Apex we have to define 3 methods; start, execute, finish.

 

Start = The data source. This is called once

Execute = Callback for each "chunk" of data. This is called N times

Finish = Execute at the end of the batch, and only called once

 

In my execute, I need to keep a running total of counters. Based on how 'execute' works, it will be called over and over, thus "resetting" my counter.

 

So what I am looking for are variables that are passed by reference? 

 

Thanks!

What is the best way to get this from reports?

 

I would like to know all customers (including contact info) who have opportunity products A and B, but A and B don't necessarily have to be in the same opportunity.