Hi,
I want to update the Number sequence from 19 20 to 20-21
What is the best way to update the same.
Am planning to write the below job
statuic void job(Args_args)
{NUmberSequencetabel t;
while select for update t
{if(strcontains(t.format,"1920")
{ t.format=strreaplce(t.format,"1920",2020");
t.annotatedformat=strreaplce(t.annoatatedformat,"1920","2021");
t.nextrec=1;
t.doupdate();
}
Will this job suffice my requiremnt or i need to update it manually?