<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: Setting field name via a Business Rule in Community Central forum</title>
    <link>https://www.servicenow.com/community/community-central-forum/setting-field-name-via-a-business-rule/m-p/3286882#M3364</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/805829"&gt;@RodHill11&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;I don't think this error is coming from the BR&lt;/P&gt;&lt;P&gt;check the scripts of ACLs with sysid (&amp;nbsp;4212039b1bb2e110b7b35284604bcbcd,&amp;nbsp;&lt;SPAN&gt;cfae0a0fc31302004e44dccdf3d3ae63)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;is parent value populated? with BR&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;see if there is any issue with those scripts&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Please mark my answer as&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;FONT color="#008000"&gt;helpful/correct&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/STRONG&gt;if it resolves your query.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;Regards,&lt;BR /&gt;Chaitanya&lt;/I&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 11 Jun 2025 14:22:57 GMT</pubDate>
    <dc:creator>Chaitanya ILCR</dc:creator>
    <dc:date>2025-06-11T14:22:57Z</dc:date>
    <item>
      <title>Setting field name via a Business Rule</title>
      <link>https://www.servicenow.com/community/community-central-forum/setting-field-name-via-a-business-rule/m-p/3285976#M3353</link>
      <description>&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;I was recently tasked with finding a way to populate a field on one form from another form.&amp;nbsp; After doing some research, I learned that setting up a business rule was the best way to achieve this.&amp;nbsp; On Form A, there is a tab named Audit that holds the Audit Engagement number.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Form A:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RodH58347840403_0-1749586513041.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/447875iA226C5CA955D5CB6/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="RodH58347840403_0-1749586513041.png" alt="RodH58347840403_0-1749586513041.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the next section below, there's another tab named Remediation tasks.&amp;nbsp; The ask is this: when a user clicks the New button from the Remediation tasks, the Parent field from the Remediation task needs to be populated with the Audit engagement number.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RodH58347840403_1-1749587070002.png" style="width: 541px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/447876i3EA6FAF831B0ADE7/image-dimensions/541x200/is-moderation-mode/true?v=v2" width="541" height="200" role="button" title="RodH58347840403_1-1749587070002.png" alt="RodH58347840403_1-1749587070002.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I put together the following script but have not had any luck:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;(function executeRule(current, previous /*null when async*/) {

    // Only run if the issue field is set and parent is not already set
    if (current.issue &amp;amp;&amp;amp; !current.parent) {
        var issue = new GlideRecord('sn_grc_issue');
        if (issue.get(current.issue)) {
            // Set parent to the sys_id of the audit engagement referenced by the issue
            current.parent = current.issue.sn_audit_engagement;
			current.update();
        }
    }

})(current, previous);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I run the script I get the following error:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Evaluator.evaluateString() problem: java.lang.RuntimeException: failed to coerce com.glide.script.fencing.ScopedGlideElement to desired type java.lang.String: com.glide.script.fencing.ScopedFunctionObjectTypeHandler.coerceFunctionArgument(ScopedFunctionObjectTypeHandler.java:180)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;org.mozilla.javascript.NativeJavaMethod.call(NativeJavaMethod.java:247)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;org.mozilla.javascript.ScriptRuntime.doCall(ScriptRuntime.java:3081)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;org.mozilla.javascript.Interpreter.interpretLoop(Interpreter.java:1721)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;org.mozilla.javascript.Interpreter.interpret(Interpreter.java:907)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;org.mozilla.javascript.InterpretedFunction.lambda$call$0(InterpretedFunction.java:137)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.caller.gen.&lt;/SPAN&gt;&lt;A title="" href="https://elevatedev.service-now.com/sys_security_acl.do?sys_id=4212039b1bb2e110b7b35284604bcbcd" target="_blank" rel="noopener"&gt;sys_security_acl_4212039b1bb2e110b7b35284604bcbcd ➚&lt;/A&gt;&lt;SPAN&gt;.call(Unknown Source)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.script.ScriptCaller.call(ScriptCaller.java:22)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;org.mozilla.javascript.InterpretedFunction.call(InterpretedFunction.java:135)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;org.mozilla.javascript.ContextFactory.doTopCall(ContextFactory.java:720)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;org.mozilla.javascript.ScriptRuntime.doTopCall(ScriptRuntime.java:4501)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;org.mozilla.javascript.InterpretedFunction.exec(InterpretedFunction.java:151)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.script.ScriptCompiler.executeAndPublishMetric(ScriptCompiler.java:78)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.script.ScriptEvaluator.execute(ScriptEvaluator.java:464)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.script.ScriptEvaluator.evaluate(ScriptEvaluator.java:231)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.script.fencing.GlideScopedEvaluator.evaluateScript(GlideScopedEvaluator.java:384)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.script.fencing.GlideScopedEvaluator.evaluateScript(GlideScopedEvaluator.java:328)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.script.fencing.GlideScopedEvaluator.evaluateScriptAsBoolean(GlideScopedEvaluator.java:482)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.script.fencing.GlideScopedEvaluator.evaluateScriptAsBoolean(GlideScopedEvaluator.java:457)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.AccessTerm.checkScriptWithoutInstrument(AccessTerm.java:865)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.AccessTerm.checkScript0(AccessTerm.java:833)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.AccessTerm.lambda$checkScript$0(AccessTerm.java:807)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.data_filter.DataFilterDisableOnCurrentUtil.withDataFiltersOnRecordDisabled(DataFilterDisableOnCurrentUtil.java:40)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.AccessTerm.checkScript(AccessTerm.java:806)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.AccessTerm.evaluate0(AccessTerm.java:417)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.AccessTerm.evaluate(AccessTerm.java:322)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.AccessRule.processOr(AccessRule.java:321)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.AccessRule.evaluate(AccessRule.java:200)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.AccessRule.processSequential(AccessRule.java:332)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.AccessRule.evaluate(AccessRule.java:203)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.AccessRule.processAnd(AccessRule.java:306)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.AccessRule.evaluate(AccessRule.java:197)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.ACLAccessHandler.hasRightsToWithoutInstrument(ACLAccessHandler.java:84)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.ACLAccessHandler.hasRightsTo(ACLAccessHandler.java:67)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.ContextualSecurityManager.eval(ContextualSecurityManager.java:1306)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.ContextualSecurityManager.hasRightsToImpl0(ContextualSecurityManager.java:1128)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.ContextualSecurityManager.hasRightsToImpl(ContextualSecurityManager.java:1090)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.ContextualSecurityManager.canAccess(ContextualSecurityManager.java:1065)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.ContextualSecurityManager.canAccess(ContextualSecurityManager.java:1070)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.script.GlideElement.hasRightsTo(GlideElement.java:1280)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.script.GlideElement.checkRightsWithDerived(GlideElement.java:2978)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.script.GlideElement.canRead(GlideElement.java:1210)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.script.GlideRecordSimpleSerializer.canRead(GlideRecordSimpleSerializer.java:142)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.script.GlideRecordSimpleSerializer.serialize(GlideRecordSimpleSerializer.java:85)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.script.GlideRecordSimpleSerializer.serialize(GlideRecordSimpleSerializer.java:213)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.script.GlideRecordSimpleSerializer.serialize(GlideRecordSimpleSerializer.java:199)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.processors.xmlhttp.XMLGlideRecordSerializer.query(XMLGlideRecordSerializer.java:98)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.processors.xmlhttp.AJAXGlideRecord.query(AJAXGlideRecord.java:69)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.processors.xmlhttp.AJAXGlideRecord.process(AJAXGlideRecord.java:60)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.processors.xmlhttp.internal.XMLHttpRequestExecutor.process(XMLHttpRequestExecutor.java:110)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.processors.xmlhttp.internal.XMLHttpRequestExecutor.process(XMLHttpRequestExecutor.java:76)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.processors.xmlhttp.AJAXXMLHttpAggregator.process(AJAXXMLHttpAggregator.java:79)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.processors.XMLHttpProcessor.processJavaAJAX(XMLHttpProcessor.java:168)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.processors.XMLHttpProcessor.process(XMLHttpProcessor.java:121)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.processors.AProcessor.runProcessor(AProcessor.java:785)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.processors.AProcessor.processTransaction(AProcessor.java:328)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.processors.ProcessorRegistry.process0(ProcessorRegistry.java:187)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.processors.ProcessorRegistry.process(ProcessorRegistry.java:175)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.ui.GlideServletTransaction.process(GlideServletTransaction.java:58)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.Transaction.run(Transaction.java:2998)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.ui.HTTPTransaction.run(HTTPTransaction.java:34)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;java.base/java.lang.Thread.run(Thread.java:840)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Exception while executing getSkillConfigObj from extension point: ConversionError: The undefined value has no properties.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Any help someone can provide would be greatly appreciated.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jun 2025 20:34:02 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/setting-field-name-via-a-business-rule/m-p/3285976#M3353</guid>
      <dc:creator>RodHill11</dc:creator>
      <dc:date>2025-06-10T20:34:02Z</dc:date>
    </item>
    <item>
      <title>Re: Setting field name via a Business Rule</title>
      <link>https://www.servicenow.com/community/community-central-forum/setting-field-name-via-a-business-rule/m-p/3286000#M3354</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/805829"&gt;@RodHill11&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems your line with&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;current.parent = current.issue.sn_audit_engagement;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;is faulty.. You are trying to assign a GlideElement object and not its value.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please try this below:&lt;/P&gt;&lt;P&gt;I would suggest you replace the GlideElement "issue" with "gr" or something else that is not a keyword.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;(function executeRule(current, previous /*null when async*/) {

    // Only run if the issue field is set and parent is not already set
    if (current.issue &amp;amp;&amp;amp; !current.parent) {
        var gr = new GlideRecord('sn_grc_issue');
        if (gr.get(current.issue.toString())) {
            if (gr.sn_audit_engagement) {
                current.parent = gr.sn_audit_engagement.toString();
            }
        }
    }

})(current, previous);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jun 2025 21:02:08 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/setting-field-name-via-a-business-rule/m-p/3286000#M3354</guid>
      <dc:creator>folusho</dc:creator>
      <dc:date>2025-06-10T21:02:08Z</dc:date>
    </item>
    <item>
      <title>Re: Setting field name via a Business Rule</title>
      <link>https://www.servicenow.com/community/community-central-forum/setting-field-name-via-a-business-rule/m-p/3286010#M3355</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/38118"&gt;@folusho&lt;/a&gt;&amp;nbsp; for your reply.&amp;nbsp; I tried but that did not work.&amp;nbsp; Also, I wanted to give a little more information.&amp;nbsp; I have the rule set to run before and I have the Insert button checked:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RodH58347840403_0-1749590498168.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/447889iB8307BF7F59D95EE/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="RodH58347840403_0-1749590498168.png" alt="RodH58347840403_0-1749590498168.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jun 2025 21:21:49 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/setting-field-name-via-a-business-rule/m-p/3286010#M3355</guid>
      <dc:creator>RodHill11</dc:creator>
      <dc:date>2025-06-10T21:21:49Z</dc:date>
    </item>
    <item>
      <title>Re: Setting field name via a Business Rule</title>
      <link>https://www.servicenow.com/community/community-central-forum/setting-field-name-via-a-business-rule/m-p/3286017#M3356</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/805829"&gt;@RodHill11&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Lets put some logs in the business rule.&lt;/P&gt;&lt;P&gt;I assume you are no longer getting the initial error you mentioned ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;(function executeRule(current, previous /*null when async*/) {

    gs.info('[BR] Checking if issue exists and parent is not set...');
    
    if (current.issue &amp;amp;&amp;amp; !current.parent) {
        gs.info('[BR] Issue found: ' + current.issue);

        var gr = new GlideRecord('sn_grc_issue');
        if (gr.get(current.issue.toString())) {
            gs.info('[BR] Issue record retrieved. Sys ID: ' + gr.sys_id);

            if (gr.sn_audit_engagement) {
                gs.info('[BR] Audit engagement found: ' + gr.sn_audit_engagement);
                current.parent = gr.sn_audit_engagement.toString();
            } else {
                gs.info('[BR] No audit engagement found on issue.');
            }
        } else {
            gs.info('[BR] Could not retrieve issue record with sys_id: ' + current.issue);
        }
    } else {
        gs.info('[BR] Skipping — either no issue or parent is already set.');
    }

})(current, previous);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jun 2025 21:28:38 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/setting-field-name-via-a-business-rule/m-p/3286017#M3356</guid>
      <dc:creator>folusho</dc:creator>
      <dc:date>2025-06-10T21:28:38Z</dc:date>
    </item>
    <item>
      <title>Re: Setting field name via a Business Rule</title>
      <link>https://www.servicenow.com/community/community-central-forum/setting-field-name-via-a-business-rule/m-p/3286020#M3357</link>
      <description>&lt;P&gt;Same error as before.&amp;nbsp; I inserted the updated script, reran it and got the following messages followed by the same stack trace:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE width="685px"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="70.2625px"&gt;Warning&lt;/TD&gt;&lt;TD width="534.938px"&gt;Exception while executing getSkillConfigObj from extension point: ConversionError: The undefined value has no properties.&lt;/TD&gt;&lt;TD width="78px"&gt;&lt;P&gt;sn_wwna&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Information&lt;/TD&gt;&lt;TD&gt;Slow ACL cfae0a0fc31302004e44dccdf3d3ae63 for the path record/sn_audit_engagement/delete , time was: 21&lt;/TD&gt;&lt;TD&gt;AccessTerm&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;TABLE width="682px"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="70.35px"&gt;Warning&lt;/TD&gt;&lt;TD width="535.725px"&gt;Exception while executing getSkillConfigObj from extension point: ConversionError: The undefined value has no properties.&lt;/TD&gt;&lt;TD width="77.125px"&gt;sn_wwna&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;SPAN&gt;Evaluator.evaluateString() problem: java.lang.RuntimeException: failed to coerce com.glide.script.fencing.ScopedGlideElement to desired type java.lang.String: com.glide.script.fencing.ScopedFunctionObjectTypeHandler.coerceFunctionArgument(ScopedFunctionObjectTypeHandler.java:180)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;org.mozilla.javascript.NativeJavaMethod.call(NativeJavaMethod.java:247)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;org.mozilla.javascript.ScriptRuntime.doCall(ScriptRuntime.java:3081)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;org.mozilla.javascript.Interpreter.interpretLoop(Interpreter.java:1721)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;org.mozilla.javascript.Interpreter.interpret(Interpreter.java:907)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;org.mozilla.javascript.InterpretedFunction.lambda$call$0(InterpretedFunction.java:137)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.caller.gen.&lt;/SPAN&gt;&lt;A title="Link via SN Utils" href="https://elevatedev.service-now.com/sys_security_acl.do?sys_id=4212039b1bb2e110b7b35284604bcbcd" target="_blank" rel="noopener"&gt;sys_security_acl_4212039b1bb2e110b7b35284604bcbcd ➚&lt;/A&gt;&lt;SPAN&gt;.call(Unknown Source)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.script.ScriptCaller.call(ScriptCaller.java:22)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;org.mozilla.javascript.InterpretedFunction.call(InterpretedFunction.java:135)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;org.mozilla.javascript.ContextFactory.doTopCall(ContextFactory.java:720)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;org.mozilla.javascript.ScriptRuntime.doTopCall(ScriptRuntime.java:4501)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;org.mozilla.javascript.InterpretedFunction.exec(InterpretedFunction.java:151)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.script.ScriptCompiler.executeAndPublishMetric(ScriptCompiler.java:78)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.script.ScriptEvaluator.execute(ScriptEvaluator.java:464)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.script.ScriptEvaluator.evaluate(ScriptEvaluator.java:231)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.script.fencing.GlideScopedEvaluator.evaluateScript(GlideScopedEvaluator.java:384)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.script.fencing.GlideScopedEvaluator.evaluateScript(GlideScopedEvaluator.java:328)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.script.fencing.GlideScopedEvaluator.evaluateScriptAsBoolean(GlideScopedEvaluator.java:482)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.script.fencing.GlideScopedEvaluator.evaluateScriptAsBoolean(GlideScopedEvaluator.java:457)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.AccessTerm.checkScriptWithoutInstrument(AccessTerm.java:865)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.AccessTerm.checkScript0(AccessTerm.java:833)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.AccessTerm.lambda$checkScript$0(AccessTerm.java:807)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.data_filter.DataFilterDisableOnCurrentUtil.withDataFiltersOnRecordDisabled(DataFilterDisableOnCurrentUtil.java:40)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.AccessTerm.checkScript(AccessTerm.java:806)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.AccessTerm.evaluate0(AccessTerm.java:417)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.AccessTerm.evaluate(AccessTerm.java:322)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.AccessRule.processOr(AccessRule.java:321)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.AccessRule.evaluate(AccessRule.java:200)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.AccessRule.processSequential(AccessRule.java:332)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.AccessRule.evaluate(AccessRule.java:203)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.AccessRule.processAnd(AccessRule.java:306)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.AccessRule.evaluate(AccessRule.java:197)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.ACLAccessHandler.hasRightsToWithoutInstrument(ACLAccessHandler.java:84)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.ACLAccessHandler.hasRightsTo(ACLAccessHandler.java:67)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.ContextualSecurityManager.eval(ContextualSecurityManager.java:1306)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.ContextualSecurityManager.hasRightsToImpl0(ContextualSecurityManager.java:1128)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.ContextualSecurityManager.hasRightsToImpl(ContextualSecurityManager.java:1090)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.ContextualSecurityManager.canAccess(ContextualSecurityManager.java:1065)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.security.ContextualSecurityManager.canAccess(ContextualSecurityManager.java:1070)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.script.GlideElement.hasRightsTo(GlideElement.java:1280)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.script.GlideElement.checkRightsWithDerived(GlideElement.java:2978)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.script.GlideElement.canRead(GlideElement.java:1210)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.script.GlideRecordSimpleSerializer.canRead(GlideRecordSimpleSerializer.java:142)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.script.GlideRecordSimpleSerializer.serialize(GlideRecordSimpleSerializer.java:85)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.script.GlideRecordSimpleSerializer.serialize(GlideRecordSimpleSerializer.java:213)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.script.GlideRecordSimpleSerializer.serialize(GlideRecordSimpleSerializer.java:199)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.processors.xmlhttp.XMLGlideRecordSerializer.query(XMLGlideRecordSerializer.java:98)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.processors.xmlhttp.AJAXGlideRecord.query(AJAXGlideRecord.java:69)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.processors.xmlhttp.AJAXGlideRecord.process(AJAXGlideRecord.java:60)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.processors.xmlhttp.internal.XMLHttpRequestExecutor.process(XMLHttpRequestExecutor.java:110)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.processors.xmlhttp.internal.XMLHttpRequestExecutor.process(XMLHttpRequestExecutor.java:76)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.processors.xmlhttp.AJAXXMLHttpAggregator.process(AJAXXMLHttpAggregator.java:79)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.processors.XMLHttpProcessor.processJavaAJAX(XMLHttpProcessor.java:168)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.processors.XMLHttpProcessor.process(XMLHttpProcessor.java:121)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.processors.AProcessor.runProcessor(AProcessor.java:785)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.processors.AProcessor.processTransaction(AProcessor.java:328)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.processors.ProcessorRegistry.process0(ProcessorRegistry.java:187)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.processors.ProcessorRegistry.process(ProcessorRegistry.java:175)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.ui.GlideServletTransaction.process(GlideServletTransaction.java:58)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.sys.Transaction.run(Transaction.java:2998)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;com.glide.ui.HTTPTransaction.run(HTTPTransaction.java:34)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;java.base/java.lang.Thread.run(Thread.java:840)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jun 2025 21:38:39 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/setting-field-name-via-a-business-rule/m-p/3286020#M3357</guid>
      <dc:creator>RodHill11</dc:creator>
      <dc:date>2025-06-10T21:38:39Z</dc:date>
    </item>
    <item>
      <title>Re: Setting field name via a Business Rule</title>
      <link>https://www.servicenow.com/community/community-central-forum/setting-field-name-via-a-business-rule/m-p/3286050#M3358</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/805829"&gt;@RodHill11&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;create Before insert / update BR on the Remediation task&lt;/P&gt;&lt;P&gt;with conditions as highlighted&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ChaitanyaILCR_0-1749603625043.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/447899iCDE4E153F3CCD26D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ChaitanyaILCR_0-1749603625043.png" alt="ChaitanyaILCR_0-1749603625043.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ChaitanyaILCR_1-1749603669311.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/447901iE98E52F6528DF784/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ChaitanyaILCR_1-1749603669311.png" alt="ChaitanyaILCR_1-1749603669311.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Script used&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;(function executeRule(current, previous /*null when async*/ ) {

    // Add your code here
    current.parent = current.issue.sn_audit_engagement;

})(current, previous);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Please mark my answer as&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;FONT color="#008000"&gt;helpful/correct&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/STRONG&gt;if it resolves your query.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;Regards,&lt;BR /&gt;Chaitanya&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jun 2025 01:02:02 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/setting-field-name-via-a-business-rule/m-p/3286050#M3358</guid>
      <dc:creator>Chaitanya ILCR</dc:creator>
      <dc:date>2025-06-11T01:02:02Z</dc:date>
    </item>
    <item>
      <title>Re: Setting field name via a Business Rule</title>
      <link>https://www.servicenow.com/community/community-central-forum/setting-field-name-via-a-business-rule/m-p/3286854#M3363</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/24805"&gt;@Chaitanya ILCR&lt;/a&gt;&amp;nbsp;.&amp;nbsp; Thank you for your response.&amp;nbsp; I made the changes you suggested but it did not work.&amp;nbsp; I received the following error:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Exception while executing getSkillConfigObj from extension point: ConversionError: The undefined value has no properties.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Slow ACL cfae0a0fc31302004e44dccdf3d3ae63 for the path record/sn_audit_engagement/delete , time was: 20&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Evaluator.evaluateString() problem: java.lang.RuntimeException: failed to coerce com.glide.script.fencing.ScopedGlideElement to desired type java.lang.String: com.glide.script.fencing.ScopedFunctionObjectTypeHandler.coerceFunctionArgument(ScopedFunctionObjectTypeHandler.java:180)&lt;BR /&gt;org.mozilla.javascript.NativeJavaMethod.call(NativeJavaMethod.java:247)&lt;BR /&gt;org.mozilla.javascript.ScriptRuntime.doCall(ScriptRuntime.java:3081)&lt;BR /&gt;org.mozilla.javascript.Interpreter.interpretLoop(Interpreter.java:1721)&lt;BR /&gt;org.mozilla.javascript.Interpreter.interpret(Interpreter.java:907)&lt;BR /&gt;org.mozilla.javascript.InterpretedFunction.lambda$call$0(InterpretedFunction.java:137)&lt;BR /&gt;com.glide.caller.gen.&lt;A title="" href="https://elevatedev.service-now.com/sys_security_acl.do?sys_id=4212039b1bb2e110b7b35284604bcbcd" target="_blank" rel="noopener"&gt;sys_security_acl_4212039b1bb2e110b7b35284604bcbcd ➚&lt;/A&gt;.call(Unknown Source)&lt;BR /&gt;com.glide.script.ScriptCaller.call(ScriptCaller.java:22)&lt;BR /&gt;org.mozilla.javascript.InterpretedFunction.call(InterpretedFunction.java:135)&lt;BR /&gt;org.mozilla.javascript.ContextFactory.doTopCall(ContextFactory.java:720)&lt;BR /&gt;org.mozilla.javascript.ScriptRuntime.doTopCall(ScriptRuntime.java:4501)&lt;BR /&gt;org.mozilla.javascript.InterpretedFunction.exec(InterpretedFunction.java:151)&lt;BR /&gt;com.glide.script.ScriptCompiler.executeAndPublishMetric(ScriptCompiler.java:78)&lt;BR /&gt;com.glide.script.ScriptEvaluator.execute(ScriptEvaluator.java:464)&lt;BR /&gt;com.glide.script.ScriptEvaluator.evaluate(ScriptEvaluator.java:231)&lt;BR /&gt;com.glide.script.fencing.GlideScopedEvaluator.evaluateScript(GlideScopedEvaluator.java:384)&lt;BR /&gt;com.glide.script.fencing.GlideScopedEvaluator.evaluateScript(GlideScopedEvaluator.java:328)&lt;BR /&gt;com.glide.script.fencing.GlideScopedEvaluator.evaluateScriptAsBoolean(GlideScopedEvaluator.java:482)&lt;BR /&gt;com.glide.script.fencing.GlideScopedEvaluator.evaluateScriptAsBoolean(GlideScopedEvaluator.java:457)&lt;BR /&gt;com.glide.sys.security.AccessTerm.checkScriptWithoutInstrument(AccessTerm.java:865)&lt;BR /&gt;com.glide.sys.security.AccessTerm.checkScript0(AccessTerm.java:833)&lt;BR /&gt;com.glide.sys.security.AccessTerm.lambda$checkScript$0(AccessTerm.java:807)&lt;BR /&gt;com.glide.sys.security.data_filter.DataFilterDisableOnCurrentUtil.withDataFiltersOnRecordDisabled(DataFilterDisableOnCurrentUtil.java:40)&lt;BR /&gt;com.glide.sys.security.AccessTerm.checkScript(AccessTerm.java:806)&lt;BR /&gt;com.glide.sys.security.AccessTerm.evaluate0(AccessTerm.java:417)&lt;BR /&gt;com.glide.sys.security.AccessTerm.evaluate(AccessTerm.java:322)&lt;BR /&gt;com.glide.sys.security.AccessRule.processOr(AccessRule.java:321)&lt;BR /&gt;com.glide.sys.security.AccessRule.evaluate(AccessRule.java:200)&lt;BR /&gt;com.glide.sys.security.AccessRule.processSequential(AccessRule.java:332)&lt;BR /&gt;com.glide.sys.security.AccessRule.evaluate(AccessRule.java:203)&lt;BR /&gt;com.glide.sys.security.AccessRule.processAnd(AccessRule.java:306)&lt;BR /&gt;com.glide.sys.security.AccessRule.evaluate(AccessRule.java:197)&lt;BR /&gt;com.glide.sys.security.ACLAccessHandler.hasRightsToWithoutInstrument(ACLAccessHandler.java:84)&lt;BR /&gt;com.glide.sys.security.ACLAccessHandler.hasRightsTo(ACLAccessHandler.java:67)&lt;BR /&gt;com.glide.sys.security.ContextualSecurityManager.eval(ContextualSecurityManager.java:1306)&lt;BR /&gt;com.glide.sys.security.ContextualSecurityManager.hasRightsToImpl0(ContextualSecurityManager.java:1128)&lt;BR /&gt;com.glide.sys.security.ContextualSecurityManager.hasRightsToImpl(ContextualSecurityManager.java:1090)&lt;BR /&gt;com.glide.sys.security.ContextualSecurityManager.canAccess(ContextualSecurityManager.java:1065)&lt;BR /&gt;com.glide.sys.security.ContextualSecurityManager.canAccess(ContextualSecurityManager.java:1070)&lt;BR /&gt;com.glide.script.GlideElement.hasRightsTo(GlideElement.java:1280)&lt;BR /&gt;com.glide.script.GlideElement.checkRightsWithDerived(GlideElement.java:2978)&lt;BR /&gt;com.glide.script.GlideElement.canRead(GlideElement.java:1210)&lt;BR /&gt;com.glide.script.GlideRecordSimpleSerializer.canRead(GlideRecordSimpleSerializer.java:142)&lt;BR /&gt;com.glide.script.GlideRecordSimpleSerializer.serialize(GlideRecordSimpleSerializer.java:85)&lt;BR /&gt;com.glide.script.GlideRecordSimpleSerializer.serialize(GlideRecordSimpleSerializer.java:213)&lt;BR /&gt;com.glide.script.GlideRecordSimpleSerializer.serialize(GlideRecordSimpleSerializer.java:199)&lt;BR /&gt;com.glide.processors.xmlhttp.XMLGlideRecordSerializer.query(XMLGlideRecordSerializer.java:98)&lt;BR /&gt;com.glide.processors.xmlhttp.AJAXGlideRecord.query(AJAXGlideRecord.java:69)&lt;BR /&gt;com.glide.processors.xmlhttp.AJAXGlideRecord.process(AJAXGlideRecord.java:60)&lt;BR /&gt;com.glide.processors.xmlhttp.internal.XMLHttpRequestExecutor.process(XMLHttpRequestExecutor.java:110)&lt;BR /&gt;com.glide.processors.xmlhttp.internal.XMLHttpRequestExecutor.process(XMLHttpRequestExecutor.java:76)&lt;BR /&gt;com.glide.processors.xmlhttp.AJAXXMLHttpAggregator.process(AJAXXMLHttpAggregator.java:79)&lt;BR /&gt;com.glide.processors.XMLHttpProcessor.processJavaAJAX(XMLHttpProcessor.java:168)&lt;BR /&gt;com.glide.processors.XMLHttpProcessor.process(XMLHttpProcessor.java:121)&lt;BR /&gt;com.glide.processors.AProcessor.runProcessor(AProcessor.java:785)&lt;BR /&gt;com.glide.processors.AProcessor.processTransaction(AProcessor.java:328)&lt;BR /&gt;com.glide.processors.ProcessorRegistry.process0(ProcessorRegistry.java:187)&lt;BR /&gt;com.glide.processors.ProcessorRegistry.process(ProcessorRegistry.java:175)&lt;BR /&gt;com.glide.ui.GlideServletTransaction.process(GlideServletTransaction.java:58)&lt;BR /&gt;com.glide.sys.Transaction.run(Transaction.java:2998)&lt;BR /&gt;com.glide.ui.HTTPTransaction.run(HTTPTransaction.java:34)&lt;BR /&gt;java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)&lt;BR /&gt;java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)&lt;BR /&gt;java.base/java.lang.Thread.run(Thread.java:840)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jun 2025 13:53:55 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/setting-field-name-via-a-business-rule/m-p/3286854#M3363</guid>
      <dc:creator>RodHill11</dc:creator>
      <dc:date>2025-06-11T13:53:55Z</dc:date>
    </item>
    <item>
      <title>Re: Setting field name via a Business Rule</title>
      <link>https://www.servicenow.com/community/community-central-forum/setting-field-name-via-a-business-rule/m-p/3286882#M3364</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/805829"&gt;@RodHill11&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;I don't think this error is coming from the BR&lt;/P&gt;&lt;P&gt;check the scripts of ACLs with sysid (&amp;nbsp;4212039b1bb2e110b7b35284604bcbcd,&amp;nbsp;&lt;SPAN&gt;cfae0a0fc31302004e44dccdf3d3ae63)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;is parent value populated? with BR&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;see if there is any issue with those scripts&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Please mark my answer as&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;FONT color="#008000"&gt;helpful/correct&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/STRONG&gt;if it resolves your query.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;Regards,&lt;BR /&gt;Chaitanya&lt;/I&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jun 2025 14:22:57 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/setting-field-name-via-a-business-rule/m-p/3286882#M3364</guid>
      <dc:creator>Chaitanya ILCR</dc:creator>
      <dc:date>2025-06-11T14:22:57Z</dc:date>
    </item>
    <item>
      <title>Re: Setting field name via a Business Rule</title>
      <link>https://www.servicenow.com/community/community-central-forum/setting-field-name-via-a-business-rule/m-p/3286946#M3366</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/24805"&gt;@Chaitanya ILCR&lt;/a&gt;&amp;nbsp;.&amp;nbsp; I checked those ACLs and it appear they are definitely conflicting with what I'm trying to accomplish.&amp;nbsp; I will accept your previous solution.&amp;nbsp; Thanks again.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jun 2025 15:37:11 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/setting-field-name-via-a-business-rule/m-p/3286946#M3366</guid>
      <dc:creator>RodHill11</dc:creator>
      <dc:date>2025-06-11T15:37:11Z</dc:date>
    </item>
  </channel>
</rss>

