Announcements
No record found.
Dear All,
Is there any way to manage the versions of the check box field..How many times it is checked then unchecked.
Manish
*This post is locked for comments
Can you elaborate more about your query.
it's not clear.
Hi Manish,
You can code in onValidate() function of boolean...
Each time some one clicks it , increase the Count and store... You can also use a Code value... like
counterVar := 'C-00001;
Incstr(counterVar);
You can further breakdown it into Check and uncheck... if checked then IncStr(counterTrueVar) else IncStr(CounterFalseVar)...
Hope i understand your question...
Hello manish,
your code is like
IF ProdOrder."Released For Commercial" =TRUE THEN ////added by manish
ProdOrder.VersionNo:=ProdOrder.VersionNo+1;
Revised code:
IF ProdOrder."Released For Commercial" = TRUE THEN BEGIN
ProdOrder.VersionNo += 1;
ProdOrder.Modify;
END;
// if you have any code in onmodify trigger and you want to run that code then you can write ProdOrder.Modify(TRUE);
instead of ProdOrder.Modify;
Sir, I want to add the version date also...how can i set here.
I want to show the last modified version date also.
manish
Create new token with new requirement,
what you need exactly, just put like:
You can use the standard Change Log Entry for that purpose, and then analyze the changes made by certain users (msdn.microsoft.com/.../hh169208(v=nav.70).aspx).
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Stars!
Thanks to all of our 2025 Community Spotlight stars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.