How to Address the 'PO_WF_ITEMKEY_S' Sequence When The Maximum Value Is About to be Reached
(Doc ID 1640268.1)
Last updated on OCTOBER 17, 2022
Applies to:
Oracle Purchasing - Version 11.5.10.2 to 12.2.6 [Release 11.5 to 12.2]Information in this document applies to any platform.
Goal
The max sequence value for 'PO_WF_ITEMKEY_S' is close to being reached:
For example: the max sequence value is 999999 with current value as 949995
The following sql can be used to derive the current sequence value and current max value:
select last_number, max_value
from all_sequences
where sequence_name = 'PO_WF_ITEMKEY_S';
How can we ensure the current sequence value will not exceed the max sequence value of 999999?
Solution
To view full details, sign in with your My Oracle Support account. |
|
Don't have a My Oracle Support account? Click to get started! |
In this Document
Goal |
Solution |
References |