Questions tagged [msdyn365bc]
4 questions
0
votes
0 answers
Looping over records of table "Page Action" crash the application?
I'm writing a code in AL to insert all actions of all pages in the system in a table, BUT somehow looping over Record "Page Action", In this code snippet I've just shown the name of the action but still running this procedure didn't show any…

XMehdi01
- 5,538
- 2
- 10
- 34
0
votes
1 answer
Make column section width relative in D365 Business Central cloud
I am a seasoned MS CRM developer with very little experience in BC/AL development.
I have a current CRM client that also uses BC and has I small request I am trying to assist with.
When adding new column sections in a record, the client wants the…

J.S. Orris
- 4,653
- 12
- 49
- 89
0
votes
1 answer
HTTPRequest from NAV C/AL - added BLOB is not recognised by file-storage URL
I'm trying to send a PDF file generated by a NAV Report (MS Dynamics NAV 2018) via httprequest made in C/AL. Response is a JSON containing an UUID, which I need to read for later purpose. No matter what I try when building the request, the storage…

fraat
- 1
- 2
0
votes
2 answers
shortcut of multi-conditions with and in AL and Business Central?
Suppose we've procedure is_even return if the number given is even or not!
that's a good code:
if is_even(22) = true or test(1) = true or test(2) = true then
//...
And even that's a better:
if true in [ is_even(22), is_even(1), is_even(2) ]…

XMehdi01
- 5,538
- 2
- 10
- 34