Editor provides a warning if the 'module_' declaration is missing in the package specification.
Actions Available:
Editor provides a warning if the 'lu_name_' declaration is missing in the package specification.
Actions Available:
Editor provides a warning if the 'lu_name_' declared in package specification is not same as the file name.
Actions Available:
Editor provides a warning if the 'module_' declared in package specification is not same as the parent folder name.
Actions Available:
Editor provides warnings on global variables that are not constants. Global variables that are values returned by Language_SYS, are excepted here.
Example of Incorrect Code:
module_ CONSTANT VARCHAR2(25) := '&MODULE';
lu_name_ CONSTANT VARCHAR2(25) := '&LU';
lu_type_ VARCHAR2(6) := 'Entity';
Example of Correct Code:
module_ CONSTANT VARCHAR2(25) := '&MODULE';
lu_name_ CONSTANT VARCHAR2(25) := '&LU';
lu_type_ CONSTANT VARCHAR2(6) := 'Entity';
Actions Available: