查詢計畫請求資訊

2021-08-18 12:38:17 字數 1085 閱讀 9363

select fcr.request_id "請求id",

fcpv.user_concurrent_program_name "請求名稱",

fcpv.concurrent_program_name "請求簡稱",

frv.responsibility_name "職責",

fcr.argument_text "引數",

fu.user_name "提交人",

fcr.status_code "狀態", --狀態 i:暫掛,已計畫,無管理器,c:正常,g:警告,q:正在等待,x:已終止,e:錯誤,d:已取消

fcr.phase_code "階段", --階段 p:無效,待定 c:已完成,i:已計畫

to_number(fcr.resubmit_interval) "重新執行間隔時間",

fcr.resubmit_interval_unit_code "重新執行間隔時間單位",

fcr.resubmit_interval_type_code "申請間隔時間",

fcr.requested_start_date "計畫起始日期",

fcr.resubmit_end_date "計畫終止日期"

from fnd_concurrent_requests fcr,

fnd_concurrent_programs_vl fcpv,

fnd_responsibility_vl frv,

fnd_user fu

where fcr.concurrent_program_id = fcpv.concurrent_program_id

and frv.responsibility_id = fcr.responsibility_id

and fu.user_id = fcr.requested_by

and fcr.phase_code = 'p'

and fcr.status_code in ('i',

'q')

order by frv.responsibility_name,

fcpv.user_concurrent_program_name desc;

查詢 併發請求定義相關資訊

併發請求不相容設定 cannot make concurrent programs incompatible with itself 文件 id 436186.1 併發程式可執行,對應的 執行方法 select t.lookup type,t.lookup code,t.meaning,t.desc...

thinkphp 請求資訊

如果要獲取當前的請求資訊,可以使用 think request類,除了下文中的 request request instance 也可以使用助手函式 request request 當然,最方便的還是使用注入請求物件的方式來獲取變數。例如 獲取url資訊 request request instan...

django請求週期和請求資訊

1,概述 首先我們知道http請求及服務端響應中傳輸的所有資料都是字串.在django中,當我們訪問乙個的url時,會通過路由匹配進入相應的html網頁.那麼 django的請求生命週期是指當使用者在瀏覽器上輸入url到使用者看到網頁的這個時間段內,django後台所發生的事情 而django的生命...