The Now Platform® Washington DC release is live. Watch now!

Help
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Modifying or removing the submission message after submitting a catalog item in Service Portal

adarshshivaprak
Kilo Contributor

Hello All ,

I am getting a submission message which is as shown below

find_real_file.png

after submitting a request in service portal. Can anyone help me in removing or modifying this message as I am not getting from where this message is coming.

Thanks ,

Adarsh S

1 REPLY 1

dvp
Mega Sage
Mega Sage

In SC Catalog Item widget below server script and client controller script lines are setting those messages



Server script lines 20 and 21


m.createdMsg = gs.getMessage("Created");


m.trackMsg = gs.getMessage("track using 'Requests' in the header or");



CLient controller lines 130 to 133 are setting those values



  var t = $scope.m.createdMsg + " " + n + " - ";


  t += $scope.m.trackMsg;


  t += ' <a href="' + url + '">' + $scope.m.clickMsg + '</a>';


  spUtil.addInfoMessage(t);




If you wish to see a different msg then you need to copy the OOB widget and update the message.