(一)oaf頁面上傳
圖1:將整個的開發目錄上傳(我這裡的開發目錄是oracle)
(二)oaf頁面匯入
oaf開發需要匯入的頁面檔案包括所有的pg、rn、lov等。
step 2:cd切換到上面的目錄以後,對於單個檔案,執行如下匯入命令:
注意修改其中的xml檔名、資料庫使用者名稱和密碼、host位址、埠port、service_name,這些可以直接在.dbc檔案中找到。
step 3:如果是第一次發布oaf頁面,則無需重啟oacore,否則要重啟,命令如下:
cd $admin_scripts_home
adoacorectl.sh stop
adoacorectl.sh start
(1)jdr_paths:儲存了頁面路徑的結構以及oaf頁面個性化的結構資訊。
select path_docid, path_name, path_type,path_owner_docid
from jdr_paths
start with path_name = 'notifsearchpg'
connect by prior path_owner_docid = path_docid;
(2)jdr_components:儲存了頁面元件資訊,oaf頁面元件被分解後儲存在該表中。
select comp_seq,
comp_element,
comp_level,
comp_grouping,
comp_id,
comp_docid
from jdr_paths, jdr_components
where path_docid = 27613
and path_docid = comp_docid(+)
order by path_seq, comp_seq;
(3)jdr_attributes:儲存了頁面各元件的屬性。
select comp_seq,
comp_element,
comp_level,
comp_grouping,
comp_id,
comp_ref,
comp_extends,
comp_use,
att_name,
att_value
from jdr_paths, jdr_components, jdr_attributes
where path_docid = 27613
and path_docid = comp_docid(+)
and comp_docid = att_comp_docid(+)
and comp_seq = att_comp_seq(+)
order by path_seq, comp_seq, att_comp_seq, att_seq;
select *
from jdr_attributes_trans jat
where 1 = 1
and jat.atl_comp_docid = 27613
and jat.atl_comp_ref = 'sentdate'
(三)oaf頁面發布
1、註冊功能
圖2:註冊功能說明
圖3:註冊功能特性
圖4:註冊功能web html
功能:cuxhelloworld
使用者功能名:cux:hello world頁面
型別:sswa jsp 函式
注意:定義html呼叫可以傳入引數,方式用&符號隔開,如下:
2、掛載功能到選單下
圖5:掛載功能到選單下
跟form掛載型別,如上圖5所示,掛載到相應的選單以後。重新登入下ebs系統,就能看到該oaf功能了。
GWT 檔案上傳(匯入)
gwt 2.8版本出來啦,正在學習的夥伴們可以試試哈 專案中檔案上傳 匯入 功能是很常見的,那麼在gwt專案中,如何實現呢?最近剛剛做了這個功能 核心 如下 import com.google.gwt.user.client.ui.fileupload import com.google.gwt.u...
Flex 檔案上傳導入元件
上文講到flex 利用blazeds 1 檔案的選擇 2 檔案型別的限定,比如只能選擇txt 檔案,檔案等 3 檔案上傳,利用blazeds 4 檔案匯入,利用blazeds 5 上傳 匯入的事件分發 1 檔案上傳元件核心 xmlns s library xmlns mx library width...
Flex 檔案上傳導入元件
flex 檔案上傳導入元件 2010年09月13日 1 檔案的選擇 2 檔案型別的限定,比如只能選擇txt檔案,檔案等 3 檔案上傳,利用blazeds 4 檔案匯入,利用blazeds 5 上傳 匯入的事件分發 1 檔案上傳元件核心 flex spark xmlns mx library widt...