Skip to content

Instantly share code, notes, and snippets.

@MaheshwarReddyGade
Created March 18, 2020 04:35
Show Gist options
  • Save MaheshwarReddyGade/df9d180fa690d13699d2cefd09fe0336 to your computer and use it in GitHub Desktop.
Save MaheshwarReddyGade/df9d180fa690d13699d2cefd09fe0336 to your computer and use it in GitHub Desktop.
ebs asserter profile options
Declare
value Boolean;
val varchar2(500);
pnm varchar2(500);
prev_val varchar2(500);
post_val varchar2(500);
Begin
select profile_option_name into pnm from fnd_profile_options_tl where USER_PROFILE_OPTION_NAME='Application Authenticate Agent';
DBMS_OUTPUT.PUT_LINE('Profile name to be updated: ' || pnm);
select fnd_profile.value(pnm) into prev_val from dual;
DBMS_OUTPUT.PUT_LINE('Value before update: ' || prev_val);
select 'http://ebsasserter.omcs.tech:30018/ebs' into val from dual;
DBMS_OUTPUT.PUT_LINE('Value to update: ' || val);
value := fnd_profile.save(pnm,val,'SITE');
select fnd_profile.value(pnm) into post_val from dual;
DBMS_OUTPUT.PUT_LINE('Value after update: ' || post_val);
End;
/
commit;
Declare
value Boolean;
val varchar2(500);
pnm varchar2(500);
prev_val varchar2(500);
post_val varchar2(500);
Begin
select profile_option_name into pnm from fnd_profile_options_tl where USER_PROFILE_OPTION_NAME='Applications SSO Type';
DBMS_OUTPUT.PUT_LINE('Profile name to be updated: ' || pnm);
select fnd_profile.value(pnm) into prev_val from dual;
DBMS_OUTPUT.PUT_LINE('Value before update: ' || prev_val);
select 'SSWA_SSO' into val from dual;
DBMS_OUTPUT.PUT_LINE('Value to update: ' || val);
value := fnd_profile.save(pnm,val,'SITE');
select fnd_profile.value(pnm) into post_val from dual;
DBMS_OUTPUT.PUT_LINE('Value after update: ' || post_val);
End;
/
commit;
Declare
value Boolean;
val varchar2(500);
pnm varchar2(500);
prev_val varchar2(500);
post_val varchar2(500);
Begin
select profile_option_name into pnm from fnd_profile_options_tl where USER_PROFILE_OPTION_NAME='Oracle Applications Session Cookie Domain';
DBMS_OUTPUT.PUT_LINE('Profile name to be updated: ' || pnm);
select fnd_profile.value(pnm) into prev_val from dual;
DBMS_OUTPUT.PUT_LINE('Value before update: ' || prev_val);
select 'DOMAIN' into val from dual;
DBMS_OUTPUT.PUT_LINE('Value to update: ' || val);
value := fnd_profile.save(pnm,val,'SITE');
select fnd_profile.value(pnm) into post_val from dual;
DBMS_OUTPUT.PUT_LINE('Value after update: ' || post_val);
End;
/
commit;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment