VB Flashcards

1
Q

event

A

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)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

container_event

A

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’]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

container_type

A

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’

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

container_path

A

Basically approx = the page URL in the URL bar

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

container_id

A

= page name! (if container_type==’Page’)

also it’s the last part of container_path

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

container_parent_id

A

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)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Which variable to use to filter for NGS app?

A

fa_product_family

How well did you know this?
1
Not at all
2
3
4
5
Perfectly