Hi Thara,
can not blame the system . This is an equijoin
as no matches found, it will return 0 records. Change the join conditions with != conditions .
A.LOCATION_CODE != TESTING_DATA_VIEW.LOCATION_CODE
AND
A.PLANT_CODE != TESTING_DATA_VIEW.PLANT_CODE
AND
A.PRODUCT_CODE != TESTING_DATA_VIEW.PRODUCT_CODE
AND
A.MONTH_CODE != TESTING_DATA_VIEW.MONTH_CODE
AND A.PART_CODE != TESTING_DATA_VIEW.PART_CODE
Execute the select statement alone in a separate console and check if it is returning records. Then proceed.
Sree