• If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Announcement

Collapse
No announcement yet.

NAB-Create a form not tied to a table.

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • NAB-Create a form not tied to a table.

    Not sure if possible but would be nice if form fields could be used that did not need to be tied to a data source. In most cases I am using form fields like when you built the "App Usage" app in the first notebook series. Hardly ever do I create a form to edit (actually I never have) because that is done so well with the edit grid.

  • #2
    Ryan,

    We do have this as a discovery item and as you mentioned in one of our Valence developer diaries sessions we created a data source that was a temp table/record since we didn't have a table on db2 that matched our requirement.

    Example SQL DS for others that might stumble onto this post:
    Code:
    SELECT
      current date AS fromdate,
      current date AS todate,
      cast(123456789 AS bigint) AS userid
    FROM
      sysibm.sysdummy1
    Thanks

    Comment

    Working...
    X