Hello all,
This is my initial post here. Hope you all are well!
I'm searching for some insight. By trade I am more of an Admin, but in my current role I have some developer duties and have inherited some custom work that ranges from fairly simple to robust.
Just searching for insight regarding UniQuery.
I am actively working for some revisions for Colleague outbound feed; the Select & List criteria currently displays a single list of data.
I’m interested in adding an additional column and maybe headers for both.
Currently, the users are only included in the list if they meet the Select criteria.
The revisions would result in a full list of users regardless if the meeting the qualifying criteria, a flag being added would solidify yay or nay.
The vendor is requesting a Y or N flag included to be in the data, based on if they meet the selection criteria or not.
If a flag doesn’t exist within the Colleague UI to be included in the data output, is it even possible to manipulate UniData code to produce one??
Here's a look of something similar to what I am testing with so far, it is producing a list accordingly. I’m interested in adding an additional column and maybe headers for both, but primarily interested in if it possible to add the Y or N notifier.
* --- Get Students with 6 or more credits ---
SELECT STUDENT.TERMS WITH STTR.TERM EQ "<<C2,SEMX>>" AND WITH STTR.ACTIVE.CRED GE "6.00" SAVING UNIQUE STTR.STUDENT
SAVE.LIST EC2WD
*
* --- Get the data ---
GET.LIST EC2WD
SELECT PERSON WITH PERSON.ALT.IDS NE '' SELECT.ONLY
LIST PERSON BY PERSON.ALT.IDS PERSON.ALT.IDS ID.SUP TO DELIM "*" _HOLD_/24.EC2WD
DATA Y





