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

Forum Posts

Resolved! Parse SOAP xml response

Hi All,How do i parse an xml response that i get from soap message ?I want the sys_id from the response.EX- i got a following response: <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/...

Resolved! Unable to deploy/create application scope

I'm working on a project where the client has 3 instances: dev, uat, and production. I created application scope on the dev instance, let's say that the app scope name was "XYZ". Then I wanted to deploy my update set (which has child update sets: Def...

Mohammad8 by Kilo Expert
  • 4314 Views
  • 4 replies
  • 2 helpfuls

Resolved! Remove Suggestion from Short Description

I created an app extended from task table.  I reused short description field.  Is there a way to hide the suggestion button that appear next to short description for this table?  It is not needed and would possibly cause confusion for the users.  I'm...

Query table data to display in a Service Catalog field

Hi Community, I have a question about Service Catalog variables.   <field A> A user selects an item name (in the image below, the variable name is "u_item_name_men") <field B> A user selects whether or not s/he wants the item new or second hand ("u_i...

find_real_file.png
L_10 by Kilo Contributor
  • 3276 Views
  • 19 replies
  • 3 helpfuls

Resolved! How to send email after the import

Hi All, I have read few threads but I am a bit confused. I have an email which sends notification to my instance with attachment. I have an inbound email action that copies the attachment to my data source and trigger a workflow. My workflow waits fo...

MMKK by Tera Expert
  • 1801 Views
  • 1 replies
  • 0 helpfuls

How to disable a field using sn-record-picker?

Hello! I am currently working on a form where I need to disable the approver field when a requester is a manager. I already used sn-disabled but it's not working for me.<sn-record-picker field="approverField" sn-disabled="c.data.manager" table="'sys_...

Resolved! Background script help - array

I have the below background script, which will display matching Short description. I'm not getting the output properly var arr = []; var regex = /SAP/i; var strSD=''; var stdDesc=''; var gr = new GlideRecord('incident'); gr.query(); while (gr.next())...