Skip to main content
January 22, 2026
Question

record view in site

  • January 22, 2026
  • 2 replies
  • 0 views

I have two different screen where one screen has summary and other screen has details of each task. now both screens has same view and details screen should check wether the task is primary or not if the task is primary then it should display the name associated with that task. If the task is secondary the it should display the names associated with that record. how to do it

    2 replies

    shubhama926776
    January 22, 2026

    I'm not sure I understood your question correctly, but in your details screen, use conditional logic to display the name dynamically if primary and secondary tasks are stored in the same table.
    if(
    ri!task.isPrimary,
    ri!task.taskName,
    ri!record.associatedNames
    )

    stefanhelzle0001
    January 22, 2026

    Did you consider using process tasks? This would allow you to use all of the Appian out of the box features.