適用先
Dynamics NAV 2013

この資料は、スペイン語 (es) の地域の Microsoft Dynamics NAV に適用されます。

現象

選択すると、ショー AutoInvoices と Autocr。 メモスペイン語版の Microsoft Dynamics NAV 2013 年レポートで売上請求書帳レポートのオプションでは、AutoInvoices と AutoCreditMemos の無効なシリアル番号合計値が表示されます。

解決策

修正プログラムの情報

サポートされている修正プログラムはマイクロソフトから現在入手可能です。ただし、この資料に記載されている問題を解決するためのものはのみ。この特定の問題が発生したシステムにのみ適用してください。この修正プログラムは、今後さらにテストを行うことがあります。この問題で深刻な影響を受けていない場合は、次の Microsoft Dynamics NAV 2013 service pack または修正プログラムを含む次の Microsoft Dynamics NAV バージョン待つことを勧めします。注: かかる料金が免除されるテクニカル サポート担当者 Microsoft Dynamics および関連製品のことは、通常は特別な場合は、特定の更新プログラムは、問題を解決するにを決定します。追加の質問および問題の特定のアップデートの対象にはなりませんが、通常のサポート料金が適用されます。

インストール情報

マイクロソフトでは解説することのみを目的としてプログラミング例を提供しています。暗示あるいは明示していることに対しての保証はしておりません。ここで言う保証とは、特定の目的に対する商品性や適合性の暗示的保証を含んでいますが、それに限定されるわけではありません。この資料では、例示されているプログラミング言語およびプロシージャの作成やデバッグに使用するツールにお客様が精通していることを前提としています。マイクロソフトのサポート エンジニアは、特定のプロシージャの機能について説明することができます。ただし、お客様固有の要件を満たすために、追加機能の提供またはプロシージャの作成のために、これらの例に変更を加えたりはしません。注: この修正プログラムをインストールする前に、Microsoft Dynamics NAV のすべてのクライアント ユーザーがシステムの電源を記録することを確認します。これには、Microsoft Dynamics NAV アプリケーション サーバー (NAS) のサービスが含まれます。この修正プログラムを実装すると、ログオンしている唯一のクライアント ユーザーが必要です。この修正プログラムを実装するには、開発者用のライセンスが必要です。ユーザー アカウントまたはデータベース ログイン ウィンドウに Windows のログイン ウィンドウにある「スーパー」ロール id を割り当てられていることをお勧めします。ユーザー アカウントには、「スーパー」ロール ID を割り当てることができません、する場合は、ユーザー アカウントが次のアクセス許可を持っているを確認する必要があります。

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

  • 実行のアクセス許可、システム オブジェクトの ID 5210オブジェクトおよびシステム オブジェクトの ID 9015オブジェクトです。

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

コードの変更

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

  1. 次のように売上請求書帳レポート (10704) のプロパティのコードを変更します。既存のコード

    ...SourceExpr=VATBuffer2.Base + VATBuffer2.Amount }      { 1170000028;3;Column;Integer2__Number   ;                 SourceExpr=Number }// Delete the following lines.     { 113 ;3   ;Column  ;TotalCaption_Control113;                SourceExpr=TotalCaption_Control113Lbl }// End of the deleted lines.    }    REQUESTPAGE    {      PROPERTIES      {...

    置換用コード

    ...SourceExpr=VATBuffer2.Base + VATBuffer2.Amount }      { 1170000028;3;Column;Integer2__Number   ;                 SourceExpr=Number }    }    REQUESTPAGE    {      PROPERTIES      {...
  2. 次のようにグローバル変数で、売上請求書帳レポート (10704) のコードを変更します。既存のコード 1

    ...ContinuedCaption_Control129Lbl@6504 : TextConst 'ENU=Continued;ESP=Continuaci¢n';        No_SerieCaptionLbl@1947 : TextConst 'ENU=No.Serie;ESP=Nos. serie';        TotalCaption_Control99Lbl@8494 : TextConst 'ENU=Total;ESP=Total';        No_SerieCaption_Control100Lbl@2401 : TextConst 'ENU=No.Serie;ESP=Nos. serie';        ContinuedCaption_Control117Lbl@4855 : TextConst 'ENU=Continued;ESP=Continuaci¢n';// Delete the following line.       TotalCaption_Control113Lbl@4508 : TextConst 'ENU=Total;ESP=Total';// End of the deleted line.      BEGIN      {        <changelog>          <add id="ES0001" dev="VGARCA" date="2004-08-27" area="AUTOINV"  request="ES-START-40"...

    置換用コード 1

    ...ContinuedCaption_Control129Lbl@6504 : TextConst 'ENU=Continued;ESP=Continuaci¢n';        No_SerieCaptionLbl@1947 : TextConst 'ENU=No.Serie;ESP=Nos. serie';        TotalCaption_Control99Lbl@8494 : TextConst 'ENU=Total;ESP=Total';        No_SerieCaption_Control100Lbl@2401 : TextConst 'ENU=No.Serie;ESP=Nos. serie';        ContinuedCaption_Control117Lbl@4855 : TextConst 'ENU=Continued;ESP=Continuaci¢n';      BEGIN      {        <changelog>          <add id="ES0001" dev="VGARCA" date="2004-08-27" area="AUTOINV"  request="ES-START-40"...

    既存のコード 2

    ...<DataField>VATBuffer2_Base_VATBuffer2_Amount_Control116Format</DataField>          </Field>          <Field Name="Integer2__Number">            <DataField>Integer2__Number</DataField>          </Field>// Delete the following lines.         <Field Name="TotalCaption_Control113">           <DataField>TotalCaption_Control113</DataField>         </Field>// End of the deleted lines.        </Fields>        <rd:DataSetInfo>          <rd:DataSetName>DataSet</rd:DataSetName>          <rd:SchemaPath>Report.xsd</rd:SchemaPath>          <rd:TableName>Result</rd:TableName>...

    置換用コード 2

    ...<DataField>VATBuffer2_Base_VATBuffer2_Amount_Control116Format</DataField>          </Field>          <Field Name="Integer2__Number">            <DataField>Integer2__Number</DataField>          </Field>        </Fields>        <rd:DataSetInfo>          <rd:DataSetName>DataSet</rd:DataSetName>          <rd:SchemaPath>Report.xsd</rd:SchemaPath>          <rd:TableName>Result</rd:TableName>...

    既存のコード 3

    ...<TextRun>                                <Value>=SUM(Fields!VATBuffer2_Base.Value)</Value>                                <Style>                                  <FontSize>7pt</FontSize>                                  <FontWeight>Bold</FontWeight>// Delete the following line.                                 <Format>=Last(Fields!VATBuffer2_BaseFormat.Value)</Format>// End of the deleted line.                                </Style>                              </TextRun>                            </TextRuns>                          </Paragraph>                        </Paragraphs>...

    置換用コード 3

    ...<TextRun>                                <Value>=SUM(Fields!VATBuffer2_Base.Value)</Value>                                <Style>                                  <FontSize>7pt</FontSize>                                  <FontWeight>Bold</FontWeight>// Add the following line.                                 <Format>N</Format>// End of the added line.                                </Style>                              </TextRun>                            </TextRuns>                          </Paragraph>                        </Paragraphs>...

    既存コード 4

    ...<KeepTogether>true</KeepTogether>                        <Paragraphs>                          <Paragraph>                            <TextRuns>                              <TextRun>// Delete the following line.                               <Value>=Fields!TotalCaption_Control113.Value</Value>// End of the deleted line.                                <Style>                                  <FontSize>7pt</FontSize>                                </Style>                              </TextRun>                            </TextRuns>...

    置換用コード 4

    ...<KeepTogether>true</KeepTogether>                        <Paragraphs>                          <Paragraph>                            <TextRuns>                              <TextRun>// Add the following line.                               <Value>=Fields!TotalCaption.Value</Value>// End of the added line.                                <Style>                                  <FontSize>7pt</FontSize>                                </Style>                              </TextRun>                            </TextRuns>...

    既存コード 5

    ...<TextRuns>                              <TextRun>                                <Value>=SUM(Fields!VATBuffer2_Base_Control86.Value)</Value>                                <Style>                                  <FontSize>7pt</FontSize>// Delete the following line.                                 <Format>=Fields!VATBuffer2_Base_Control86Format.Value</Format>// End of the deleted line.                                </Style>                              </TextRun>                            </TextRuns>                          </Paragraph>                        </Paragraphs>...

    置換用コード 5

    ...<TextRuns>                              <TextRun>                                <Value>=SUM(Fields!VATBuffer2_Base_Control86.Value)</Value>                                <Style>                                  <FontSize>7pt</FontSize>// Add the following lines.                                 <FontWeight>Bold</FontWeight>                                 <Format>N</Format>// End of the added lines.                                </Style>                              </TextRun>                            </TextRuns>                          </Paragraph>                        </Paragraphs>...

    既存のコード 6

    ...<TextRuns>                              <TextRun>                                <Value>=Code.BlankZero(SUM(Fields!VATBuffer2_Amount_Control83.Value))</Value>                                <Style>                                  <FontSize>7pt</FontSize>                                  <Format>N</Format>                                </Style>                              </TextRun>                            </TextRuns>                          </Paragraph>...

    置換用コード 6

    ...<TextRuns>                              <TextRun>                                <Value>=Code.BlankZero(SUM(Fields!VATBuffer2_Amount_Control83.Value))</Value>                                <Style>                                  <FontSize>7pt</FontSize>// Add the following line.                                 <FontWeight>Bold</FontWeight>// End of the added line.                                  <Format>N</Format>                                </Style>                              </TextRun>                            </TextRuns>                          </Paragraph>...

    既存コード 7

    ...<TextRuns>                              <TextRun>                                <Value>=SUM(Fields!VATBuffer2_Base_VATBuffer2_Amount_Control82.Value)</Value>                                <Style>                                  <FontSize>7pt</FontSize>                                  <Format>N</Format>                                </Style>                              </TextRun>                            </TextRuns>                          </Paragraph>...

    置換用コード 7

    ...<TextRuns>                              <TextRun>                                <Value>=SUM(Fields!VATBuffer2_Base_VATBuffer2_Amount_Control82.Value)</Value>                                <Style>                                  <FontSize>7pt</FontSize>// Add the following line.                                 <FontWeight>Bold</FontWeight>// End of the added line.                                  <Format>N</Format>                                </Style>                              </TextRun>                            </TextRuns>                          </Paragraph>...

    既存コード 8

    ...<TextRun>                                <Value>=SUM(Fields!VATBuffer2_Base.Value)</Value>                                <Style>                                  <FontSize>7pt</FontSize>                                  <FontWeight>Bold</FontWeight>// Delete the following line.                                 <Format>=Fields!Base_Base2Format.Value</Format>// End of the deleted line.                                </Style>                              </TextRun>                            </TextRuns>                          </Paragraph>                        </Paragraphs>...

    置換用コード 8

    ...<TextRun>                                <Value>=SUM(Fields!VATBuffer2_Base.Value)</Value>                                <Style>                                  <FontSize>7pt</FontSize>                                  <FontWeight>Bold</FontWeight>// Add the following line.                                 <Format>N</Format>// End of the added line.                                </Style>                              </TextRun>                            </TextRuns>                          </Paragraph>                        </Paragraphs>...

    既存コード 9

    ...<KeepWithGroup>After</KeepWithGroup>                        <KeepTogether>true</KeepTogether>                      </TablixMember>                      <TablixMember>                        <Visibility>// Delete the following line.                         <Hidden>=IIF(Fields!AutoDocNo_Control91.Value="",TRUE,FALSE)</Hidden>// End of the deleted line.                        </Visibility>                        <KeepWithGroup>After</KeepWithGroup>                        <KeepTogether>true</KeepTogether>                      </TablixMember>                      <TablixMember>...

    置換用コード 9

    ...<KeepWithGroup>After</KeepWithGroup>                        <KeepTogether>true</KeepTogether>                      </TablixMember>                      <TablixMember>                        <Visibility>// Add the following line.                         <Hidden>=IIF(LAST(Fields!AutoDocNo_Control91.Value)="",TRUE,FALSE)</Hidden>// End of the added line.                        </Visibility>                        <KeepWithGroup>After</KeepWithGroup>                        <KeepTogether>true</KeepTogether>                      </TablixMember>                      <TablixMember>...

    既存のコード 10

    ...<KeepWithGroup>After</KeepWithGroup>                        <KeepTogether>true</KeepTogether>                      </TablixMember>                      <TablixMember>                        <Visibility>// Delete the following line.                         <Hidden>=IIF(Fields!AutoDocNo_Control91.Value="",TRUE,FALSE)</Hidden>// End of the deleted line.                        </Visibility>                        <KeepWithGroup>After</KeepWithGroup>                        <KeepTogether>true</KeepTogether>                      </TablixMember>                      <TablixMember>...

    置換用コード 10

    ...<KeepWithGroup>After</KeepWithGroup>                        <KeepTogether>true</KeepTogether>                      </TablixMember>                      <TablixMember>                        <Visibility>// Add the following line.                         <Hidden>=IIF(LAST(Fields!AutoDocNo_Control91.Value)="",TRUE,FALSE)</Hidden>// End of the added line.                        </Visibility>                        <KeepWithGroup>After</KeepWithGroup>                        <KeepTogether>true</KeepTogether>                      </TablixMember>                      <TablixMember>...

    既存のコード 11

    ...<KeepWithGroup>Before</KeepWithGroup>                        <KeepTogether>true</KeepTogether>                      </TablixMember>                      <TablixMember>                        <Visibility>// Delete the following line.                         <Hidden>=IIF(Fields!AutoDocNo_Control91.Value="",TRUE,FALSE)</Hidden>// End of the deleted line.                        </Visibility>                        <KeepWithGroup>Before</KeepWithGroup>                        <KeepTogether>true</KeepTogether>                      </TablixMember>                    </TablixMembers>...

    置換用コード 11

    ...<KeepWithGroup>Before</KeepWithGroup>                        <KeepTogether>true</KeepTogether>                      </TablixMember>                      <TablixMember>                        <Visibility>// Add the following line.                         <Hidden>=IIF(LAST(Fields!AutoDocNo_Control91.Value)="",TRUE,FALSE)</Hidden>// End of the added line.                        </Visibility>                        <KeepWithGroup>Before</KeepWithGroup>                        <KeepTogether>true</KeepTogether>                      </TablixMember>                    </TablixMembers>...

    既存コード 12

    ...<KeepWithGroup>Before</KeepWithGroup>                    <KeepTogether>true</KeepTogether>                  </TablixMember>                  <TablixMember>                    <Visibility>// Delete the following line.                     <Hidden>=iif(Fields!AutoDocNo.Value="" or (Fields!ShowAutoInvCred.Value=TRUE and Fields!SortPostDate.Value=TRUE),TRUE,FALSE)</Hidden>// End of the deleted line.                    </Visibility>                    <KeepWithGroup>Before</KeepWithGroup>                    <KeepTogether>true</KeepTogether>                  </TablixMember>                </TablixMembers>...

    置換用コード 12

    ...<KeepWithGroup>Before</KeepWithGroup>                    <KeepTogether>true</KeepTogether>                  </TablixMember>                  <TablixMember>                    <Visibility>// Add the following line.                     <Hidden>=iif(LAST(Fields!AutoDocNo.Value)="" or (Fields!ShowAutoInvCred.Value=TRUE and Fields!SortPostDate.Value=TRUE),TRUE,FALSE)</Hidden>// End of the added line.                    </Visibility>                    <KeepWithGroup>Before</KeepWithGroup>                    <KeepTogether>true</KeepTogether>                  </TablixMember>                </TablixMembers>...

必要条件

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

アンインストール情報

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

状況

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

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

ヘルプを表示

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

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