We just upgraded to 10.3.0.0 and we’re trying to run the Process_Archive package. The package fails because on an insert into PRA_PROCESS_STEP, the package tries to insert into the column SYSTEM but on the table it’s actually SYSTEM_. If I add an underscore to the package it works properly. Wondering if someone knows if this is a known issue with webMethods 10.3.0.0.
EXECUTE immediate ‘insert into PRA_PROCESS_STEP
(
USERNAME ,
SYSTEM ,
SUBPROCESSKEY ,
STEPITERATION ,
STEPID ,
STATUS ,
SERVERID ,
ROLENAME ,
PIPELINEFLAG ,
PIPELINE ,
INSTANCEITERATION ,
INSTANCEID ,
INSERTTIMESTAMP ,
AUDITTIMESTAMP ,
ATRESTTIMESTAMP
)
VALUES (:1,:2,:3,:4,:5,:6,:7,:8,:9,:10,:11,:12,:13,:14, :15)’
USING v_pra_process_step(i). USERNAME ,
v_pra_process_step(i).SYSTEM ,
v_pra_process_step(i).SUBPROCESSKEY ,
v_pra_process_step(i).STEPITERATION ,
v_pra_process_step(i).STEPID ,
v_pra_process_step(i).STATUS ,
v_pra_process_step(i).SERVERID ,
v_pra_process_step(i).ROLENAME ,
v_pra_process_step(i).PIPELINEFLAG ,
v_pra_process_step(i).PIPELINE ,
v_pra_process_step(i).INSTANCEITERATION ,
v_pra_process_step(i).INSTANCEID ,
v_pra_process_step(i).INSERTTIMESTAMP ,
v_pra_process_step(i).AUDITTIMESTAMP ,
v_pra_process_step(i).ATRESTTIMESTAMP ;