審批工作流介面跳轉到
form 1、在
form
級觸發器
'when-new- form-instance'
中新增以下**
: --
從審批介面進入的時候執行查詢跳轉頭塊
if :parameter.header_id is not null then --
從審批介面進入
:parameter.g_query_find := 'true';
go_block('trade_headers');
:parameter.g_query_find := 'false';
end if;
2、在主從塊的頭塊的
'pre-query'
中新增以下
**:--
當引數有值的時候執行查詢
if :parameter.header_id is not null then
end if; 3、
(附加)如果
form
介面開啟時彈出選擇庫存組織框,則需要進行下一步操作才能進行跳轉
,新增的**放在
form
級觸發器
pre-form
中(注:沒有新增此段**之前
pre-form
中就包含
fnd_org.choose_org;
新增此段**只是新增在引數不為空的時候)
if :parameter.req_header_id is not null then
select cfr.org_id, ood.organization_code, ood.organization_id,ood.organization_name,ood.chart_of_accounts_id
into l_org_id,:parameter.org_code,:parameter.org_id,:parameter.org_name,:parameter.chart_of_accounts_id
from cux_dis_req_headers_all cfr, org_organization_definitions ood
where 1 = 1
and cfr.header_id = :parameter.req_header_id
and cfr.org_id = ood.operating_unit
and ood.organization_code!='mst';
else
fnd_org.choose_org;
select ood.operating_unit
into l_org_id
from org_organization_definitions ood
where ood.organization_id = :parameter.org_id;
end if;
mo_global.init('cux');
mo_global.set_policy_context('s',l_org_id);
動態設定
lov一般用於乙個欄位的
lov取值邏輯有多個**的時候
set_item_property('line_verify.action_type_dis', lov_name, 'line_verify_action_type_dis_lov');
查詢銷售訂單行狀態
select c.flow_status_code ,c.line_id from oe_order_lines_all c where c.line_id= 1045141;
declare
l_status varchar2( 30);
begin
l_status := oe_line_status_pub.get_line_status (p_line_id => 1045141,
p_flow_status_code => 'entered');
dbms_output.put_line('l_status:' || l_status);
end;
採購訂單狀態
code:
select nvl(pha.authorization_status,
'incomplete'), --
狀態編碼
pha.po_header_id,
pha.segment1,
po_headers_sv3.get_po_status(pha.po_header_id) --, --
狀態說明
-- po_headers_sv2.get_document_status(x_lookup_code => , x_document_type => , x_document_status => )
from po_headers_all pha
where 1 = 1
and pha.segment1 in ('t02b161026003nc-2',
't02b161026003nc-1');
銷售訂單行號
:
ool.line_number
|| decode(ool.shipment_number, null, null, '.'||ool.shipment_number)
|| decode(ool.option_number, null, null, '.'||ool.option_number)
line_shipment_option_number
c 介面跳轉
機房合作在登陸的時候要直接跳轉到相應的介面,並且關閉登陸介面,學習了下,如下 在program.cs裡寫入如下 frmlogin login new frmlogin login.showdialog 介面轉換 if login.dialogresult dialogresult.ok 跳轉到一般使...
介面跳轉異常記錄
1.第乙個介面通過button觸發成功跳轉到第二個介面 2.第二個介面通過定時器countdowntime的ontick long millisuntilfinished 中執行操作 查詢結果,成功後跳轉到第三個介面 異常 第乙個介面button觸發,後台已收到提交的資訊但是沒有跳轉,閃屏,必須多次...
Android Activity介面跳轉動畫講解
例項一 overridependingtransition概述 實現兩個 activity 切換時的動畫。在overridependingtransition中使用 有兩個引數 進入動畫和出去的動畫。注意 呼叫時間 1 必須在 startactivity 或 finish 之後立即呼叫。2 而且在 ...