Hi Expert,
We are using AX 4.0 SP2.
We want to delete one line items from all BOM (Global deletion), which has been updated in BOM line from excel sheet.
What is the way to handle this in NAV.
After some research, we are able to find the batch job for replacement of item, but not delection.
Please suggest.
Thanks,
Dinesh
0
Comments
Let me give you some details of the Engineering based Industries, where changes in the BOM arevery frequent.
1. A new item is added in one category of BOM. How will this item be added in all BOM of this type.
2. One item should be removed from the BOM. Please note that this is not replaced, it has ommitted from all the BOM, where is exist.
Therefore there are cases when client need removal of one particular item from all the BOM it exist and many a times reciprocal also.
I have experience across multiple systems for many years and have not come across the requirement - you will also note my answer was actually not software specific, so I was actually answering from a non-software perspective. Anyway I am not denying the fact it can exist, but it is the exception, and if software was written for the exceptions it would never be finished.
Bottom line, you need to modify the system to achieve this.
...
BOM myBom
ttsbegin;
delete_from myBOM where itemid == <code of item to delete>
ttscommit;
...