statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. The development, release, timing, and pricing of any features or functionality described for Oracle’s products may change and remains at the sole discretion of Oracle Corporation.
「ソース」タブを選択し、PL/SQLコード部分に下記コードを入力します。 procedure load_dynamic_groups as l_group_names apex_t_varchar2; l_group_count number; begin -- -- get groups count -- l_group_count := apex_json.get_count('groups'); if l_group_count is not null then -- -- add all group names to l_group_names -- for i in 1 .. apex_json.get_count('groups') loop apex_string.push ( p_table => l_group_names, p_value => apex_json.get_varchar2 ( p_path => 'groups[%d].name', p0 => i )); end loop; -- -- save group names in session -- if l_group_names.count > 0 then apex_authorization.enable_dynamic_groups ( p_group_names => l_group_names ); end if; end if; end; OpenID Connectにより連携されたログインした Identity Domainsユーザー情報から所属グループ を取得するコードです。
your profile in account - <テナンシ名>」が届いていることを確認し、 本文の「Active Your Account」を選択し、作成したテストユーザー(test_user2)の初期パスワードをセットします。 ※パスワードセット後に「サインインへ進む」を選択せずに、ブラウザタブを閉じます。