2.5 Build extended data types and enumerations for finance and operations apps Flashcards

1
Q

Tables?

A

Contain rows and columns
Stored in db and work together to deliver data to the user in outputs such as forms and reports

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

Table components?

A

Fields
Field groups
Indexes
Relations
Delete actions
State machines
Mappings
Methods
Events

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

Table fields?

A

Make up the data in the table and can be base enumerations or EDTs

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

Table field groups?

A

Logical groupings of physical database fields.
Can be used on forms and reports

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

Table indexes?

A

Method for speeding up retrieval of data from a table

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

Table relations?

A

Defines how a table relates to records in other tables

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

Table delete actions?

A

Node is used on tables that are upgraded from AX versions.
It is used to detail what should happen when data in related table is deleted

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

Table state machines?

A

Perform state transitions within the workflow without writing any additional code
Used with workflows

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

Table mappings?

A

With a map you can associate a map field with a field in one or more tables
Enables to use the same field name to access fields with different names in different tables

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

Table methods?

A

Pieces of code that are added to a table that can be run when certain events or changes in data occur

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

Table events?

A

Pieces of code that are raised as preceding and succeeding operations around base method

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

How should indexes be ordered in table?

A

Highest number of unique values to smallest number

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

3 types of indexes?

A

Primary index (unique key to each record in table)
Clustered (organizes data for a table according to the order of the index)
Non-Clustered (quickly references data that is found in the clustered index by using a specified set of columns)

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

Relation types?

A

Normal relation (relation with no conditions)
Field fixed relation (relation fields to restrict the records in the primary table)
Related field fixed relation (relation fields that restrict the records in the related table)
Foreign key relation (correspondence between foreign key field in the present table and the primary key field in another parent table)

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