Skip to main content
Liquid error: The underlying connection was closed: A connection that was expected to be kept alive was closed by the server.

Vote (0) Share
's profile image

on

Comments (151)
's profile image Profile Picture

Ernestas Juška on 11 Oct 2024 08:59:21

RE:

Idea post in yammer: https://www.yammer.com/dynamicsnavdev/threads/3013695639470080

's profile image Profile Picture

Johan Kraft on 11 Oct 2024 07:58:27

RE:

I am waiting for this feature! Very important.

's profile image Profile Picture

Joris Jans on 11 Oct 2024 07:01:06

RE:

At this very moment. if on a Sales Order "Post and Send" is selected; the Posted Sales Shipment will be mailed. So it is possible but... If the user is only selectin g "Post", or what to mail the posted sales shipment, It is also not possible to Post and send (mail) from Warehouse Shipment, Inventory pick, etc. Please add soon.

's profile image Profile Picture

Mette Habermann on 11 Oct 2024 06:08:50

RE:

Necessary to make it work for our customers. Have a customer who skipped the functionality and do it manually due to this issue.

's profile image Profile Picture

Govind Sapkade on 11 Oct 2024 05:32:14

RE:

It is super easy to connect data with BI Book data connector.

's profile image Profile Picture

Henry Mijares on 11 Oct 2024 03:58:43

RE:

This is basic requirement that should have been implemented a long time ago. Imagine if you have long list of records there that you need sort by specific column. Would be very helpful.

's profile image Profile Picture

Dan Vu on 11 Oct 2024 02:36:19

RE:

The apostrophe (') will be replaced by (')

's profile image Profile Picture

Gabe Gonzales on 10 Oct 2024 21:43:38

RE:

This is really needed. Would make Power BI next level being able to do this or have an export button from the "Show as Table" window. Please Please Please make this a future feature.

's profile image Profile Picture

Jon Murphy on 10 Oct 2024 19:34:56

RE:

Yes please! Very difficult to know which workspace I'm connected to. Accident waiting to happen...

's profile image Profile Picture

Ernestas Juška on 10 Oct 2024 19:16:34

RE:

This is very much needed especially for big integrations with million places where things are expected to to catch on fire at any time.I think more general solution is needed here. AL lacks a way to pass function invocations as values.In C# I can do this:Action doSomething = () => { doSomethingFoReal(param1, param2); };// and then laterdoSomething(); // actually invoke the body of the action.We don't need anonymous functions in AL, but being able to pass invocation as a value is something that could remove a lot of boilerplate code. Mountains.Something like this pseudocode would be more than enough.var Invocation: Invocation;Invocation := makeinvocation MyProcedure(Param1, Param2);// This should be equivalent to making object instance with globals Param1, Param2 that has a procedure that callsMyProcedure// Only non-var parameters should be allowed. Just a little thing to keep our sanity.// Database, codeunit parameters or events can be used to return results.Invocation.Execute(); // Actually call the saved procedure with the saved parameter values.This doesn't need to have codeunit.run semantics or anything else. Then programmer can make helper procedure that takes invocation and then calls invocation either in codeunit.run wrapper or in tryfunction wrapper.Bonus points 1: Add a function to GetLastErrorInfo().Bonus points 2: Add a function Error(ErrorInfo, KeepOriginalCallStack).