declare
l_rowid varchar2(
1000);
l_formid number;
begin
'test customize'
;--l_formid := fnd_form_s.nextval;
select fnd_form_s.nextval
into l_formid
from dual;
fnd_form_pkg.insert_row(x_rowid =
> l_rowid
,x_form_id =
> l_formid
,x_form_name =
>
'cuxom074'
/*表單名*/
,x_audit_enabled_flag =
>
'n',x_user_form_name =
>
'cuxom074:test1106'
/*使用者表單名*/
,x_description =
>
''/*說明*/
,x_creation_date =
> sysdate
,x_created_by =
>
0,x_last_update_date =
> sysdate
,x_last_updated_by =
>
0,x_last_update_login =
>0)
;commit
;end
;
declare
l_rowid varchar2(
1000);
l_formid number;
l_funid number;
begin
'test customize'
;select f.form_id into l_formid
from fnd_form f
and f.form_name =
'cuxom074'
;--l_funid := fnd_form_functions_s.nextval;
select fnd_form_functions_s.nextval into l_funid from dual;
fnd_form_functions_pkg.insert_row
(x_rowid =
> l_rowid
,x_function_id =
> l_funid
,x_web_host_name =
>
''/***名*/
,x_web_agent_name =
>
''/*主機名*/
,x_web_html_call =
>
''/*html呼叫*/
,x_web_encrypt_parameters =
>
''/*加密引數*/
,x_web_secured =
>
''/*安全保護*/
,x_web_icon =
>
''/*圖示*/
,x_object_id =
>
''/*物件*/
>
''/*區域應用*/
,x_region_code =
>
''/*區域***/
,x_function_name =
>
'cuxom074'
/*功能名*/
,x_form_id =
> l_formid /*表單*/
,x_parameters =
>
''/*引數*/
,x_type =
>
'form'
/*型別*/
-- ...
,x_user_function_name =
>
'cuxom074:test'
/*使用者功能名*/
,x_description =
>
''/*說明*/
,x_creation_date =
> sysdate
,x_created_by =
>
0,x_last_update_date =
> sysdate
,x_last_updated_by =
>
0,x_last_update_login =
>0)
;commit
;end
;
登錄檔單驗證
注意 1.或 和null的區別 或 指向長度為0的字串,佔記憶體空間 null不分配記憶體空間 例如 if email.value email.value null 注意 和 的區別 和 的區別 2 indexof 用法和 lastindexof 用法的區別 apos value.indexof 找...
ExtJS登錄檔單
使用者在註冊時,需要填的表單太長,為此需顯示滾動條,但注意有兩個屬性需要更改formpanel autoheight false,height 100 autoscroll true,由於整個的form是放在fieldset中,其預設的布局時靠左邊的,可以通過columnlayout來控制設定左右兩...
(登入 註冊)表單驗證
註冊驗證 1.驗證格式 非空 2.驗證密碼直接是否相等 3.驗證碼 驗證非空和格式 function ischeckregist obj,re else else 驗證正則 1.身份證驗證 reg d d d d x x 2.手機號驗證 reg 1 3 4 5 8 0 9 d i 3.密碼驗證 6 ...