We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Removes an existing N-N relationship between the two passed entities.
Relationship is removed either from local database or using the online request. It depends on current application mode.
This example demonstrates how to remove an existing N-N relationship between competitor and product entities.
var competitor = new MobileCRM.Reference("competitor", competitorid); var product = new MobileCRM.Reference("product", productid); MobileCRM.ManyToManyReference.remove("competitorproduct", competitor, product, function () { onRemoved(); }, function (err) { showError(err); });
Links: