我的查询类似于:
SELECT empno, empname, deptno
FROM EMP
以表格形式,其中deptno
是包含DEPT中所有记录的SELECT LIST。我试图在LOV查询中的子选择中使用empno
,以限制返回的DEPT记录的数量。
如何从带有LOV查询的表格形式中引用EMPNO?
答案 0 :(得分:0)
您希望以某种形式对第3列使用 class ViewController: UIViewController, CLLocationManagerDelegate, MKMapViewDelegate {
// Top level class stuff, create CLLocationManager Instance
var manager = CLLocationManager()
// set initial value of counter to 0
var updateCount = 0
func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
//If the location has updated less than 3 times, continue to update the location
if updateCount < 3 {
let region: MKCoordinateRegion = MKCoordinateRegionMake(ubicacionUsuario, span)
mapView.setRegion(region, animated: true)
updateCount += 1
} else {
// Once the update has occurred a satisfactory number of times, prevent the update from automaitcally occuring again
manager.stopUpdatingLocation()
}
}
}
。您需要将其设置为标准报告列。您的查询将类似于:
APEX_ITEM.SELECT_LIST_FROM_QUERY
对于SELECT empno, empname,
apex_item.select_list_from_query(
p_idx => 3,
p_query => 'SELECT dname, deptno FROM dept' ) AS deptno
FROM emp
参数,您需要选择表格形式未使用的内容。您可能必须检查表格形式生成的代码,并选择尚未使用的p_idx
索引。表单的值将出现在f0x
数组变量中。