Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

WHERE 
    CASE WHEN (SELECT location_code_filter FROM parameters) =''
    THEN ll.location_code != 'serv,remo' 
    ELSE ll.location_code = (SELECT location_code_filter FROM parameters) 
    END
;


Result:

Image Added


Code to extract the physical description from the instance table using a data array extraction functiion

...