Previous Topic: %ForEachFKAtt()Next Topic: %ForEachFKColumn()


%ForEachFKAttribute()

Expands the macro code for each of the foreign key attributes migrated through the current relationship. Note: Returns attributes, not columns; for columns, see %ForEachFKColumn().

Syntax

%ForEachFKAttribute() {

<macro code>

}

Syntax Example

%ForEachFKAttribute() {

%AttFieldName

}

Expansion

master_number

movie_copy_number

Full Syntax

%ForEachFKAttribute(<separator>) {

<macro code>

}

Full Syntax Example

%ForEachFKAttribute(", ") {%AttFieldName}

Expansion

master_number, movie_copy_number

Usage

Classified as a Relationship macro. A relationship must be in scope. <separator> is optional. Can be used in RI or Rel Override, %ForEachParentRel, %ForEachChildRel.