VB Flashcards
event
It indicates which of two major types of things a user did (enter a page or do something within a page). Also can be about page loading or fetching info from server (ie REST calls)
runtimeEvent (page entry/exit)
* NON-MEANINGFUL (filter out) if df.container_type != ‘Page’
componentEvent (user interacting with the page)
fetch (REST calls)
container_event
A more fine-grained explanation of what the user did, assuming
event.isin([‘runtimeEvent’, ‘componentEvent’]
if event==’runtimeEvent’: vbEnter or vbExit
if event==’componentEvent’: (usually) human-readable indication of what the user did, such as ‘currentRecordChangedEvent’ or ‘onCancelButtonClick’
NON-MEANINGFUL (filter out):
[‘ojSpOverrideThemeConfiguration’, ‘notificationsPollListener’]
container_type
The level which we’re talking about. From highest to lowest:
Application
Flow
Page
lower ones like Layout, Fragment, LayoutExtension
NON-MEANINGFUL (filter out):
[‘PageExtension’]
Anything other than ‘Page’ if event==’runtimeEvent’
container_path
Basically approx = the page URL in the URL bar
container_id
= page name! (if container_type==’Page’)
also it’s the last part of container_path
container_parent_id
The name of whatever entity is 1 above the container_type in this row (and also the 2nd-to-last part of the container_path).
E.g., if container_type==’Page’, then the container_parent_id will be the name of the ‘Flow’ parent for this page. (note: in NGS, flows aren’t meaningful)
Which variable to use to filter for NGS app?
fa_product_family