Value of Owner Tag field used in the Subscription creation steps (Step 2) is not a valid Application (product) Short Name that exists in FND_APPLICATION table.
select b.application_short_name
from FND_PRODUCT_INSTALLATIONS a,
FND_APPLICATION b
where b.application_id = a.application_id;
To bypass the issue follow below steps:
1. License the application into FND_PRODUCT_INSTALLATIONS table.
To license it, manually update the WF_EVENTS and WF_EVENT_SUBSCRIPTIONS tables to set the licensed_flag to 'Y'.
2. Change the Owner Tag to correspond to a valid Application_Short_Name from FND_APPLICATION table.
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/10359218/viewspace-716699/,如需转载,请注明出处,否则将追究法律责任。