You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dev-itpro/developer/business-events-overview.md
+19-14Lines changed: 19 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -176,31 +176,36 @@ To build and install an extension that implements custom business events, see ou
176
176
1. Use the **Business Central Virtual Data Source Configuration** table to refresh the Business Central catalog with custom business events on your Dataverse environment (see [previous section](#refresh-business-central-catalog-of-business-events)).
localprocedureOnPostDocument(varSalesHeader:Record"Sales Header";varPostingCodeunitID:Integer;varNavigate:Enum"Navigate After Posting"; DocumentIsPosted:Boolean;varIsHandled:Boolean)
localprocedureOnPostDocument(varSalesHeader:Record"Sales Header";varPostingCodeunitID:Integer;varNavigate:Enum"Navigate After Posting"; DocumentIsPosted:Boolean;varIsHandled:Boolean)
Copy file name to clipboardExpand all lines: dev-itpro/developer/devenv-interfaces-in-al.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -64,6 +64,8 @@ The following example defines an interface `IAddressProvider`, which has one met
64
64
The `MyAddressPage` is a simple page with an action that captures the choice of address and calls, based on that choice, an implementation of the `IAddressProvider` interface.
65
65
66
66
```AL
67
+
namespace MyCompany.AddressManagement;
68
+
67
69
interface "IAddressProvider"
68
70
{
69
71
procedure GetAddress(): Text
@@ -183,6 +185,10 @@ The [Dictionary](methods-auto/dictionary/dictionary-data-type.md) and [List](met
183
185
The following example illustrates how to create a [Dictionary](methods-auto/dictionary/dictionary-data-type.md) of interfaces:
184
186
185
187
```AL
188
+
namespace MyCompany.BarcodeExamples;
189
+
190
+
using System.Text;
191
+
186
192
codeunit 50120 MyDictionaryCodeunit
187
193
{
188
194
procedure MyProcedure(): Dictionary of [Integer, Interface "Barcode Font Provider"]
0 commit comments