Hi Everybody,
Any one please tell me how to find where the Sales header record variable is Deleted through 'DELETE' in all Navision Objects using Developer Tool Kit.
I have to write some code in all the places where the Sales header record is deleted using DELETE Command.
I tried in DTK using where used but not finding all the places like Codeuint 80... ](*,)
Please help me..
0
Comments
RIS Plus, LLC
DTK doesn't find the code if the code is written like this
With Sales Header Do begin
delete;
end
The only way I can think of is go to go through objects that have sales header as variable manually.
Independent Consultant/Developer
blog: https://dynamicsuser.net/nav/b/ara3n
You could try finding all objects with a sales header variable, and then scan all of those objects for DELETE statements. Still a good number of objects, but that's about all I can think of.
RIS Plus, LLC
i did a test and found the usage in codeunit 80.
I am using DTK Version 2.0 SP3.
I am searching in the following way:
- expand tables
- mark table 36
- right click -> where used with...
- Fill "delete" in "Object Command Filter"
- Start search with OK
Josef Metz