적용 대상
Dynamics NAV 2009

이 문서의 Microsoft Dynamics 탐색 언어 로캘을 이탈리아어 (it)에 적용 됩니다.

증상

Microsoft Dynamics 탐색 2009의 이탈리아어 버전에서 시스템 계산 되지 않습니다 "지불할 금액" 값과 원천 징수 세 액 예상 대로. 다음 제품에이 문제가 발생합니다.

  • 이탈리아어 버전의 Microsoft Dynamics 탐색 2009 R2

  • Microsoft Dynamics 탐색 2009 서비스 팩 1의 이탈리아어 버전

해결 방법

핫픽스 정보

지원 되는 핫픽스를 Microsoft에서 출시 되었습니다. 이 문서에 설명 되어 있는 문제를 해결 하기 위한 것일 뿐입니다. 이러한 특정 문제가 발생 한 시스템에만 적용 됩니다. 이 핫픽스는 추가 테스트가 필요할 수 있습니다. 따라서이 문제의 영향이 심각 하지 다음 Microsoft Dynamics 탐색 2009 서비스 팩 또는이 핫픽스가 포함 된 다음 Microsoft Dynamics 탐색 버전까지 기다리는 것이 좋습니다.참고: 특별 한 경우 일반적으로 호출 취소 될 수도 있습니다 경우 기술 지원 담당자는 Microsoft Dynamics 및 관련 된 제품에 대 한 지원에 따른 비용이 특정 업데이트로 문제를 해결할 수 있다고 결정 합니다. 추가 지원 질문과 특정 업데이트가 필요 하지 않은 문제에는 일반 지원 비용이 적용 됩니다.

설치 정보

Microsoft는 모든 보증, 그림에 대 한 묵시적인 보증. 이 포함 되지만 상품성 또는 특정 목적에의 적합성의 묵시적된 보증에 국한 되지는 않습니다. 이 문서는 작성 하 고 프로시저를 디버깅할 데 사용 되는 도구 및 여기서 설명 하는 프로그래밍 언어에 익숙한 가정 합니다. Microsoft 지원 엔지니어는 특정 프로시저의 기능을 설명할 수 있습니다. 그러나이 예제에서는 추가 기능을 제공 하거나 특정 요구 사항에 맞도록 프로시저를 구성 하려면 수정 하지 않습니다.참고: 이 핫픽스를 설치 하기 전에 모든 Microsoft Navision 클라이언트 사용자가 시스템 로그를 확인 하십시오. Navision 응용 프로그램 서비스 (NAS) 클라이언트 사용자가 포함 됩니다. 이 핫픽스를 구현할 때 로그온 되어 있는 사용자만 클라이언트 수 있습니다.이 핫픽스를 구현 하려면 개발자 라이센스가 있어야 합니다.것을 권장 합니다 Windows 로그인 창이 나 데이터베이스 로그인 창에서 사용자 계정 "SUPER" 역할 ID를 할당할 수 사용자 계정 "SUPER" 역할 ID를 할당할 수 없습니다, 사용자 계정에 다음 권한이 있는지 확인 해야 합니다.

  • 변경할 수 있는 개체에 대 한 수정 권한이 있습니다.

  • 시스템 개체 ID 9015 개체 및 시스템 개체 ID 5210 개체에 대 한 Execute 권한이 있습니다.

참고: 데이터 복구를 수행 해야 할 경우가 아니면 데이터 저장소에 대 한 권한을 가질 필요가 없습니다.

코드 변경 사항

참고: 항상 테스트 코드 수정 제어 된 환경에 적용 하기 전에 프로덕션 컴퓨터에 수정 프로그램입니다.이 문제를 해결하려면 다음과 같이 하십시오.

  1. 공급 업체 Bill 선 테이블 (12182)의 CreateVendBillWithhTax 함수에 코드를 다음과 같이 변경.기존 코드

    ...              VendBillWithhTax."Currency Code" := VendorBillHeader."Currency Code";              VendBillWithhTax."External Document No." := "External Document No.";              VendBillWithhTax."Related Date" := VendorBillHeader."Posting Date";              VendBillWithhTax."Withholding Tax Code" := WithholdCode;              VendBillWithhTax."Social Security Code" := SocialSecurityCode;// Delete the following line.              VendBillWithhTax.VALIDATE("Total Amount","Remaining Amount");              VendBillWithhTax."Old Withholding Amount" := VendBillWithhTax."Withholding Tax Amount";              VendBillWithhTax."Old Free-Lance Amount" := VendBillWithhTax."Free-Lance Amount";            END;            // IT0007.begin            IF VendBillWithhTax."Withholding Tax Code" <> '' THEN...

    대체 코드

    ...              VendBillWithhTax."Currency Code" := VendorBillHeader."Currency Code";              VendBillWithhTax."External Document No." := "External Document No.";              VendBillWithhTax."Related Date" := VendorBillHeader."Posting Date";              VendBillWithhTax."Withholding Tax Code" := WithholdCode;              VendBillWithhTax."Social Security Code" := SocialSecurityCode;// Add the following line.              VendBillWithhTax.VALIDATE("Total Amount","Amount to Pay");              VendBillWithhTax."Old Withholding Amount" := VendBillWithhTax."Withholding Tax Amount";              VendBillWithhTax."Old Free-Lance Amount" := VendBillWithhTax."Free-Lance Amount";            END;            // IT0007.begin            IF VendBillWithhTax."Withholding Tax Code" <> '' THEN...
  2. 수동 공급 업체 지불 줄 형태 (12188)에 있는 컨트롤의 코드를 다음과 같이 변경.기존 코드 1

    ...                                                   InPage=0;                                                   CaptionML=ENU=Withholding Tax Code;                                                   SourceExpr=WithholdingTaxCode;                                                   TableRelation="Withhold Code" }      { 1130006;Label     ;440  ;2090 ;3300 ;440  ;ParentControl=1130005 }// Delete the following line.      { 1130007;TextBox   ;13090;3190 ;1700 ;440  ;ParentControl=1130000;                                                   InPage=0;                                                   CaptionML=ENU=Vendor Bank Account;                                                   SourceExpr=VendorBankAccount;                                                   TableRelation="Vendor Bank Account";                                                   OnLookup=VAR...

    대체 코드 1

    ...                                                   InPage=0;                                                   CaptionML=ENU=Withholding Tax Code;                                                   SourceExpr=WithholdingTaxCode;                                                   TableRelation="Withhold Code" }      { 1130006;Label     ;440  ;2090 ;3300 ;440  ;ParentControl=1130005 }// Add the following line.      { 1130007;TextBox   ;13090;3740 ;1700 ;440  ;ParentControl=1130000;                                                   InPage=0;                                                   CaptionML=ENU=Vendor Bank Account;                                                   SourceExpr=VendorBankAccount;                                                   TableRelation="Vendor Bank Account";                                                   OnLookup=VAR...

    기존 코드 2

    ...                                                              IF FORM.RUNMODAL(FORM::"Vendor Bank Account List",VendBankAcc,VendBankAcc.Code) = ACTION::LookupOK THEN                                                                VendorBankAccount := VendBankAcc.Code;                                                              // IT0001.end                                                            END;                                                             }// Delete the following line.      { 1130008;Label     ;9680 ;3190 ;3300 ;440  ;ParentControl=1130007 }      { 1130009;TextBox   ;3850 ;3190 ;5500 ;440  ;ParentControl=1130000;                                                   InPage=0;                                                   CaptionML=ENU=Description;                                                   SourceExpr=Desc }      { 1130010;Label     ;440  ;3190 ;3300 ;440  ;ParentControl=1130009 }...

    대체 코드 2

    ...                                                              IF FORM.RUNMODAL(FORM::"Vendor Bank Account List",VendBankAcc,VendBankAcc.Code) = ACTION::LookupOK THEN                                                                VendorBankAccount := VendBankAcc.Code;                                                              // IT0001.end                                                            END;                                                             }// Add the following line.      { 1130008;Label     ;9680 ;3740 ;3300 ;440  ;ParentControl=1130007 }      { 1130009;TextBox   ;3850 ;3190 ;5500 ;440  ;ParentControl=1130000;                                                   InPage=0;                                                   CaptionML=ENU=Description;                                                   SourceExpr=Desc }      { 1130010;Label     ;440  ;3190 ;3300 ;440  ;ParentControl=1130009 }...

    기존 코드 3

    ...      { 1130013;TextBox   ;13090;990  ;1700 ;440  ;ParentControl=1130000;                                                   InPage=0;                                                   CaptionML=ENU=Total Amount;                                                   SourceExpr=TotalAmount }      { 1130014;Label     ;9680 ;990  ;3300 ;440  ;ParentControl=1130013 }// Delete the following line.      { 1130015;TextBox   ;13090;1540 ;2200 ;440  ;ParentControl=1130000;                                                   InPage=0;                                                   CaptionML=ENU=Document Type;                                                   OptionCaptionML=ENU=" ,Payment,Invoice,Credit Memo,Finance Charge Memo,Reminder,Refund";                                                   OptionString=[ ,Payment,Invoice,Credit Memo,Finance Charge Memo,Reminder,Refund];                                                   SourceExpr=DocumentType }...

    대체 코드 3

    ...      { 1130013;TextBox   ;13090;990  ;1700 ;440  ;ParentControl=1130000;                                                   InPage=0;                                                   CaptionML=ENU=Total Amount;                                                   SourceExpr=TotalAmount }      { 1130014;Label     ;9680 ;990  ;3300 ;440  ;ParentControl=1130013 }// Add the following line.      { 1130015;TextBox   ;13090;2090 ;2200 ;440  ;ParentControl=1130000;                                                   InPage=0;                                                   CaptionML=ENU=Document Type;                                                   OptionCaptionML=ENU=" ,Payment,Invoice,Credit Memo,Finance Charge Memo,Reminder,Refund";                                                   OptionString=[ ,Payment,Invoice,Credit Memo,Finance Charge Memo,Reminder,Refund];                                                   SourceExpr=DocumentType }...

    기존 코드 4

    ...                                                   InPage=0;                                                   CaptionML=ENU=Document Type;                                                   OptionCaptionML=ENU=" ,Payment,Invoice,Credit Memo,Finance Charge Memo,Reminder,Refund";                                                   OptionString=[ ,Payment,Invoice,Credit Memo,Finance Charge Memo,Reminder,Refund];                                                   SourceExpr=DocumentType }// Delete the following lines.     { 1130016;Label     ;9680 ;1540 ;3300 ;440  ;ParentControl=1130015 }     { 1130017;TextBox   ;13090;2090 ;1700 ;440  ;ParentControl=1130000;                                                  InPage=0;                                                  CaptionML=ENU=Document No.;                                                  SourceExpr=DocumentNo }     { 1130018;Label     ;9680 ;2090 ;3300 ;440  ;ParentControl=1130017 }     { 1130019;TextBox   ;13090;2640 ;1700 ;440  ;ParentControl=1130000;                                                  InPage=0;                                                  CaptionML=ENU=Document Date;                                                  SourceExpr=DocumentDate }     { 1130020;Label     ;9680 ;2640 ;3300 ;440  ;ParentControl=1130019 }// End of the lines.      { 1130024;TextBox   ;3850 ;2640 ;2750 ;440  ;ParentControl=1130000;                                                   InPage=0;                                                   CaptionML=ENU=Social Security Code;                                                   SourceExpr=SocialSecurityCode;                                                   TableRelation="Contribution Code" }...

    대체 코드 4

    ...                                                   InPage=0;                                                   CaptionML=ENU=Document Type;                                                   OptionCaptionML=ENU=" ,Payment,Invoice,Credit Memo,Finance Charge Memo,Reminder,Refund";                                                   OptionString=[ ,Payment,Invoice,Credit Memo,Finance Charge Memo,Reminder,Refund];                                                   SourceExpr=DocumentType }// Add the following lines.     { 1130016;Label     ;9680 ;2090 ;3300 ;440  ;ParentControl=1130015 }     { 1130017;TextBox   ;13090;2640 ;1700 ;440  ;ParentControl=1130000;                                                  InPage=0;                                                  CaptionML=ENU=Document No.;                                                  SourceExpr=DocumentNo }     { 1130018;Label     ;9680 ;2640 ;3300 ;440  ;ParentControl=1130017 }     { 1130019;TextBox   ;13090;3190 ;1700 ;440  ;ParentControl=1130000;                                                  InPage=0;                                                  CaptionML=ENU=Document Date;                                                  SourceExpr=DocumentDate }     { 1130020;Label     ;9680 ;3190 ;3300 ;440  ;ParentControl=1130019 }// End of the lines.      { 1130024;TextBox   ;3850 ;2640 ;2750 ;440  ;ParentControl=1130000;                                                   InPage=0;                                                   CaptionML=ENU=Social Security Code;                                                   SourceExpr=SocialSecurityCode;                                                   TableRelation="Contribution Code" }...

    기존 코드 5

    ...                                                   InPage=0;                                                   CaptionML=ENU=Social Security Code;                                                   SourceExpr=SocialSecurityCode;                                                   TableRelation="Contribution Code" }      { 1130025;Label     ;440  ;2640 ;3300 ;440  ;ParentControl=1130024 }      { 1130021;CommandButton;14410;5720;2200;550 ;HorzGlue=Right;                                                   VertGlue=Bottom;                                                   PushAction=FormHelp }      { 1130022;CommandButton;11990;5720;2200;550 ;HorzGlue=Right;                                                   VertGlue=Bottom;...

    대체 코드 5

    ...                                                   InPage=0;                                                   CaptionML=ENU=Social Security Code;                                                   SourceExpr=SocialSecurityCode;                                                   TableRelation="Contribution Code" }      { 1130025;Label     ;440  ;2640 ;3300 ;440  ;ParentControl=1130024 }// Add the following lines.     { 1130026;TextBox   ;13090;1540 ;1700 ;440  ;ParentControl=1130000;                                                  InPage=0;                                                  CaptionML=ENU=Tax Base Amount;                                                  SourceExpr=TaxBaseAmount }     { 1130027;Label     ;9680 ;1540 ;3300 ;440  ;ParentControl=1130026 }// End of the lines.      { 1130021;CommandButton;14410;5720;2200;550 ;HorzGlue=Right;                                                   VertGlue=Bottom;                                                   PushAction=FormHelp }      { 1130022;CommandButton;11990;5720;2200;550 ;HorzGlue=Right;                                                   VertGlue=Bottom;...

    기존 코드 6

    ...                                                              "Due Date" := PostingDate;                                                              "External Document No." := ExternalDocNo;                                                              "Instalment Amount" := TotalAmount;                                                              "Remaining Amount" := TotalAmount;                                                              "Gross Amount to Pay" := TotalAmount;// Delete the following line.                                                              "Amount to Pay" := TotalAmount;                                                              "Manual Line" := TRUE;                                                              "Cumulative Transfers" := TRUE;                                                              SetWithholdCode(WithholdingTaxCode);                                                              SetSocialSecurityCode(SocialSecurityCode);                                                              INSERT(TRUE)...

    대체 코드 6

    ...                                                              "Due Date" := PostingDate;                                                              "External Document No." := ExternalDocNo;                                                              "Instalment Amount" := TotalAmount;                                                              "Remaining Amount" := TotalAmount;                                                              "Gross Amount to Pay" := TotalAmount;// Add the following line.                                                              "Amount to Pay" := TaxBaseAmount;                                                              "Manual Line" := TRUE;                                                              "Cumulative Transfers" := TRUE;                                                              SetWithholdCode(WithholdingTaxCode);                                                              SetSocialSecurityCode(SocialSecurityCode);                                                              INSERT(TRUE)...
  3. 수동 공급 업체 지불 줄 형태 (12188)에서 다음 전역 변수를 추가 합니다.

    TaxBaseAmount@1130000 : Decimal;
  4. 원천 징수-기여 codeunit (12101) CalculateWithholdingTax 함수에서 코드를 다음과 같이 변경.기존 코드 1

    ...      PROCEDURE CalculateWithholdingTax@1130001(VAR PurchHeader@1130000 : Record 38;Recalculate@1130001 : Boolean);      VAR        PurchWithSoc@1130002 : Record 12137;        PurchLine@1130003 : Record 39;// Delete the following line.        TotalAmount@1130004 : Decimal;      BEGIN        PurchLine.RESET;        PurchLine.SETRANGE("Document Type",PurchHeader."Document Type");        PurchLine.SETRANGE("Document No.",PurchHeader."No.");        PurchLine.SETRANGE(Type,PurchLine.Type::"G/L Account");...

    대체 코드 1

    ...      PROCEDURE CalculateWithholdingTax@1130001(VAR PurchHeader@1130000 : Record 38;Recalculate@1130001 : Boolean);      VAR        PurchWithSoc@1130002 : Record 12137;        PurchLine@1130003 : Record 39;// Add the following lines.       TempPurchLine@1130005 : TEMPORARY Record 39;       TotalAmount@1130004 : Decimal;       VATAmount@1130006 : Decimal;// End of the lines.      BEGIN        PurchLine.RESET;        PurchLine.SETRANGE("Document Type",PurchHeader."Document Type");        PurchLine.SETRANGE("Document No.",PurchHeader."No.");        PurchLine.SETRANGE(Type,PurchLine.Type::"G/L Account");...

    기존 코드 2

    ...        PurchLine.SETRANGE(Type,PurchLine.Type::"G/L Account");        TotalAmount := 0;        IF PurchLine.FIND('-') THEN          REPEAT// Delete the following lines.           TotalAmount := TotalAmount + PurchLine."Line Amount";         UNTIL PurchLine.NEXT = 0;// End of the lines.        IF PurchWithSoc.GET(PurchHeader."Document Type", PurchHeader."No.") THEN          IF (PurchWithSoc."Total Amount" = 0) OR             Recalculate          THEN BEGIN            PurchWithSoc."Currency Code" := PurchHeader."Currency Code";...

    대체 코드 2

    ...        PurchLine.SETRANGE(Type,PurchLine.Type::"G/L Account");        TotalAmount := 0;        IF PurchLine.FIND('-') THEN          REPEAT// Add the following lines.           IF PurchHeader."Prices Including VAT" THEN BEGIN             TempPurchLine := PurchLine;             TempPurchLine.VALIDATE("Amount Including VAT",PurchLine."Line Amount");             TotalAmount += TempPurchLine."VAT Base Amount"           END ELSE             TotalAmount += PurchLine."Line Amount";         UNTIL PurchLine.NEXT = 0;// End of the lines.        IF PurchWithSoc.GET(PurchHeader."Document Type", PurchHeader."No.") THEN          IF (PurchWithSoc."Total Amount" = 0) OR             Recalculate          THEN BEGIN            PurchWithSoc."Currency Code" := PurchHeader."Currency Code";...

전제 조건

이 핫픽스를 적용 하려면 설치한 다음 제품 중 하나가 있어야 합니다.

  • 이탈리아어 버전의 Microsoft Dynamics 탐색 2009 R2

  • Microsoft Dynamics 탐색 2009 서비스 팩 1의 이탈리아어 버전

제거 정보

이 핫픽스를 제거할 수 없습니다.

상태

Microsoft는 이 문제가 '적용 대상' 섹션에 나열된 Microsoft 제품의 문제임을 확인했습니다.

참고: 이 문서는 Microsoft 지원 부서 내에서 직접 작성한 "빠른 게시" 문서입니다. 여기에 포함된 정보는 신흥 문제에 대한 응답으로 제공되었습니다. 신속히 사용할 수 있도록 작성되었으므로, 자료 입력 오류가 포함될 수 있으며 언제든지 예고없이 개정될 수 있습니다. 다른 고려 사항은 사용 약관을 참조하십시오.

도움이 더 필요하세요?

더 많은 옵션을 원하세요?

구독 혜택을 살펴보고, 교육 과정을 찾아보고, 디바이스를 보호하는 방법 등을 알아봅니다.