on 2023 Sep 18 11:23 PM
Dear Experts,
The query result generated in the Query Generator is currently rounding up to whole units without displaying decimal places in SAP B1 on SQL. I am seeking guidance on how to configure the MAX statement in the query to display the original value with 4 decimal places.
Here is query:
MAX(CASE WHEN T0.[RateDate] BETWEEN '2023-04-01' AND '2023-04-30' THEN CAST(T0.[Rate] END) AS "01/04/23 to 30/04/23"
Your advice would be greatly appreciated.
Best regards,
Helen Jim
Help others by sharing your knowledge.
AnswerRequest clarification before answering.
Hi,
Try this query,
MAX(CASE WHEN T0.[RateDate] BETWEEN '2023-04-01' AND '2023-04-30' THEN T0.[Rate] END) AS "01/04/23 to 30/04/23"
Regards,
Nagarajan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Go to Administration,
System intilization,
General setting
Display
Increase decimal places in query
Increase the size
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
17 | |
8 | |
7 | |
6 | |
6 | |
5 | |
4 | |
4 | |
3 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.