Create a view using week numbers

Good Morning 

I have a customer using SEI for Sage x3 (multi-tenant cloud) and still on V8 of SEI.  They need to see financial data by week number.  Is there a way to add a week number into a process so we can view the data by week instead of just fiscal period?  

Thanks

Parents
  • 0

    Deb,

    Seeing that this is mult-tenant cloud, the options may be very slim. Normally, I would look to create a custom SQL view in X3 to pull in some of the financial data but be grouped by "Week" which would be something similar to this: GROUP BY DATEPART(week, TransactionDate) and also have to use a DATEFIRST setting to pull in the week numbers associated to the data you have grouped. 

    You could also attempt to add a SQL query within the view to attempt to group this data by week, not sure how successful that will be but worth a try!. 

Reply
  • 0

    Deb,

    Seeing that this is mult-tenant cloud, the options may be very slim. Normally, I would look to create a custom SQL view in X3 to pull in some of the financial data but be grouped by "Week" which would be something similar to this: GROUP BY DATEPART(week, TransactionDate) and also have to use a DATEFIRST setting to pull in the week numbers associated to the data you have grouped. 

    You could also attempt to add a SQL query within the view to attempt to group this data by week, not sure how successful that will be but worth a try!. 

Children