User bio
404 bio not found
Member since Nov 7, 2016
Posts:
Replies:
$Query may help, but more likely to be
S FF = ""
For {
S FF=$O(^Users(FF))
Q:FF=""
I '$D(^Users(FF,"SETTINGS","isAllowed"))#2 {
W "No settings for user "_FF
} elseif ^Users(FF,"SETTINGS","isAllowed") {
W "User ",FF," is allowed",!
} ELSE {
W "User ",FF," is not allowed",!
}
(That assumes the 1/0 value determines whether the user is / is not allowed rather than the existence of the node)
The reference was to "localhost" which might or might not work.
Certifications & Credly badges:
Ray has no Certifications & Credly badges yet.
Global Masters badges:
Ray has no Global Masters badges yet.
Followers:
Ray has no followers yet.
Following:
Ray has not followed anybody yet.
You can use conditional compilation to differentiate between live and dev as below (PRP is our live). So $$$debug(x) either shows the value in x on the screen in test or does nothing in live. Slight disadvantage is that what you test is not EXACTLY identical to what you run in live - but that's going to be the case anyway if you are "adding differences afterwards".