dynamic-current-value

Ravichandran

New Member
Hi, I tried to get sequece values dynamically. But when i use "dynamic-current-value" function progress shows error like below

** Unable to understand after -- "dynamic-current-value".

I am using "Progress Version 9.1E04" . Is this the version problem ?
Suggest me a solution..
 
message dynamic-current-value("NextCustNum",LDBNAME(1)) view-as alert-box.
returned value is a int64 (Progress v.10.2A)

another syntax:
message current-value(NextCustNum) view-as alert-box.
 
Yes, you need to upgrade.

9.1E04 is ancient and obsolete. It is sort of, kind of officially "supported" but there has not been an update or bug fix for version 9 since 9.1E04 5 years ago and there will never ever be an update or bug fix to v9. So support mostly consists of feeling sorry for you.

Dynamic sequences are not, never have been and never will be a feature of v9. For that you need to upgrade to OpenEdge 10.
 
Thanks for your information.

May i know where the sequence values are getting stored actually.
Any table ?.

No. They are stored in low-level structures that are not realistically accessible dynamically through the 4GL in your version.

DataAdmin > Admin > Dump Data > Sequence Values

(which uses)

CURRENT-VALUE()
 
Back
Top