Skip to main content

ServiceNow - Turn on enhanced debugging for service graph connector via extra sys properties

 in this example, I am struggling to locate a field mapping to dynatrace application > comments field



Please turn on REST, IRE/CMDB, business rule logging and database logging on the instance while testing (reproducing the problem) and provide the times of the testings.

1. On the sys_properties set the followings
glide.businessrule.callstack = true
glide.db.trace = true
glide.rest.debug = true
glide.cmdb.logger.source.identification_engine = info,warn,error,debug,debugVerbose
(if it does not exist, please create them)

2. Run your scheduled data import on applications

3. On the sys_properties set the followings
glide.businessrule.callstack = false
glide.db.trace = false
glide.rest.debug = false
glide.cmdb.logger.source.identification_engine = info

Let us know the time of the testing and the workflow context related to the update.

The information is stored on the localhost files on your instance.
Use the Log File Browser to search and download logs.

More information here:

https://docs.servicenow.com/csh?topicname=system-logs.html&version=latest




Comments

  1. ⚠️THE TRENDING SCAM & HOW TO GET BACK AT THEM‼️

    ✅ The newest way to scam people this days is making them invest in cryptocurrency, though this isn’t a bad idea, trading cryptocurrency is one of the best way to make or loose money. Cryptocurrency trading is becoming rampant way to invest and everybody seems to want to join in cryptocurrency trading.

    ✅ So many people have fallen victims to fake cryptocurrency trading platform, where they are promised they would make over a thousand percent within weeks, but it turns out to be scam as the platforms are owned by fraudsters who are just interested in taking away your money.

    Here is the good news, if you have fallen victims to this guys, you can actually get your money back by using the PYTHONAX SERVICES.

    HOW DOES THE PYTHONAX SERVICES WORK⁉️

    Well PYTHONAX are group of hackers who are dedicated to help you get your money back and take down this scam and fraudulent platforms. This scammers make thousand/millions of dollars everyday by scamming people by promising them huge amount of profits which entices individuals.

    HOW DO PYTHONAX WORK⁉️

    They attack this Scammers platform by the use of sophisticated softwares that breaches through the scam platforms and take away their Bitcoin stored in their wallets.

    If you a victims of this kind of scam, contact PYTHONAX immediately and your money will be recovered in full.

    Contacts-:
    pythonaxservices@gmail.com
    Pythonaxhacks@gmail.com

    PYTHONAX.
    2022 © All Right Reserved.





    ReplyDelete

Post a Comment

Popular posts from this blog

URL link in addInfoMessage

var ga=new GlideAjax('gld_HR_ajax'); ga.addParam('sysparm_name', 'checkEmployeeNumber_hrProfile'); ga.addParam('sysparm_hrprofilenumber', g_form.getValue('number')); ga.addParam('sysparm_employeenumber', newValue); ga.getXMLAnswer(function(answer) { if (answer!='undefined' && answer!=''){ var navURL="<a style='text-decoration:underline;color:blue' href=hr_profile.do?sysparm_query=number=" + answer + ">" + answer + "</a><img width='3' src='images/s.gif'/>"; var sMsg='The employee number entered already exists on another HR Profile ' + navURL; //alert(sMsg); g_form.showErrorBox('employee_number', 'error - please check'); g_form.addInfoMessage(sMsg); } });

GlideRecord setValue

setValue(String name, Object value) Sets the specified field to the specified value. Normally a script would do a direct assignment, for example,  gr.category = value . However, if in a script the element name is a variable, then  gr.setValue(elementName, value)  can be used. When setting a value, ensure the data type of the field matches the data type of the value you enter. This method cannot be used on journal fields. If the value parameter is null, the record is not updated, and an error is not thrown https://developer.servicenow.com/app.do#!/api_doc?v=madrid&id=r_GlideRecord-setValue_String_Object