0

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.

hougaard Answered question February 14, 2025