メイン コンテンツへスキップ
サポート
Microsoft アカウントでサインイン
サインインまたはアカウントを作成してください。
こんにちは、
別のアカウントを選択してください。
複数のアカウントがあります
サインインに使用するアカウントを選択してください。

この資料は、Microsoft Dynamics nav スペイン語 (es) の言語ロケールに当てはまります。

現象

スペイン語版の Microsoft Dynamics NAV の 2013 のレポート 205 と 405 のレポートを実行すると列見出しが表示されない前払 VAT 量の仕様に記載します。

解決策

修正プログラムの情報

サポートされている修正プログラムはマイクロソフトから現在入手可能です。ただし、この資料に記載されている問題を解決するためのものはのみ。この特定の問題が発生したシステムにのみ適用してください。この修正プログラムは、今後さらにテストを行うことがあります。この問題で深刻な影響を受けていない場合は、次の Microsoft Dynamics NAV 2013 service pack または修正プログラムを含む次の Microsoft Dynamics NAV バージョン待つことを勧めします。

注: かかる料金が免除されるテクニカル サポート担当者 Microsoft Dynamics および関連製品のことは、通常は特別な場合は、特定の更新プログラムは、問題を解決するにを決定します。追加の質問および問題の特定のアップデートの対象にはなりませんが、通常のサポート料金が適用されます。


インストール情報

マイクロソフトでは解説することのみを目的としてプログラミング例を提供しています。暗示あるいは明示していることに対しての保証はしておりません。ここで言う保証とは、特定の目的に対する商品性や適合性の暗示的保証を含んでいますが、それに限定されるわけではありません。この資料では、例示されているプログラミング言語およびプロシージャの作成やデバッグに使用するツールにお客様が精通していることを前提としています。マイクロソフトのサポート エンジニアは、特定のプロシージャの機能について説明することができます。ただし、お客様固有の要件を満たすために、追加機能の提供またはプロシージャの作成のために、これらの例に変更を加えたりはしません。

注: この修正プログラムをインストールする前に、Microsoft Navision のすべてのクライアント ユーザーがシステムの電源を記録することを確認します。これには、Microsoft Navision アプリケーション サービス (NAS) クライアントのユーザーが含まれます。この修正プログラムを実装すると、ログオンしている唯一のクライアント ユーザーが必要です。

この修正プログラムを実装するには、開発者用のライセンスが必要です。

ユーザー アカウントまたはデータベース ログイン ウィンドウに Windows のログイン ウィンドウにある「スーパー」ロール id を割り当てられていることをお勧めします。ユーザー アカウントには、「スーパー」ロール ID を割り当てることができません、する場合は、ユーザー アカウントが次のアクセス許可を持っているを確認する必要があります。

  • 変更するオブジェクトの変更のアクセス許可。

  • システム オブジェクトの ID 5210オブジェクトおよびシステム オブジェクトの ID 9015オブジェクトの実行が許可されます。



注: データの修復を実行する必要があるない限り、データ ストアへの権限を持っている必要はありません。

コードの変更

注: 常にテスト コードを修正、管理された環境で適用する前に、運用コンピューターに修正プログラムします。
この問題を解決するには、次の手順を実行します。

  1. 注文確認レポート (205) のプロパティのコードを次のように変更します。
    既存のコード

    ...                 SourceExpr=PrepmtVATAmountLine."VAT Identifier" }

    { 191 ;4 ;Column ;PrepaymentVATAmtSpecCaption;
    SourceExpr=PrepaymentVATAmtSpecCaptionLbl }

    { 7808;3 ;DataItem;PrepmtTotal ;
    DataItemTable=Table2000000026;
    DataItemTableView=SORTING(Number)
    WHERE(Number=CONST(1));
    OnPreDataItem=BEGIN
    ...

    置換用コード

    ...                 SourceExpr=PrepmtVATAmountLine."VAT Identifier" }

    { 191 ;4 ;Column ;PrepaymentVATAmtSpecCaption;
    SourceExpr=PrepaymentVATAmtSpecCaptionLbl }

    // Add the following lines.
    { 1101001;4;Column ;PrepmtVATPercentCaption;
    SourceExpr=VATPecrentCaptionLbl }

    { 1101002;4;Column ;PrepmtVATBaseCaption;
    SourceExpr=VATECBaseCaptionLbl }

    { 1101003;4;Column ;PrepmtVATAmtCaption ;
    SourceExpr=VATAmountCaptionLbl }

    { 1101004;4;Column ;PrepmtVATIdentCaption;
    SourceExpr=VATIdentifierCaptionLbl }

    { 1101005;4;Column ;PrepmtLineAmtCaption;
    SourceExpr=LineAmountCaptionLbl }

    { 1101006;4;Column ;PrepmtTotalCaption ;
    SourceExpr=TotalCaptionLbl }

    // End of the lines.

    { 7808;3 ;DataItem;PrepmtTotal ;
    DataItemTable=Table2000000026;
    DataItemTableView=SORTING(Number)
    WHERE(Number=CONST(1));
    OnPreDataItem=BEGIN
    ...

  2. 注文確認レポート (205) 内のBlanksForIndent関数内のコードを次のように変更します。
    既存のコード 1

    ...            <DataField>VATIdentifier_PrepmtVATAmtLine</DataField>
    </Field>
    <Field Name="PrepaymentVATAmtSpecCaption">
    <DataField>PrepaymentVATAmtSpecCaption</DataField>
    </Field>
    <Field Name="PrepmtPaymentTermsDesc">
    <DataField>PrepmtPaymentTermsDesc</DataField>
    </Field>
    <Field Name="PrepmtPaymentTermsCaption">
    <DataField>PrepmtPaymentTermsCaption</DataField>
    ...

    置換用コード 1

    ...            <DataField>VATIdentifier_PrepmtVATAmtLine</DataField>
    </Field>
    <Field Name="PrepaymentVATAmtSpecCaption">
    <DataField>PrepaymentVATAmtSpecCaption</DataField>
    </Field>

    // Add the following lines.
    <Field Name="PrepmtVATPercentCaption">
    <DataField>PrepmtVATPercentCaption</DataField>
    </Field>
    <Field Name="PrepmtVATBaseCaption">
    <DataField>PrepmtVATBaseCaption</DataField>
    </Field>
    <Field Name="PrepmtVATAmtCaption">
    <DataField>PrepmtVATAmtCaption</DataField>
    </Field>
    <Field Name="PrepmtVATIdentCaption">
    <DataField>PrepmtVATIdentCaption</DataField>
    </Field>
    <Field Name="PrepmtLineAmtCaption">
    <DataField>PrepmtLineAmtCaption</DataField>
    </Field>
    <Field Name="PrepmtTotalCaption">
    <DataField>PrepmtTotalCaption</DataField>
    </Field>
    // End of the lines.

    <Field Name="PrepmtPaymentTermsDesc">
    <DataField>PrepmtPaymentTermsDesc</DataField>
    </Field>
    <Field Name="PrepmtPaymentTermsCaption">
    <DataField>PrepmtPaymentTermsCaption</DataField>
    ...

    既存のコード 2

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Delete the following line.
    <Value>=Fields!VATIdentifierCaption.Value</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    置換用コード 2

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Add the following line.
    <Value>=Fields!PrepmtVATIdentCaption.Value</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    既存のコード 3

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Delete the following line.
    <Value>=Fields!VATPecrentCaption.Value</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    置換用コード 3

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Add the following line.
    <Value>=Fields!PrepmtVATPercentCaption.Value</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    既存コード 4

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Delete the following line.
    <Value>=Fields!LineAmountCaption.Value</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    置換用コード 4

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Add the following line.
    <Value>=Fields!PrepmtLineAmtCaption.Value</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    既存コード 5

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Delete the following line.
    <Value>=Fields!VATBaseCaption.Value</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    置換用コード 5

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Add the following line.
    <Value>=Fields!PrepmtVATBaseCaption.Value</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    既存のコード 6

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Delete the following line.
    <Value>=Fields!VATAmountCaption.Value</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    置換用コード 6

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Add the following line.
    <Value>=Fields!PrepmtVATAmtCaption.Value</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    既存コード 7

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Delete the following line.
    <Value>=Fields!TotalCaption.Value</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    置換用コード 7

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Add the following line.
    <Value>=Fields!PrepmtTotalCaption.Value</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

  3. 注文レポート (405) のプロパティのコードを次のように変更します。
    既存のコード

    ...                 SourceExpr=PrepmtVATAmountLine."VAT Identifier" }

    { 203 ;4 ;Column ;PrepmtVATAmtSpecCaption;
    SourceExpr=PrepmtVATAmtSpecCaptionLbl }

    { 7808;3 ;DataItem;PrepmtTotal ;
    DataItemTable=Table2000000026;
    DataItemTableView=SORTING(Number)
    WHERE(Number=CONST(1));
    OnPreDataItem=BEGIN
    ...

    置換用コード

    ...                 SourceExpr=PrepmtVATAmountLine."VAT Identifier" }

    { 203 ;4 ;Column ;PrepmtVATAmtSpecCaption;
    SourceExpr=PrepmtVATAmtSpecCaptionLbl }

    // Add the following lines.
    { 1101001;4;Column ;PrepmtVATPercentCaption;
    SourceExpr=VATPercentCaptionLbl }

    { 1101002;4;Column ;PrepmtVATBaseCaption;
    SourceExpr=VATBaseCaptionLbl }

    { 1101003;4;Column ;PrepmtVATAmtCaption ;
    SourceExpr=VATAmtCaptionLbl }

    { 1101004;4;Column ;PrepmtVATIdentCaption;
    SourceExpr=VATIdentCaptionLbl }

    { 1101005;4;Column ;PrepmtLineAmtCaption;
    SourceExpr=LineAmtCaptionLbl }

    { 1101006;4;Column ;PrepmtTotalCaption ;
    SourceExpr=TotalCaptionLbl }

    // End of the lines.

    { 7808;3 ;DataItem;PrepmtTotal ;
    DataItemTable=Table2000000026;
    DataItemTableView=SORTING(Number)
    WHERE(Number=CONST(1));
    OnPreDataItem=BEGIN
    --------------------------------------------------------------------------------

    ...

  4. 注文レポート (405) のInitializeRequest関数のコードを次のように変更します。
    既存のコード 1

    ...            <DataField>PrepmtVATAmtLineVATIdentifier</DataField>
    </Field>
    <Field Name="PrepmtVATAmtSpecCaption">
    <DataField>PrepmtVATAmtSpecCaption</DataField>
    </Field>
    </Fields>
    <Query>
    <DataSourceName>DataSource</DataSourceName>
    <CommandText />
    </Query>
    ...

    置換用コード 1

    ...            <DataField>PrepmtVATAmtLineVATIdentifier</DataField>
    </Field>
    <Field Name="PrepmtVATAmtSpecCaption">
    <DataField>PrepmtVATAmtSpecCaption</DataField>
    </Field>

    // Add the following lines.
    <Field Name="PrepmtVATPercentCaption">
    <DataField>PrepmtVATPercentCaption</DataField>
    </Field>
    <Field Name="PrepmtVATBaseCaption">
    <DataField>PrepmtVATBaseCaption</DataField>
    </Field>
    <Field Name="PrepmtVATAmtCaption">
    <DataField>PrepmtVATAmtCaption</DataField>
    </Field>
    <Field Name="PrepmtVATIdentCaption">
    <DataField>PrepmtVATIdentCaption</DataField>
    </Field>
    <Field Name="PrepmtLineAmtCaption">
    <DataField>PrepmtLineAmtCaption</DataField>
    </Field>
    <Field Name="PrepmtTotalCaption">
    <DataField>PrepmtTotalCaption</DataField>
    </Field>
    // End of the lines.

    </Fields>
    <Query>
    <DataSourceName>DataSource</DataSourceName>
    <CommandText />
    </Query>
    ...

    既存のコード 2

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Delete the following line.
    <Value>=First(Fields!VATIdentCaption.Value)</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    置換用コード 2

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Add the following line.
    <Value>=First(Fields!PrepmtVATIdentCaption.Value)</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    既存のコード 3

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Delete the following line.
    <Value>=First(Fields!VATPercentCaption.Value)</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    置換用コード 3

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Add the following line.
    <Value>=First(Fields!PrepmtVATPercentCaption.Value)</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    既存コード 4

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Delete the following line.
    <Value>=First(Fields!LineAmtCaption.Value)</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    置換用コード 4

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Add the following line.
    <Value>=First(Fields!PrepmtLineAmtCaption.Value)</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    既存コード 5

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Delete the following line.
    <Value>=First(Fields!VATBaseCaption.Value)</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    置換用コード 5

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Add the following line.
    <Value>=First(Fields!PrepmtVATBaseCaption.Value)</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    既存のコード 6

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Delete the following line.
    <Value>=First(Fields!VATAmtCaption.Value)</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    置換用コード 6

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Add the following line.
    <Value>=First(Fields!PrepmtVATAmtCaption.Value)</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    既存コード 7

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Delete the following line.
    <Value>=First(Fields!TotalCaption.Value)</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>

    置換用コード 7

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Add the following line.+ <Value>=First(Fields!PrepmtTotalCaption.Value)</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

必要条件

スペイン語版の Microsoft Dynamics NAV 2013 がこの修正プログラムを適用するためにインストールする必要があります。

アンインストール情報

この修正プログラムを削除することはできません。

状況

マイクロソフトは、この問題を「対象製品」セクションに記載されているマイクロソフト製品の問題として認識しています。

注: これは、マイクロソフト サポートの組織内から直接作成した「高速公開」の資料です。ここに含まれる情報は、新たに発生している問題に応じて現状のまま提供されています。速やかに利用できるようにした結果として、内容には誤植が含まれている可能性があり、事前告知なしで改訂する場合があります。その他の考慮事項については、使用条件を参照してください。

ヘルプを表示

その他のオプションが必要ですか?

サブスクリプションの特典の参照、トレーニング コースの閲覧、デバイスのセキュリティ保護方法などについて説明します。

コミュニティは、質問をしたり質問の答えを得たり、フィードバックを提供したり、豊富な知識を持つ専門家の意見を聞いたりするのに役立ちます。

この情報は役に立ちましたか?

言語の品質にどの程度満足していますか?
どのような要因がお客様の操作性に影響しましたか?
[送信] を押すと、Microsoft の製品とサービスの改善にフィードバックが使用されます。 IT 管理者はこのデータを収集できます。 プライバシーに関する声明。

フィードバックをいただき、ありがとうございます。

×