
Announcements
Set(
gblYRTR,
Blank()
);
//Get Current YRTR information
Set(
gblYRTR_request,
'RCTC-AdvisorVue-v3-Student-GET_CURRENT_TERM-v1'.Run("Run")
);
//Check that the current year term was set successfully
If(
IsError(gblYRTR_request),
//OnFailure
Set(
gblErrorNotes_OnStart,
gblErrorNotes_OnStart & " Could not retrieve the current year term"
);
Set(
gblIsError_OnStart,
true
);,
//OnSuccess
Set(
gblYRTR, gblYRTR_request
);
Set(
gblYRTR_request, Blank()
);
);
If(
ctxHelpToggle,
"Current Semester",
If(
IsBlankOrError(gblYRTR.SHORT_DESC),
"No Year Term Found",
Proper(gblYRTR.SHORT_DESC)
)
)
//Check that the current year term was set successfully
Set(gblKeepAlive, true);
If(
IsError(gblYRTR_request),
//OnFailure
Set(
gblErrorNotes_OnStart,
gblErrorNotes_OnStart & " Could not retrieve the current year term"
);
Set(
gblIsError_OnStart,
true
);
Set(gblKeepAlive, true),
//OnSuccess
Set(
gblYRTR, gblYRTR_request
);
Set(
gblYRTR_request, Blank()
);
Set(gblKeepAlive, true);
);