Public Profile
  • Optionally allow zero-posting

    There are some customers who want to allow zero-posting. Please add an Event or a setting. What we want is to disable the code between ===START=== and ===END=== conditionally. Codeunit 13 - CheckRecurringLine WITH GenJnlLine2 DO BEGIN IF "Account No." <> '' THEN IF GenJnlTemplate.Recurring THEN BEGIN TESTFIELD("Recurring Method"); TESTFIELD("Recurring Frequency"); IF "Bal. Account No." <> '' THEN FIELDERROR("Bal. Account No.",Text021); CASE "Recurring Method" OF ===START=== "Recurring Method"::"V Variable","Recurring Method"::"RV Reversing Variable", "Recurring Method"::"F Fixed","Recurring Method"::"RF Reversing Fixed": TESTFIELD(Amount); ===END=== "Recurring Method"::"B Balance","Recurring Method"::"RB Reversing Balance": TESTFIELD(Amount,0); END; END ELSE BEGIN TESTFIELD("Recurring Method",0); TESTFIELD("Recurring Frequency",DummyDateFormula); END; END;
  • Enable SQL Timestamp in Table Extension

    Please make it possible to create a field in Table Extension with the property: SQLTimestamp = true; Or add by default this field in each table :) We use this for reporting to update only the latest changes in combination with PowerBI
  • Installing extension has user impact

    When installing a new extension all users get the error:   "The administrator has made a change to the system that requires you to restart your activity. “Page X has to close." ​ Also web service sessions got this error. When we are in the middle of a go-live, we need to bugfix a lot of issues. All users will get this error at random times (in their eyes), and will not trust the system anymore. ‘It’s not stable’ you will hear. We want to change code without interrupting the users (like we did in C/AL in codeunits for example) ​ It would be nice to give only an error for the object that was changed. The update process may take longer but without errors. Maybe make an option for this on service tier level.
  • Publish app in Sandbox in Dev Scope

    It is not allowed to publish an app from VSCode into a sandbox environment when the app is an AppSource (published in Global scope).

    When publishing an app from VSCode into a sandbox environment, you need to un-install the app via the client (Extension Management). Then you are able to publish the app into Dev scope.


    We want the sandbox apps in Dev scope by default to speed-up app development.


    Maybe with a setting in the app.json file: "publishIntoDevScopeInSandbox": true