<?xml version="1.0" encoding="UTF-8" ?><rdf:RDF 
  xmlns="http://purl.org/rss/1.0/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xml:lang="ja">
  <channel rdf:about="http://w.atwiki.jp/ax-wiki/">
    <title>Dynamics AX wiki</title>
    <link>http://w.atwiki.jp/ax-wiki/</link>
    <atom:link href="https://w.atwiki.jp/ax-wiki/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>Dynamics AX wiki</description>

    <dc:language>ja</dc:language>
    <dc:date>2013-02-15T18:19:17+09:00</dc:date>
    <utime>1360919957</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/ax-wiki/pages/38.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/ax-wiki/pages/37.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/ax-wiki/pages/36.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/ax-wiki/pages/35.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/ax-wiki/pages/34.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/ax-wiki/pages/33.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/ax-wiki/pages/32.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/ax-wiki/pages/31.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/ax-wiki/pages/30.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/ax-wiki/pages/29.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/ax-wiki/pages/38.html">
    <title>Route VersionをX++から承認(Approve、Activate)するには？</title>
    <link>https://w.atwiki.jp/ax-wiki/pages/38.html</link>
    <description>
      Route VersionをX++から承認(Approve、Activate)するには、
RouteVersionApproveクラス、及び、RouteVersionActivateクラスを使用する。

※ただし、正しく工順が登録されていないと、処理の途中で確認ダイアログが出てしまうので、
　連続して承認を行いたい場合は注意。

　    </description>
    <dc:date>2013-02-15T18:19:17+09:00</dc:date>
    <utime>1360919957</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/ax-wiki/pages/37.html">
    <title>BOM VersionをX++から承認(Approve、Activate)するには？</title>
    <link>https://w.atwiki.jp/ax-wiki/pages/37.html</link>
    <description>
      BOM VersionをX++から承認(Approve、Activate)するには
BOMVersionApproveクラス、及び、BOMVersionActivateクラスを使用する。

　    </description>
    <dc:date>2013-02-15T18:16:05+09:00</dc:date>
    <utime>1360919765</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/ax-wiki/pages/36.html">
    <title>select文の中で文字列型を使うには？</title>
    <link>https://w.atwiki.jp/ax-wiki/pages/36.html</link>
    <description>
      select文の中で文字列型を使うには、
文字数の制限されたstr型を使う。

例えば、以下はエラーにならない。

-ExtendedDataType
-宣言時に以下のように宣言されたstr型
&gt; str 60 test;
　※60文字に制限している為、select文で使用してもエラーにならない    </description>
    <dc:date>2013-02-15T18:00:36+09:00</dc:date>
    <utime>1360918836</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/ax-wiki/pages/35.html">
    <title>XMLコメントを入力するには？</title>
    <link>https://w.atwiki.jp/ax-wiki/pages/35.html</link>
    <description>
      X++のエディタで、
XMLコメントを追加する方法は2通りある。

・メソッドの宣言の直前で///を入力
・エディタを右クリック ＞ Scripts ＞ documentation ＞ Header Template




　    </description>
    <dc:date>2013-02-15T17:55:17+09:00</dc:date>
    <utime>1360918517</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/ax-wiki/pages/34.html">
    <title>Tmp一覧</title>
    <link>https://w.atwiki.jp/ax-wiki/pages/34.html</link>
    <description>
      [[コーディングを行わずにGridの初期ソート順を指定するには？]]
[[XMLコメントを入力するには？]]
[[select文の中で文字列型を使うには？]]
[[BOM VersionをX++から承認(Approve、Activate)するには？]]
[[Route VersionをX++から承認(Approve、Activate)するには？]]    </description>
    <dc:date>2013-02-15T18:21:04+09:00</dc:date>
    <utime>1360920064</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/ax-wiki/pages/33.html">
    <title>コーディングを行わずにGridの初期ソート順を指定するには？</title>
    <link>https://w.atwiki.jp/ax-wiki/pages/33.html</link>
    <description>
      (1) ソートしたいテーブルにIndexを追加する
(2) (1)のIndexをFormのDataSourceのIndexプロパティに指定する

※後で確認    </description>
    <dc:date>2013-02-15T17:50:16+09:00</dc:date>
    <utime>1360918216</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/ax-wiki/pages/32.html">
    <title>Infologを印刷するには？</title>
    <link>https://w.atwiki.jp/ax-wiki/pages/32.html</link>
    <description>
      Infologを表示し、
右クリックメニューから「Print...」をクリックする。

※AX2012では、SSRSレポートとして出力される    </description>
    <dc:date>2013-01-07T11:45:56+09:00</dc:date>
    <utime>1357526756</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/ax-wiki/pages/31.html">
    <title>ラベルファイルをImportするには？</title>
    <link>https://w.atwiki.jp/ax-wiki/pages/31.html</link>
    <description>
      AOT の Label Files を右クリックし、
Create from File を選択する。



　    </description>
    <dc:date>2013-01-07T11:29:30+09:00</dc:date>
    <utime>1357525770</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/ax-wiki/pages/30.html">
    <title>起動時の会社コードの初期設定</title>
    <link>https://w.atwiki.jp/ax-wiki/pages/30.html</link>
    <description>
      Microsoft Dynamics AX のメニューで、[ツール]、[オプション...] の順にクリックします。
[開始時の会社コード] ボックスの一覧で、既定で起動時に開く会社を選択します。
フォームを閉じて変更を保存します。
この設定はユーザーレベルでの設定変更です。    </description>
    <dc:date>2012-07-27T16:18:39+09:00</dc:date>
    <utime>1343373519</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/ax-wiki/pages/29.html">
    <title>標準機能のHowTo一覧</title>
    <link>https://w.atwiki.jp/ax-wiki/pages/29.html</link>
    <description>
      **一般会計

**売掛金管理

**買掛金管理

**在庫管理

**生産管理

**その他
[[Infologを印刷するには？]]
[[起動時の会社コードの初期設定]]
----
#comment_num2　    </description>
    <dc:date>2013-02-15T17:41:47+09:00</dc:date>
    <utime>1360917707</utime>
  </item>
  </rdf:RDF>
