Find Query Window的运作(手电筒)

Find Query Window的運作?(手电筒)

提示: 在點選 Toolbar的 Find鈕時,系統會觸發 Query_Find此 Trigger。

執行 App_Find.Query_Find此 Procedure時,系統自動將 :Parameter.G_Query_Find設定為 TRUE。

步驟一、点击手电筒按钮,弹出查询窗口

在Query Block的QUERY_FIND Trigger (override) 写入以下代码:

App_Find.Query_Find( ‘<Result Window>’,’<Query Window>’,’<Query Block>’ );

--

app_find.query_find(‘XXWIP_WAFERLOT_V‘, ‘XXWAFER_FIND‘, ‘XXWAFER_FIND‘);

步驟二、指定被查询的Block,执行查询

在查询窗口Find Button的 WHEN-BUTTON-PRESSED Trigger中,寫入以下代码:

app_find.find(‘<Result Block>‘);

相当于 go_block(‘<Result Block>‘);  execute_query;

--

:parameter.G_query_find := ‘TRUE‘;

app_find.find(‘XXWIP_WAFERLOT_V‘);

:parameter.G_query_find := ‘FALSE‘;

步驟三、编辑查询条件

步驟 3、在 Result Block中的 PRE-QUERY此 Block Trigger (Before),程式碼如下:

if :Parameter.G_Query_Find = ‘TRUE’ then

<Result Block Item> := :<Query Block Item>;

:Parameter.G_Query_Find := ‘FALSE’;

end if;

--

if (:parameter.g_query_find = ‘TRUE‘) then

if (:XXWAFER_FIND.CUSTOMER is not null) then

:XXWIP_WAFERLOT_V.CUSTOMER := :XXWAFER_FIND.CUSTOMER;

end if;

...

:parameter.g_query_find := ‘FALSE‘;

end if;

Find Query Window的运作(手电筒)

时间: 2025-01-16 21:25:54

Find Query Window的运作(手电筒)的相关文章

Query Window by VBScript

询问窗口 by VBScript ??sub chk() chk()??????dim?? yesno??????yesno=Msgbox("XXXXXXXXXXXXXXXX",vbYesNo,"TITLE")???? Select case yesno??????case?? 6????//点选no则, ??case?? 7????//点选yes则,??????window.location ="XXX.asp" ??????end selec

Query runs slow via .NET

Slow in the Application, Fast in SSMS?Understanding Performance Mysteries An SQL text by Erland Sommarskog, SQL Server MVP. Last revision: 2013-08-30.This article is also available in Russian, translated by Dima Piliugin. Introduction When I read var

Microsoft.SQL.Server2012.Performance.Tuning.Cookbook学习笔记(二)

Creating trace with system stored procedures Following are the stored procedures which you should know: sp_trace_create: This stored procedure is used to create a trace and returns the ID of newly created trace sp_trace_setevent: This stored procedur

Microsoft.SQL.Server2012.Performance.Tuning.Cookbook学习笔记(一)

一.Creating a trace or workload 注意点: In the Trace Properties dialog box, there is a checkbox option in the General tab with the caption Server processes trace data, to specify whethertrace data should be processed on the server. If not checked, trace

JavaScript最佳实践:性能

注意作用域 避免全局查找 一个例子: function updateUI(){ var imgs = document.getElementByTagName("img"); for(var i=0, len=imgs.length; i<len; i++){ imgs[i].title = document.title + " image " + i; } var msg = document.getElementById("msg");

ngRoute+ngAnimate与JQM中的页面跳转的区别

1.ngRoute+ngAnimate与jQM中的页面跳转有何异同? 相同点: (1)完整的HTML只需要一个 (2)使用异步AJAX请求获取下一个页面 (3)可以实现转场动画 不同点: (1)ngRoute需要配置路由字典:jQM没有,更加灵活 (2)ngRoute访问路由地址的格式——特殊格式的hash http://xxx/index.html#/main jQM访问页面地址——普通的URL http://xxx/tpl/main.html (3)ngRoute访问的路由页面可以使用F5刷

开放平台-web实现QQ第三方登录

应用场景 web应用通过QQ登录授权实现第三方登录. 操作步骤 1  注册成为QQ互联平台开发者,http://connect.qq.com/ 2  准备一个可访问的域名,如dev.foo.com 3  创建网页应用,配置必要信息,其中包括域名以及回调地址: 其中域名需要验证,需确保对域名主机有足够的控制权限 4  获取应用appID.appKey进行开发 登录流程 开发平台的登录授权采取oauth2.0机制,这也是目前几乎所有互联网开放平台所采取的方式. 需更多了解oauth2.0可参考阮老师

静态html传参数

记下来备忘 a.html <html> <head> <body> <a href="c.html?test=大师大师" target="_blank">aaaaaaaaaaa</a> </body> </html> c.html <html> <head> <script language="javascript"> func

Microsoft SQL Server Version List(SQL Server 版本)

原帖地址 What version of SQL Server do I have? This unofficial build chart lists all of the known Service Packs (SP), Cumulative Updates (CU), patches, hotfixes and other builds of MS SQL Server 2014, 2012, 2008 R2, 2008, 2005, 2000, 7.0, 6.5 and 6.0 tha