Microsoft Knowledge Base Article
This article contents is Microsoft Copyrighted material.
©2005-©2007 Microsoft Corporation. All rights reserved.
Terms
of Use |
Trademarks
Article ID: 929923 - Last Review: August 21, 2007 - Revision: 1.2
The values in the Sender field and in the Recipient field are not exchanged when you click Incoming or Outgoing in the Fax dialog box in Microsoft Dynamics CRM 3.0
Consider the following scenario in Microsoft Dynamics CRM 3.0. You create a Fax activity. Then, you complete the
Sender field and the
Recipient field in the
Fax dialog box. When you click
Incoming or
Outgoing to exchange the values in these fields, the values in the fields are not exchanged.
To work around this problem, customize the
OnChange event on the Fax form. To do this, follow these steps:
- Log on to the Microsoft Dynamics CRM 3.0 Web client.
- Click Settings, click Customization, and then click Customize Entities.
- Double-click the Fax entity.
- Click Forms and Views.
- Double-click Form.
- Double-click the Direction field.
- On the Events tab, click OnChange, and then click Edit.
- On the Details tab, click to select the Event is enabled check box, and then type the following code in the code box.
// The following code is used for Knowledge Base article 929923.
if( !SwapLookups( crmForm.all.from, crmForm.all.to ) )
{
// If the exchange is unsuccessful, restore the original incoming direction or the original outgoing direction.
crmForm.all.directioncode.DataValue = crmForm.all.directioncode.DataValue;
}
- In the Event OnChange Properties dialog box, click OK.
- In the Form Properties dialog box, click OK.
- In the Form: Fax dialog box, click Save and Close.
- In the Entity: Fax dialog box, click Publish on the Actions menu.
- Click Save and Close.
This problem does not occur when you process a Phone Call activity and a Letter activity.
APPLIES TO
- Microsoft Dynamics CRM 3.0
| kbtshoot kbmbsmigrate kbbug KB929923 |
Community Feedback System
Very often, it takes hours to solve a problem. Very often, you've looked high
and low, and have tried a lot of solutions. When you finally found it, chances
are, it was because someone else helped you. Here's your chance to give back.
Use our community feedback tool to let others know what worked for you and what
didn't.
Please also understand that the community feedback system is not warranted to be
correct, it's simply a system that we've built to let people try and help each
other. If something in a feedback response doesn't make sense to you, or you're
not comfortable making changes that the feedback talks about (like registry
edits), please consult a professional.
Thank you for using kbAlertz.com Feedback System.
-- Scott Cate