We have a Dynamics CRM 2011 of Microsoft
.
In my Opportunity
entity, I enter another entity data named special services
.
Every Opportunity
can have multiple special services
, so Opportunity
has 1:N relation with special services
(opportunity as primary entity)
We all know that Opportunity
has 1:N relation with Quote
and also Order
,
And Quote
to Order
has 1:N relation.
Now I want to display special services
data I entered in Opportunity
entity (same data entered) in Quote
and Order
Form
via subgrid.(in onload of the page or onclick of saving data in opportunity
)
It cannot be done with relations and also with quick view form
since CRM 2011 does not support quick view form
.
I must write a JavaScript
for this purpose.
I know how to insert JavaScript
written into the form via this link.
But Can anybody give a sample like this? And guide me via guide line?