Oracle EBS快捷鍵, 很少在用, 只作參考.
Ref:
1.oracle-ebs-shortcut-keys
http://oracleebsfundamentals.blogspot.com/2012/11/oracle-ebs-shortcut-keys.html
Oracle EBS快捷鍵, 很少在用, 只作參考.
Ref:
1.oracle-ebs-shortcut-keys
http://oracleebsfundamentals.blogspot.com/2012/11/oracle-ebs-shortcut-keys.html
隔了幾年再看, 有人提了另一個寫法, 可參考:
--
SET SERVEROUTPUT ON;
DECLARE
b_isvalid BOOLEAN;
BEGIN
b_isvalid :=
REGEXP_LIKE ('anyaddress@xyz123.com',
'^[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$');
IF b_isvalid
THEN
DBMS_OUTPUT.put_line ('It is a valid email address.');
ELSE
DBMS_OUTPUT.put_line ('It is Not a valid email address.');
END IF;
END;
/
Ref:
1.Validate Email Using PL/SQL Program
How to Validate Email Address Using PL/SQL? - foxinfotech.in
問題: AR transaction錯誤拋轉, 在GL要作reverse
作法:
Setup->Sources
Source:Receivables
Source Key:Receivables
Freeze Journals: 先disable讓User可以reverse
問題: 跨concurrent manager之程式設定互斥是否有效? 是否仍會依priority順序執行?
先說結論:
1.互斥仍有效
2.不一定會依priority執行
測試案例:
CM1: concurrent manager 1 , 可同時執行20支程式
CM2: concurrent manager 2 , 可同時執行5支程式
PA: program A , priority 5 , 執行於CM1
PB: program B , priority 60 , 執行於CM2
PA與PB互斥
先submit PB 600支, 已開始running後, 再submit PA.
結果PB一個接一個執行, 持續running, 而PA則是一直pending .