We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The procedure "Attachments_DeleteContent" of the public system application codeunit 8904 "Email Message" runs into a permission Error
This is caused by a modify on the internal table 8904 "Email Message Attachment".
The codeunit seems to be missing the indirect permissions to modify this table
The procedure of the facade codeunit 8904 "Email Message" can be used without a permission error.
procedure AttachmentDelete() var SentEmail: Record "Sent Email"; EmailMessage: Codeunit "Email Message"; AttachmentInStream: InStream; begin SentEmail.FindFirst(); EmailMessage.Get(SentEmail.GetMessageId()); EmailMessage.Attachments_First(); EmailMessage.Attachments_GetContent(AttachmentInStream); EmailMessage.Attachments_DeleteContent(true); end;
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the issue
The procedure "Attachments_DeleteContent" of the public system application codeunit 8904 "Email Message" runs into a permission Error
This is caused by a modify on the internal table 8904 "Email Message Attachment".
The codeunit seems to be missing the indirect permissions to modify this table
Expected behavior
The procedure of the facade codeunit 8904 "Email Message" can be used without a permission error.
Steps to reproduce
Additional context
No response
I will provide a fix for a bug
The text was updated successfully, but these errors were encountered: