Hi all
Running AX 2012 R3 CU9
Looking at operations and we have a large number of records to add to RouteOprTable. It seems like a relatively straightforward table, and had no direct dependencies I could see, so the plan was to use SQL to load the data.
I used the following query on the SQL query server as a test:
INSERT INTO <database>.dbo.ROUTEOPRTABLE (OprId, Name, RecId,dataareaid) VALUES ('2','In = 2A',2,<our dataareaID>);
This created a record in the SQL database as expected, OprID value "2", the name as "In = 2A", a record-ID of 2, and the correct dataareaID.
However we can't see it when we look at the actual RouteOprTable in the AOT table browser.
We have used this method before and it has worked, is there something about this table/the method I am missing?
Cheers
Luke