- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-29-2022 08:44 PM
I have created a database view and i need this database view to be shown in the widgets of the SP portals.
On creating a Script include in the widget editor the database view is not seen in the sp portals.
Script include:
(function() {
data.problem=[];
var gr =new GlideRecord('u_casecasetask');
//gr.addEncodedQuery('cs_account=a783960397e711104ff5bd3ef053afa5');
//gr.query();
while (gr.next())
{
var datax ={};
//datax.number =gr.getValue('tw_task');
datax.number=gr.getDisplayValue('tw_task');
//datax.number =gr.tw_task.tk_number;
data.problem.push(datax);
}
})();
on executing this script the record is not seen how to solve this?
help me with script
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-29-2022 09:34 PM
@devservicenow k Its typo error. problem spelling is wrong in html
Use correct variable name as defined in the server script.
Please mark as correct answer if this solves your issue.
ServiceNow Community Rising Star, Class of 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-29-2022 09:34 PM
@devservicenow k Its typo error. problem spelling is wrong in html
Use correct variable name as defined in the server script.
Please mark as correct answer if this solves your issue.
ServiceNow Community Rising Star, Class of 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-29-2022 09:40 PM - edited 12-30-2022 04:26 AM
@jaheerhattiwale i have changed and checked it still it is not showing the records
is any problem with the query?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-29-2022 09:43 PM
@devservicenow k ng-repeat spelling is also wrong. Fix that and check.
ServiceNow Community Rising Star, Class of 2023