RE:
Idea post in yammer: https://www.yammer.com/dynamicsnavdev/threads/3013695639470080
RE:
I am waiting for this feature! Very important.
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.
RE:
Necessary to make it work for our customers. Have a customer who skipped the functionality and do it manually due to this issue.
RE:
It is super easy to connect data with BI Book data connector.
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.
RE:
The apostrophe (') will be replaced by (')
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.
RE:
Yes please! Very difficult to know which workspace I'm connected to. Accident waiting to happen...
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).