Skip to content

BUG in Exceptions API - doesn't care about Application Items #47

@al-hexagon

Description

@al-hexagon

Line 529 / 530 - missing shared components.

      --fetch new component_id and construct l_dest_ora_hash
      begin
        select r.component_id,
              ora_hash(
              (select rule_key
               from rules
               where rule_id= r.rule_id
               and apex_version = l_apex_version
              ) ||
              r.page_id ||
              r.component_name ||
              r.column_name ||
              r.item_name ||
              r.shared_comp_name ||
              r.current_value
              ) as orahash,
              r.current_value
        into l_dest_component_id, l_dest_ora_hash, l_current_value
        from sert_core.eval_results_v r
        where application_id = l_application_id
        and nvl(page_id,-1) = nvl(x.page_id,-1)
        and nvl(item_name,'N/A') = nvl(x.item_name,'N/A')
        and nvl(column_name,'N/A') = nvl(x.column_name,'N/A')
        and rule_set_id = l_rule_set_id
        and nvl(component_name,'N/A') = nvl(x.component_name,'N/A')

AND nvl(shared_comp_name, 'N/A') = nvl(x.shared_comp_name, 'N/A')

        and rule_id = l_rule_id;

is missing the shared components:

Metadata

Metadata

Assignees

Labels

bugSomething isn't workingquestionFurther information is requested

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions