I am having an issue with Simple Object Designer, it looks like when I update the symbols, it isn’t bringing in a dependency that I’m trying to use for my field transfer.
When I download the source code and add the dependency to the app.json it works.
Code from SOD:
[EventSubscriber(ObjectType::Table, database::”Item Journal Line”, ‘OnAfterCopyItemJnlLineFromPurchLine’, ”, true,true)]
local procedure OnAfterCopyItemJnlLineFromPurchLine(PurchLine: Record “Purchase Line”;var ItemJnlLine: Record “Item Journal Line”)
begin
“ItemJnlLine”.”Reporting_Quantity” := “PurchLine”.”Reporting Quantity”;
“ItemJnlLine”.”Round_Trips” := “PurchLine”.”Round Trips”;
end;
Dependency added:
“dependencies”: [
{
“id”: “cae91b90-6e25-4d70-9fea-6f90a7dbbb3b”,
“publisher”: “Joesoftware”,
“name”: “ABLAO BC Customizations”,
“version”: “24.24.925.1”
}
],
Any thoughts?
Also, should I be concerned about these warnings?
Codeunit ‘Sales Price Calc. Mgt.’ is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
Table ‘Sales Price’ is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation: table Price List Line. Tag: 16.0.
The warnings are OK, the old price system is still there and active.
What version of SOD are you running, we did have an issue with some dependencies not being being detected in a earlier version? (You could make sure you’re running the latest version but upgrading in Admin Center (Apps under the environment).
Hi Erik,
That did not solve the issue. I have upgraded to 12.0.0.535, but that did not solve the issue.
I noted in the Extension Installation Status Detail page, the app version is blank. Not sure if that matters.
Any other thoughts?
Let me check if there’s an issue with this…
I did find an issue, and have submitted an update to app, should be there within an hour or so.
Thank you Erik! That solved my issue.
Thank you Erik, I am currently running .525, I’m upgrading to .535 now and I’ll let you know if I resolves the issue.