Older ERP or CRM systems may have connectors that expect "full" access to function correctly. If a legacy application throws obscure authentication errors despite correct credentials, setting xdevaccess yes full often resolves deep-seated permission mismatches.
Command:
xdevaccess yes full
Oracle’s XE uses a similar paradigm for RESTful services and JSON documents. xdevaccess yes full
PL/SQL Command:
BEGIN ORDS.ENABLE_SCHEMA( p_enabled => TRUE, p_schema => 'HR', p_url_mapping_type => 'BASE_PATH', p_url_mapping_pattern => 'hr', p_auto_rest_auth => TRUE ); -- Setting full access equivalent ORDS.SET_ACCESS_MODE(p_mode => 'FULL'); END; /