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
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).
Create new token with new requirement,
what you need exactly, just put like:
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
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;
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...
Can you elaborate more about your query.
it's not clear.
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,253 Super User 2024 Season 2
Martin Dráb 230,188 Most Valuable Professional
nmaenpaa 101,156