dzzzb
dzzzb
Ahh, OK, had I read a bit closer I should've realised that `CPP_assert` must be compile-time. :-) So it's probably obvious for anyone with an understanding of your tests. It...
> After a git pull a "reload window" is expected for now, For developers who haven't yet 'discovered' this (i.e. had it revealed to them by a built app mysteriously...
Wow, did this really work in past versions of C/AL? I have run into this limitation multiple times and been frustrated by it. I didn't realise it had ever been...
> Workaround: > Use variant variable, assign the record, use the variant variable as parameter, assign the variable back to the record after the call. Does this really work though?...
I used the below extension to test whether filters propagated back through the `RecordVariant := Customer; DoTest(RecordVariant); Customer := RecordVariant` pattern, and it shows they do not. Changes to fields...
> It looks like your local app is not synced with the server and that's what could be causing the error No, there is nothing to sync; these enums are...
So far I can't replicate all the publish-time problems, but I _can_ this one: ```al enum 50100 TestEnum { value(1; TestValue1) { } } table 50100 TestTable { fields {...
Here's the others replicated. The problem seems to be simply having `"Quotes" in value names. So BC13 just does not support that, or...?!? ```al enum 50100 TestEnum { value(1; "Test...
related: https://github.com/microsoft/AL/issues/3566
Thanks! I don't expect them to be fixed 'in' version 13.0, but it would be great if the AL language extension could be made aware of these big limitations, and...