8.38 GET_SUBSCRIPTION_MAPPING Function

Use this function to get the Application ID of the new subscription source. If there is no mapping found, the function returns the input Application ID.

Syntax

APEX_APPLICATION_INSTALL.GET_SUBSCRIPTION_MAPPING (
    p_from_application_id    IN              NUMBER)
    RETURN NUMBER;

Parameters

Parameter Description
p_from_application_id

The Application ID of the current subscription source.

Example

declare
    l_app_id number;
begin
    l_app_id := apex_application_install.get_subscription_mapping(100);
end;