Question
Capgemini
SE
Last activity: 25 Jul 2017 20:22 EDT
Using Snap start URL open portal and create case
My requirement is to open portal and create case via Snapstart url.
I am using the below url for this and is able to get the desired result.
Can anyone validate that if this is the correct approach or not??
***Updated by moderator: Lochan to add Categories
-
Like (0)
-
Share this page Facebook Twitter LinkedIn Email Copying... Copied!
Capgemini
SE
complete url
"http://localhost:8080/prweb?UserIdentifier=Manager@SAE&Password=cnVsZXM=
&pyActivity=Work-.NewFromFlow&InsClass=SAE-HRServices-Work-
Candidate&FlowType=pyStartCase&HarnessPurpose=Perform"
Metafinanz
DE
Hi Sourabh,
Please refer to following PDN article -
https://community.pega.com/how-create-snapstart-urls-desktop-integration
TCS
SA
Ganesh ,Do you think there is any issue with the url that Sourabh is suggesting?
As he has already mentioned that he is getting the desired result.
Also is it required to write any custom activity, if this can be achived by using what sourabh has mentioned (OOTB activity).
Virtusa
IN
can you please confirm if the snapstart url opens up the new case in Portal or just shows the first screen of the flow ?
Lloyds Banking Group PLC
GB
Hi,
We have a similar requirement to create a new case and display it in a Tab on launching the url, But we were only able to get the portal or the first screen of the flow and not in the tab. could you please let us know on the feasibility of achieving the requirement?
Pegasystems Inc.
IN
Hello!
I believe this use case is in discussion over this recent post: Creation of new tab to display new work object in portal using snapstart URL
Do participate in the the recent discussion by adding a reply.
Regards,
Agora Group
IN
Step 1: Need to get the querystring values from the snapshot url. Use the below function in the window.onload
function getQueryVariable(variable)
{
var query = window.location.search.substring(1);
var vars = query.split("&");
for (var i=0;i<vars.length;i++) {
var pair = vars[i].split("=");
if(pair[0] == variable){return pair[1];}
}
return(false);
}
Step 2: Need to pass this parameters to the activity. Use the below code to do this in the same window.onload javascript.