Multidomain MDM
- Multidomain MDM 10.4 HotFix 1
- All Products
<html> <head> <!-- include postmessage JavaScript plugin --> <script type="text/javascript" src="http://postmessage.freebaseapps.com/postmessage.js"></script> <script type="text/javascript"> // function handling events function handleEvent(data) { switch(data.action) { case 'ON_LOAD': // handle ON_LOAD event break; case 'ON_IMPORT': // handle ON_IMPORT event break; case 'ON_OPEN': // handle ON_OPEN event break; } } // register function 'handleEvent' as handler for events generated by Duplicate Prevention component function bindHandler() { pm.bind("idd_pmc_event", function(data) { handleEvent(data); }); } </script> </head> <!-- register event handler from onload event --> <body onload='bindHandler();'> <!-- embed Duplicate Prevent component --> <iframe src="http://<host>:<port>/bdd/bdc/<component name>/sa:<subject area>,<match parameters>/proactive_match/component.jsf></iframe> </body> </html>