[Main]- Error The Bin Content does not exist.Not able to post an Inventory Pick for Assemble to Order#9297
Conversation
| NormalItemLotNo: Code[20]; | ||
| OutputLotNo: Code[20]; | ||
| begin | ||
| // [FEATURE] [AI test 0.4] |
There was a problem hiding this comment.
The new test's [FEATURE] tag reads '[AI test 0.4]' instead of naming the actual feature area, unlike every other test in this codeunit (e.g.
'[SCM] [Assembly] [Assembly to Order]', '[Item Tracking] [Pick Worksheet]', '[Bin]'). This looks like an unedited placeholder left over from generating the test and breaks the file's established [FEATURE] tagging convention used for test discovery/reporting.
Recommendation:
- replace it with feature tags describing the scenario, e.g. '[SCM] [Assembly] [Assembly to Order] [Bin] [Item Tracking]'.
| // [FEATURE] [AI test 0.4] | |
| // [FEATURE] [SCM] [Assembly] [Assembly to Order] [Bin] [Item Tracking] |
👍 useful · ❤️ especially valuable · 👎 wrong - reply with why
Copilot PR ReviewIteration 1 · Outcome: completed Knowledge source: https://github.com/microsoft/BCQuality@822cae1b2771ac25f665f73369f69093bd4fd630 Findings by domainFindings split into Knowledge-backed (cite a BCQuality article) and Agent (the agent's own judgement, no matching BCQuality rule).
Totals: 1 knowledge-backed · 0 agent findings. Orchestrator pre-filter (13 file(s) excluded)
Findings produced by the Copilot CLI agent against BCQuality at |
Workitem-Bug 640983: [ALL-E] Error: "The Bin Content does not exist...." Not able to post an Inventory Pick for Assemble to Order items
Fixes AB#640983
Issue: "The Bin Content does not exist...." Not able to post an Inventory Pick for Assemble to Order items
Cause: CheckQuantityInBinContentForTracking iterates all pick lines and calls WMSMgt.CheckWhseJnlLine (which validates existing bin content) on ATO lines — even though ATO output bin content is only created during assembly posting, not before the pick.
Solution: Skip ATO pick lines (if not WarehouseActivityLine2."Assemble to Order") in the bin-content validation loop