ebs profiles 的定義
在ebs 中我們可能定義profile,用於儲存特定的使用者資訊,以便在程式執行中進行呼叫。相當於全域性變數.
1. profile的定義
其中的hierarchy type 用來確定profile的作用範圍。一般選security.
profile的作用範圍是底層優先的,也就是user 層的最優先,其次是organization….
比較常用的是根據responsibility 來提取profile的資訊.
sqlvalidation 是用來定義profile value 的value set的,當然不定義,然後手工輸入也沒問題,但為了安全,還是定義乙個比較好,定義方法如下:
sql="select fv_region.flex_value \"log mode\",
fv_region.flex_value
into :visible_option_value,
:profile_option_value
from fnd_flex_value_sets fvs_region,
fnd_flex_values fv_region
where fvs_region.flex_value_set_name = 'fac_reorg_asset_region'
and fvs_region.flex_value_set_id = fv_region.flex_value_set_id
and fv_region.enabled_flag = 'y' "
column="\"log mode\"(10)"
2. profile 的維護
path: system administrator/profile/system
自定義UITableViewCell的使用總結
1.ib中沒有加入cell,否則自定義的沒辦法觸發,導致不會使用自定義的cell。2.解決初始化的時候,contentview裡面的邊界設定問題,在drawrect函式裡面呼叫。a.我們這裡的因為手動設定了cell的高度,所以執行的流程就是先初始化在自己定義的方法 instancetype init...
FORALL與BULKCOLLECT的使用方法
1 使用forall比for效率高,因為前者只切換一次上下文,而後者將是在迴圈次數一樣多個上下文間切換。2 使用bluk collect一次取出乙個資料集合,比用游標條取資料效率高,尤其是在網路不大好的情況下。但bluk collect需要大量記憶體。使用例子 1 定義乙個table create ...
display與visibility的使用 區別
display none 隱藏元素,且此元素無物理位置 visibility hidden 隱藏元素,但元素的物理位置依然存在 因為display none導致頁面上無此元素的空間,js就獲取不到此元素的資訊,此時應用visibility hidden來代替display none display ...