Skip to content

Commit 5a9173c

Browse files
mynjjJoshua Martínez Pineda
andauthored
Missing overload for change in LibraryEDocument (#5249)
<!-- Thank you for submitting a Pull Request. If you're new to contributing to BCApps please read our pull request guideline below * https://github.com/microsoft/BCApps/Contributing.md --> #### Summary <!-- Provide a general summary of your changes --> In the PO matching PR, a change to the library was made that didn't keep the overload. #### Work Item(s) <!-- Add the issue number here after the #. The issue needs to be open and approved. Submitting PRs with no linked issues or unapproved issues is highly discouraged. --> Fixes [AB#610423](https://dynamicssmb2.visualstudio.com/1fcb79e7-ab07-432a-a3c6-6cf5a88ba4a5/_workitems/edit/610423) Co-authored-by: Joshua Martínez Pineda <[email protected]>
1 parent 56a8789 commit 5a9173c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/Apps/W1/EDocument/Test/src/LibraryEDocument.Codeunit.al

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -839,6 +839,11 @@ codeunit 139629 "Library - E-Document"
839839
#pragma warning restore AL0432
840840
#endif
841841

842+
procedure CreateService(EDocDocumentFormat: Enum "E-Document Format"; EDocIntegration: Enum "Service Integration"): Code[20]
843+
begin
844+
exit(CreateService(EDocDocumentFormat, EDocIntegration, Enum::"E-Document Import Process"::"Version 1.0"));
845+
end;
846+
842847
procedure CreateService(EDocDocumentFormat: Enum "E-Document Format"; EDocIntegration: Enum "Service Integration"; EDocImportProcess: Enum "E-Document Import Process"): Code[20]
843848
var
844849
EDocService: Record "E-Document Service";

0 commit comments

Comments
 (0)