08-11-2010 01:30 PM - edited 08-11-2010 02:12 PM
In 7.52 the Activity Detail screen can now automatically pop the Contact, Regarding, and Category selectors on new records.
The problem is that if the activity is being scheduled by a contact process, it does the same thing.
To fix this - you have to go into Sub AXFormShow
look for this line:
If Activity.Key = "" And Activity.BasedOn = "" Then
'Prompt Contact/Lead
If objOptions.PromptForContact Then
.....
Change that line to this:
If (Activity.Key = "" And Activity.BasedOn = "") and Not(Activity.Category = "PROC") Then
So now if the activity is because of a Contact Process, it will bypass this
ws
08-11-2010 02:00 PM