2

カスタム レポートを作成するのは初めてです。crm で開始日と終了日をユーザーに通知する必要があるため、結果はこれら 2 つの日付の間にのみ作成されたデータになります。

データ (アカウント、インシデント、契約) を事前にフィルター処理する 3 つのパラメーターがあり、Visual Studio に 2 つの日付パラメーターを追加しました。

でも今はかなり行き詰ってます…

どんな助けでも素晴らしいでしょう!

編集 1: これは、クエリ FETCH Xml ベースのスニペットです。

<?xml version="1.0"?><fetch distinct="false" mapping="logical" output-format="xml-platform" version="1.0">
       <entity name="incident" enableprefiltering="1">
       <attribute name="overriddencreatedon"/>
      <attribute name="new_dateclotureincident"/>
      <attribute name="title"/><attribute name="createdon"/>
      <attribute name="new_travaileffectue"/>
      <attribute name="ticketnumber" />
      <attribute name="new_dureecumuleeactivites"/>
      <order descending="true" attribute="createdon"/>
      <filter type="and"> 
      <condition attribute="createdon" value="@Date-Debut" operator="on-or-after"/> 
      <condition attribute="createdon" value="@Date_Fin" operator="on-or-before"/> 
      </filter>
      <link-entity name="new_contrats" alias="aa" to="new_contrat" from="new_contratsid" enableprefiltering="1">
    <attribute name="new_referencecontrat"/>
    </link-entity>
    <link-entity name="new_lignecontrat" alias="ab" to="new_lignecontrat" from="new_lignecontratid">
    <attribute name="new_unitesrestantes"/><attribute name="new_unitesrestantes"/>
    </link-entity>
    <link-entity name="account" alias="ac" to="customerid" from="accountid" enableprefiltering="1"><attribute name="name"/>
    </link-entity></entity></fetch>

レポートの実行時に日付が問題なく表示されますが、日付を選択した後、データが正しく並べ替えられません。2 つの単純な日付パラメーターを作成したばかりですが、何が間違っているのでしょうか?

4

1 に答える 1

3

問題が解決しました !

日付形式の簡単な問題。

日付形式の式をパラメーターに関連付けると、完全に機能します!

=Format(Parameters!YourDateParameterName.value,"yyyy-MM-dd")
于 2012-06-08T12:48:15.263 に答える