Find out the URL of the Application in the database
Option 1:
select HOME_URL from icx_parameters;
Option 2:
Select PROFILE_OPTION_VALUE
From FND_PROFILE_OPTION_VALUES
WHERE PROFILE_OPTION_ID =
(SELECT PROFILE_OPTION_ID
FROM FND_PROFILE_OPTIONS
WHERE PROFILE_OPTION_NAME =’APPS_FRAMEWORK_AGENT’)
AND LEVEL_VALUE=0;
Leave a Reply
Want to join the discussion?Feel free to contribute!