I sometimes need to set a variable that represents a record in a dataverse table to blank.
(f.e. i am building a collection and the column I want to use for a record is empty to begin with but will be filled later in an updateif)
I might get away with just setting it to Blank() but initializing variables to another type then elsewhere in the app can be catastrophic, not immedeately but after saving and reopening the app. Potentially hundreds of errors and you don't know where to begin correcting.
Can I safely initialize such a variable as
{MyRecord:Defaults(MyTable)}
like in a append patch or is that improper and potentially dangerous use of this syntax?