Hi HomerJ,
I have heard from HP that this is in fact an known issue and bug within the newest versions. They have provided a set of queries to run against the projects Sequence table (run this at your own risk and make sure before doing so to have known good backups in place should something occur. It is also recommended to try this in a test environment on your system first).
the queries are as follows (make sure to adjust them for your correct naming of the sequence table within the project as if the table naming is different then the queries will fail for your instance):
''.. we are aware of this bug, please run the provided query in order to fix the issue with the extension.
insert into td.ACTIONS (AC_ACTION_NAME, AC_IS_SYSTEM_INTERNAL,
AC_GRANT_MASK, AC_OWNER_SENSIBLE, AC_OWNERED_TABLE,
AC_IS_COLUMNS_MODIFY, AC_IS_AUDIT, AC_ENTITY_NAME,
AC_OPERATION_NAME)
values ('ac_ei_open_bpca_url', NULL,
(select AC_GRANT_MASK from td.ACTIONS where AC_ACTION_NAME='ac_ei_manage_defect_pool'),
(select AC_OWNER_SENSIBLE from td.ACTIONS where AC_ACTION_NAME='ac_ei_manage_defect_pool'), '-', 'N', 'N','BPCA', 'Open_Bpca_Url')
insert into td.ACTIONS (AC_ACTION_NAME, AC_IS_SYSTEM_INTERNAL, AC_GRANT_MASK, AC_OWNER_SENSIBLE,AC_OWNERED_TABLE, AC_IS_COLUMNS_MODIFY, AC_IS_AUDIT, AC_ENTITY_NAME, AC_OPERATION_NAME)
values ('ac_ei_view_bpca_result_url', NULL,
(select AC_GRANT_MASK from td.ACTIONS where AC_ACTION_NAME='ac_ei_manage_defect_pool'),
(select AC_OWNER_SENSIBLE from td.ACTIONS where AC_ACTION_NAME='ac_ei_manage_defect_pool'), '-', 'N', 'N','BPCA', 'View_Bpca_Result_Url')
update SEQUENCES set SQ_SEQ_VALUE=SQ_SEQ_VALUE+1 where SQ_SEQ_NAME='td.ACTIONS_VERSION'
''
I hope this helps your situation,
Dan