壹佰网|ERP100 - 企业信息化知识门户

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 2359|回复: 27

[二次开发] 开发FORM时遇到点技术问题--LOV 查询

  [复制链接]
发表于 2011/10/12 13:32:45 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。如果您注册时有任何问题请联系客服QQ: 83569622  。

您需要 登录 才可以下载或查看,没有帐号?注册

x
本帖最后由 ANRRY258 于 2011/10/12 14:28 编辑

大家好,本人新手,开发FORM时遇到点技术问题,需要向大家请教下
如下画面,是个主从表关系FORM , 选择ORG ,customer Code 后 马上执行从表查询,将line的明细资料查询出来,
不知道如何实现?请高手指点下,谢谢!
应该用哪个触发器呢?
as.jpg

as.jpg
as.jpg
发表于 2011/10/12 13:35:24 | 显示全部楼层
不明真相的圍觀群眾。{:soso_e143:}
发表于 2011/10/12 14:06:51 | 显示全部楼层
试试在item ORG or customer Code 的when-Validate-item trigger中 check :
if ORG is not null and customer Code is not null then
Query语句,--自己写吧
end lf;
发表于 2011/10/12 14:06:52 | 显示全部楼层
试试在item ORG or customer Code 的when-Validate-item trigger中 check :
if ORG is not null and customer Code is not null then
Query语句,--自己写吧
end lf;
发表于 2011/10/12 14:06:52 | 显示全部楼层
试试在item ORG or customer Code 的when-Validate-item trigger中 check :
if ORG is not null and customer Code is not null then
Query语句,--自己写吧
end lf;
 楼主| 发表于 2011/10/12 14:18:45 | 显示全部楼层
Iforit 发表于 2011/10/12 14:06
试试在item ORG or customer Code 的when-Validate-item trigger中 check :
if ORG is not null and cust ...

我本来也是这么写的

query -->
go_block('DISCOUNT_LINES');
     set_block_property('DISCOUNT_LINES',default_where,'header_id  ='||''''||v_head_id);
     execute_query;

但是 不行。。。
ds.jpg

点评

MASTER_DETAIL的EXECUTE_QUERY,是在MASTER BLOCK上执行。 看LZ的界面,MASTER BLOCK也是QUERY BLOCK,加个按钮写吧,写法一样但不用GO BLOCK。 另外,你的HEADER_ID应该是数字型,为什么要在条件里加上“‘”呢?  发表于 2011/10/13 21:25
发表于 2011/10/12 14:45:59 | 显示全部楼层
ANRRY258 发表于 2011/10/12 14:18
我本来也是这么写的

query -->

你在LOV输入的时候,你确定header_id 有值了吗?我的理解是这时还没有值的

 楼主| 发表于 2011/10/12 14:51:46 | 显示全部楼层
Iforit 发表于 2011/10/12 14:45
你在LOV输入的时候,你确定header_id 有值了吗?我的理解是这时还没有值的

有值的,但是不行,还有其他办法不
ssss.JPG
发表于 2011/10/12 15:29:29 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
发表于 2011/10/12 15:31:29 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
 楼主| 发表于 2011/10/12 15:41:44 | 显示全部楼层
无梦 发表于 2011/10/12 15:31
或者既然你是主从表,那就用创建relation

如果用F11  ,ctrl+ F11  ,是可以查出来的,
但是现在是操作方式是以上那样,要怎么查询出来?
发表于 2011/10/12 15:46:00 | 显示全部楼层
你别go line 了 直接在head查询
set_block_property('DISCOUNT_headers',default_where,'org ='||''''||XX and ‘code’=XX);
     execute_query;
  他就会带出来的
发表于 2011/10/12 15:46:00 | 显示全部楼层
你别go line 了 直接在head查询
set_block_property('DISCOUNT_headers',default_where,'org ='||''''||XX and ‘code’=XX);
     execute_query;
  他就会带出来的
发表于 2011/10/12 15:52:27 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
 楼主| 发表于 2011/10/12 15:57:06 | 显示全部楼层
Iforit 发表于 2011/10/12 15:46
你别go line 了 直接在head查询
set_block_property('DISCOUNT_headers',default_where,'org ='||''''||X ...

还是不行,

ddd.JPG
 楼主| 发表于 2011/10/12 16:00:30 | 显示全部楼层
无梦 发表于 2011/10/12 15:52
创建relation后header有值后line自然就全部list出来了

relation 肯定有啊,
现在说的不是这个,是要怎么触发那个trigger ,然后会调用这个 主从关系
发表于 2011/10/12 16:18:53 | 显示全部楼层
在item ORG or customer Code 的when-Validate-item trigger中 check :
if ORG is not null and customer Code is not null then
set_block_property('DISCOUNT_headers',default_where,'org ='||''''||XX and ‘code=‘XX);
     execute_query;
end lf; 试一下~~
发表于 2011/10/12 16:18:54 | 显示全部楼层
在item ORG or customer Code 的when-Validate-item trigger中 check :
if ORG is not null and customer Code is not null then
set_block_property('DISCOUNT_headers',default_where,'org ='||''''||XX and ‘code=‘XX);
     execute_query;
end lf; 试一下~~
发表于 2011/10/12 16:18:54 | 显示全部楼层
在item ORG or customer Code 的when-Validate-item trigger中 check :
if ORG is not null and customer Code is not null then
set_block_property('DISCOUNT_headers',default_where,'org ='||''''||XX and ‘code=‘XX);
     execute_query;
end lf; 试一下~~
 楼主| 发表于 2011/10/12 16:40:36 | 显示全部楼层
Iforit 发表于 2011/10/12 16:18
在item ORG or customer Code 的when-Validate-item trigger中 check :
if ORG is not null and customer ...

execute_query; 貌似不能在这个trigger 执行。
FRM-40737: Illegal restricted procedure get_relation_property in WHEN-V...

您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|Archiver|小黑屋|手机版|壹佰网 ERP100 ( 京ICP备19053597号-2 )

Copyright © 2005-2012 北京海之大网络技术有限责任公司 服务器托管由互联互通
手机:13911575376
网站技术点击发送消息给对方83569622   广告&合作 点击发送消息给对方27675401   点击发送消息给对方634043306   咨询及人才点击发送消息给对方138011526

GMT+8, 2025/11/29 20:12 , Processed in 0.046061 second(s), 21 queries , File On.

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表