Hi,
I have a pb when i try to exucute a report in RTC when i have a language in France, but not the case in the language ENU either in classic i don't have the pb.
Thanks for your help
Probably in the report there is a CALCDATE function with date expression without "<" and ">" brackets, meaning it's sensitive to cultural settings and it could not work in some languages.
The date expression should be changed, is it a custom report?
Probably in the report there is a CALCDATE function with date expression without "<" and ">" brackets, meaning it's sensitive to cultural settings and it could not work in some languages.
The date expression should be changed, is it a custom report?
I have in the report just this: how contain CALCDATE.
DueDate := CALCDATE(PmtTerms."Due Date Calculation","Document Date");
I have in the report just this: how contain CALCDATE.
DueDate := CALCDATE(PmtTerms."Due Date Calculation","Document Date");
So, you need to fill "Due Date Calculation" field with brackets to avoid the problem. Insert for example "<0D>" and the value shown will be "0D" if working with English client or "0J" if using French.
Comments
The date expression should be changed, is it a custom report?
I have in the report just this: how contain CALCDATE.
DueDate := CALCDATE(PmtTerms."Due Date Calculation","Document Date");
So, you need to fill "Due Date Calculation" field with brackets to avoid the problem. Insert for example "<0D>" and the value shown will be "0D" if working with English client or "0J" if using French.