OAF 獲取頁面路徑

2021-09-06 23:23:47 字數 1063 閱讀 2136

--

模糊查詢某個頁面

select

*from jdr_paths jp where jp.path_name like

'%***x%';

--精確的查詢過程

--docid

--引數通過關於此頁的頁面路徑查詢

select jdr_mds_internal.getdocumentid('

***x

') from

dual;

--查照對應的docid

select

*from jdr_paths where path_docid = ***x;

declare

--local variables here

i integer

;

--僅知道某個頁面的id,而不清楚其具體的路徑

cursor c_path is

select

path_docid,

path_name,

path_type

from

jdr_paths

start

with path_docid =

'81813

'connect

by prior path_owner_docid =

path_docid

order

bypath_docid;

document_path

varchar2(200) :='';

begin

--test statements here

for cc in

c_path loop

document_path :

= document_path ||'/

'||cc.path_name;

endloop;

dbms_output.put_line(document_path);

end;

對oaf開發中的mds的初步研究***

oaf頁面上傳、匯入、發布

OAF頁面上傳 匯入 發布

一 oaf頁面上傳 圖1 將整個的開發目錄上傳 我這裡的開發目錄是oracle 二 oaf頁面匯入 oaf開發需要匯入的頁面檔案包括所有的pg rn lov等。step 2 cd切換到上面的目錄以後,對於單個檔案,執行如下匯入命令 注意修改其中的xml檔名 資料庫使用者名稱和密碼 host位址 埠p...

jsp頁面獲取絕對和相對路徑

1 如圖 標籤2 拼裝獲取當前網頁的相對路徑的 string path request.getcontextpath string basepath request.getscheme request.getservername request.getserverport path request....

jq獲取頁面高度 JQuery獲取頁面高度寬度

alert window height 瀏覽器當前視窗可視區域高度 alert document height 瀏覽器當前視窗文件的高度 alert document.body height 瀏覽器當前視窗文件body的高度 alert document.body outerheight true ...