Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

API to End Date a CRM Resource

Olga12Dec 19 2018 — edited Dec 19 2018

Hello Friends,

I would like to get your help on how to end date (from the back end database) a Group member roles for a CRM resource ( in JTF Application )

I have tried to use jtf_rs_grp_membership_pub.update_group_membership and JTF_RS_ROLE_RELATE_PUB.update_resource_role_relate APIs.

Both of them give me this error:

" The resource role start/end date falls out of the date range, for one or more of its group/team member roles"

SELECT role_id,

     role\_relate\_id,

     start\_date\_active,

     end\_date\_active,

     object\_version\_number

FROM jtf\_rs\_role\_relations

WHERE role_resource_id = l_resource_id

     AND role\_resource\_type = 'RS\_INDIVIDUAL'

     AND NVL (delete\_flag, 'N') \<> 'Y'

ORDER BY start_date_active DESC;

group_members_role.png

Thank you

Comments
Post Details
Added on Dec 19 2018
2 comments
462 views