Hi there 👋
Thanks for sharing the error details!
The errors you're encountering during package validation suggest issues with how columns are defined in your AL code:
🔍 Error AL0345
"The source of a Column or Filter must be a field defined on the table referenced by its parent DataItem"
This means the column you're referencing must directly exist in the table used in the parentDataItem
. Double-check that the field you're using is actually defined in the table you're referencing.
🔍 Error AL0353
"A Column must have a valid data source or have the 'Method' property set to 'Count'"
This indicates that the column either needs a valid field as a source or should be explicitly set to use a method likeCount
. If you're not referencing a field, consider settingMethod = Count
if applicable.
✅ Suggested Fixes:
Sales/PendingOrderVSStock.al
file around line 51.If you're still stuck, feel free to share the relevant code snippet for more targeted help.
✅ Please mark this reply as helpful if it answered your question.
Best regards! 👋