Microsoft로 로그인
로그인하거나 계정을 만듭니다.
안녕하세요.
다른 계정을 선택합니다.
계정이 여러 개 있음
로그인할 계정을 선택합니다.

증상

전체 시간에 미리 알림 알림 유료 계정 부가가치세 (부가가치세) Microsoft Dynamics 탐색 2009에 설정 된 경우입니다. 이 미리 알림이 유료로 등록 되어 있지 않은 고객은 한 EU 고객 있지만 발생 합니다. 이 문제를 해결 하려면 코드 변경 섹션의 단계를 따릅니다. 다음 제품에이 문제가 발생합니다.

  • Microsoft Dynamics 탐색 2009 R2

  • Microsoft Dynamics 탐색 2009 SP1

해결 방법

핫픽스 정보

지원 되는 핫픽스를 Microsoft에서 출시 되었습니다. 이 문서에 설명 되어 있는 문제를 해결 하기 위한 것일 뿐입니다. 이러한 특정 문제가 발생 한 시스템에만 적용 됩니다. 이 핫픽스는 추가 테스트가 필요할 수 있습니다. 따라서이 문제의 영향이 심각 하지 다음 Microsoft Dynamics 탐색 2009 서비스 팩 또는이 핫픽스가 포함 된 다음 Microsoft Dynamics 탐색 버전까지 기다리는 것이 좋습니다.

참고: 특별 한 경우 일반적으로 호출 취소 될 수도 있습니다 경우 기술 지원 담당자는 Microsoft Dynamics 및 관련 된 제품에 대 한 지원에 따른 비용이 특정 업데이트로 문제를 해결할 수 있다고 결정 합니다. 추가 지원 질문과 특정 업데이트가 필요 하지 않은 문제에는 일반 지원 비용이 적용 됩니다.

설치 정보

Microsoft는 모든 보증, 그림에 대 한 묵시적인 보증. 이 포함 되지만 상품성 또는 특정 목적에의 적합성의 묵시적된 보증에 국한 되지는 않습니다. 이 문서는 작성 하 고 프로시저를 디버깅할 데 사용 되는 도구 및 여기서 설명 하는 프로그래밍 언어에 익숙한 가정 합니다. Microsoft 지원 엔지니어는 특정 프로시저의 기능을 설명할 수 있습니다. 그러나이 예제에서는 추가 기능을 제공 하거나 특정 요구 사항에 맞도록 프로시저를 구성 하려면 수정 하지 않습니다.

참고: 이 핫픽스를 설치 하기 전에 모든 Microsoft Dynamics 탐색 클라이언트 사용자가 시스템 로그를 확인 하십시오. Microsoft Dynamics 탐색 응용 프로그램 서버 (NAS) 서비스가 포함 됩니다. 이 핫픽스를 구현할 때 로그온 되어 있는 사용자만 클라이언트 수 있습니다.

이 핫픽스를 구현 하려면 개발자 라이센스가 있어야 합니다.

것을 권장 합니다 Windows 로그인 창이 나 데이터베이스 로그인 창에서 사용자 계정 "SUPER" 역할 ID를 할당할 수 사용자 계정 "SUPER" 역할 ID를 할당할 수 없습니다, 사용자 계정에 다음 권한이 있는지 확인 해야 합니다.

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

  • 시스템 개체 ID 9015 및 시스템 개체 ID 5210 개체에 대 한 실행 권한

    개체입니다.

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

코드 변경 사항

참고: 항상 테스트 코드 수정 제어 된 환경에 적용 하기 전에 프로덕션 컴퓨터에 수정 프로그램입니다.

이 문제를 해결하려면 다음과 같이 하십시오.

  1. 미리 알림 통계 형태로 (437) 속성의 코드를 다음과 같이 변경.
    기존 코드

    ... CALCFIELDS("Interest Amount","VAT Amount");
    ReminderTotal := "Remaining Amount" + "Additional Fee" + "Interest Amount" + "VAT Amount";
    CustPostingGr.GET("Customer Posting Group");
    VATInterest := 0;
    IF ReminderLevel.GET("Reminder Terms Code","Reminder Level") THEN

    // Delete the following lines.
    IF ReminderLevel."Calculate Interest" THEN BEGIN
    GLAcc.GET(CustPostingGr."Interest Account");
    VATPostingSetup.GET("VAT Bus. Posting Group",GLAcc."VAT Prod. Posting Group");
    VATInterest := VATPostingSetup."VAT %";
    END;

    IF GLAcc.GET(CustPostingGr."Additional Fee Account") THEN
    VATPostingSetup.GET("VAT Bus. Posting Group",GLAcc."VAT Prod. Posting Group");

    Interest := (ReminderTotal - "Remaining Amount" - "Additional Fee" * (VATPostingSetup."VAT %"/100 + 1))/
    (VATInterest/100 + 1);

    VatAmount := Interest * VATInterest/100 +
    "Additional Fee" * VATPostingSetup."VAT %"/100;

    // End of the deleted lines.

    IF Cust.GET("Customer No.") THEN
    Cust.CALCFIELDS("Balance (LCY)")
    ELSE
    CLEAR(Cust);
    IF Cust."Credit Limit (LCY)" = 0 THEN
    ...

    대체 코드

    ... CALCFIELDS("Interest Amount","VAT Amount");
    ReminderTotal := "Remaining Amount" + "Additional Fee" + "Interest Amount" + "VAT Amount";
    CustPostingGr.GET("Customer Posting Group");
    VATInterest := 0;
    IF ReminderLevel.GET("Reminder Terms Code","Reminder Level") THEN

    // Add the following lines.
    IF ReminderLevel."Calculate Interest" AND ("VAT Amount" <> 0) THEN BEGIN
    GLAcc.GET(CustPostingGr."Interest Account");
    VATPostingSetup.GET("VAT Bus. Posting Group",GLAcc."VAT Prod. Posting Group");
    VATInterest := VATPostingSetup."VAT %";
    IF GLAcc.GET(CustPostingGr."Additional Fee Account") THEN
    VATPostingSetup.GET("VAT Bus. Posting Group",GLAcc."VAT Prod. Posting Group");
    Interest :=
    (ReminderTotal -
    "Remaining Amount" - "Additional Fee" * (VATPostingSetup."VAT %"/ 100 + 1)) /(VATInterest / 100 + 1);
    VatAmount := Interest * VATInterest / 100 + "Additional Fee" * VATPostingSetup."VAT %" / 100;
    END ELSE
    Interest := "Interest Amount";
    // End of the added lines.

    IF Cust.GET("Customer No.") THEN
    Cust.CALCFIELDS("Balance (LCY)")
    ELSE
    CLEAR(Cust);
    IF Cust."Credit Limit (LCY)" = 0 THEN
    ...
  2. 미리 알림 통계 형태로 (441) 속성의 코드를 다음과 같이 변경.
    기존 코드

    ...BEGIN
    SETRANGE("No.");
    CALCFIELDS("Interest Amount","VAT Amount");
    ReminderTotal := "Remaining Amount" + "Additional Fee" + "Interest Amount" + "VAT Amount";
    CustPostingGr.GET("Customer Posting Group");

    // Delete the following lines.
    ReminderLevel.GET("Reminder Terms Code","Reminder Level");
    IF ReminderLevel."Calculate Interest" THEN BEGIN
    GLAcc.GET(CustPostingGr."Interest Account");
    VATPostingSetup.GET("VAT Bus. Posting Group",GLAcc."VAT Prod. Posting Group");
    VATInterest := VATPostingSetup."VAT %";
    END ELSE
    VATInterest := 0;
    IF GLAcc.GET(CustPostingGr."Additional Fee Account") THEN
    VATPostingSetup.GET("VAT Bus. Posting Group",GLAcc."VAT Prod. Posting Group");

    Interest := (ReminderTotal - "Remaining Amount" - "Additional Fee" * (VATPostingSetup."VAT %"/100 + 1))/
    (VATInterest/100 + 1);

    VatAmount := Interest * VATInterest/100 +
    "Additional Fee" * VATPostingSetup."VAT %"/100;

    // End of the deleted lines.

    IF Cust.GET("Customer No.") THEN
    Cust.CALCFIELDS("Balance (LCY)")
    ELSE
    CLEAR(Cust);
    IF Cust."Credit Limit (LCY)" = 0 THEN
    ...

    대체 코드

    ...BEGIN
    SETRANGE("No.");
    CALCFIELDS("Interest Amount","VAT Amount");
    ReminderTotal := "Remaining Amount" + "Additional Fee" + "Interest Amount" + "VAT Amount";
    CustPostingGr.GET("Customer Posting Group");

    // Add the following lines.
    IF ReminderLevel.GET("Reminder Terms Code","Reminder Level") THEN
    IF ReminderLevel."Calculate Interest" AND ("VAT Amount" <> 0) THEN BEGIN
    GLAcc.GET(CustPostingGr."Interest Account");
    VATPostingSetup.GET("VAT Bus. Posting Group",GLAcc."VAT Prod. Posting Group");
    VATInterest := VATPostingSetup."VAT %";
    IF GLAcc.GET(CustPostingGr."Additional Fee Account") THEN
    VATPostingSetup.GET("VAT Bus. Posting Group",GLAcc."VAT Prod. Posting Group");
    Interest :=
    (ReminderTotal -
    "Remaining Amount" - "Additional Fee" * (VATPostingSetup."VAT %"/ 100 + 1)) /(VATInterest / 100 + 1);
    VatAmount := Interest * VATInterest / 100 + "Additional Fee" * VATPostingSetup."VAT %" / 100;
    END ELSE
    Interest := "Interest Amount";
    // End of the added lines.

    IF Cust.GET("Customer No.") THEN
    Cust.CALCFIELDS("Balance (LCY)")
    ELSE
    CLEAR(Cust);
    IF Cust."Credit Limit (LCY)" = 0 THEN
    ...
  3. (117) 미리 알림 통계 보고서에서 데이터 항목 번호 1의 코드를 다음과 같이 변경.
    기존 코드

    ...IF GLAcc.GET(CustPostingGroup."Additional Fee Account") THEN BEGIN
    VATPostingSetup.GET("VAT Bus. Posting Group",GLAcc."VAT Prod. Posting Group");
    AddFeeInclVAT := "Additional Fee" * (1 + VATPostingSetup."VAT %"/100);
    END ELSE
    AddFeeInclVAT := "Additional Fee";

    // Delete the following lines.
    CALCFIELDS("Interest Amount");
    IF "Interest Amount" <> 0 THEN BEGIN
    GLAcc.GET(CustPostingGroup."Interest Account");
    VATPostingSetup.GET("VAT Bus. Posting Group",GLAcc."VAT Prod. Posting Group");
    VATInterest := VATPostingSetup."VAT %";
    END ELSE
    VATInterest := 0;
    // End of the deleted lines.

    IF ISSERVICETIER THEN BEGIN
    NNC_InterestAmountTotal := 0;
    NNC_RemainingAmountTotal := 0;
    NNC_VATAmountTotal := 0;
    ...

    대체 코드

    ...  IF GLAcc.GET(CustPostingGroup."Additional Fee Account") THEN BEGIN
    VATPostingSetup.GET("VAT Bus. Posting Group",GLAcc."VAT Prod. Posting Group");
    AddFeeInclVAT := "Additional Fee" * (1 + VATPostingSetup."VAT %"/100);
    END ELSE
    AddFeeInclVAT := "Additional Fee";

    // Add the following lines.
    CALCFIELDS("Interest Amount","VAT Amount");
    IF ("Interest Amount" <> 0) AND ("VAT Amount" <> 0) THEN BEGIN
    GLAcc.GET(CustPostingGroup."Interest Account");
    VATPostingSetup.GET("VAT Bus. Posting Group",GLAcc."VAT Prod. Posting Group");
    VATInterest := VATPostingSetup."VAT %";
    Interest:=
    (ReminderInterestAmount +
    "VAT Amount" +"Issued Reminder Header"."Additional Fee" - AddFeeInclVAT) / (VATInterest / 100 + 1);
    END ELSE BEGIN
    Interest:= "Interest Amount";
    VATInterest := 0;
    END;
    // End of the added lines.

    IF ISSERVICETIER THEN BEGIN
    NNC_InterestAmountTotal := 0;
    NNC_RemainingAmountTotal := 0;
    NNC_VATAmountTotal := 0;
    ...
  4. 미리 알림 통계 보고서 (117) 데이터 항목 번호 4 섹션에 있는 코드를 다음과 같이 변경.
    기존 코드 1

    ...}
    CONTROLS
    {
    { 45 ;TextBox ;10710;0 ;2520 ;423 ;FontSize=9;
    CaptionML=ENU=Interest Amount;

    // Delete the following line.
    SourceExpr=(ReminderInterestAmount + "VAT Amount" +"Issued Reminder Header"."Additional Fee" - AddFeeInclVAT)/(VATInterest/100 +1);
    // End of the deleted line.

    AutoFormatType=1;
    AutoFormatExpr="Issued Reminder Line".GetCurrencyCodeFromHeader;
    DataSetFieldName=ReminderInterestAmount____VAT_Amount____Issued_Reminder_Header___Additional_Fee____AddFeeInclVAT___VATInterest_100__1_ }
    { 47 ;Label ;6090 ;0 ;4200 ;423 ;ParentControl=45;
    FontSize=9;
    ...

    대체 코드 1

    ...}
    CONTROLS
    {
    { 45 ;TextBox ;10710;0 ;2520 ;423 ;FontSize=9;
    CaptionML=ENU=Interest Amount;

    // Add the following line.
    SourceExpr=Interest;
    // End of the added line.

    AutoFormatType=1;
    AutoFormatExpr="Issued Reminder Line".GetCurrencyCodeFromHeader;
    DataSetFieldName=ReminderInterestAmount____VAT_Amount____Issued_Reminder_Header___Additional_Fee____AddFeeInclVAT___VATInterest_100__1_ }
    { 47 ;Label ;6090 ;0 ;4200 ;423 ;ParentControl=45;
    FontSize=9;
    ...

    기존 코드 2

    ...CONTROLS
    {
    { 44 ;TextBox ;10710;0 ;2520 ;423 ;FontSize=9;
    FontBold=Yes;
    CaptionML=ENU=Total;

    // Delete the following line.
    SourceExpr="Remaining Amount" + ReminderInterestAmount + "VAT Amount"-(ReminderInterestAmount + "VAT Amount" +"Issued Reminder Header"."Additional Fee" - AddFeeInclVAT)/(VATInterest/100+1)*VATInterest/100 + "Issued Reminder Header"."Additional Fee" - AddFeeInclVAT;
    // End of the deleted line.

    AutoFormatType=1;
    AutoFormatExpr="Issued Reminder Line".GetCurrencyCodeFromHeader;
    DataSetFieldName=Remaining_Amount____ReminderInterestAmount____VAT_Amount___ReminderInterestAmount____VAT_Amount____Issued_Reminder_Header___Additional_Fee____AddFeeInclVAT___VATInterest_100_1__VATInterest_100____Issued_Reminder_Header___Additional_Fee____AddFeeInclVAT }
    { 56 ;TextBox ;6090 ;0 ;4200 ;423 ;FontSize=9;
    FontBold=Yes;
    ...

    대체 코드 2

    ... CONTROLS
    {
    { 44 ;TextBox ;10710;0 ;2520 ;423 ;FontSize=9;
    FontBold=Yes;
    CaptionML=ENU=Total;

    // Add the following line.
    SourceExpr="Remaining Amount" + ReminderInterestAmount;
    // End of the added line.

    AutoFormatType=1;
    AutoFormatExpr="Issued Reminder Line".GetCurrencyCodeFromHeader;
    DataSetFieldName=Remaining_Amount____ReminderInterestAmount____VAT_Amount___ReminderInterestAmount____VAT_Amount____Issued_Reminder_Header___Additional_Fee____AddFeeInclVAT___VATInterest_100_1__VATInterest_100____Issued_Reminder_Header___Additional_Fee____AddFeeInclVAT }
    { 56 ;TextBox ;6090 ;0 ;4200 ;423 ;FontSize=9;
    FontBold=Yes;
    ...
  5. 미리 알림 통계 보고서 (122)에서 데이터 항목 번호 1의 코드를 다음과 같이 변경.
    기존 코드

    ...IF GLAcc.GET(CustPostingGroup."Additional Fee Account") THEN BEGIN
    VATPostingSetup.GET("VAT Bus. Posting Group",GLAcc."VAT Prod. Posting Group");
    AddFeeInclVAT := "Additional Fee" * (1 + VATPostingSetup."VAT %"/100);
    END ELSE
    AddFeeInclVAT := "Additional Fee";

    // Delete the following lines.
    CALCFIELDS("Interest Amount");
    IF "Interest Amount" <> 0 THEN BEGIN
    GLAcc.GET(CustPostingGroup."Interest Account");
    VATPostingSetup.GET("VAT Bus. Posting Group",GLAcc."VAT Prod. Posting Group");
    VATInterest := VATPostingSetup."VAT %";
    END ELSE
    VATInterest := 0;

    // End of the deleted lines.

    IF ISSERVICETIER THEN BEGIN
    NNC_Interest := 0;
    NNC_TotalLCY := 0;
    NNC_VATAmount := 0;
    NNC_TotalLCYVATAmount := 0;
    ...

    대체 코드

    ...IF GLAcc.GET(CustPostingGroup."Additional Fee Account") THEN BEGIN
    VATPostingSetup.GET("VAT Bus. Posting Group",GLAcc."VAT Prod. Posting Group");
    AddFeeInclVAT := "Additional Fee" * (1 + VATPostingSetup."VAT %"/100);
    END ELSE
    AddFeeInclVAT := "Additional Fee";

    // Add the following lines.
    CALCFIELDS("Interest Amount","VAT Amount");
    IF ("Interest Amount" <> 0) AND ("VAT Amount" <> 0) THEN BEGIN
    GLAcc.GET(CustPostingGroup."Interest Account");
    VATPostingSetup.GET("VAT Bus. Posting Group",GLAcc."VAT Prod. Posting Group");
    VATInterest := VATPostingSetup."VAT %";
    Interest:=
    (ReminderInterestAmount +
    "VAT Amount" +"Reminder Header"."Additional Fee" - AddFeeInclVAT) / (VATInterest / 100 + 1);
    END ELSE BEGIN
    Interest:= "Interest Amount";
    VATInterest := 0;
    END;
    IF VATInterest <> 0 THEN
    // End of the added lines.

    IF ISSERVICETIER THEN BEGIN
    NNC_Interest := 0;
    NNC_TotalLCY := 0;
    NNC_VATAmount := 0;
    NNC_TotalLCYVATAmount := 0;
    ...
  6. 미리 알림 통계 보고서 (122)에서 데이터 항목 번호 2의 코드를 다음과 같이 변경.
    기존 코드

    ... }
    { PROPERTIES
    {
    DataItemIndent=1;
    DataItemTable=Table2000000026;

    // Delete the following line.
    DataItemTableView=SORTING(Number) WHERE(Number=CONST(1));
    // End of the deleted line.

    DataItemVarName=PageCounter;
    }
    SECTIONS
    {
    { PROPERTIES
    ...

    대체 코드

    ...}
    { PROPERTIES
    {
    DataItemIndent=1;
    DataItemTable=Table2000000026;

    // Add the following lines.
    DataItemTableView=SORTING(Number)
    WHERE(Number=CONST(1));
    // End of the added lines.

    DataItemVarName=PageCounter;
    }
    SECTIONS
    {
    { PROPERTIES
    ...
  7. 미리 알림 통계 보고서 (122)에서 데이터 항목 번호 3의 코드를 다음과 같이 변경.
    기존 코드

    ...}
    { PROPERTIES
    {
    DataItemIndent=2;
    DataItemTable=Table2000000026;

    // Delete the following line.
    DataItemTableView=SORTING(Number) WHERE(Number=FILTER(1..));
    // End of the deleted line.

    DataItemVarName=DimensionLoop;
    OnPreDataItem=BEGIN
    IF NOT ShowDim THEN
    CurrReport.BREAK;
    DocDim.SETRANGE("Table ID",DATABASE::"Reminder Header");
    ...

    대체 코드

    ...}
    { PROPERTIES
    {
    DataItemIndent=2;
    DataItemTable=Table2000000026;

    // Add the following lines.
    DataItemTableView=SORTING(Number)
    WHERE(Number=FILTER(1..));
    // End of the added lines.

    DataItemVarName=DimensionLoop;
    OnPreDataItem=BEGIN
    IF NOT ShowDim THEN
    CurrReport.BREAK;
    DocDim.SETRANGE("Table ID",DATABASE::"Reminder Header");
    ...
  8. 미리 알림 통계 보고서 (122)에서 데이터 항목 번호 5의 코드를 다음과 같이 변경.
    기존 코드

    ... }
    { PROPERTIES
    {
    DataItemIndent=2;
    DataItemTable=Table296;

    // Delete the following line.
    DataItemTableView=SORTING(Reminder No.,Line No.) WHERE(Line Type=FILTER(<>Not Due));
    // End of the deleted line.

    OnPreDataItem=BEGIN
    IF ISSERVICETIER THEN
    TotalVATAmount := 0;

    IF FIND('+') THEN BEGIN
    ...

    대체 코드

    ...}
    { PROPERTIES
    {
    DataItemIndent=2;
    DataItemTable=Table296;

    // Add the following lines.
    DataItemTableView=SORTING(Reminder No.,Line No.)
    WHERE(Line Type=FILTER(<>Not Due));
    // End of the added lines.

    OnPreDataItem=BEGIN
    IF ISSERVICETIER THEN
    TotalVATAmount := 0;

    IF FIND('+') THEN BEGIN
    ...
  9. 미리 알림 통계 보고서 (122) 데이터 항목 번호 5 섹션에 있는 코드를 다음과 같이 변경.
    기존 코드 1

    ...   }
    CONTROLS
    {
    { 17 ;TextBox ;10710;0 ;2520 ;423 ;FontSize=9;
    CaptionML=ENU=Interest Amount;

    // Delete the following line.
    SourceExpr=(ReminderInterestAmount + "VAT Amount" +"Reminder Header"."Additional Fee" - AddFeeInclVAT)/(VATInterest/100 +1);
    // End of the deleted line.

    AutoFormatType=1;
    AutoFormatExpr="Reminder Line".GetCurrencyCodeFromHeader;
    DataSetFieldName=ReminderInterestAmount____VAT_Amount____Reminder_Header___Additional_Fee____AddFeeInclVAT___VATInterest_100__1_ }
    { 20 ;Label ;6090 ;0 ;4200 ;423 ;ParentControl=17;
    FontSize=9;
    ...

    대체 코드 1

    ... }
    CONTROLS
    {
    { 17 ;TextBox ;10710;0 ;2520 ;423 ;FontSize=9;
    CaptionML=ENU=Interest Amount;

    // Add the following line.
    SourceExpr=Interest;
    // End of the added line.

    AutoFormatType=1;
    AutoFormatExpr="Reminder Line".GetCurrencyCodeFromHeader;
    DataSetFieldName=ReminderInterestAmount____VAT_Amount____Reminder_Header___Additional_Fee____AddFeeInclVAT___VATInterest_100__1_ }
    { 20 ;Label ;6090 ;0 ;4200 ;423 ;ParentControl=17;
    FontSize=9;
    ...

    기존 코드 2

    ...}
    CONTROLS
    {
    { 29 ;TextBox ;10710;0 ;2520 ;423 ;FontSize=9;
    FontBold=Yes;

    // Delete the following line.
    SourceExpr="Remaining Amount" + ReminderInterestAmount + "VAT Amount"-(ReminderInterestAmount + "VAT Amount" +"Reminder Header"."Additional Fee" - AddFeeInclVAT)/(VATInterest/100+1)*VATInterest/100 + "Reminder Header"."Additional Fee" - AddFeeInclVAT;
    // End of the deleted line.

    AutoFormatType=1;
    AutoFormatExpr="Reminder Line".GetCurrencyCodeFromHeader;
    DataSetFieldName=Remaining_Amount____ReminderInterestAmount____VAT_Amount___ReminderInterestAmount____VAT_Amount____Reminder_Header___Additional_Fee____AddFeeInclVAT___VATInterest_100_1__VATInterest_100____Reminder_Header___Additional_Fee____AddFeeInclVAT }
    { 43 ;TextBox ;6090 ;0 ;4200 ;423 ;FontSize=9;
    FontBold=Yes;
    ...

    대체 코드 2

    ...}
    CONTROLS
    {
    { 29 ;TextBox ;10710;0 ;2520 ;423 ;FontSize=9;
    FontBold=Yes;

    // Add the following line.
    SourceExpr="Remaining Amount" + ReminderInterestAmount;
    // End of the added line.

    AutoFormatType=1;
    AutoFormatExpr="Reminder Line".GetCurrencyCodeFromHeader;
    DataSetFieldName=Remaining_Amount____ReminderInterestAmount____VAT_Amount___ReminderInterestAmount____VAT_Amount____Reminder_Header___Additional_Fee____AddFeeInclVAT___VATInterest_100_1__VATInterest_100____Reminder_Header___Additional_Fee____AddFeeInclVAT }
    { 43 ;TextBox ;6090 ;0 ;4200 ;423 ;FontSize=9;
    FontBold=Yes;
    ...

전제 조건

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

  • Microsoft Dynamics 탐색 2009 R2

  • Microsoft Dynamics 탐색 2009 SP1

제거 정보

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

상태

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

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

도움이 더 필요하세요?

더 많은 옵션을 원하세요?

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

커뮤니티를 통해 질문하고 답변하고, 피드백을 제공하고, 풍부한 지식을 갖춘 전문가의 의견을 들을 수 있습니다.

이 정보가 유용한가요?

언어 품질에 얼마나 만족하시나요?
사용 경험에 어떠한 영향을 주었나요?
제출을 누르면 피드백이 Microsoft 제품과 서비스를 개선하는 데 사용됩니다. IT 관리자는 이 데이터를 수집할 수 있습니다. 개인정보처리방침

의견 주셔서 감사합니다!

×