Record view in embedded interface

Hi all,

I am trying to use record-view in an embedded interface. The syntax for the same is specified as :

<appian-record-view recordTypeUrlStub="U1TzGg" recordIdentifier="112" recordViewUrlStub="summary"></appian-record-view>

What does the attribute "recordIdentifier" specify and how to obtain its value? Any help would be much appreciated.

Thank you,

Ishani

  Discussion posts and replies are publicly visible

Parents
  • When you create a record type, you must define a source that has an identifier. However, it varies depending on the source type:

    • Entity-Backed Record - the identifier is the primary key CDT field for your source entity
    • Process-Backed Record - the identifier is the process ID (pp!id)
    • Expression-Backed Record - the identifier is the primary key CDT field for your source CDT

    In this scenario, you need to use the correct ID for the source type. For example, suppose you use an entity-backed record that queries data from a database table called "Cases" and that table has a primary key field called "caseId". If you use a value for caseId in the "recordIdentfier" above, Appian will display the corresponding data for the case that matches that ID.

Reply
  • When you create a record type, you must define a source that has an identifier. However, it varies depending on the source type:

    • Entity-Backed Record - the identifier is the primary key CDT field for your source entity
    • Process-Backed Record - the identifier is the process ID (pp!id)
    • Expression-Backed Record - the identifier is the primary key CDT field for your source CDT

    In this scenario, you need to use the correct ID for the source type. For example, suppose you use an entity-backed record that queries data from a database table called "Cases" and that table has a primary key field called "caseId". If you use a value for caseId in the "recordIdentfier" above, Appian will display the corresponding data for the case that matches that ID.

Children