Does anybody knows what that error is pointing?
ORA-06550: line 1, column 129:
PLS-00103: Encountered the symbol "," when expecting one of the following:
( - + case mod new not null <an identifier>
<a double-quoted delimited-identifier> <a bind variable>
continue avg count current exists max min prior sql stddev
sum variance execute forall merge time timestamp interval
date <a string literal with character set specification>
<a number> <a single-quoted SQL string> pipe
<an alternatively-quoted string literal with character set specification>
<an alternatively
Look at character number 129 on the first line. The developers didn’t output that information because it was useless. They output it because it should point you to the exact place where the error occurred.
This is a syntax error of some sort, such as two commas in a row, or a keyword misspelt, or a dozen other possibilities.
The code at the specified location is what you need to look at, or to show us, so that you can figure out the problem.