Find your people. Pick a challenge. Ship something real. The CreatorCon Hackathon is coming to the Community Pavilion for one epic night. Every skill level, every role welcome. Join us on May 5th and learn more here.

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

Forum Posts

Resolved! List colletor variable attributes

Hi, I created a List Collector variable referencing the cmdb_ci_computer table.I configured variable attributes to allow searching by three fields:NameSerial NumberAssetExpected behavior:When I type a value from any of these fields, the corresponding...

17768786045965057231446337828694.jpg
mounika7675 by Tera Contributor
  • 39 Views
  • 3 replies
  • 0 helpfuls

Catalog item - MRVS

Hello,In my PDI (Zurich) I was able to create a catalog item with a Multi -Row Variable Set (MRVS) - to add additonal user who may also need this item.Giving me the following informationUser (reference)Email - bot walk to User question (auto -populat...

Garygman by Tera Contributor
  • 75 Views
  • 1 replies
  • 0 helpfuls

HTML structure in Jelly Scripting

Hi I am working on a requirement where i want to show/hide a UI formatter from on a UI macro based on the reference field on the form.<?xml version="1.0" encoding="utf-8" ?> <j:jelly trim="false" xmlns:j="jelly:core" xmlns:g="glide" xmlns:j2="null" x...

HameetK_0-1776789306230.png
HameetK by Tera Contributor
  • 203 Views
  • 2 replies
  • 0 helpfuls

Resolved! Creating a follow-up process for survey responses

Hi,We want to introduce a process to ensure that we follow-up on any negative responses to surveys.I have created the workflow, notifications etc and all is working perfectly except that the workflow is triggering each time the negative response is r...

Daniel Voutt by Tera Contributor
  • 4028 Views
  • 13 replies
  • 0 helpfuls

Knowledge Article - Block Text tool

Hi Team, I have requirement in the knowledge center, when ever user create a new article, i need the text block should be only "arial" and font size should be "12PX" should be fixed and user should not able to change this. I have check with the defau...

dhivyal94299399_0-1776838353296.png

Smart Assessment Engine

In Smart Assessment Engine, I need to conditionally show or hide sections (for example based on an incident state field). Section one and two should display if the incident closes as complete, but section three and four should display if it closes as...

I want to hide the some lanes from agile board

Hi All,I want to hide some lanes from agile board like Draft and Ready for Testing.Specifically for particular Groups.For Group A i want to have Draft and Ready for testing in the Story board lanes.But For Group B I don't want Draft and Ready for tes...

NeethuB by Tera Contributor
  • 499 Views
  • 8 replies
  • 0 helpfuls

Scripting Practice question

//last 3 latest updated incidentvar gr=new GlideRecord('incident');gr.orderByDesc('sys_updated_on');gr.setLimit(3)gr.query();while(gr.next()){    gs.print(gr.number);}// incident group by with assignment groupvar gr=new GlideAggregate('incident');gr....