Hello everyone,
I am attempting to generate dynamic URL's via a procedure that directs users to the Task Details page in an email.
The following generates a full url in a free workspace:
task_url := APEX_PAGE.GET_URL (
p_page => 4,
p_items => 'P4_TASK_ID',
p_values => :APEX$TASK_ID
);
I am attempting to replicate the same behavior for an enterprise environment, but the domain is not being captured.
I know it could be concatenated/built but wanted to ask what everyone would advise is the best/advisable solution when implementing, especially on an efficiency/security standpoint.
Thank you,
Jay