How to notify production batch variances to group members
Query to identify production batch variances (Actual VS WIP Planned) Below query will identify variances for ingredients/by-products/products Batch variance details will be electronically sent to distribution list members Set periodic alert - frequency- everyday and set timings Under actions -> set action type is message Link distribution list members and set message text In action sets -> set all the actions you have created Query select itemcode ,plan_qty ,wip_plan_qty ,actual_qty ,ROUND(diff, 2) diff ,ptype ,batchno ,(select user_name from fnd_user where user_id = qry.created_by ) created_by_name ,(select user_name from fnd_user where user_id = qry.last_updated_by ) updated_by_name ,batchstatus into &itemcode, &plan_qty, &wip_plan_qty, &actual_qty, &diff, &ptype, &batchno, &created_by, &updated_by, &batch_status from (select (select se