39.1 DISABLE Procedure

This procedure disables automatic synchronization.

Syntax

APEX_REST_SOURCE_SYNC.DISABLE (
  p_application_id    IN NUMBER   DEFAULT {current application id},
  p_module_static_id  IN VARCHAR2 )

Parameters

Table 39-1 DISABLE Parameters

Parameter Description
p_application_id (Optional) The application ID.
p_module_static_id Static ID to identify the REST Data Source.

Example

The following example disables synchronization for the rest_movie REST Data Source in application 152.

BEGIN
apex_rest_source_sync.disable(
    p_application_id => 152,
    p_module_static_id => 'rest_movie' );
END;