An LUDB function is a Project function invoked from an SQL query to perform more complex operations on LU (it is a must to run get/use to see the LUDB functions) or reference data (always available) than those performed using standard SQL statements.
To create an LUDB function, refer to the steps in How to Create Project Functions.
When creating an LUBD function, make sure that:
String sql =
"SELECT CUSTOMER_ID, ACTIVITY_ID, ACTIVITY_DATE, ACTIVITY_NOTE, fnCreateInstId(?) IID FROM Customer.ACTIVITY";
Db.Rows rows = ludb().fetch(sql,input);
for (Db.Row row:rows){
yield(row.cells());
}
Full example of fnCreateInstId LUDB Function can be found in the Demo project.
An LUDB function is a Project function invoked from an SQL query to perform more complex operations on LU (it is a must to run get/use to see the LUDB functions) or reference data (always available) than those performed using standard SQL statements.
To create an LUDB function, refer to the steps in How to Create Project Functions.
When creating an LUBD function, make sure that:
String sql =
"SELECT CUSTOMER_ID, ACTIVITY_ID, ACTIVITY_DATE, ACTIVITY_NOTE, fnCreateInstId(?) IID FROM Customer.ACTIVITY";
Db.Rows rows = ludb().fetch(sql,input);
for (Db.Row row:rows){
yield(row.cells());
}
Full example of fnCreateInstId LUDB Function can be found in the Demo project.