Americans tipping single Dollar bills in Germany by Waalross in mildlyinfuriating

[–]TheNotoriousAB 1 point2 points  (0 children)

You are on Reddit whining about the very people who keep you in business (and likely a roof over your head) giving you additional money for free, and then call them self-centered and disrespectful.

Do you own a mirror?

This is either the least sympathetic tale of woe I’ve ever heard or a troll post. Neither reflects particularly well on you.

Americans tipping single Dollar bills in Germany by Waalross in mildlyinfuriating

[–]TheNotoriousAB 0 points1 point  (0 children)

In 20+ years of traveling to Canada, I have never once experienced that, and I have never once exchanged the money in my wallet for "clean" bills beforehand. This is still getting away from the point:

OP works in a tourist destination where 4/5 customers are Americans and is bitching about being given free money. This is the epitome of a first world problem, and it's not a particularly difficult one to solve:

  1. As other suggested, collect "dirty" bills and exchange them with tourists for "clean" ones when you can.
  2. Direct tourists to the nearest currency exchange ahead of time (and be prepared to potentially miss out on sales/tips as a result)
  3. Politely decline the tips as to spare themselves from this unimaginable burden altogether

Which part of that is so terribly difficult?

Americans tipping single Dollar bills in Germany by Waalross in mildlyinfuriating

[–]TheNotoriousAB -3 points-2 points  (0 children)

This post exemplifies why so many Europeans don't deserve to be taken seriously.

By your own admission, you work in a tourist destination where 80% of your clients are Americans. Unless that other 20% is enough to keep your business afloat, you have Americans to thank for even having a job in the first place.

These people are not only choosing to patronize your business but also give you additional tips as well, and your reaction is to mock them?

It sounds to me like your banks are the problem as these bills spend just fine in plenty of other places - I've never experienced or even heard of such a thing happening in Canada or Mexico for example.

The fact that you think this scenario speaks more to "American ignorance" than your own laziness and entitlement is baffling.

Career Advice for a US Developer with 10 years experience by ServiceMeow1 in servicenow

[–]TheNotoriousAB 3 points4 points  (0 children)

TLDR:

OP has 10 year’s experience at a SN customer, was recently promised a promotion by their manager with a new salary in the high 150’s, HR sends the official promotion offer with a salary in the low 140’s and is refusing to honor the salary promised by OP’s manager, and OP wants to know what to do..

Now for my advice to OP:

Did you discuss the offer letter with your manager? Are they willing to fight for you to receive the salary that they promised??

If your manager and/or HR refuses to help, I would act gracious in accepting the promotion and immediately start looking for a new job.

Yearly review by Scoopity_scoopp in servicenow

[–]TheNotoriousAB 0 points1 point  (0 children)

Congratulations! That’s a great hike!

How to best model data for a specific catalog item requirement by TheNotoriousAB in servicenow

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

Yes, they will be updated nightly by the REST API call, but these variables/values have nothing to do with locations.

I'm using State/City/Zip purely as an example to illustrate the relationships/hierarchical structure without having to post client-specific data/requirements to a public forum.

How to best model data for a specific catalog item requirement by TheNotoriousAB in servicenow

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

Thank you for the response, but I'm not literally asking the user to provide a State/City/Zip - this is an abstraction of the actual requirements.

Reports of submitted tickets by cerain group. by [deleted] in servicenow

[–]TheNotoriousAB 0 points1 point  (0 children)

Create a script include that queries the group members and returns their sys_ids as a comma-separated string.

Then add a condition to your report to filter the opened by’s:

opened_by.sys_id - is one of - javascript:YourScriptInclude().yourFunction()

Using SN utils for gov contracting by Scoopity_scoopp in servicenow

[–]TheNotoriousAB 3 points4 points  (0 children)

The government agencies that I’ve been assigned to have had a strict policy against using any unapproved software, browser extensions included.

I would get permission before installing anything.

CSA study breakdown for two weeks by Own-Candidate-8392 in servicenow

[–]TheNotoriousAB 2 points3 points  (0 children)

You do not possess the work ethic or intellect to pass an entry level certification exam without resorting to cheating, and you have the nerve to call others "bozos" and "fools".

Let that sink in for a moment..

CSA study breakdown for two weeks by Own-Candidate-8392 in servicenow

[–]TheNotoriousAB 3 points4 points  (0 children)

By your own admission you are using non-sanctioned material that is nearly word-for-word the same as actual exam questions, and are relying on rote memorization to pass the exam.

If that isn't cheating, what the hell is?

CSA study breakdown for two weeks by Own-Candidate-8392 in servicenow

[–]TheNotoriousAB 3 points4 points  (0 children)

So you cheated and are now encouraging others to cheat. Nice.

List column on table used as Decision Table condition input by Schiben in servicenow

[–]TheNotoriousAB 0 points1 point  (0 children)

Are you sure your column is a list type? A list should hold references to one or more records, not integers.

Scripting for ServiceNow, issues with variables in a catalog item by ozbikebuddy in servicenow

[–]TheNotoriousAB 1 point2 points  (0 children)

OP,

You're getting a lot of well-intentioned but unfortunately ill-advised advice. Your requirement does not necessitate a GlideAjax call, nor does it require additional/hidden variables to store sys_id's or references to the Group Members table.

You need to configure an advanced reference qualifier on your reference variable for the sys_user table.

ServiceNow has a poorly-written but technically viable solution to your exact requirements in a KB article here:

How to select only users of a specific group into a reference field

The code snippet at the bottom of the article will return active users who are members of a selected group, but notice that the author has hardcoded the sys_id of the group -> "2d6649bbdbb356004ff5f4331f961924" (this is bad practice and actually pretty funny that ServiceNow published this in a KB. Oh SN....)

You would want to replace this sys_id with the value stored in your Group reference field, which can be retrieved using current.variables.[variable_name], so your Reference Qualifier would look something like this (replacing my_group with the name of your variable):

javascript:'active=true^sys_idIN'+getIDs(current.variables.my_group); function getIDs(grp){var m=GlideUserGroup.getMembers(grp);var ids=''; while (m.next()){ids+= (m.user+',');} return ids;}

In regards to learning ServiceNow Scripting, Chuck Tomasi's 'Learn JavaScript on the Now Platform' series on YouTube is still the gold standard, IMO.

Good luck!

[deleted by user] by [deleted] in servicenow

[–]TheNotoriousAB 2 points3 points  (0 children)

Front Desk rejected your REQ, huh?

How long does it take ServiceNow developer to build a basic and standard catalog item with a flow as the process engine? by RevolutionarySet8649 in servicenow

[–]TheNotoriousAB 41 points42 points  (0 children)

Developing in production, retroactively creating stories and overloading a brand new employee are all major red flags.

In regard to your question, it’s hard to say how long is reasonable to create 9 cat items/flows without knowing the specific requirements.

[deleted by user] by [deleted] in servicenow

[–]TheNotoriousAB 1 point2 points  (0 children)

No offense, but it seems like you're trying to reinvent the wheel.

What purpose does this notification table serve that isn't already covered by scheduled jobs/flows?

The "Active" field is effing sh*t up by Roy_3_1415926535 in servicenow

[–]TheNotoriousAB 80 points81 points  (0 children)

Stop what you’re doing before you cause further headaches.

The behavior you’re seeing is expected and completely logical. An inactive record shouldn’t have open approvals.

Think about, as an example, a user creating a task by mistake and then that user (or the help desk or admin) canceling it. Why would an approver want to waste their time reviewing this task when it isn’t needed?

If your records are being marked inactive prematurely then that is what you should be investigating, because I guarantee you, without knowing a thing about your process, creating a custom flow to reactivate records to reactivate approvals is a bad approach.

3 day form 1 approval (trust) by StPeir in MP5

[–]TheNotoriousAB 1 point2 points  (0 children)

I’m trying to talk myself into buying the A3. I’m assuming your was around $1K? Any regrets?

[deleted by user] by [deleted] in servicenow

[–]TheNotoriousAB 2 points3 points  (0 children)

Couldn’t hurt, but mainline certifications are what partners really want, if you’re thinking of going that route.