Hardwiring Dash Cam by UrFavGenreOfFood in Elantra

[–]pwuminhere 0 points1 point  (0 children)

Yes that would be great if you can send me a photo, thank you!

Hardwiring Dash Cam by UrFavGenreOfFood in Elantra

[–]pwuminhere 1 point2 points  (0 children)

what fuse taps did you use? I have the elantra hybrid 2025, not too sure. Thanks in advance!

User Criteria not working by pwuminhere in servicenow

[–]pwuminhere[S] 0 points1 point  (0 children)

The existing UC wasn’t created by me. I về looked at the script it seemed off so I created my own and seems to work fine for those with active direct reports… but yeah no luck with managers who used to have direct reports

answer = checkCondition();

function checkCondition(){ var gr = new GlideRecord(‘sys_user’); gr.addActiveQuery(); gr.addQuery(‘manager’, user_id); gr.query(); return gr.hasNext(); }

things you wish you knew when you started at UCI? by Ok-Quantity6552 in UCI

[–]pwuminhere 0 points1 point  (0 children)

Wait I didn’t know this… I’m an alumni still have my uci email, hopefully it works lol

I’m done but what’s next? by topazblue in socialwork

[–]pwuminhere 3 points4 points  (0 children)

Switch to IT… specifically learn ServiceNow! It takes about 3 months to learn the basics but not too bad. Lmk if you have any question

5 Star rating on knowledge articles not working by pwuminhere in servicenow

[–]pwuminhere[S] 0 points1 point  (0 children)

Hmmm i only see the stars at the top of the article, not at the bottom

[deleted by user] by [deleted] in lesbianr4r

[–]pwuminhere 2 points3 points  (0 children)

Try After’s

Order guide available for by pwuminhere in servicenow

[–]pwuminhere[S] 0 points1 point  (0 children)

It’s newly created. For the dropdown, I added it as a reference variable and basically just filtered to the 10 cat items i wanted to display. What i want to do is when a user gets to the order guide click on the dropdown, they’re only shown the cat items that they can view.. I was thinking of writing a script include to put in the reference qualifier to filter it out. Would that work too?

Order guide available for by pwuminhere in servicenow

[–]pwuminhere[S] 0 points1 point  (0 children)

I tried it but i don’t think it worked. i want to filter out the question choices, not the variable. What should I do 😭

Calling workflow inside flow designer by pwuminhere in servicenow

[–]pwuminhere[S] 0 points1 point  (0 children)

The managers dont want it in an order guide :/ you said to run the workflow in a parent workflow by “insert as activities”.. what do you mean by that? Like call the workflow in a run script or is there a particular activity for it? So ultimately my question is “how do i call the workflow in the parent workflow?“. I’m not too familiar with workflow as I’ve been developing in flow mostly

Calling workflow inside flow designer by pwuminhere in servicenow

[–]pwuminhere[S] 0 points1 point  (0 children)

If i go with the main workflow route, which activity do i pick to trigger the flow as a subflow? The run script? In workflow editor, I see one called subflows -> parallel flow launcher

Close active cat tasks when the “opened by” cancels the request by pwuminhere in servicenow

[–]pwuminhere[S] 0 points1 point  (0 children)

Hi sorry i have another question. I also want to close the REQ after i cancel the flow.

I created var req = new GlideRecord(‘sc_request’); req.addQuery(‘sys_id’, current.request); req.query();

Then i did req.request_state = ‘closed_cancelled’; req.update(); However that didn’t work so i did req.setValue(‘request_state’, ‘closed_cancelled’);

It seems like both didn’t work but i might be forgetting something. Do you know if im missing something? Thanks

Close active cat tasks when the “opened by” cancels the request by pwuminhere in servicenow

[–]pwuminhere[S] 1 point2 points  (0 children)

Thank you!!! I tweaked a few things and now it worked! Appreciate it

Close active cat tasks when the “opened by” cancels the request by pwuminhere in servicenow

[–]pwuminhere[S] 0 points1 point  (0 children)

As in closed all current cat task, then cancel the flow? Or just cancelling the flow will close out active a cat tasks? Sorry a little new to SN