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'a Macarca (hu) dil yerel ayar için geçerlidir.

Belirtiler

Microsoft Dynamics NAV 2009 R2 Macarca sürümünde 1365 M olarak bilinen KDV beyannamesi dökümü rapor adı yanlış ve bir metin dosyasına veri verme işleminiz sırasında yanlış form Kimliğini kullanır. 1365 yalnızca 2013 yılında kullanılan geçici bir adıydı. Bu kimlik, her yıl değişir. Örneğin:

  • 2013'de 1365 oldu.

  • 2014'de 1465 olur.

  • 1565 2015'de de artar.

Her yıl ilk iki basamağı Artır. Nesne adlarını da yanlıştır. Bunlar "Dökümü KDV beyannamesi" numarası olmadan adlı olmalıdır.

Çözüm

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ı olabilir. Ancak, işlevsellik sağlamak veya yordamlar, belirli gereksinimlerinizi karşılayacak şekilde geliştirmek amacıyla bu örnekleri değiştirmezler.

Not: Bu düzeltmeyi yüklemeden önce tüm Microsoft Dynamics NAV istemci kullanıcıların sistem kaydedildiğini doğrulayın. Bu, Microsoft Dynamics NAV uygulama sunucusu (NAS) hizmetleri 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.

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

    nesne.

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. (14550) verme/baskı 1365 M formdaki alanlarda kod aşağıdaki gibi değiştirin:
    Varolan kodu

    ...// Delete the following line.
    OBJECT Form 14550 Export/Print 1365M

    ...

    Kod değiştirme

    ...// Add the following line.
    OBJECT Form 14550 Export/Print Item. VAT Stat.

    ...
  2. Özellikler formunda 14550 kodu aşağıdaki gibi değiştirin:
    Varolan kodu

    ...  }
    PROPERTIES
    {

    // Delete the following lines.
    Width=6270;
    Height=4510;
    CaptionML=[ENU=Export/Print VAT 1365M Statement;
    // End of the lines.

    HUN=1365M fakimutat s export l sa/nyomtat sa];
    OnInit=BEGIN
    ThresholdAmount := 2000000;

    ...

    Kod değiştirme

    ...  }
    PROPERTIES
    {

    // Add the following lines.
    Width=5720;
    Height=2750;
    CaptionML=[ENU=Export/Print Item. VAT Stat.;
    // End of the lines.

    HUN=1365M fakimutat s export l sa/nyomtat sa];
    OnInit=BEGIN
    ThresholdAmount := 2000000;

    ...
  3. Denetimlerin form 14550 kodu aşağıdaki gibi değiştirin:
    Varolan kodu 1

    ... }
    CONTROLS
    {

    // Delete the following line.
    { 1360006;MenuButton;3740 ;3520 ;2200 ;550 ;CaptionML=[ENU=&Functions;



    HUN=&Funkci�k];
    Menu=MENUITEMS
    {
    ...

    Değiştirme kodu 1

    ... }
    CONTROLS
    {

    // Add the following lines.
    { 1360006;MenuButton;3300 ;1980 ;2200 ;550 ;HorzGlue=Right;
    VertGlue=Bottom;
    CaptionML=[ENU=&Functions;
    // End of the lines.

    HUN=&Funkci�k];Menu=MENUITEMS
    {
    ...

    Varolan kodu 2

    ... Visible=No }
    }
    }

    // Delete the following line.
    { 1360017;TextBox ;3960 ;440 ;2000 ;500 ;CaptionML=[ENU=Start Date;

    HUN=Kezd�si d tum];DateFormula=No;
    SourceExpr=StartDate;
    ...

    Değiştirme kodu 2

    ... Visible=No }
    }
    }

    // Add the following line.
    { 1360017;TextBox ;3520 ;220 ;2000 ;440 ;CaptionML=[ENU=Start Date;

    HUN=Kezd�si d tum];DateFormula=No;
    SourceExpr=StartDate;
    ...

    Varolan kodu 3

    ... EndDate := CALCDATE('<-1D>',VATPeriod."Starting Date");
    END;
    }

    // Delete the following lines.
    { 1360018;Label ;660 ;440 ;3190 ;550 ;ParentControl=1360017 }
    { 1360020;Label ;660 ;1210 ;3190 ;550 ;ParentControl=1360021 }
    { 1360021;TextBox ;3960 ;1210 ;2000 ;500 ;CaptionML=[ENU=End Date;HUN=Z r� d tum]; SourceExpr=EndDate }
    { 1360000;Label ;660 ;2090 ;3190 ;550 ;ParentControl=1360001 }
    { 1360001;TextBox ;3960 ;2090 ;2000 ;500 ;CaptionML=[ENU=VAT Threshold Amount;
    // End of the lines.

    HUN=�fa k�sz�b�sszege];DateFormula=No;
    SourceExpr=ThresholdAmount }
    ...

    Değiştirme kodu 3

    ... EndDate := CALCDATE('<-1D>',VATPeriod."Starting Date");
    END;
    }

    // Add the following lines.
    { 1360018;Label ;220 ;220 ;3190 ;440 ;ParentControl=1360017 }
    { 1360020;Label ;220 ;770 ;3190 ;440 ;ParentControl=1360021 }
    { 1360021;TextBox ;3520 ;770 ;2000 ;440 ;CaptionML=[ENU=End Date;HUN=Z r� d tum]; SourceExpr=EndDate }
    { 1360000;Label ;220 ;1320 ;3190 ;440 ;ParentControl=1360001 }
    { 1360001;TextBox ;3520 ;1320 ;2000 ;440 ;CaptionML=[ENU=VAT Threshold Amount;
    // End of the lines.

    HUN=�fa k�sz�b�sszege];DateFormula=No;
    SourceExpr=ThresholdAmount }
    ...
  4. 1365 KDV beyannamesi dökümü rapor (14522) kodu aşağıdaki gibi değiştirin:
    Varolan kodu

    ...// Delete the following line.
    OBJECT Report 14522 1365 Itemized VAT Statement

    HUN=�fa k�sz�b�sszege];
    DateFormula=No;
    SourceExpr=ThresholdAmount }

    ...

    Kod değiştirme

    ... EndDate := CALCDATE('<-1D>',VATPeriod."Starting Date");
    END;
    }

    // Add the following line.
    OBJECT Report 14522 Itemized VAT Statement

    HUN=�fa k�sz�b�sszege];
    DateFormula=No;
    SourceExpr=ThresholdAmount }


    ...
  5. Özellikleri rapor 14522 kodu aşağıdaki gibi değiştirin:
    Varolan kodu

    ...  }
    PROPERTIES
    {

    // Delete the following lines.
    CaptionML=[ENU=1365 Itemized VAT Statement;
    HUN=1365 ti?½teles fakimutat s];
    // End of the lines.

    PaperSize=A4 210 x 297 mm;
    }
    DATAITEMS


    ...

    Kod değiştirme

    ...  }
    PROPERTIES
    {
    // Add the following lines.
    CaptionML=[ENU=Itemized VAT Statement;
    HUN=Ti?½teles fakimutat s];
    // End of the lines.

    PaperSize=A4 210 x 297 mm;
    }
    DATAITEMS


    ...
  6. Form 1365 verme kod (14550) Create1365MFile işlevinde kodu aşağıdaki gibi değiştirin:
    Varolan kodu

    ...      FullClientFilePath@1360008 : Text[1024];
    SummaryFileName@1360009 : Text[30];
    BEGIN

    // Delete the following lines.
    SetFolderLocation(FolderLocation,FileExtension);

    SummaryFileName := 'Result1365M.txt';
    // End of the lines.

    CREATE(FilesSysObj);
    SummaryTextStream := FilesSysObj.CreateTextFile(TEMPORARYPATH + SummaryFileName,TRUE,FALSE);

    ...

    Kod değiştirme

    ...      FullClientFilePath@1360008 : Text[1024];
    SummaryFileName@1360009 : Text[30];
    BEGIN

    // Add the following lines.
    SetFolderLocation(PeriodFrom,FolderLocation,FileExtension);

    SummaryFileName := 'Result' + GetFormID(PeriodFrom) + '.txt';
    // End of the lines.

    CREATE(FilesSysObj);
    SummaryTextStream := FilesSysObj.CreateTextFile(TEMPORARYPATH + SummaryFileName,TRUE,FALSE);

    ...
  7. Form 1365 verme kod (14550) CreateAndDownloadFiles işlevinde kodu aşağıdaki gibi değiştirin:
    Varolan kodu 1

    ...                              ("Partner ID" <> PreviousTemp1365MBuffer."Partner ID");

    IF IsNewPartner AND Instantiated THEN BEGIN

    // Delete the following line.
    UpdateAndDownloadFile(SummaryTextStream,PreviousTemp1365MBuffer,FolderLocation,FileExtension);

    Instantiated := FALSE;
    END;
    ...

    Değiştirme kodu 1

    ...                               ("Partner ID" <> PreviousTemp1365MBuffer."Partner ID");

    IF IsNewPartner AND Instantiated THEN BEGIN

    // Add the following line.
    UpdateAndDownloadFile(PeriodFrom,SummaryTextStream,PreviousTemp1365MBuffer,FolderLocation,FileExtension);

    Instantiated := FALSE;
    END;

    ...

    Varolan kodu 2

    ...
    IF IsForPrint THEN BEGIN
    IF NOT Instantiated THEN BEGIN

    // Delete the following line.
    TextStream := FilesSysObj.CreateTextFile(TEMPORARYPATH + '1365M.txt',TRUE,FALSE);

    WriteFileHeader(PeriodFrom,PeriodTo,Temp1365MBuffer);
    Instantiated := TRUE;
    END;

    ...

    Değiştirme kodu 2

    ...
    IF IsForPrint THEN BEGIN
    IF NOT Instantiated THEN BEGIN

    // Add the following line.
    TextStream := FilesSysObj.CreateTextFile(TEMPORARYPATH + GetFormID(PeriodFrom) + '.txt',TRUE,FALSE);

    WriteFileHeader(PeriodFrom,PeriodTo,Temp1365MBuffer);
    Instantiated := TRUE;
    END;

    ...

    Varolan kodu 3

    ...            PreviousTemp1365MBuffer := Temp1365MBuffer;
    UNTIL NEXT = 0;
    IF Instantiated THEN

    // Delete the following line.
    UpdateAndDownloadFile(SummaryTextStream,PreviousTemp1365MBuffer,FolderLocation,FileExtension);

    END;
    END;
    END;

    ...

    Değiştirme kodu 3

    ...            PreviousTemp1365MBuffer := Temp1365MBuffer;
    UNTIL NEXT = 0;
    IF Instantiated THEN

    // Add the following line.
    UpdateAndDownloadFile(PeriodFrom,SummaryTextStream,PreviousTemp1365MBuffer,FolderLocation,FileExtension);

    END;
    END;
    END;

    ...
  8. Form 1365 verme kod (14550) WriteFileHeader işlevinde kodu aşağıdaki gibi değiştirin:
    Varolan kodu

    ...      InitVariables;
    CompanyInformation.GET;

    // Delete the following line.
    WriteText('$ny_azon=1365M');

    WriteText(PADSTR('$sorok_sz ma=',STRLEN('$sorok_sz ma=') + 10));
    WriteText('$d_lapok_sz ma=4');
    WriteText('$d_lap1=01-K,1');

    ...

    Kod değiştirme

    ...      InitVariables;
    CompanyInformation.GET;

    // Add the following line.
    WriteText('$ny_azon=' + GetFormID(PeriodFrom));

    WriteText(PADSTR('$sorok_sz ma=',STRLEN('$sorok_sz ma=') + 10));
    WriteText('$d_lapok_sz ma=4');
    WriteText('$d_lap1=01-K,1');

    ...
  9. Form 1365 verme kod (14550) UpdateAndDownloadFile işlevinde kodu aşağıdaki gibi değiştirin:
    Varolan kodu 1

    ...      Count1365M02K += 1;
    END;

    // Delete the following line.
    PROCEDURE UpdateAndDownloadFile@1360041(VAR SummaryTextStream@1360004 : Automation "{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B} 1.0:{0BB02EC0-EF49-11CF-8940-00A0C9054228}:'Windows Script Host Object Model'.TextStream";PreviousTemp1365MBuffer@1360001 : Record 14550;FolderLocation@1360000 : Text[1024];FileExtension@1360002 : Text[32]);

    VAR
    FullClientFilePath@1360003 : Text[1024];
    ServerFileName@1360005 : Text[1024];

    ...

    Değiştirme kodu 1

    ...      Count1365M02K += 1;
    END;

    // Add the following line.
    PROCEDURE UpdateAndDownloadFile@1360041(PeriodFrom@1360007 : Date;VAR SummaryTextStream@1360004 : Automation "{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B} 1.0:{0BB02EC0-EF49-11CF-8940-00A0C9054228}:'Windows Script Host Object Model'.TextStream";PreviousTemp1365MBuffer@1360001 : Record 14550;FolderLocation@1360000 : Text[1024];FileExtension@1360002 : Text[32]);

    VAR
    FullClientFilePath@1360003 : Text[1024];
    ServerFileName@1360005 : Text[1024];

    ...

    Varolan kodu 2

    ...    BEGIN
    Write1365M;
    TextStream.Close;

    // Delete the following line.
    ServerFileName := TEMPORARYPATH + '1365M.txt';

    UpdateCountLine(ServerFileName,CountLine);

    IF PreviousTemp1365MBuffer."VAT Registration No." <> '' THEN

    ...

    Değiştirme kodu 2

    ...    BEGIN
    Write1365M;
    TextStream.Close;

    // Add the following line.
    ServerFileName := TEMPORARYPATH + GetFormID(PeriodFrom) + '.txt';

    UpdateCountLine(ServerFileName,CountLine);

    IF PreviousTemp1365MBuffer."VAT Registration No." <> '' THEN

    ...

    Varolan kodu 3

    ...        PartnerIdentification + '_' +
    FORMAT(TODAY,0,'<Year4,4><Month,2><Day,2>') + FileExtension;


    // Delete the following line.
    DownloadFile(TextStream,FullClientFilePath,'1365M.txt');

    SummaryTextStream.WriteLine(FullClientFilePath);
    END;

    ...

    Değiştirme kodu 3

    ...        PartnerIdentification + '_' +
    FORMAT(TODAY,0,'<Year4,4><Month,2><Day,2>') + FileExtension;


    // Add the following line.
    DownloadFile(TextStream,FullClientFilePath,GetFormID(PeriodFrom) + '.txt');

    SummaryTextStream.WriteLine(FullClientFilePath);
    END;

    ...
  10. Form 1365 verme kod (14550) SetFolderLocation işlevinde kodu aşağıdaki gibi değiştirin:
    Varolan kodu 1

    ...      CLEAR(NotItemizedPurchaseVATAmount);
    END;


    // Delete the following line.
    LOCAL PROCEDURE SetFolderLocation@1360019(VAR ClientFileName@1360001 : Text[1024];VAR FileExtension@1360002 : Text[32]);

    VAR
    CommonDialogManagement@1360003 : Codeunit 412;
    DefaultFileType@1360004 : ' ,Text,Excel,Word,Custom,Xml,Htm,Xsd,Xslt';

    ...

    Değiştirme kodu 1

    ...      CLEAR(NotItemizedPurchaseVATAmount);
    END;


    // Add the following line.
    LOCAL PROCEDURE SetFolderLocation@1360019(PeriodFrom@1360000 : Date;VAR ClientFileName@1360001 : Text[1024];VAR FileExtension@1360002 : Text[32]);

    VAR
    CommonDialogManagement@1360003 : Codeunit 412;
    DefaultFileType@1360004 : ' ,Text,Excel,Word,Custom,Xml,Htm,Xsd,Xslt';

    ...

    Varolan kodu 2

    ...      Action@1360005 : 'Open,Save';
    BEGIN
    IF ClientFilePath <> '' THEN BEGIN

    // Delete the following line.
    ClientFileName := ClientFilePath + '\1365M';

    FileExtension := '.imp';
    END ELSE BEGIN
    ClientFileName := CommonDialogManagement.OpenFile('',ClientFileName,DefaultFileType::Custom,FileType,Action::Save);

    ...

    Değiştirme kodu 2

    ...      Action@1360005 : 'Open,Save';
    BEGIN
    IF ClientFilePath <> '' THEN BEGIN

    // Add the following line.
    ClientFileName := ClientFilePath + '\' + GetFormID(PeriodFrom);

    FileExtension := '.imp';
    END ELSE BEGIN
    ClientFileName := CommonDialogManagement.OpenFile('',ClientFileName,DefaultFileType::Custom,FileType,Action::Save);

    ...
  11. Form 1365 verme kod (14550) GetFormID işlevinde kodu aşağıdaki gibi değiştirin:
    Varolan kodu

    ...      EXIT(ROUND(Amount/1000,1));
    END;

    BEGIN
    END.
    }

    ...

    Kod değiştirme

    ...      EXIT(ROUND(Amount/1000,1));
    END;

    // Add the following lines.
    LOCAL PROCEDURE GetFormID@1360012(PeriodFrom@1360000 : Date) : Text[5];
    BEGIN
    EXIT(FORMAT(PeriodFrom,0,'<Year>') + '65M');
    END;
    // End of the lines.

    BEGIN
    END.
    }

    ...
  12. Macaristan MenuSuite (30) özelliklerinde kodu aşağıdaki gibi değiştirin:
    Varolan kodu

    ...                                                                NextNodeID=[{00000000-0000-0000-0000-000000000000}] }
    { ;[{698579F1-8311-4B43-AA7F-DA71B371DAB4}] ;NextNodeID=[{53D31DD1-62C5-45F8-AE69-D9716DFDAEFA}] }
    { MenuItem ;[{53D31DD1-62C5-45F8-AE69-D9716DFDAEFA}] ;Name=Export/Print VAT 1365M Statement;

    // Delete the following line.
    CaptionML=[ENU=Export/Print VAT 1365M Stmt.;

    HUN=1365M fakimutat s export l sa/nyomtat sa];
    MemberOfMenu=[{F8D2429D-034B-4C58-9B5E-81BE962DB1BC}];
    RunObjectType=Form;

    ...

    Kod değiştirme

    ...                                                                NextNodeID=[{00000000-0000-0000-0000-000000000000}] }
    { ;[{698579F1-8311-4B43-AA7F-DA71B371DAB4}] ;NextNodeID=[{53D31DD1-62C5-45F8-AE69-D9716DFDAEFA}] }
    { MenuItem ;[{53D31DD1-62C5-45F8-AE69-D9716DFDAEFA}] ;Name=Export/Print VAT 1365M Statement;

    // Add the following line.
    CaptionML=[ENU=Export/Print Item. VAT Stat.;

    HUN=1365M fakimutat s export l sa/nyomtat sa];
    MemberOfMenu=[{F8D2429D-034B-4C58-9B5E-81BE962DB1BC}];
    RunObjectType=Form;

    ...
  13. Bölüm – Macaristan MenuSuite (1030) özelliklerinde kodu aşağıdaki gibi değiştirin:
    Varolan kodu

    ...                                                                DepartmentCategory=Reports and Analysis }
    { ;[{698579F1-8311-4B43-AA7F-DA71B371DAB4}] ;NextNodeID=[{53D31DD1-62C5-45F8-AE69-D9716DFDAEFA}] }
    { MenuItem ;[{53D31DD1-62C5-45F8-AE69-D9716DFDAEFA}] ;Name=Export/Print VAT 1365M Statement;

    // Delete the following line.
    CaptionML=[ENU=Export/Print VAT 1365M Stmt.;

    HUN=1365M fakimutat s export l sa/nyomtat sa];
    MemberOfMenu=[{F8D2429D-034B-4C58-9B5E-81BE962DB1BC}];
    RunObjectType=Page;

    ...

    Değiştirme kodu 2

    ...                                                                DepartmentCategory=Reports and Analysis }
    { ;[{698579F1-8311-4B43-AA7F-DA71B371DAB4}] ;NextNodeID=[{53D31DD1-62C5-45F8-AE69-D9716DFDAEFA}] }
    { MenuItem ;[{53D31DD1-62C5-45F8-AE69-D9716DFDAEFA}] ;Name=Export/Print VAT 1365M Statement;

    // Add the following line.
    CaptionML=[ENU=Export/Print Item. VAT Stat.;

    HUN=1365M fakimutat s export l sa/nyomtat sa];
    MemberOfMenu=[{F8D2429D-034B-4C58-9B5E-81BE962DB1BC}];
    RunObjectType=Page;

    ...
  14. Verme/baskı 1365 M sayfa (14550) kodu aşağıdaki gibi değiştirin:
    Varolan kodu

    ...// Delete the following line.
    OBJECT Page 14550 Export/Print 1365M

    HUN=1365M fakimutat s export l sa/nyomtat sa];
    MemberOfMenu=[{F8D2429D-034B-4C58-9B5E-81BE962DB1BC}];
    RunObjectType=Page;

    ...

    Kod değiştirme

    ...                                                                DepartmentCategory=Reports and Analysis }
    { ;[{698579F1-8311-4B43-AA7F-DA71B371DAB4}] ;NextNodeID=[{53D31DD1-62C5-45F8-AE69-D9716DFDAEFA}] }
    { MenuItem ;[{53D31DD1-62C5-45F8-AE69-D9716DFDAEFA}] ;Name=Export/Print VAT 1365M Statement;

    // Add the following line.
    OBJECT Page 14550 Export/Print Item. VAT Stat.

    HUN=1365M fakimutat s export l sa/nyomtat sa];
    MemberOfMenu=[{F8D2429D-034B-4C58-9B5E-81BE962DB1BC}];
    RunObjectType=Page;

    ...
  15. Özellikleri kodda verme/baskı 1365 M sayfa (14550) aşağıdaki gibi değiştirin:
    Varolan kodu 2

    ...  }
    PROPERTIES
    {

    // Delete the following line.
    CaptionML=[ENU=Export/Print VAT 1365M Statement;

    HUN=1365M fakimutat s export l sa/nyomtat sa];
    PageType=Card;
    OnInit=BEGIN

    ...

    Değiştirme kodu 2

    ...  }
    PROPERTIES
    {

    // Add the following line.
    CaptionML=[ENU=Export/Print Item. VAT Stat.;

    HUN=1365M fakimutat s export l sa/nyomtat sa];
    PageType=Card;
    OnInit=BEGIN

    ...

Önkoşullar

Bu düzeltmeyi uygulamak için Microsoft Dynamics NAV 2009 R2 Macarca sürümündeki olması gerekir.

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.

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. Kullanım koşullarıdiğer konular için bkz.

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!

×