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

選択すると、"表示する AutoInvoices と Autocr。RTC クライアント] で、スペイン語版の Microsoft Dynamics NAV 2009 では、シリアル番号、明細行の合計の売上請求書帳レポートをプレビューするのにはメモ型] オプションを表示することはできません。この問題を解決するためにコードの変更] セクションで手順を実行します。この問題は、次の製品で発生します。

  • Microsoft Dynamics NAV 2009 の R2 のスペイン語版

  • Microsoft Dynamics NAV 2009 の SP1 のスペイン語版

解決策

修正プログラムの情報

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

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

インストール情報

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

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

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

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

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

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

    オブジェクトです。

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

コードの変更

注常にテスト コードの修正プログラムの制御された環境で、運用コンピューターに修正プログラムを適用する前にします。変更を適用するには、前に SEPA のすべての更新プログラムをインポートしてください。

この問題を解決するには、売上請求書帳レポート (10704) のグローバル変数内のコードを変更します。

既存のコード 1

... END.
}
RDLDATA
{
<?xml version="1.0" encoding="utf-8"?>

// Delete the following line.
<Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition" xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner">
// End of the deleted line.

<Body>
<Height>6.345cm</Height>
<ReportItems>
<Textbox Name="AuxVatEntry">
<Height>0.423cm</Height>
...

置換用コード 1

...END.
}
RDLDATA
{
<?xml version="1.0" encoding="utf-8"?>

// Add the following line.
<Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition" xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner">
// End of the added line.

<Body>
<Height>6.345cm</Height>
<ReportItems>
<Textbox Name="AuxVatEntry">
<Height>0.423cm</Height>
...

既存のコード 2

... <ReportItems>
<Textbox Name="textbox211">
<Style>
<FontSize>7pt</FontSize>
<FontWeight>700</FontWeight>

// Delete the following line.
<Format>=Fields!Base_Base2Format.Value</Format>
// End of the deleted line.

<PaddingBottom>2pt</PaddingBottom>
<PaddingRight>4pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<VerticalAlign>Middle</VerticalAlign>
</Style>
...

置換用コード 2

...<ReportItems>
<Textbox Name="textbox211">
<Style>
<FontSize>7pt</FontSize>
<FontWeight>700</FontWeight>

// Add the following line.
<Format>N</Format>
// End of the added line.

<PaddingBottom>2pt</PaddingBottom>
<PaddingRight>4pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<VerticalAlign>Middle</VerticalAlign>
</Style>
...

既存のコード 3

...<ReportItems>
<Textbox Name="textbox83">
<Style>
<FontSize>7pt</FontSize>
<FontWeight>700</FontWeight>

// Delete the following line.
<Format>=Fields!VATBuffer4_BaseFormat.Value</Format>
// End of the deleted line.

<PaddingBottom>2pt</PaddingBottom>
<PaddingRight>4pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<VerticalAlign>Middle</VerticalAlign>
</Style>
...

置換用コード 3

... <ReportItems>
<Textbox Name="textbox83">
<Style>
<FontSize>7pt</FontSize>
<FontWeight>700</FontWeight>

// Add the following line.
<Format>N</Format>
// End of the added line.

<PaddingBottom>2pt</PaddingBottom>
<PaddingRight>4pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<VerticalAlign>Middle</VerticalAlign>
</Style>
...

既存コード 4

...</Textbox>
</ReportItems>
</TableCell>
</TableCells>
<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>
</TableRow>
</TableRows>
</Footer>
<Grouping Name="Table1_Group2">
...

置換用コード 4

...</Textbox>
</ReportItems>
</TableCell>
</TableCells>
<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>
</TableRow>
</TableRows>
</Footer>
<Grouping Name="Table1_Group2">
...

既存コード 5

...<ReportItems>
<Textbox Name="textbox332">
<Style>
<FontSize>7pt</FontSize>
<FontWeight>700</FontWeight>

// Delete the following line.
<Format>=Last(Fields!VATBuffer2_BaseFormat.Value)</Format>
// End of the deleted line.

<PaddingBottom>2pt</PaddingBottom>
<PaddingRight>4pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<VerticalAlign>Middle</VerticalAlign>
</Style>
...

置換用コード 5

...<ReportItems>
<Textbox Name="textbox332">
<Style>
<FontSize>7pt</FontSize>
<FontWeight>700</FontWeight>

// Add the following line.
<Format>N</Format>
// End of the added line.

<PaddingBottom>2pt</PaddingBottom>
<PaddingRight>4pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<VerticalAlign>Middle</VerticalAlign>
</Style>
...

既存のコード 6

...</Textbox>
</ReportItems>
</TableCell>
</TableCells>
<Visibility>

// Delete the following line.
<Hidden>=iif(Fields!SortPostDate.Value,TRUE,FALSE) OR iif(Fields!VATEntry__No__Series_Caption.Value="",TRUE,FALSE)</Hidden>
// End of the deleted line.

</Visibility>
</TableRow>
<TableRow>
<Height>0.423cm</Height>
<TableCells>
...

置換用コード 6

...</Textbox>
</ReportItems>
</TableCell>
</TableCells>
<Visibility>

// Add the following line.
<Hidden>=iif(LAST(Fields!SortPostDate.Value),TRUE,FALSE) OR iif(Fields!VATEntry__No__Series_Caption.Value="",TRUE,FALSE)</Hidden>
// End of the added line.

</Visibility>
</TableRow>
<TableRow>
<Height>0.423cm</Height>
<TableCells>
...

既存コード 7

... <PaddingRight>4pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<TextAlign>Left</TextAlign>
<VerticalAlign>Middle</VerticalAlign>
</Style>

// Delete the following line.
<Value>=Fields!TotalCaption_Control113.Value</Value>
// End of the deleted line.

<ZIndex>27</ZIndex>
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
...

置換用コード 7

...<PaddingRight>4pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<TextAlign>Left</TextAlign>
<VerticalAlign>Middle</VerticalAlign>
</Style>

// Add the following line.
<Value>=Fields!TotalCaption.Value</Value>
// End of the added line.

<ZIndex>27</ZIndex>
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
...

既存コード 8

... <ColSpan>2</ColSpan>
<ReportItems>
<Textbox Name="textbox271">
<Style>
<FontSize>7pt</FontSize>

// Delete the following line.
<Format>=Fields!VATBuffer2_Base_Control86Format.Value</Format>
// End of the deleted line.

<PaddingBottom>2pt</PaddingBottom>
<PaddingRight>4pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<VerticalAlign>Middle</VerticalAlign>
</Style>
...

置換用コード 8

...<ColSpan>2</ColSpan>
<ReportItems>
<Textbox Name="textbox271">
<Style>
<FontSize>7pt</FontSize>

// Add the following lines.
<FontWeight>700</FontWeight>
<Format>N</Format>
// End of the added lines.

<PaddingBottom>2pt</PaddingBottom>
<PaddingRight>4pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<VerticalAlign>Middle</VerticalAlign>
</Style>
...

既存コード 9

...<ReportItems>
<Textbox Name="textbox285">
<CanGrow>true</CanGrow>
<Style>
<FontSize>7pt</FontSize>
<Format>N</Format>
<PaddingBottom>2pt</PaddingBottom>
<PaddingRight>4pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<VerticalAlign>Middle</VerticalAlign>
...

置換用コード 9

...<ReportItems>
<Textbox Name="textbox285">
<CanGrow>true</CanGrow>
<Style>
<FontSize>7pt</FontSize>

// Add the following line.
<FontWeight>700</FontWeight>
// End of the added line.

<Format>N</Format>
<PaddingBottom>2pt</PaddingBottom>
<PaddingRight>4pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<VerticalAlign>Middle</VerticalAlign>
...

既存のコード 10

...<ReportItems>
<Textbox Name="textbox286">
<CanGrow>true</CanGrow>
<Style>
<FontSize>7pt</FontSize>
<Format>N</Format>
<PaddingBottom>2pt</PaddingBottom>
<PaddingTop>2pt</PaddingTop>
<VerticalAlign>Middle</VerticalAlign>
</Style>
...

置換用コード 10

...<ReportItems>
<Textbox Name="textbox286">
<CanGrow>true</CanGrow>
<Style>
<FontSize>7pt</FontSize>

// Add the following line.
<FontWeight>700</FontWeight>
// End of the added line.

<Format>N</Format>
<PaddingBottom>2pt</PaddingBottom>
<PaddingTop>2pt</PaddingTop>
<VerticalAlign>Middle</VerticalAlign>
</Style>
...

既存のコード 11

...</Textbox>
</ReportItems>
</TableCell>
</TableCells>
<Visibility>

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

</Visibility>
</TableRow>
</TableRows>
</Footer>
<Grouping Name="Table1_Group3">
...

置換用コード 11

...</Textbox>
</ReportItems>
</TableCell>
</TableCells>
<Visibility>

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

</Visibility>
</TableRow>
</TableRows>
</Footer>
<Grouping Name="Table1_Group3">
...

既存コード 12

... </Textbox>
</ReportItems>
</TableCell>
</TableCells>
<Visibility>

// Delete the following liine.
<Hidden>=IIF(Fields!AutoDocNo_Control91.Value="",TRUE,FALSE)</Hidden>
// End of the deleted line.

</Visibility>
</TableRow>
<TableRow>
<Height>0.423cm</Height>
<TableCells>
...

置換用コード 12

...</Textbox>
</ReportItems>
</TableCell>
</TableCells>
<Visibility>

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

</Visibility>
</TableRow>
<TableRow>
<Height>0.423cm</Height>
<TableCells>
...

既存のコード 13

...</Textbox>
</ReportItems>
</TableCell>
</TableCells>
<Visibility>

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

</Visibility>
</TableRow>
</TableRows>
</Header>
</TableGroup>
...

置換用コード 13

...
</Textbox>
</ReportItems>
</TableCell>
</TableCells>
<Visibility>

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

</Visibility>
</TableRow>
</TableRows>
</Header>
</TableGroup>
...


必要条件

この修正プログラムを適用するのにはインストールされている製品は次のいずれかが必要です。

  • Microsoft Dynamics NAV 2009 の R2 のスペイン語版

  • Microsoft Dynamics NAV 2009 の SP1 のスペイン語版

アンインストール情報

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

状況

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

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

ヘルプを表示

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

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

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

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

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

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

×