• 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.

Use session ID in data widget

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

  • Use session ID in data widget

    Hello,

    I've a file on Iseries which contains for instance the session-id. Can I filter in the data widget on the current session ID or how can I filter out the records of the current session ID?

    Best regards,
    Andy

  • #2
    Hi Andy,

    You can do it directly on data source using vvIn_Char

    For example:
    Code:
    SELECT
      vvusrid,
      vvenvid,
      vvmethod
    FROM
      vvsessdata
    WHERE
      (vvsessid = vvin_char('sid'))

    Comment

    Working...
    X