This article applies to Microsoft Dynamics NAV for the following countries and language locales.
- Belgian (be)
- Spanish (es)
- Italian (it)
- French (fr)
Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.
View products that this article applies to.
...
{ 64 ; ;Short Advice ;Text20 }
{ 65 ; ;Message to Recipient 1;Text140 }
{ 66 ; ;Message to Recipient 2;Text140 }
// Delete the following line.
{ 80 ; ;Amount ;Decimal }
// End of the deleted line.
{ 81 ; ;Currency Code ;Code10 ;TableRelation=Currency }
{ 82 ; ;Transfer Date ;Date }
{ 83 ; ;Transfer Type ;Code1 }
...
...
{ 64 ; ;Short Advice ;Text20 }
{ 65 ; ;Message to Recipient 1;Text140 }
{ 66 ; ;Message to Recipient 2;Text140 }
// Add the following line.
{ 80 ; ;Amount ;Decimal ;DecimalPlaces=2:2 }
// End of the added line.
{ 81 ; ;Currency Code ;Code10 ;TableRelation=Currency }
{ 82 ; ;Transfer Date ;Date }
{ 83 ; ;Transfer Type ;Code1 }
...
...
MessageID := PaymentExportData."SEPA Message ID";
CreatedDateTime := FORMAT(CURRENTDATETIME,0,9);
PaymentExportData.CALCSUMS(Amount);
// Delete the following line.
ControlSum := FORMAT(PaymentExportData.Amount,0,9);
// End of the deleted line.
PaymentExportData.SETCURRENTKEY(
"Sender Bank BIC","SEPA Instruction Priority Text","Transfer Date",
...
...
MessageID := PaymentExportData."SEPA Message ID";
CreatedDateTime := FORMAT(CURRENTDATETIME,0,9);
PaymentExportData.CALCSUMS(Amount);
// Add the following line.
ControlSum := FORMAT(PaymentExportData.Amount,0,'<Precision,2:2><Standard Format,9>');
// End of the added line.
PaymentExportData.SETCURRENTKEY(
"Sender Bank BIC","SEPA Instruction Priority Text","Transfer Date",
...
Keywords: kbqfe, kbmbsquickpub, kbmbsmigrate, kbmbspartner, kbmbscodefix, kbsurveynew, kbnoloc, kb