SBL-EAI-04127 Error and JavaScript Doubt
Hi,
I have tried to consume CRM OD's WebServices from JavaScript, but I have the following problems/doubts:
1) How can I obtain the entity’s (for example, Opportunity) ID from the URL?
I have defined the following URL to access to the report:
https://secure-ausomxhka.crmondemand.com/OnDemand/user/ReportIFrameView?SAWDetailViewURL=saw.dll?Go%26Path%3D%252fshared%252fCompany_AHKA-JB4UI_Shared_Folder%252fIngresosProductoOportunidad&AnalyticReportName=IngresosProductoOportunidad&Action=Prompt&p0=1&p1=eq&p2=Opportunity.”Opportunity ID”&p3=%%%Id%%%
I would like to have the value of p3 parameter, so:
var opportunityID=$_GET("p3"); -->
function $_GET(name){
e = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
var regexS = "[
I have tried to consume CRM OD's WebServices from JavaScript, but I have the following problems/doubts:
1) How can I obtain the entity’s (for example, Opportunity) ID from the URL?
I have defined the following URL to access to the report:
https://secure-ausomxhka.crmondemand.com/OnDemand/user/ReportIFrameView?SAWDetailViewURL=saw.dll?Go%26Path%3D%252fshared%252fCompany_AHKA-JB4UI_Shared_Folder%252fIngresosProductoOportunidad&AnalyticReportName=IngresosProductoOportunidad&Action=Prompt&p0=1&p1=eq&p2=Opportunity.”Opportunity ID”&p3=%%%Id%%%
I would like to have the value of p3 parameter, so:
var opportunityID=$_GET("p3"); -->
function $_GET(name){
e = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
var regexS = "[
0