Awesome Man. I am new to the UI page in ServiceNow. And I was looking for a simple video to kick start my learning and you nailed it. Moreover, It's my birthday on 18th May, when you upload this video, I will take it as my birthday gift from you. :) Keep up the good work, I would be looking for more of these videos from you.
@servicenow9112 жыл бұрын
It's awesome ☺️. Belated Happy Birthday Mr Anand from team ServiceNow 911.
@rivi92042 жыл бұрын
Sir great job 👏 thanks … share more topics please in same way
@servicenow9112 жыл бұрын
Sure, thankyou. One the way to provide more useful content.
@russcerry48852 жыл бұрын
I was looking for something like this. I want to create a similar form like the one you have. But, my drop down has 4 values. if value a or b is selected from the drop down, create the record in table A. If values c or d is selected, create the record in table B. How do I do this?
@servicenow9112 жыл бұрын
In the Processing script, we get cat_id and use if statement to insert the records using GlideRecord. ------------------------------------------------------------------ You have to do all this in Processing Script. It looks something like the below - -------------------------------------------------------------- var tablename = ""; if(cat_id="" || cat_id="
@russcerry48852 жыл бұрын
Since the record can be inserted into Table A or Table B, do I need to duplicate the code twice like below? var tablename = “table a” if(cat_id="" || cat_id="
@servicenow9112 жыл бұрын
Not necessarily, The below code is taking care of tables and sets tablename variable according to options & the same variable is being used later in the query. ------------------------------------------------------------------------- var tablename = ""; if(cat_id="" || cat_id="
@russcerry48852 жыл бұрын
@@servicenow911 Hello, I am pretty new to javascript. Can you provide me the full working script of what I am asking to help? I have 3 tables, based on what is selected in a dropdown field, the record will be inserted into that table. Thanks in advance.
@user-do1hk7mg5y2 жыл бұрын
How did you create the hyperlink connected to priority?
@servicenow9112 жыл бұрын
Actually I have not done it. It may be out of box because of priority look rules. Or in case you want to do it , try it using DOM changes in client script.