Tech Support > Microsoft Windows > Windows CRM > Opportunity Product Call Out
Opportunity Product Call Out
Posted by Brian on June 6th, 2006


Does anyone know if it is possible to do a post call out on the opportunity
product page? The information I have researched so far doesn't mention it
being an entity that I can do that with.

Second part to this question is that if I can do this how will I get each
products value sent to me, is there a way to loop through the values sent to
me in the post call out.

If you can't tell I am new to this, I am not looking for code or anything as
I will figure it out, I just want to know if it can be done before spending
time trying to do it if it can't be done.

Thanks,
Brian

Posted by Kalmadi Santhosh Rao [MSFT] on June 7th, 2006


Yes you can have callouts for opportunityproduct entity. The entry for
opportunityproduct in callout.config.xml would look like.

<callout entity="opportunityproduct" event="PreCreate">
<subscription assembly="<Custom callout assembly name>" class="<Custom
callout class name>"/>
</callout>

For more information on callouts refer CRM 3.0 SDK help. In the SDK help
navigate to the Server Programming Guide -> Business Logic Extensions
(Callouts) topic.

Within the custom callout assembly you could use CRM 3.0 SDK
RetrieveMultipleRequest API to retrieve other products associated with the
opportunity.

--
This posting is provided "AS IS" with no warranties, and confers no rights.
You assume all risk for your use. © 2006 Microsoft Corporation. All rights
reserved.


"Brian" wrote:

Posted by Hans I. letnes on June 9th, 2006


Hello
I'm in a similar situation. Has anyone a solution for doing this?

"Kalmadi Santhosh Rao [MSFT]" wrote:


Similar Posts