Hello thank you very much for always helping me
How to write an action By AL Business Central:
After making Post in Sales Order Screen, I want to create a Data table and fill the invoice information EX(invoice Number,invoice Amount) in the Data table.
How write action After Post? The code is below Not Working After Posting ?
How create a Data table ?
How fill the invoice information in the Data table ?
I hope your kindness is a small example or Link
======================================================================================
pageextension 50100 /Sales Order Ext/ extends /Sales Order/
{
actions
{
addafter(Post)
{
action(Test)
{
trigger OnAction()
begin
Message('Hello, world! This is a test action.');
end;
}
}
}
}