Good day.
I have a situation with a query that seems to execute correctly ( I say seems because I get no errors) but in the server nothing is updated.
My payload looks like this:
{
StudentPIDM: 123456
DegreeSequence: 1
OutcomeStatus: "GR"
GraduationStatus: "WG"
GraduationDate: "9/30/2024"
term: "202310"
}
and my flow is like this:
The "Upgrade SHRDMGR" node receives the payload fine (as per the debug node) but the server
produced no updates.
The SQL in Upgrade SHRDMGR is as follows:
begin
baninst.learneroutcome.p_update(
:StudentPIDM,
:DegreeSequence,
:OutcomeStatus,
TO_DATE('10000101', 'YYYYMMDD'),
TO_DATE(:GraduationDate,'MM/DD/YYYY'),
'',
:term,
'',
'',
:GraduationStatus,
'',
TO_DATE('10000101', 'YYYYMMDD'),
'',
'',
'',
'',
'',
'',
'',
USER,
'GradAutomation',
NULL,
NULL
);
end;
Any ideas to tackle this problem?
p.s. I'm using oracle-exec if that helps.