MSCEWI1043

Translation for expression not supported.

Severity

Medium

Description

This error is used when a specific expression from the source code is not being converted yet but is planned to be delivered in the future.

A null value is inserted to take the expression's place.

Example Code

Input Code:

CREATE OR REPLACE PROCEDURE EXAMPLE()
IS
  CURSOR C1 IS SELECT * FROM TABLE_DATE;
	VAR1 INTEGER;
BEGIN
    FOR REC1 IN C1 LOOP
		IF (REC1.COL1 = VAR1) THEN
			VAR1 := 123;
		END IF;
		    VAR1 := REC1.COL1;
    END LOOP;
end;

Output Code:

Recommendations

Last updated