Microsoft hesabıyla oturum açın
Oturum açın veya hesap oluşturun.
Merhaba,
Farklı bir hesap seçin.
Birden çok hesabınız var
Oturum açmak istediğiniz hesabı seçin.

Bu makale Microsoft Dynamics NAV için tüm dil yerel ayarları için geçerlidir.

Belirtiler

Varsayılan deftere nakil tarihi "Hayır tarihi" için ayarlanmışsa, yabancı para birimi cinsinden satış siparişi oluşturmaya çalıştığınızda Microsoft Dynamics NAV, döviz kuru sistem doğrulayamıyor. Bu nedenle, aşağıdaki hata iletisini alırsınız:

Filtre içinde para birimi döviz kuru yok.


Ayrıca, (205) sipariş teyidi raporu yazdıramıyor.
Bu sorun aşağıdaki ürünlerde oluşur:

  • Microsoft Dynamics NAV 2009 Service Pack 1 (SP1)

  • Microsoft Dynamics NAV 2009 R2

Çözüm

Düzeltme bilgileri

Artık Microsoft tarafından desteklenen bir düzeltme sağlanmaktadır. Ancak bunun yalnızca bu makalede anlatılan sorunu düzeltmesi amaçlanmıştır. Yalnızca bu özel sorunla karşılaşmış olan sistemlere uygulayın. Bu düzeltme ek sınama uygulanabilir. Bu nedenle, bu sorundan ciddi bir şekilde etkilenmiyorsanız, Microsoft Dynamics NAV 2009 sonraki hizmet paketini veya, bu düzeltmeyi içeren bir sonraki Microsoft Dynamics NAV sürümü için beklemek öneririz.

Not: Özel durumlarda, destek aramaları teknik destek uzmanı Microsoft Dynamics ve ilgili ürünlere yönelik iptal edilebilir çözeceğini giderleri belirleyen belirli bir güncelleştirmenin sorununuzu. Ek destek sorularına ve söz konusu güncelleştirme için geçerli olmayan sorunlara normal destek ücretleri uygulanır.



Yükleme bilgileri

Microsoft, programlama örneklerini yalnızca gösterim amacıyla zımni veya açık garanti olmadan sağlar. Bu, satılabilirlik veya belirli bir amaca uygunluk açısından zımni garantileri içerir ancak bunlarla sınırlı değildir. Bu makale, gösterilen programlama dilini, yordamları oluşturmak ve yordamlardan hata ayıklamak için kullanılan araçları bildiğinizi varsayar. Microsoft destek mühendisleri belirli bir yordamın işlevselliğinin açıklanmasına yardımcı olabilirler, ancak ilave işlevsellik sağlamak için bu örnekleri değiştirmezler veya belirli gereksinimlerinizi karşılayacak şekilde yordamları yapılandırmazlar.

Not: Bu düzeltmeyi yüklemeden önce tüm Microsoft Navision istemcisi kullanıcılar sistem oturum doğrulayın. Bu, Microsoft Navision uygulama Hizmetleri (NAS) istemci kullanıcıları içerir. Bu düzeltmeyi uyguladığınızda yalnızca istemci kullanıcının oturum açmış olması gerekir.

Bu düzeltmeyi uygulamak için bir geliştirici lisansı olması gerekir.

Kullanıcı hesabının Windows oturumu açma penceresini veya veritabanı oturumu açma penceresi "Süper" rol kimliği atanması öneririz Kullanıcı hesabı "Süper" rol Kimliği atanamaz, kullanıcı hesabı aşağıdaki izinlere sahip olduğunu doğrulamanız gerekir:

  • Nesnenin, değiştirme değişiklik yapma izni.

  • Execute izni Sistem nesne kimliği 5210 nesnenin ve nesne kimliği 9015 sistem nesnesi için.



Not: Veri onarım gerçekleştirmek zorunda sürece veri depoları haklarına sahip olmanız gerekmez.

Kod değişiklikleri

Not: Her zaman, uygulamadan önce test kodu denetimli bir ortamda üretim bilgisayarlarınıza düzeltmeler giderir.
Bu sorunu gidermek için şu adımları izleyin:

  1. Satış Fiyatı hesapla Ynt. kod (7000) SalesHeaderExchDate işlevinde kodu aşağıdaki gibi değiştirin:
    Varolan kodu

    ...WITH SalesHeader DO BEGIN

    // Delete the following lines.
    IF ("Document Type" IN ["Document Type"::"Blanket Order","Document Type"::Quote]) AND
    ("Posting Date" = 0D)
    THEN
    EXIT(WORKDATE);
    EXIT("Posting Date");
    // End of the deleted lines.

    END;
    ...

    Kod değiştirme

    ...WITH SalesHeader DO BEGIN

    // Add the following lines.
    IF "Posting Date" <>0D THEN
    EXIT("Posting Date");
    EXIT(WORKDATE);
    // End of the added lines.

    END;
    ...
  2. PurchHeaderExchDate işlevi Satınalma kodu değiştirin. Fiyat hesaplaması Ynt. (7010) kod aşağıdaki gibi:
    Varolan kodu

    ...WITH PurchHeader DO BEGIN
    // Delete the following lines.
    IF ("Document Type" IN ["Document Type"::"Blanket Order","Document Type"::Quote]) AND
    ("Posting Date" = 0D)
    THEN
    EXIT(WORKDATE);
    EXIT("Posting Date");
    // End of the deleted lines.
    END;
    ...

    Kod değiştirme

    ...WITH PurchHeader DO BEGIN

    // Add the following lines.
    IF "Posting Date" <> 0D THEN
    EXIT("Posting Date");
    EXIT(WORKDATE);
    // End of the added lines.

    END;
    ...
  3. OnAssistEdit tetikleyici (111) Para birimi kodu alanında bulunan kodu Satış siparişi formunda (42) aşağıdaki gibi değiştirin:
    Varolan kodu

    ...CLEAR(ChangeExchangeRate);

    // Delete the following line.
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor","Posting Date");
    // End of the deleted line.

    IF ChangeExchangeRate.RUNMODAL = ACTION::OK THEN BEGIN
    VALIDATE("Currency Factor",ChangeExchangeRate.GetParameter);
    CurrForm.UPDATE;
    END;
    CLEAR(ChangeExchangeRate);
    ...

    Kod değiştirme

    ...CLEAR(ChangeExchangeRate);

    // Add the following lines.
    IF "Posting Date" <> 0D THEN
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor","Posting Date")
    ELSE
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor",WORKDATE);
    // End of the added lines.

    IF ChangeExchangeRate.RUNMODAL = ACTION::OK THEN BEGIN
    VALIDATE("Currency Factor",ChangeExchangeRate.GetParameter);
    CurrForm.UPDATE;
    END;
    CLEAR(ChangeExchangeRate);
    ...
  4. (107) Döviz Cinsi alanındaki OnAssistEdit tetikleyici kodunda Satış faturası formunda (43) aşağıdaki gibi değiştirin:
    Varolan kodu

    ...CLEAR(ChangeExchangeRate);
    // Delete the following line.
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor","Posting Date");
    // End of the deleted line.
    IF ChangeExchangeRate.RUNMODAL = ACTION::OK THEN BEGIN
    VALIDATE("Currency Factor",ChangeExchangeRate.GetParameter);
    CurrForm.UPDATE;
    END;
    CLEAR(ChangeExchangeRate);
    ...

    Kod değiştirme

    ...CLEAR(ChangeExchangeRate);
    // Add the following lines.
    IF "Posting Date" <> 0D THEN
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor","Posting Date")
    ELSE
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor",WORKDATE);
    // End of the added lines.
    IF ChangeExchangeRate.RUNMODAL = ACTION::OK THEN BEGIN
    VALIDATE("Currency Factor",ChangeExchangeRate.GetParameter);
    CurrForm.UPDATE;
    END;
    CLEAR(ChangeExchangeRate);
    ...
  5. (91) Döviz Cinsi alanındaki OnAssistEdit tetikleyici kodunda Satış iade faturası formunda (44) aşağıdaki gibi değiştirin:
    Varolan kodu

    ...CLEAR(ChangeExchangeRate);

    // Delete the following line.
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor","Posting Date");
    // End of the deleted line.

    IF ChangeExchangeRate.RUNMODAL = ACTION::OK THEN BEGIN
    VALIDATE("Currency Factor",ChangeExchangeRate.GetParameter);
    CurrForm.UPDATE;
    END;
    CLEAR(ChangeExchangeRate);
    ...

    Kod değiştirme

    ...CLEAR(ChangeExchangeRate);

    // Add the following lines.
    IF "Posting Date" <> 0D THEN
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor","Posting Date")
    ELSE
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor",WORKDATE);
    // End of the added lines

    IF ChangeExchangeRate.RUNMODAL = ACTION::OK THEN BEGIN
    VALIDATE("Currency Factor",ChangeExchangeRate.GetParameter);
    CurrForm.UPDATE;
    END;
    CLEAR(ChangeExchangeRate);
    ...
  6. OnAssistEdit tetikleyici (119) Para birimi kodu alanında bulunan kodu Satınalma siparişi formunda (50) aşağıdaki gibi değiştirin:
    Varolan kodu

    ...CLEAR(ChangeExchangeRate);

    // Delete the following line.
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor","Posting Date");
    // End of the deleted line.

    IF ChangeExchangeRate.RUNMODAL = ACTION::OK THEN BEGIN
    VALIDATE("Currency Factor",ChangeExchangeRate.GetParameter);
    CurrForm.UPDATE;
    END;
    CLEAR(ChangeExchangeRate);
    ...

    Kod değiştirme

    ...CLEAR(ChangeExchangeRate);

    // Add the following lines.
    IF "Posting Date" <> 0D THEN
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor","Posting Date")
    ELSE
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor",WORKDATE);
    // End of the added lines.

    IF ChangeExchangeRate.RUNMODAL = ACTION::OK THEN BEGIN
    VALIDATE("Currency Factor",ChangeExchangeRate.GetParameter);
    CurrForm.UPDATE;
    END;
    CLEAR(ChangeExchangeRate);
    ...
  7. (104) Döviz Cinsi alanındaki OnAssistEdit tetikleyici kodunda Satınalma faturası formunda (51) aşağıdaki gibi değiştirin:
    Varolan kodu

    ...CLEAR(ChangeExchangeRate);

    // Delete the following line.
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor","Posting Date");
    // End of the deleted line.

    IF ChangeExchangeRate.RUNMODAL = ACTION::OK THEN BEGIN
    VALIDATE("Currency Factor",ChangeExchangeRate.GetParameter);
    CurrForm.UPDATE;
    END;
    CLEAR(ChangeExchangeRate);
    ...

    Kod değiştirme

    ...CLEAR(ChangeExchangeRate);

    // Add the following lines.
    IF "Posting Date" <> 0D THEN
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor","Posting Date")
    ELSE
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor",WORKDATE);
    // End of the added lines.

    IF ChangeExchangeRate.RUNMODAL = ACTION::OK THEN BEGIN
    VALIDATE("Currency Factor",ChangeExchangeRate.GetParameter);
    CurrForm.UPDATE;
    END;
    CLEAR(ChangeExchangeRate);
    ...
  8. (91) Döviz Cinsi alanındaki OnAssistEdit tetikleyici kodunda Satınalma iade faturası formunda (52) aşağıdaki gibi değiştirin:
    Varolan kodu

    ...CLEAR(ChangeExchangeRate);

    // Delete the following line.
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor","Posting Date");
    // End of the deleted line.

    IF ChangeExchangeRate.RUNMODAL = ACTION::OK THEN BEGIN
    VALIDATE("Currency Factor",ChangeExchangeRate.GetParameter);
    CurrForm.UPDATE;
    END;
    CLEAR(ChangeExchangeRate);
    ...

    Kod değiştirme

    ...CLEAR(ChangeExchangeRate);

    // Add the following lines.
    IF "Posting Date" <> 0D THEN
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor","Posting Date")
    ELSE
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor",WORKDATE);
    // End of the added lines.

    IF ChangeExchangeRate.RUNMODAL = ACTION::OK THEN BEGIN
    VALIDATE("Currency Factor",ChangeExchangeRate.GetParameter);
    CurrForm.UPDATE;
    END;
    CLEAR(ChangeExchangeRate);
    ...
  9. (91) Döviz Cinsi alanındaki OnAssistEdit tetikleyici kodunda Satış iade siparişi formunda (6630) aşağıdaki gibi değiştirin:
    Varolan kodu

    ...CLEAR(ChangeExchangeRate);

    // Delete the following line.
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor","Posting Date");
    // End of the deleted line.

    IF ChangeExchangeRate.RUNMODAL = ACTION::OK THEN BEGIN
    VALIDATE("Currency Factor",ChangeExchangeRate.GetParameter);
    CurrForm.UPDATE;
    END;
    CLEAR(ChangeExchangeRate);
    ...

    Kod değiştirme

    ...CLEAR(ChangeExchangeRate);

    // Add the following lines.
    IF "Posting Date" <> 0D THEN
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor","Posting Date")
    ELSE
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor",WORKDATE);
    // End of the added lines.

    IF ChangeExchangeRate.RUNMODAL = ACTION::OK THEN BEGIN
    VALIDATE("Currency Factor",ChangeExchangeRate.GetParameter);
    CurrForm.UPDATE;
    END;
    CLEAR(ChangeExchangeRate);
    ...
  10. (91) Döviz Cinsi alanındaki OnAssistEdit tetikleyici kodunda Satınalma iade siparişi formunda (6640) aşağıdaki gibi değiştirin:
    Varolan kodu

    ...CLEAR(ChangeExchangeRate);

    // Delete the following line.
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor","Posting Date");
    // End of the deleted line.

    IF ChangeExchangeRate.RUNMODAL = ACTION::OK THEN BEGIN
    VALIDATE("Currency Factor",ChangeExchangeRate.GetParameter);
    CurrForm.UPDATE;
    END;
    CLEAR(ChangeExchangeRate);
    ...

    Kod değiştirme

    ...CLEAR(ChangeExchangeRate);

    // Add the following lines.
    IF "Posting Date" <> 0D THEN
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor","Posting Date")
    ELSE
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor",WORKDATE);
    // End of the added lines.

    IF ChangeExchangeRate.RUNMODAL = ACTION::OK THEN BEGIN
    VALIDATE("Currency Factor",ChangeExchangeRate.GetParameter);
    CurrForm.UPDATE;
    END;
    CLEAR(ChangeExchangeRate);
    ...
  11. UpdateCurrencyFactor işlevi Satış Başlığı tablosundaki (36) kodu aşağıdaki gibi değiştirin:
    Varolan kodu

    ...IF "Currency Code" <>'' THEN BEGIN

    // Delete the following lines.
    IF ("Document Type" IN ["Document Type"::Quote,"Document Type"::"Blanket Order"]) AND
    ("Posting Date" = 0D)
    THEN
    CurrencyDate := WORKDATE
    ELSE
    CurrencyDate := "Posting Date";
    // End of the deleted lines.

    "Currency Factor" := CurrExchRate.ExchangeRate(CurrencyDate,"Currency Code");
    END ELSE
    "Currency Factor" := 0;
    ...

    Kod değiştirme

    ...IF "Currency Code" <> '' THEN BEGIN

    // Add the following lines.
    IF "Posting Date" <> 0D THEN
    CurrencyDate := "Posting Date"
    ELSE
    CurrencyDate := WORKDATE;
    // End of the added lines.

    "Currency Factor" := CurrExchRate.ExchangeRate(CurrencyDate,"Currency Code");
    END ELSE
    "Currency Factor" := 0;
    ...
  12. GetDate ilevi (37) Satış satırı tablosundaki kodu aşağıdaki gibi değiştirin:
    Varolan kodu

    ...// Delete the following lines.
    IF ("Document Type" IN ["Document Type"::"Blanket Order","Document Type"::Quote]) AND
    (SalesHeader."Posting Date" = 0D)
    THEN
    EXIT(WORKDATE);
    EXIT(SalesHeader."Posting Date");
    // End of the deleted lines.
    ...

    Kod değiştirme

    ...// Add the following lines.
    IF SalesHeader."Posting Date" <> 0D THEN
    EXIT(SalesHeader."Posting Date");
    EXIT(WORKDATE);
    // End of the added lines.
    ...
  13. Satınalma Başlığı tablosundaki (38) UpdateCurrencyFactor işlev kodu aşağıdaki gibi değiştirin:
    Varolan kodu

    ...IF "Currency Code" <> '' THEN BEGIN
    // Delete the following lines.
    IF ("Document Type" IN ["Document Type"::Quote,"Document Type"::"Blanket Order"]) AND
    ("Posting Date" = 0D)
    THEN
    CurrencyDate := WORKDATE
    ELSE
    CurrencyDate := "Posting Date";
    // End of the deleted lines.

    "Currency Factor" := CurrExchRate.ExchangeRate(CurrencyDate,"Currency Code");
    END ELSE
    "Currency Factor" := 0;
    ...

    Kod değiştirme

    ...IF "Currency Code"<>'' THEN BEGIN
    // Add the following lines.
    IF "Posting Date" <> 0D THEN
    CurrencyDate := "Posting Date"
    ELSE
    CurrencyDate := WORKDATE;
    // End of the added lines.

    "Currency Factor" := CurrExchRate.ExchangeRate(CurrencyDate,"Currency Code");
    END ELSE
    "Currency Factor" := 0;
    ...
  14. Satınalma satırı tablosundaki (39) GetDate işlev kodu aşağıdaki gibi değiştirin:
    Varolan kodu

    ...// Delete the following lines.
    IF ("Document Type" IN ["Document Type"::"Blanket Order","Document Type"::Quote]) AND
    (PurchHeader."Posting Date" = 0D)
    THEN
    EXIT(WORKDATE);
    EXIT(PurchHeader."Posting Date")
    // End of the deleted lines.
    ...

    Kod değiştirme

    ...// Add the following lines.
    IF PurchHeader."Posting Date"<>0D THEN
    EXIT(PurchHeader."Posting Date");
    EXIT(WORKDATE);
    // End of the added lines.
    ...
  15. Satış sonrası kod (80) RoundAmount işlevinde kodu aşağıdaki gibi değiştirin:
    Varolan kodu

    ...IF SalesHeader."Currency Code" <>'' THEN BEGIN
    // Delete the following lines.
    IF ("Document Type" IN ["Document Type"::"Blanket Order","Document Type"::Quote]) AND
    (SalesHeader."Posting Date" = 0D)
    THEN
    // End of the deleted lines.
    UseDate := WORKDATE
    ELSE
    UseDate := SalesHeader."Posting Date";
    ...

    Kod değiştirme

    ...IF SalesHeader."Currency Code" <>'' THEN BEGIN
    // Add the following line.
    IF (SalesHeader."Posting Date" = 0D) THEN
    // End of the added line.

    UseDate := WORKDATE
    ELSE
    UseDate := SalesHeader."Posting Date";
    ...
  16. RoundAmount işlevinde kodu değiştirmek Satınalma-Post (90) kod aşağıdaki gibi:
    Varolan kodu

    ...IF PurchHeader."Currency Code" <>'' THEN BEGIN
    // Delete the following lines.
    IF ("Document Type" IN ["Document Type"::"Blanket Order","Document Type"::Quote]) AND
    (PurchHeader."Posting Date" = 0D)
    THEN
    // End of the deleted lines.
    Usedate := WORKDATE
    ELSE
    Usedate := PurchHeader."Posting Date";
    ...

    Kod değiştirme

    ...IF PurchHeader."Currency Code"<> '' THEN BEGIN
    // Add the following line.
    IF (PurchHeader."Posting Date" = 0D) THEN
    // End of the added line.
    Usedate := WORKDATE
    ELSE
    Usedate := PurchHeader."Posting Date";
    ...
  17. Satış siparişi istatistikleri formunda (402) UpdateHeaderInfo işlev kodu aşağıdaki gibi değiştirin:
    Varolan kodu

    ...IF "Prices Including VAT" THEN
    TotalSalesLineLCY[IndexNo].Amount := TotalAmount2[IndexNo]
    ELSE
    TotalSalesLineLCY[IndexNo].Amount := TotalAmount1[IndexNo];
    IF "Currency Code" <> '' THEN

    // Delete the following lines.
    IF ("Document Type" IN ["Document Type"::"Blanket Order","Document Type"::Quote]) AND
    ("Posting Date" = 0D)
    THEN
    // End of the deleted lines.

    UseDate := WORKDATE
    ELSE
    UseDate := "Posting Date";
    ...

    Kod değiştirme

    ...IF "Prices Including VAT" THEN
    TotalSalesLineLCY[IndexNo].Amount := TotalAmount2[IndexNo]
    ELSE
    TotalSalesLineLCY[IndexNo].Amount := TotalAmount1[IndexNo];
    IF "Currency Code" <>'' THEN
    // Add the following line.
    IF "Posting Date" = 0D THEN
    // End of the added line.
    UseDate := WORKDATE
    ELSE
    UseDate := "Posting Date";
    ...
  18. Satınalma siparişi istatistikleri formunda (403) UpdateHeaderInfo işlev kodu aşağıdaki gibi değiştirin:
    Varolan kodu

    ...IF "Prices Including VAT" THEN
    TotalPurchLineLCY[IndexNo].Amount := TotalAmount2[IndexNo]
    ELSE
    TotalPurchLineLCY[IndexNo].Amount := TotalAmount1[IndexNo];
    IF "Currency Code" <> '' THEN BEGIN
    // Delete the following lines.
    IF ("Document Type" IN ["Document Type"::"Blanket Order","Document Type"::Quote]) AND
    ("Posting Date" = 0D)
    THEN
    // End of the deleted lines.
    UseDate := WORKDATE
    ELSE
    UseDate := "Posting Date";
    ...

    Kod değiştirme

    ...IF "Prices Including VAT" THEN
    TotalPurchLineLCY[IndexNo].Amount := TotalAmount2[IndexNo]
    ELSE
    TotalPurchLineLCY[IndexNo].Amount := TotalAmount1[IndexNo];
    IF "Currency Code" <> '' THEN BEGIN
    // Add the following line.
    IF "Posting Date" = 0D THEN
    // End of the added line.
    UseDate := WORKDATE
    ELSE
    UseDate := "Posting Date";
    ...
  19. CalculateInvoiceDiscount işlevinde Hesaplanan satış indirim kod (60) kodu aşağıdaki gibi değiştirin:
    Varolan kodu

    ...// Delete the following lines.  
    IF ("Document Type" IN ["Document Type"::"Blanket Order","Document Type"::Quote]) AND
    (SalesHeader."Posting Date" = 0D)
    THEN
    // End of the deleted lines.
    CurrencyDate := WORKDATE
    ELSE
    CurrencyDate := SalesHeader."Posting Date";
    ...

    Kod değiştirme

    ...// Add the following line.    
    IF SalesHeader."Posting Date" = 0D THEN
    // End of the added line.
    CurrencyDate := WORKDATE
    ELSE
    CurrencyDate := SalesHeader."Posting Date";
    ...
  20. CalculateInvoiceDiscount işlevinde kodu değiştirmek Satınalma-Calc.Discount (70) kod aşağıdaki gibi:
    Varolan kodu

    ...// Delete the following lines.  
    IF ("Document Type" IN ["Document Type"::"Blanket Order","Document Type"::Quote]) AND
    (PurchHeader."Posting Date" = 0D)
    THEN
    // End of the deleted lines.
    CurrencyDate := WORKDATE
    ELSE
    CurrencyDate := PurchHeader."Posting Date";
    ...

    Kod değiştirme

    ...// Add the following line.   
    IF PurchHeader."Posting Date" = 0D THEN
    // End of the added line.
    CurrencyDate := WORKDATE
    ELSE
    CurrencyDate := PurchHeader."Posting Date";
    ...


Önkoşullar

Bu düzeltmeyi uygulamak için aşağıdaki ürünlerden birine sahip olmalıdır:

  • Microsoft Dynamics NAV 2009 Service Pack 1 (SP1)

  • Microsoft Dynamics NAV 2009 R2



Kaldırma bilgileri

Bu düzeltmeyi kaldıramazsınız.

Durum

Microsoft bu sorunun "Aşağıdakilere Uygulanır" bölümünde listelenen Microsoft ürünlerinde bulunduğunu onaylamıştır.

Başvurular

VSTF DynamicsNAV SE: 237796, 245981, 254036

Not: Bu, doğrudan Microsoft destek kuruluşu bünyesinde oluşturulan bir "HIZLI YAYIN" makalesidir. Burada yer alan bilgiler, oluşan sorunlara yanıt olarak olduğu gibi sağlanmıştır. Makale hızla kullanıma sunulduğu için materyallerde yazım hataları olabilir ve materyaller bildirilmeksizin herhangi bir zamanda revize edilebilir. Diğer konular için bkz. Kullanım koşulları.

Daha fazla yardıma mı ihtiyacınız var?

Daha fazla seçenek mi istiyorsunuz?

Abonelik avantajlarını keşfedin, eğitim kurslarına göz atın, cihazınızın güvenliğini nasıl sağlayacağınızı öğrenin ve daha fazlasını yapın.

Topluluklar, soru sormanıza ve soruları yanıtlamanıza, geri bildirimde bulunmanıza ve zengin bilgiye sahip uzmanlardan bilgi almanıza yardımcı olur.

Bu bilgi yararlı oldu mu?

Dil kalitesinden ne kadar memnunsunuz?
Deneyiminizi ne etkiledi?
Gönder’e bastığınızda, geri bildiriminiz Microsoft ürün ve hizmetlerini geliştirmek için kullanılır. BT yöneticiniz bu verileri toplayabilecek. Gizlilik Bildirimi.

Geri bildiriminiz için teşekkürler!

×