Skip to main content
December 26, 2022
Question

Dynamic Link Configuration

  • December 26, 2022
  • 4 replies
  • 0 views

How to get another interface on click of dynamic link in main interface?

example: Interface ABC having dynamic link on click of that link want to open another interface say XYZ.
Please do help how to configure.

    4 replies

    December 26, 2022

    Hi Anita, 

    Please go through this link https://docs.appian.com/suite/help/22.4/Dynamic_Link_Component.html 

    And try Start Process Link instead of dynamic link.

    December 26, 2022

    There is no PM, its just record summary but can't use record link by considering some UI concerns. So need to use dynamicLink only

    Participating Frequently
    December 26, 2022

    Hi Anita, Please refer to this one. Hope it helps


    a!localVariables(
      local!priority,
      {
        a!columnsLayout(
          columns: {
            a!columnLayout(
              contents: {
                a!linkField(
                  label: "Link Field",
                  links: {
                    a!dynamicLink(
                      label: "Link",
                      value: "High",
                      saveInto: local!priority
                    )
                  }
                )
              }
            )
          }
        ),
        a!columnsLayout(
          columns: {
            a!columnLayout(
              contents: {
                if(
                  a!isNullOrEmpty(local!priority),
                  {},
                  rule!AG_InterfaceXYZ()
                )
              }
            )
          }
        )
      }
    )

    December 29, 2022

    Thank you so much!! It worked