dynamics crm 2011 - Pass parameters using POST to HTML page from SSRS -
i have html page stored web resource in crm 2013. have report need pass records guids html page. able pass record guids(comma separated list) successfully. however, when url length exceeds 2000 characters, getting "404 resource not found" error. due url length limit. there way can pass record guids using post method html page ssrs work number of records?
the simplest approach seems storing record guids variable on ssrs report via
=code.writehtml("<script>window.recordguids=[" & recordids & "];</script>")
and in web resource use
var ids = window.opener.recordguids;
but work in browser , report have viewed crm.
otherwise, post external service, launch web page , allow getting ids through caching mechanism mixed jsonp call of sort.
Comments
Post a Comment