How to set context in SQL Developer
exec mo_global.set_policy_context('S', XX)
begin
fnd_client_info.set_org_context('XX');
end;
begin
fnd_global.apps_initialize (user_id => 0,
resp_id => XXX,
resp_appl_id => XXX,
security_group_id => 0
);
execute immediate 'ALTER SESSION SET NLS_LANGUAGE="American" NLS_TERRITORY="America"';
end;
exec mo_global.set_policy_context('S', XX)
begin
fnd_client_info.set_org_context('XX');
end;
begin
fnd_global.apps_initialize (user_id => 0,
resp_id => XXX,
resp_appl_id => XXX,
security_group_id => 0
);
execute immediate 'ALTER SESSION SET NLS_LANGUAGE="American" NLS_TERRITORY="America"';
end;
Comments
Post a Comment