2012-06-06 60 views
2

我很新創建自定義報告。我需要在crm中向用戶提示開始日期和結束日期,以便結果將是僅在這兩個日期之間創建的數據。定義日期參數

我有三個參數來預過濾我的數據(帳戶,事件,合同)並在Visual Studio中添加了兩個日期參數。

但現在我幾乎卡住了...

任何幫助將是偉大的!

編輯1:這裏是我的查詢的片段中擷取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> 

的日期都沒有問題提示在報告的執行,但我挑後他們的數據都是不正確排序。我剛剛創建了兩個簡單的日期參數,所以我做錯了什麼?

回答

3

問題解決了!

簡單的日期格式問題。

將日期格式表達式與我的參數關聯後,它完美地工作!

=Format(Parameters!YourDateParameterName.value,"yyyy-MM-dd") 
+0

適當的解決方案,一個非常令人誤解的問題。謝謝你,先生! –