You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
localprocedure GetCompletionResponse(var AOAIChatMessages: Codeunit "AOAI Chat Messages"; var BankAccReconciliationLine: Record "Bank Acc. Reconciliation Line"; var TempBankStatementMatchingBuffer: Record "Bank Statement Matching Buffer" temporary; var GLAccount: Record "G/L Account"; var AzureOpenAI: Codeunit "Azure OpenAi"; var AOAIChatCompletionParams: Codeunit "AOAI Chat Completion Params"; var AOAIOperationResponse: Codeunit "AOAI Operation Response")
procedure BuildBankRecStatementLines(var BankAccReconciliationLine: Record "Bank Acc. Reconciliation Line"; var TempBankStatementMatchingBuffer: Record "Bank Statement Matching Buffer" temporary): Text
249
254
var
250
-
GLAccount: Record "G/L Account";
251
255
BankRecAIMatchingImpl: Codeunit "Bank Rec. AI Matching Impl.";
localprocedure CreateInvoice(var EDocument: Record "E-Document"; var PurchaseHeader: Record "Purchase Header" temporary; var PurchaseLine: record "Purchase Line" temporary; var TempXMLBuffer: Record "XML Buffer" temporary)
localprocedure RunSend(EDocService: Record "E-Document Service"; var EDocument: Record "E-Document"; SendContext: Codeunit SendContext; var IsAsync: Boolean)
366
+
localprocedure RunSend(EDocumentService: Record "E-Document Service"; var EDocument: Record "E-Document"; SendContext: Codeunit SendContext; var IsAsync: Boolean)
359
367
var
360
368
SendRunner: Codeunit "Send Runner";
361
369
TelemetryDimensions: Dictionaryof [Text, Text];
362
370
begin
363
371
// Commit needed for "if codeunit run" pattern when catching errors.
localprocedure RunSendBatch(EDocService: Record "E-Document Service"; var EDocuments: Record "E-Document"; SendContext: Codeunit SendContext; var IsAsync: Boolean)
391
+
localprocedure RunSendBatch(EDocumentService: Record "E-Document Service"; var EDocuments: Record "E-Document"; SendContext: Codeunit SendContext; var IsAsync: Boolean)
382
392
var
383
393
SendRunner: Codeunit "Send Runner";
384
394
ErrorText: Text;
385
395
TelemetryDimensions: Dictionaryof [Text, Text];
396
+
Sucecss: Boolean;
386
397
begin
387
398
// Commit needed for "if codeunit run" pattern when catching errors.
EDocTelemetryReciveDownloadDocScopeEndLbl: Label'E-Document Receive Download Doc: End Scope', Locked = true;
561
587
EDocTelemetryMarkFetchedScopeStartLbl: Label'E-Document Mark Fetched: Start Scope', Locked = true;
562
588
EDocTelemetryMarkFetchedScopeEndLbl: Label'E-Document Mark Fetched: End Scope', Locked = true;
589
+
EDocNoFilterOnBatchSendErr: Label'No Entry No. filter is set on the E-Document for batch to sending';
563
590
#if not CLEAN26
564
591
DocNotCreatedQst: Label'Failed to create new Purchase %1 from E-Document. Do you want to open E-Document to see reported errors?', Comment = '%1 - Purchase Document Type';
0 commit comments