“汇款 - 导入 (BBS) ”数据端口 (15000060) 始终为挪威版 Microsoft Dynamics NAV 中的每个付款交易创建余额条目

应用对象
Dynamics NAV 2009 Microsoft Dynamics NAV 5.0

本文适用于挪威语 (无) 语言区域设置的 Microsoft Dynamics NAV。

症状

运行“汇款 - 导入 (BBS) ”数据端口 (15000060) 以导入挪威版本的 Microsoft Dynamics NAV 中的数据时,始终为每个付款交易创建余额条目。 “汇款 - 导入 (BBS) ”数据端口 (15000060) 不考虑 “汇款协议卡 ”对话框或“ 汇款帐户卡 ”对话框中的设置。
以下产品中会出现此问题:

  • Microsoft Dynamics NAV 2009 R2 的挪威版本
  • 挪威版本的 Microsoft Dynamics NAV 2009 Service Pack 1 (SP1)
  • Microsoft Dynamics NAV 5.0 Service Pack 1 (SP1)

解决方法

修补程序信息

Microsoft现在提供了受支持的修补程序。 但是,它仅用于更正本文中所述的问题。 仅将其应用于遇到此特定问题的系统。 此修补程序可能会收到其他测试。 因此,如果你没有受到此问题的严重影响,我们建议你等待下一个Microsoft Dynamics NAV Service Pack 或包含此修补程序的下一Microsoft Dynamics NAV 版本。

注意 在特殊情况下,如果 Microsoft Dynamics 和相关产品的技术支持专业人员确定特定更新将解决你的问题,则通常由支持呼叫产生的费用可能会被取消。 对于相关特定升级无法解决的其他支持问题和事项,将照常收取支持费用。

            
          

安装信息

Microsoft 的编程示例仅用于说明,不做任何明示或暗示的保证。 这包括但不限于特定用途的适销性或适用性的隐含保证。 本文假定你熟悉所演示的编程语言以及用于创建和调试过程的工具。 Microsoft 支持工程师可以帮助解释特定过程的功能,但他们不会修改这些示例以提供新增功能或构建步骤以满足你的特定需要。

注意 在安装此修补程序之前,请验证所有 Microsoft Navision 客户端用户是否已从系统注销。 这包括 Microsoft Navision Application Services (NAS) 客户端用户。 实现此修补程序时,应是唯一登录的客户端用户。

若要实现此修补程序,必须具有开发人员许可证。

建议为 Windows 登录窗口或数据库登录名窗口中的用户帐户分配“SUPER”角色 ID。 如果无法为用户帐户分配“SUPER”角色 ID,则必须验证该用户帐户是否具有以下权限:

  • 要更改的 对象的“修改”权限。
  • 系统对象 ID 5210 对象和系统对象 ID 9015 对象的 Execute 权限。

                
注意 除非必须执行数据修复,否则您不必拥有数据存储的权限。

代码更改

注意 在将修补程序应用到生产计算机之前,始终在受控环境中测试代码修复。
要解决此问题,请按照下列步骤操作:

  1. 更改汇款 - 导入 (Bank) 数据端口 (15000050) ProcessBETFOR23and04 函数中的代码,如下所示:
    现有代码

    ...
    // Update Waiting journal
    WaitingJournal.VALIDATE(WaitingJournal."Payment Order ID - Settled",PaymOrder.ID);
    WaitingJournal.VALIDATE("Journal, Settlement Template",GenJournalLine."Journal Template Name");
    WaitingJournal.VALIDATE("Journal - Settlement",GenJournalLine."Journal Batch Name");
    WaitingJournal.MODIFY(TRUE);
    
    // Update round off
    END ELSE // This error should not occur.
    ERROR(Text026,ReturnCode);
    ...
    

    替换代码

    ...
    // Update Waiting journal
    WaitingJournal.VALIDATE(WaitingJournal."Payment Order ID - Settled",PaymOrder.ID);
    WaitingJournal.VALIDATE("Journal, Settlement Template",GenJournalLine."Journal Template Name");
    WaitingJournal.VALIDATE("Journal - Settlement",GenJournalLine."Journal Batch Name");
    
    // Add the following line.
    WaitingJournal."Remittance Status" := WaitingJournal."Remittance Status"::Sent;
    
    WaitingJournal.MODIFY(TRUE);
    
    // Update round off
    END ELSE // This error should not occur.
    ERROR(Text026,ReturnCode);
    ...
    
  2. 更改“汇款 - 导入 (Bank) 数据端口 (15000050) CreateBalanceEntry 函数中的代码,如下所示:
    现有代码

    ...
    BalanceEntryAmount := BalanceEntryAmountLCY
    ELSE
    BalanceEntryAmount := ROUND(BalanceEntryAmountLCY * GenJournalLine."Currency Factor");
    GenJournalLine.VALIDATE(Amount,-BalanceEntryAmount);
    GenJournalLine.VALIDATE("Document No.",TransDocumentNo);
    CASE LatestRemAgreement."New Document Per." OF
    LatestRemAgreement."New Document Per."::Date:
    GenJournalLine.VALIDATE(
    Description,STRSUBSTNO(Text031,LatestDate));
    LatestRemAgreement."New Document Per."::Vendor:
    ...
    

    替换代码

    ...
    BalanceEntryAmount := BalanceEntryAmountLCY
    ELSE
    BalanceEntryAmount := ROUND(BalanceEntryAmountLCY * GenJournalLine."Currency Factor");
    GenJournalLine.VALIDATE(Amount,-BalanceEntryAmount);
    GenJournalLine.VALIDATE("Document No.",TransDocumentNo);
    
    // Add the following lines.
    GenJournalLine.VALIDATE("Remittance Account Code",WaitingJournal."Remittance Account Code");
    GenJournalLine.VALIDATE("Remittance Agreement Code",WaitingJournal."Remittance Agreement Code");
    // End of the lines.
    
    CASE LatestRemAgreement."New Document Per." OF
    LatestRemAgreement."New Document Per."::Date:
    GenJournalLine.VALIDATE(
    Description,STRSUBSTNO(Text031,LatestDate));
    LatestRemAgreement."New Document Per."::Vendor:
    ...
    
  3. 更改“汇款 - 导入 (BBS) 数据端口 (15000060) 数据项 1”中的代码,如下所示:
    现有代码

    ...
    ERROR(Text005,FileImp,Recordtype);
    END;
    END;
    
    OnPostDataItem=BEGIN
    // Recordtype89 must be read by the end of import:
    IF NOT Recordtype89IsRead THEN
    ERROR(
    Text006 +
    Text007,FileImp);
    ...
    

    替换代码

    ...
    ERROR(Text005,FileImp,Recordtype);
    END;
    END;
    
    OnPostDataItem=BEGIN
    
    // Add the following line.
    CreateBalanceEntry(TransBBSDate,'',WaitingJournal."Account No.",RemAccount,RemAgreement);
    
    // Recordtype89 must be read by the end of import:
    IF NOT Recordtype89IsRead THEN
    ERROR(
    Text006 +
    Text007,FileImp);
    ...
    
  4. 更改“汇款 - 导入 (BBS) 数据端口 (15000060) ProcessTransaction 函数中的代码,如下所示:
    现有代码

    ...
    WaitingJournal.VALIDATE("BBS Shipment No.",ShipmentNo);
    WaitingJournal.VALIDATE("BBS Payment Order No.",PaymOrderNo);
    WaitingJournal.VALIDATE("BBS Transaction No.",TransNo);
    WaitingJournal.VALIDATE("Journal, Settlement Template",GenJnlLine."Journal Template Name");
    WaitingJournal.VALIDATE("Journal - Settlement",GenJnlLine."Journal Batch Name");
    
    // Delete the following lines.
    WaitingJournal.MODIFY(TRUE);
    UNTIL WaitingJournal.NEXT = 0;
    
    CreateBalanceEntry(TransBBSDate,'',WaitingJournal."Account No.",RemAccount,RemAgreement);
    // End of the lines.
    
    END;
    
    LOCAL PROCEDURE CreatePaymOrder@6();
    VAR
    NextPaymOrderID@1000000000 : Integer;
    ...
    

    替换代码

    ...
    WaitingJournal.VALIDATE("BBS Shipment No.",ShipmentNo);
    WaitingJournal.VALIDATE("BBS Payment Order No.",PaymOrderNo);
    WaitingJournal.VALIDATE("BBS Transaction No.",TransNo);
    WaitingJournal.VALIDATE("Journal, Settlement Template",GenJnlLine."Journal Template Name");
    WaitingJournal.VALIDATE("Journal - Settlement",GenJnlLine."Journal Batch Name");
    
    // Add the following lines.
    WaitingJournal."Remittance Status" := WaitingJournal."Remittance Status"::Sent;
    
    WaitingJournal.MODIFY(TRUE);
    UNTIL WaitingJournal.NEXT = 0;
    // End of the lines.
    
    END;
    
    LOCAL PROCEDURE CreatePaymOrder@6();
    VAR
    NextPaymOrderID@1000000000 : Integer;
    ...
    
  5. 更改汇款 - 导入 (BBS) 数据端口 (15000060) CreateBalanceEntry 函数中的代码,如下所示:
    现有代码

    ...
    GenJnlLine.VALIDATE("Posting Date",LatestDate);
    GenJnlLine.VALIDATE("Account Type",LatestRemAccount."Account Type");
    GenJnlLine.VALIDATE("Account No.",LatestRemAccount."Account No.");
    GenJnlLine.VALIDATE(Amount,-BalanceEntryAmountLCY);
    GenJnlLine.VALIDATE("Document No.",TransDocumentNo);
    CASE LatestRemAgreement."New Document Per." OF
    LatestRemAgreement."New Document Per."::Date:
    GenJnlLine.VALIDATE(
    Description,STRSUBSTNO(Text012,LatestDate));
    LatestRemAgreement."New Document Per."::Vendor:
    ...
    

    替换代码

    ...
    GenJnlLine.VALIDATE("Posting Date",LatestDate);
    GenJnlLine.VALIDATE("Account Type",LatestRemAccount."Account Type");
    GenJnlLine.VALIDATE("Account No.",LatestRemAccount."Account No.");
    GenJnlLine.VALIDATE(Amount,-BalanceEntryAmountLCY);
    GenJnlLine.VALIDATE("Document No.",TransDocumentNo);
    
    // Add the following lines.
    GenJnlLine.VALIDATE("Remittance Account Code",WaitingJournal."Remittance Account Code");
    GenJnlLine.VALIDATE("Remittance Agreement Code",WaitingJournal."Remittance Agreement Code");
    // End of the lines.
    
    CASE LatestRemAgreement."New Document Per." OF
    LatestRemAgreement."New Document Per."::Date:
    GenJnlLine.VALIDATE(
    Description,STRSUBSTNO(Text012,LatestDate));
    LatestRemAgreement."New Document Per."::Vendor:
    ...
    
  6. 更改汇款 - 导入 (BBS) 数据端口 (15000060) NewTransaction 函数中的代码,如下所示:
    现有代码

    ...
    BEGIN
    // Initialize transaction import.
    // Called before import is started, after a transaction in the file is closed (BETFOR99)
    // and before the next transaction from the same file starts.
    First := TRUE; //Control of balance entry;
    
    // Delete the following line.
    BalanceEntryAmountLCY := 0;
    
    LatestDate := 0D;
    LatestVend := '';
    CLEAR(LatestRemAccount);
    END;
    ...
    

    替换代码

    ...
    BEGIN
    // Initialize transaction import.
    // Called before import is started, after a transaction in the file is closed (BETFOR99)
    // and before the next transaction from the same file starts.
    First := TRUE; //Control of balance entry;
    
    LatestDate := 0D;
    LatestVend := '';
    CLEAR(LatestRemAccount);
    END;
    ...
    
  7. 更改 Rem. 付款订单 - 导入报表 (15000003) FindFiles 函数中的代码,如下所示:
    现有代码

    ...
    FilePath := RemTools.FindPath(ReturnFileSetup."Return File Name");
    File.SETFILTER(Path,FilePath); // not case-sensitive
    File.SETRANGE("Is a file",TRUE);
    // Copy all these files to a temporary table with file name in lower-case letters:
    FileCopy.DELETEALL;
    
    // Delete the following lines.
    IF File.FIND('-') THEN
    REPEAT
    FileCopy.Name := LOWERCASE(File.Name);
    FileCopy.Size := File.Size;
    FileCopy.Date := File.Date;
    FileCopy.Time := File.Time;
    FileCopy.INSERT;
    UNTIL File.NEXT = 0;
    // End of the lines.
    
    // From now on use copies of file names :
    FileCopy.SETFILTER(Name,LOWERCASE(RemTools.FindFilename(ReturnFileSetup."Return File Name")));
    IF FileCopy.FIND('-') THEN
    REPEAT
    ReturnFiles.INIT;
    ...
    

    替换代码

    ...
    FilePath := RemTools.FindPath(ReturnFileSetup."Return File Name");
    File.SETFILTER(Path,FilePath); // not case-sensitive
    File.SETRANGE("Is a file",TRUE);
    // Copy all these files to a temporary table with file name in lower-case letters:
    FileCopy.DELETEALL;
    
    // Add the following lines.
    IF EXISTS(FilePath) THEN BEGIN
    IF File.FIND('-') THEN
    REPEAT
    FileCopy.Name := LOWERCASE(File.Name);
    FileCopy.Size := File.Size;
    FileCopy.Date := File.Date;
    FileCopy.Time := File.Time;
    FileCopy.INSERT;
    UNTIL File.NEXT = 0;
    END;
    // End of the lines.
    
    // From now on use copies of file names :
    FileCopy.SETFILTER(Name,LOWERCASE(RemTools.FindFilename(ReturnFileSetup."Return File Name")));
    IF FileCopy.FIND('-') THEN
    REPEAT
    ReturnFiles.INIT;
    ...
    

          

先决条件

必须安装以下产品之一才能应用此修补程序:

  • Microsoft Dynamics NAV 2009 R2 的挪威版本
  • 挪威版本的 Microsoft Dynamics NAV 2009 Service Pack 1 (SP1)
  • Microsoft Dynamics NAV 5.0 Service Pack 1 (SP1)

删除信息

无法删除此修补程序。

状态

Microsoft 已确认在 "适用于" 部分中所列的 Microsoft 产品中存在问题。

注意这是一篇由 Microsoft 支持组织直接创建的“快速发布”文章。 本文所包含的信息是按原样提供的,以应对新出现的问题。 由于发布速度较快,这些材料可能包含印刷错误,无需通知即可随时修改。 有关其他注意事项,请参阅使用条款