I am trying to use 2 tables to update date:
UPDATE OPERATION
SET
OPERATION_TYPE='QC TEST (2+118)',SETUP_HRS= '0',
RUN_TYPE= 'HRS/LOAD',
LOAD_SIZE_QTY= '10000',
RUN_HRS= '2',
MOVE_HRS= '118',
MINIMUM_MOVE_QTY= '',
SETUP_COST_PER_HR = '0',
RUN_COST_PER_HR= '25',
RUN_COST_PER_UNIT= '0',
BUR_PER_HR_SETUP= '0',
BUR_PER_HR_RUN= '0',
BUR_PER_UNIT_RUN= '0',
BUR_PERCENT_RUN= '200'
WHERE STATUS= 'U'
and RESOURCE_ID='qc testing'
and PART.PRODUCT_CODE= 'NA BULK'
and part.DESCRIPTION LIKE 'NA/AF%';
the operations table is what i am trying to update but it needs to update the fields based on the part table. each time i run it i get THE MULTI-PART INDENTIFIER PART.PRODUCT_CODE COULD NOT BE BOUND.
any ideas how to get around this?
thanks
UPDATE OPERATION
SET
OPERATION_TYPE='QC TEST (2+118)',SETUP_HRS= '0',
RUN_TYPE= 'HRS/LOAD',
LOAD_SIZE_QTY= '10000',
RUN_HRS= '2',
MOVE_HRS= '118',
MINIMUM_MOVE_QTY= '',
SETUP_COST_PER_HR = '0',
RUN_COST_PER_HR= '25',
RUN_COST_PER_UNIT= '0',
BUR_PER_HR_SETUP= '0',
BUR_PER_HR_RUN= '0',
BUR_PER_UNIT_RUN= '0',
BUR_PERCENT_RUN= '200'
WHERE STATUS= 'U'
and RESOURCE_ID='qc testing'
and PART.PRODUCT_CODE= 'NA BULK'
and part.DESCRIPTION LIKE 'NA/AF%';
the operations table is what i am trying to update but it needs to update the fields based on the part table. each time i run it i get THE MULTI-PART INDENTIFIER PART.PRODUCT_CODE COULD NOT BE BOUND.
any ideas how to get around this?
thanks