Showing posts with label C/AL. Show all posts
Showing posts with label C/AL. Show all posts

Wednesday, 7 October 2015

Events in C/AL Navision 2016

By implementing events in C/AL code, you can design applications to react to specific actions or behaviour that occur.

Events enable you to separate customized functionality from the application business logic.

By using events in the application where customizations are typically made, you can lower the cost of code modifications and upgrades to the original application.

Events can be used for different purposes, such as generating notifications when certain behaviour occurs or the state of an entity changes, distributing information, and integrating with external systems and applications.

How Events Work

There are three major participants involved in events: the event, a publisher and a subscriber.

An event is the declaration of the occurrence or change in the application. An event is declared by a C/AL function, which is referred to as an event publisher function. An event publisher function is comprised of a signature only and does not execute any code.

A publisher is the object that contains event publisher function that declares the event. The publisher exposes an event in the application to subscribers, essentially providing them with a hook-up point in the application. An event is raised by adding logic to the application that calls into the publisher to invoke the event (the event publisher function). There are three different event types: business, integration, and trigger events.

Business and integration type events must be explicitly declared and published, which means that you must create event publisher functions and add them to objects manually. On the other hand, trigger events, which occur on table and page operations, are published and raised implicitly by the Microsoft Dynamics NAV runtime. Therefore, no coding is required to publish them.

A subscriber listens for and handles a published event. A subscriber is a C/AL function that subscribes to a specific event publisher function and includes the logic for handling the event. When an event is raised, the subscriber function is a called and it code is run.

How to Implement Events

Implementing events in Microsoft Dynamics NAV consists of the following tasks:

  1. Publish the event. For business and integration events, create and configure a function in an application object to be an event publisher function.

  2. Raise the event. Add code that calls the event publisher function..

  3. Subscribe to the event. At the consumer end, add one or more subscriber functions that subscribe to published events when they are raised.


Will come up with how to practically use it in my upcoming posts.

Redesigned C/AL Editor in Navision 2016

The C/AL Editor in the Microsoft Dynamics NAV Development Environment has been redesigned to give you more coding capabilities. Coding in the new C/AL editor is like before except you benefit from new features such as IntelliSense, name completion, change tracking, improved syntax highlighting and colorization. The new design has a look-and-feel that resembles the Debugger regarding breakpoints.

Name Completion:  Editor-1

Now Editor suggest the Variable Names which are available.

IntelliSense:  Editor-2
Now Editor Suggest available options for the variables.
Editor-3

Change Tracking:  Editor-4

Improved syntax highlighting and colorization:
Editor-5
If you still want to use old version editor, you can use the old version of the C/AL Editor by running the Microsoft Dynamics NAV Development Environment from a command prompt and setting the useoldeditor parameter.
Editor-6
finsql.exe useoldeditor=yes








useoldeditorSpecifies whether to use the C/AL Editor that was available in Microsoft Dynamics NAV 2015 and earlier versions. The C/AL Editor was redesigned in Microsoft Dynamics NAV 2016.

To use the old editor, specify the parameter as useoldeditor=yes or useoldeditor.

To use the new editor, omit the parameter or specify it as useoldeditor=no.

Tuesday, 6 October 2015

Changes in C/AL Behaviour C/AL Statements in Nav 2016

The following table lists the summary of new, removed, or changed C/AL statements in Microsoft Dynamics NAV 2016.

Will come with more details in my later posts.















Statement Description
FOREACHNew statement.

Iterate through a .NET Framework collection or array.
BREAKNew statement.

Terminates the iteration statement in which it used.

Important

If your solution has used FOREACH or BREAK as names of variables in earlier versions of Microsoft Dynamics NAV, you must change the names before you upgrade to Microsoft Dynamics NAV 2016.

Alternatively, you can enclose the variable names in quotation marks. If you do not, and you import an object that has this code in text format, you cannot compile the object.

Changes in C/AL Behaviour C/AL Properties in Nav 2016

The following table lists the summary of new, removed, or changed properties in Microsoft Dynamics NAV 2016.

Will come with more details in my later posts.















































































Function Description
Event PropertyNew property.

Used for events. Specifies whether a function is a publisher of or subscriber to an event.
EventFunction PropertyNew property.

Used for events. Specifies the event publisher function that an event subscriber function subscribes to.
EventPublisherObject PropertyNew property.

Used for events. Specifies the object that contains the event publisher function that an event subscriber function subscribes to.
EventSubscriberInstance PropertyNew property.

Specifies how event subscriber functions in a codeunit are bound to codeunit instance and events that they subscribe to.
EventType PropertyNew property.

Used for events. Specifies whether an event is a business or integration event.
GlobalVarAccess PropertyNew property.

Used for events. Specifies whether global variables in an event publisher object can be accessed from event subscriber functions.
IncludeSender PropertyNew property.

Used for events. Specifies whether global functions in an event publisher object can be called from event subscriber functions.
Namespaces PropertyNew property.

Specifies one or more namespaces on an XMLport object.
NamespacePrefix PropertyNew property.

Specifies a namespace prefix on an element of an XMLport object.
OnMissingLicense PropertyNew property.

Specifies what happens to the event subscriber function call when the license of the Microsoft Dynamics NAV user account that is running the current session does not include the codeunit that contains the subscriber function.
OnMissingPermission PropertyNew property.

Specifies what happens to the subscriber function call when the Microsoft Dynamics NAV user account that is running the current session does not have permission to the codeunit that contains the subscriber function.
EventPublisherElement PropertyNew property.

Used for events. Specifies the table field that the trigger event pertains to.
Scope PropertyNew property.

Specifies the scope of actions to be either Repeater or Page.
SQL Timestamp PropertyNew property.

Specifies a field to be a timestamp field that contains row version numbers for records.
TableType PropertySpecifies whether the table is a normal or external (CRM or ExternalSQL) table.
TryFunction PropertyNew property.

Specifies the function to be try function, which can be used to catch and handle errors and exceptions that occur when code is run.
FunctionType Property (Upgrade Codeunits)Changed property.

Instead of the Upgrade option, there are now two options: UpgradePerCustomer and UpgradePerDatabase. The UpgradePerCustomer option behaves like the Upgrade option in the previous Microsoft Dynamics NAV version.
FunctionType Property (Test Codeunits)Changed property.

Includes the FilterPageHandler and HyperlinkHandler options.

Changes in C/AL Behaviour C/AL Functions in Nav 2016

The following table lists the summary of new, removed, or changed functions in Microsoft Dynamics NAV 2016.

Will come with more details in my later posts.











































































































Function Description
ADDFIELD FunctionNew function.

Adds a table field to the filter control for a table on filter page.
ADDFIELDNO FunctionNew function.

Adds a table field to the filter control for a table as specified by the field number.
ADDRECORD FunctionNew function.

Adds a filter control for a table to a filter page as specified by a record data type variable.
ADDRECORDREF FunctionNew function.

Adds filter control for a table to a filter page as specified by a RecordRef variable.
ADDTABLE FunctionNew function.

Adds filter control for a table to a filter page.
BINDSUBSCRIPTION FunctionNew function.

Binds event subscribers to the subscriber codeunit instance for handling events.
UNBINDSUBSCRIPTIONNew function.

Unbinds event subscribers from the subscriber codeunit instance for handling events.
COUNT Function (FilterPageBuilder)New function.

Gets the number of filter controls that are specified in the FilterPageBuilder object instance.
CREATEENCRYPTIONKEYChanged function.

Includes a Boolean return value. The value is true if an encryption key is created successfully; otherwise, it is false.
CURRENTCLIENTTYPE FunctionNew function.

Gets the Microsoft Dynamics NAV client type that is running on the current session.
CURRENTCOMPANY Function (Record)New function.

Gets the current company of a database table record.
CURRENTCOMPANY Function (RecordRef)New function.

Gets the current company of a database table that is referred to by a RecordRef.
DEFAULTCLIENTTYPE FunctionNew function.

Gets the default Microsoft Dynamics NAV client type that is configured for the Microsoft Dynamics NAV Server instance that is used for the current session.
GETASCENDING Function (Record)Gets the sort order for the records returned, such as in data from an ODATA web service.
GETURL FunctionChanged function. Includes the following changes:

  • Accepts CURRENTCLIENTTYPE and DEFAULTCLIENTTYPE as ClientType parameter.

  • Supports RecordRef variable data type as a parameter to specify the record to open.

  • Includes a Boolean parameter to include filters that are setup on the object in URL.


GETVIEW function (FilterPageBuilder)New function.

Gets the filter view (which defines the sort order, key, and filters) for the record in the specified filter control of a filter page.
IMPORTENCRYPTIONKEYChanged function.

Includes a Boolean return value. The value is true if an encryption key is imported successfully; otherwise, it is false.
ISFILTERPAGEBUILDER Function (Variant)New function.

Indicates whether a C/AL variant contains a FilterPageBuilder variable.
ISTEMPORARY Function (Record)New function.

Determines whether a record refers to a temporary table.
NAME Function (FilterPageBuilder)New function.

Gets the name of a table filter control that is included on a filter page based on an index number that is assigned to the filter control.
RECORDID (Record)New function.

Gets the RecordID of the record that is currently selected in the table.
RUNMODAL Function (FilterPageBuilder)New function.

Builds and runs the filter page.
SETASCENDING Function (Record)Sets the sort order for the records returned, such as in data from a ODATA web service.
SETVIEW FunctionNew function.

Sets the current filter view, which defines the sort order, key, and filters, for a record in a filter control on a filter page.
GETDEFAULTTABLECONNECTION Function (Database), HASTABLECONNECTION Function (Database), REGISTERTABLECONNECTION Function (Database), SETDEFAULTTABLECONNECTION Function (Database), and UNREGISTERTABLECONNECTION Function (Database)New functions. Registers, sets, gets, and unregister table connections to external tables.