Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Price list

0 views
Skip to first unread message

Ian Clark

unread,
Feb 22, 2006, 8:55:33 PM2/22/06
to
Does anyone know how to default a quote to a particular price list, or can I
remove this mandatory field? Tks. Ian


Manisha Powar (MSFT)

unread,
Mar 2, 2006, 2:36:30 PM3/2/06
to
Hi Ian, You could write a script at the OnLoad Event of the Quote Form.
var CRM_FORM_TYPE_CREATE = 1;
var CRM_FORM_TYPE_UPDATE = 2;

switch (crmForm.FormType)
{
case CRM_FORM_TYPE_CREATE:
alert("This is a create form.");
//insert the PriceList GUID into the Price List look up field here.
break;

case CRM_FORM_TYPE_UPDATE:
break;
}

Hope this helps.
--
Manisha Powar (Madhusudanan)
Program Manager
Microsoft Dynamics - CRM

This posting is provided "AS IS" with no warranties, and confers no rights.
You assume all risk for your use. © 2005 Microsoft Corporation. All rights
reserved.
"Ian Clark" <icl...@3peaks.com> wrote in message
news:OsMeluBO...@TK2MSFTNGP11.phx.gbl...

MADV

unread,
May 28, 2006, 12:20:02 PM5/28/06
to
Hi Manisha,
This is very helpful...I am also interested in this functionality. The
issue is that I'm not much of a programmer. I determined that the GUID of
the Price List I am wanting it to default to is
{0C9925D7-60EE-DA11-9C6D-0013200A45F7}. How would this specifically look in
the code?

Thanks for the help!

0 new messages