下拉 Apex 表单的源问题
Drop down source issues for Apex Form
我创建了一个 table 用作表单下拉列表的来源。目标是根据所有者是谁,只有哪些可能的选项可用于部门代码。我让废料所有者正确显示,但不幸的是我无法显示部门代码。没有选项能够弹出。这是我的代码的样子:
Select DEPT_CODE, DEPT_CODE as Value From Degrade_Robots
WHERE SO_NAME = :P7_SCRAP_OWNER
group by DEPT_CODE
order by DEPT_CODE
我的 table 设置如下:
你没有聚合任何东西;不要使用 group by
但 distinct
.
select distinct
dept_code as display_value,
dept_code as return_value
from degrade_robots
where so_name = :P7_SCRAP_OWNER
order by dept_code;
由于您没有在列表中看到任何内容,我推测那是因为您忘记提及 Select 列表的 LoV 中的 P7_SCRAP_OWNER
项目 父项目 属性.
我创建了一个 table 用作表单下拉列表的来源。目标是根据所有者是谁,只有哪些可能的选项可用于部门代码。我让废料所有者正确显示,但不幸的是我无法显示部门代码。没有选项能够弹出。这是我的代码的样子:
Select DEPT_CODE, DEPT_CODE as Value From Degrade_Robots
WHERE SO_NAME = :P7_SCRAP_OWNER
group by DEPT_CODE
order by DEPT_CODE
我的 table 设置如下:
你没有聚合任何东西;不要使用 group by
但 distinct
.
select distinct
dept_code as display_value,
dept_code as return_value
from degrade_robots
where so_name = :P7_SCRAP_OWNER
order by dept_code;
由于您没有在列表中看到任何内容,我推测那是因为您忘记提及 Select 列表的 LoV 中的 P7_SCRAP_OWNER
项目 父项目 属性.