Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 NAV Source 组件中提供“最近 7 天”过滤器,我必须使用 XML 编码值。我知道今天的日期是“h”,那么如何编码写“过去 7 天”?我试图写“(h-7)但它是错误的。
如果您希望提供当前日期前“7”天的值,您可以在我们的高级派生列组件中轻松完成。然后使用函数将其写入变量,并在 Dynamics NAV Source 组件过滤器中使用该变量(使用 UI 中可用的“插入变量”功能)。Premium Derived Column 组件中的以下表达式将帮助您实现这一目标。
WriteValueToVariable(@[User::Date] , DateTimeToString(DateAdd( "dd", -7, GetDate()), "yyyy-MM-dd" ) )