使用 Microsoft 登录
登录或创建帐户。
你好,
使用其他帐户。
你有多个帐户
选择要登录的帐户。

内部统计报告给政府,而应显示边框,这意味着交易记录从丹麦到公司和其他国家之间进行的交易记录 (数量)。这意味着,如果您报告项上市公司为例,德国,在一月份,交易记录应在任何情况下包括内部日志中为 2 月。

交易记录仅应包括一次,即使该交易记录的值会向上或向下,由于物料费用。当前还登记物料费用时月统计日志创建新行。

下列产品中发生此问题︰

  • 丹麦语版本的 Microsoft Dynamics 导航 2009 R2

  • 丹麦语版本的 Microsoft Dynamics 导航 2009 Service Pack 1 (SP1)

解决方案

修补程序信息

受支持的修补程序现已从 Microsoft 推出。然而,它仅用于纠正本文中描述的问题。它仅应用于正经历此特定问题的系统。此修补程序可能会接受进一步的测试。因此,如果这个问题没有对您造成严重的影响,我们建议您等待下一个 Microsoft Dynamics 导航 2009 服务包 或包含此修复程序的下一步的 Microsoft Dynamics 导航版本。

注意: 在特殊情况下,可免收的支持电话,可免收如果技术支持专业人员对 Microsoft Dynamics 和相关的产品的费用确定某个特定的更新能够解决您的问题。照常收取支持费用将应用于其他支持问题和对于特定更新无法解决的问题。

安装信息

Microsoft 提供的编程示例仅用于说明,没有任何明示或暗示的担保。这包括但不限于适销性或特定用途适用性的暗示担保。本文假定您熟悉所演示的编程语言和用于创建和调试过程的工具。Microsoft 的支持工程师可以帮助解释某个特定过程的功能。但是,他们不会修改这些示例以提供额外的功能或构建过程以满足您的特定要求。

注意:安装此修复程序之前,请验证所有 Microsoft Dynamics 导航客户端用户都注销系统。这包括 Microsoft Dynamics 导航应用程序服务器 (NAS) 服务。要实现此修补程序时,在登录的唯一客户端用户。

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

我们建议在 Windows 登录窗口或数据库登录窗口中的用户帐户将分配该"超级"角色 id。如果不能将用户帐户分配成"超级"角色 ID,则必须验证用户帐户具有下列权限:

  • 您将更改该对象的修改权限。

  • 为系统对象 ID™ 5210对象和系统对象 ID 9015执行权限

    对象。

注意:您不需要具有对数据存储区的权限,除非您需要执行数据修复。

代码更改

注意:始终测试代码修复在受控环境中应用之前与您的生产计算机的修补程序。

若要解决此问题,请执行以下步骤:

  1. 更改获得物料分类帐分录报表 (594) 中的代码,如下所示︰
    现有代码 1

    ...IF IntrastatJnlLine2.FINDFIRST THEN
    CurrReport.SKIP;

    // Delete the following line.
    TestILE("Item Ledger Entry");
    // End of the deleted line.

    TotalInvoicedQty := 0;
    TotalAmt := 0;
    ...

    替换代码 1

    ...IF IntrastatJnlLine2.FINDFIRST THEN
    CurrReport.SKIP;

    // Add the following lines.
    IF NOT HasCrossedBorder("Item Ledger Entry") THEN
    CurrReport.SKIP;
    // End of the added lines.

    TotalInvoicedQty := 0;
    TotalAmt := 0;
    ...

    现有代码 2

    ...IF "Country/Region".GET("Item Ledger Entry"."Country/Region Code") THEN
    IF "Country/Region"."EU Country/Region Code" = '' THEN
    CurrReport.SKIP;
    TestILE("Item Ledger Entry");

    InsertValueEntryLine;
    END;
    END;
    ...

    替换代码 2

    ...IF "Country/Region".GET("Item Ledger Entry"."Country/Region Code") THEN
    IF "Country/Region"."EU Country/Region Code" = '' THEN
    CurrReport.SKIP;

    // Add the following line.
    IF HasCrossedBorder("Item Ledger Entry") THEN
    // End of the added lines.

    CurrReport.SKIP;
    InsertValueEntryLine;
    END;
    END;
    ...
  2. 更改获得物料分类帐分录报表 (594) 中的CheckILE函数中的代码,如下所示︰
    现有代码 1

    ...EXIT(AverageQty >= 0);
    END;

    // Delete the following line.
    LOCAL PROCEDURE CheckILE@4(CountryRegionCode@1000 : Code[20]);
    // End of the deleted line.

    VAR
    CountryRegion@1001 : Record 9;
    BEGIN
    ...

    替换代码 1

    ...EXIT(AverageQty >= 0);
    END;

    // Add the following line.
    LOCAL PROCEDURE CountryOfOrigin@4(CountryRegionCode@1000 : Code[20]) : Boolean;
    // End of the added line.

    VAR
    CountryRegion@1001 : Record 9;
    BEGIN
    ...

    现有代码 2

    ...IF ("Item Ledger Entry"."Country/Region Code" IN [CompanyInfo."Country/Region Code",'']) =
    (CountryRegionCode IN [CompanyInfo."Country/Region Code",''])
    THEN

    // Delete the following line.
    CurrReport.SKIP;
    // End of the deleted line.

    IF CountryRegionCode <> '' THEN BEGIN
    CountryRegion.GET(CountryRegionCode);
    IF CountryRegion."Intrastat Code" = '' THEN
    ...

    替换代码 2

    ...IF ("Item Ledger Entry"."Country/Region Code" IN [CompanyInfo."Country/Region Code",'']) =
    (CountryRegionCode IN [CompanyInfo."Country/Region Code",''])
    THEN

    // Add the following line.
    EXIT(FALSE);
    // End of the added line.

    IF CountryRegionCode <> '' THEN BEGIN
    CountryRegion.GET(CountryRegionCode);
    IF CountryRegion."Intrastat Code" = '' THEN
    ...

    现有代码 3

    ...IF CountryRegionCode <> '' THEN BEGIN
    CountryRegion.GET(CountryRegionCode);
    IF CountryRegion."Intrastat Code" = '' THEN

    // Delete the following lines.
    CurrReport.SKIP;
    END;
    END;
    // End of the deleted lines.

    PROCEDURE TestILE@5(ItemLedgEntry@1000 : Record 32);
    VAR
    ItemLedgEntry2@1003 : Record 32;
    Location@1002 : Record 14;
    ...

    替换代码 3

    ...IF CountryRegionCode <> '' THEN BEGIN
    CountryRegion.GET(CountryRegionCode);
    IF CountryRegion."Intrastat Code" = '' THEN

    // Add the following lines.
    EXIT(FALSE);
    END;
    EXIT(TRUE);
    END;
    // End of the added lines.

    PROCEDURE HasCrossedBorder@5(ItemLedgEntry@1000 : Record 32) : Boolean;
    VAR
    ItemLedgEntry2@1003 : Record 32;
    Location@1002 : Record 14;
    ...
  3. 更改获得物料分类帐分录报表 (594) 中的TestILE函数中的代码,如下所示︰
    现有代码 1

    ...IF ("Country/Region Code" = CompanyInfo."Country/Region Code") OR
    ("Country/Region Code" = '')
    THEN

    // Delete the following line.
    CurrReport.SKIP;
    // End of the deleted line.

    IF "Applies-to Entry" = 0 THEN BEGIN
    ItemLedgEntry2.SETCURRENTKEY("Item No.","Posting Date");
    ItemLedgEntry2.SETRANGE("Item No.","Item No.");
    ...

    替换代码 1

    ...IF ("Country/Region Code" = CompanyInfo."Country/Region Code") OR
    ("Country/Region Code" = '')
    THEN

    // Add the following line.
    EXIT(FALSE);
    // End of the added line.

    IF "Applies-to Entry" = 0 THEN BEGIN
    ItemLedgEntry2.SETCURRENTKEY("Item No.","Posting Date");
    ItemLedgEntry2.SETRANGE("Item No.","Item No.");
    ...

    现有代码 2

    ...IF (ItemLedgEntry2."Country/Region Code" <> CompanyInfo."Country/Region Code") AND
    (ItemLedgEntry2."Country/Region Code" <> '')
    THEN
    CurrReport.SKIP;
    END;
    "Entry Type" = "Entry Type"::Transfer:
    BEGIN
    ...

    替换代码 2

    ...IF (ItemLedgEntry2."Country/Region Code" <> CompanyInfo."Country/Region Code") AND
    (ItemLedgEntry2."Country/Region Code" <> '')
    THEN
    EXIT(FALSE);
    END;
    "Entry Type" = "Entry Type"::Transfer:
    BEGIN
    ...

    现有代码 3

    ...IF ("Country/Region Code" = CompanyInfo."Country/Region Code") OR
    ("Country/Region Code" = '')
    THEN
    CurrReport.SKIP;
    IF "Transfer Order No." = '' THEN BEGIN
    Location.GET("Location Code");
    IF (Location."Country/Region Code" <> '') AND
    ...

    替换代码 3

    ...IF ("Country/Region Code" = CompanyInfo."Country/Region Code") OR
    ("Country/Region Code" = '')
    THEN
    EXIT(FALSE);
    IF "Transfer Order No." = '' THEN BEGIN
    Location.GET("Location Code");
    IF (Location."Country/Region Code" <> '') AND
    ...

    现有代码 4

    ...IF (Location."Country/Region Code" <> '') AND
    (Location."Country/Region Code" <> CompanyInfo."Country/Region Code")
    THEN
    CurrReport.SKIP;
    END ELSE BEGIN
    ItemLedgEntry2.SETRANGE("Transfer Order No.","Transfer Order No.");
    ItemLedgEntry2.SETFILTER("Country/Region Code",'%1 | %2','',CompanyInfo."Country/Region Code");
    ...

    替换代码 4

    ...IF (Location."Country/Region Code" <> '') AND
    (Location."Country/Region Code" <> CompanyInfo."Country/Region Code")
    THEN
    EXIT(FALSE);
    END ELSE BEGIN
    ItemLedgEntry2.SETRANGE("Transfer Order No.","Transfer Order No.");
    ItemLedgEntry2.SETFILTER("Country/Region Code",'%1 | %2','',CompanyInfo."Country/Region Code");
    ...

    现有代码 5

    ...Include := TRUE;
    UNTIL Include OR (ItemLedgEntry2.NEXT = 0);
    IF NOT Include THEN
    CurrReport.SKIP;
    END;
    END;
    "Location Code" <> '':
    ...

    替换代码 5

    ...Include := TRUE;
    UNTIL Include OR (ItemLedgEntry2.NEXT = 0);
    IF NOT Include THEN
    EXIT(FALSE);
    END;
    END;
    "Location Code" <> '':
    ...

    现有代码 6

    ..."Location Code" <> '':
    BEGIN
    Location.GET("Location Code");
    CheckILE(Location."Country/Region Code");
    END;
    ELSE BEGIN
    IF "Entry Type" = "Entry Type"::Purchase THEN
    ...

    替换代码 6

    ..."Location Code" <> '':
    BEGIN
    Location.GET("Location Code");
    IF NOT CountryOfOrigin(Location."Country/Region Code") THEN
    EXIT(FALSE);
    END;
    ELSE BEGIN
    IF "Entry Type" = "Entry Type"::Purchase THEN
    ...

    现有代码 7

    ...END;
    ELSE BEGIN
    IF "Entry Type" = "Entry Type"::Purchase THEN
    CheckILE(CompanyInfo."Ship-to Country/Region Code");
    IF "Entry Type" = "Entry Type"::Sale THEN
    CheckILE(CompanyInfo."Country/Region Code");
    END;
    END;
    END;
    ...

    替换代码 7

    ...END;
    ELSE BEGIN
    IF "Entry Type" = "Entry Type"::Purchase THEN
    IF NOT CountryOfOrigin(CompanyInfo."Ship-to Country/Region Code") THEN
    EXIT(FALSE);
    IF "Entry Type" = "Entry Type"::Sale THEN
    IF NOT CountryOfOrigin(CompanyInfo."Country/Region Code") THEN
    EXIT(FALSE);
    END;
    END;
    END;
    ...
  4. 更改获得物料分类帐分录报表 (594) 中的HasCrossedBorder函数中的代码,如下所示︰
    现有代码

    ...END;
    END;
    END;
    END;
    ...

    替换代码

    ...END;
    END;
    END;
    EXIT(TRUE)
    END;

    PROCEDURE InsertValueEntryLine@6();...


系统必备组件

您必须具有要应用此修补程序的安装以下产品之一︰

  • 丹麦语版本的 Microsoft Dynamics 导航 2009 R2

  • 丹麦语版本的 Microsoft Dynamics 导航 2009 SP1

删除信息

您不能删除此修补程序。

状态

Microsoft 已经确认这是“适用于”一节中列出的 Microsoft 产品中的问题。

注意:这是直接从创建 Microsoft 支持部门内的"快速发布"的文章。此处包含的信息是作为为了响应新出现的问题而提供的。由于以使其可用的速度,而材料可能包含印刷错误,恕不另行通知,随时可能进行修订。其他考虑因素,请参阅使用条款

需要更多帮助?

需要更多选项?

了解订阅权益、浏览培训课程、了解如何保护设备等。

社区可帮助你提出和回答问题、提供反馈,并听取经验丰富专家的意见。

此信息是否有帮助?

你对语言质量的满意程度如何?
哪些因素影响了你的体验?
按“提交”即表示你的反馈将用于改进 Microsoft 产品和服务。 你的 IT 管理员将能够收集此数据。 隐私声明。

谢谢您的反馈!

×