Use function to get the offset value used during the import of an application.
Syntax
APEX_APPLICATION_INSTALL.GET_OFFSET RETURN NUMBER;
Parameters
None.
Example
The following example returns the value of the application offset value in the APEX_APPLICATION_INSTALL package.
declare
    l_offset number;
begin
    l_offset := apex_application_install.get_offset;
end;
See Also:
Parent topic: APEX_APPLICATION_INSTALL