<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Display Value from two tables in Interface</title><link>https://community.appian.com/discussions/f/user-interface/20234/display-value-from-two-tables-in-interface</link><description>Hello All, I have 2 table, All fields from Table2 automatically populated from Table1 but if any changes made in Table2 fields the data should Display in Table2. Can Anyone help me with? Thanks in Advance</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Display Value from two tables in Interface</title><link>https://community.appian.com/thread/78979?ContentTypeID=1</link><pubDate>Sun, 17 Jan 2021 09:46:01 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:f43a9087-7298-414f-999a-a7b2a58bcd92</guid><dc:creator>Dara Raghuveer Prasad Meena</dc:creator><description>&lt;p&gt;yeah okey, Thankyou Bhavana&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Display Value from two tables in Interface</title><link>https://community.appian.com/thread/78978?ContentTypeID=1</link><pubDate>Sun, 17 Jan 2021 09:44:25 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:2e267aa2-57d6-46b6-a8c5-4629d43a05f4</guid><dc:creator>Bhavana Ingale</dc:creator><description>&lt;p&gt;Hello Raghuveer,&lt;/p&gt;
&lt;p&gt;First of all you have to convert your local variable into rule input&amp;nbsp; using save into function , then you can pass this rule input to your process model as variable , using script task you can pass these process variable to write to data store entity with updated values&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Display Value from two tables in Interface</title><link>https://community.appian.com/thread/78975?ContentTypeID=1</link><pubDate>Sat, 16 Jan 2021 21:15:26 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:19672324-9347-40b2-95cd-50c1ada84e89</guid><dc:creator>Dara Raghuveer Prasad Meena</dc:creator><description>&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;{
  a!localVariables(
    /* List of steps in the milestone bar */
    local!milestoneBarSteps: {&amp;quot;Lead Details&amp;quot;, &amp;quot;Customer Details&amp;quot;, &amp;quot;Booking Details&amp;quot;, &amp;quot;Travel Info&amp;quot;},
    local!currentMilestoneBarStep: 1,
    {
      a!columnsLayout(
        columns: {
          a!forEach(
            items: local!milestoneBarSteps,
            expression: if(
              /* Completed step */
              fv!index &amp;lt; local!currentMilestoneBarStep,
              a!columnLayout(
                contents: {
                  a!cardLayout(
                    contents: {
                      a!sideBySideLayout(
                        items: {
                          a!sideBySideItem(
                            item: a!richTextDisplayField(
                              labelPosition: &amp;quot;COLLAPSED&amp;quot;,
                              value: {
                                a!richTextItem(
                                  text: {
                                    a!richTextIcon(
                                      icon: &amp;quot;check&amp;quot;,
                                      altText: &amp;quot;Completed step&amp;quot;
                                    )
                                  },
                                  size: &amp;quot;MEDIUM&amp;quot;,
                                  style: &amp;quot;STRONG&amp;quot;
                                )
                              },
                              align: &amp;quot;CENTER&amp;quot;
                            ),
                            width: &amp;quot;MINIMIZE&amp;quot;
                          ),
                          a!sideBySideItem(
                            item: a!richTextDisplayField(
                              labelPosition: &amp;quot;COLLAPSED&amp;quot;,
                              value: {
                                a!richTextItem(
                                  text: upper(fv!item),
                                  size: &amp;quot;MEDIUM&amp;quot;
                                )
                              },
                              align: &amp;quot;LEFT&amp;quot;
                            )
                          )
                        }
                      )
                    },
                    /* Link to go to selected step */
                    link: a!dynamicLink(
                      value: fv!index,
                      saveInto: local!currentMilestoneBarStep
                    ),
                    style: &amp;quot;ACCENT&amp;quot;,
                    showBorder: false,
                    accessibilityText: &amp;quot;Completed step. Press space to view step.&amp;quot;
                  )
                }
              ),
              if(
                /* Future step */
                fv!index &amp;gt; local!currentMilestoneBarStep,
                a!columnLayout(
                  contents: {
                    a!cardLayout(
                      contents: {
                        a!sideBySideLayout(
                          items: {
                            a!sideBySideItem(
                              item: a!richTextDisplayField(
                                labelPosition: &amp;quot;COLLAPSED&amp;quot;,
                                value: {
                                  a!richTextItem(
                                    text: fv!index,
                                    size: &amp;quot;MEDIUM&amp;quot;,
                                    style:&amp;quot;STRONG&amp;quot;
                                  )
                                },
                                align: &amp;quot;CENTER&amp;quot;
                              ),
                              width: &amp;quot;MINIMIZE&amp;quot;
                            ),
                            a!sideBySideItem(
                              item: a!richTextDisplayField(
                                labelPosition: &amp;quot;COLLAPSED&amp;quot;,
                                value: {
                                  a!richTextItem(
                                    text: upper(fv!item),
                                    size: &amp;quot;MEDIUM&amp;quot;
                                  )
                                },
                                align: &amp;quot;LEFT&amp;quot;
                              )
                            )
                          }
                        )
                      },
                      height: &amp;quot;AUTO&amp;quot;,
                      style: &amp;quot;#efefef&amp;quot;,
                      marginBelow: &amp;quot;NONE&amp;quot;,
                      showBorder: false,
                      accessibilityText: &amp;quot;Future step&amp;quot;
                    )
                  }
                ),
                /* Current step */
                a!columnLayout(
                  contents: {
                    a!cardLayout(
                      contents: {
                        a!sideBySideLayout(
                          items: {
                            a!sideBySideItem(
                              item: a!richTextDisplayField(
                                labelPosition: &amp;quot;COLLAPSED&amp;quot;,
                                value: {
                                  a!richTextItem(
                                    text: {
                                      a!richTextIcon(
                                        icon: &amp;quot;hand-o-right&amp;quot;,
                                        altText: &amp;quot;Current step&amp;quot;,
                                        size: &amp;quot;MEDIUM&amp;quot;
                                      )
                                    },
                                    size: &amp;quot;MEDIUM&amp;quot;,
                                    style: &amp;quot;STRONG&amp;quot;
                                  )
                                },
                                align: &amp;quot;CENTER&amp;quot;
                              ),
                              width: &amp;quot;MINIMIZE&amp;quot;
                            ),
                            a!sideBySideItem(
                              item: a!richTextDisplayField(
                                labelPosition: &amp;quot;COLLAPSED&amp;quot;,
                                value: {
                                  a!richTextItem(
                                    text: upper(fv!item),
                                    size: &amp;quot;MEDIUM&amp;quot;,
                                    style: &amp;quot;STRONG&amp;quot;
                                  )
                                },
                                align: &amp;quot;LEFT&amp;quot;
                              )
                            )
                          }
                        )
                      },
                      style: &amp;quot;ACCENT&amp;quot;,
                      showBorder: false,
                      accessibilityText: &amp;quot;Current step&amp;quot;
                    )
                  }
                )
              )
            )
          )
        },
        spacing: &amp;quot;DENSE&amp;quot;,
        stackWhen: {&amp;quot;PHONE&amp;quot;,&amp;quot;TABLET_PORTRAIT&amp;quot;}
      ),
      choose(
        local!currentMilestoneBarStep,
        {
          /* Replace this rich text with the component or rule that should populate this step */
          a!richTextDisplayField(
            labelPosition: &amp;quot;COLLAPSED&amp;quot;,
            value: {a!richTextItem(text: &amp;quot;The contents of the first step belong here&amp;quot;, style: &amp;quot;EMPHASIS&amp;quot;)},
            align: &amp;quot;CENTER&amp;quot;
          ),
          a!boxLayout(
            label: &amp;quot;LEAD DETAILS&amp;quot;,
            contents: {
              a!columnsLayout(
                columns: {
                  a!columnLayout(
                    contents: {
                      a!textField(
                        label: &amp;quot;Name&amp;quot;,
                        labelPosition: &amp;quot;ABOVE&amp;quot;,
                        value: ri!lead.name,
                        saveInto: ri!lead.name,
                        refreshAfter: &amp;quot;UNFOCUS&amp;quot;,
                        readOnly: false,
                        disabled: false,
                        validations: {}
                      ),
                      a!textField(
                        label: &amp;quot;Phone Number&amp;quot;,
                        labelPosition: &amp;quot;ABOVE&amp;quot;,
                        value: ri!lead.phoneNo,
                        saveInto: ri!lead.phoneNo,
                        refreshAfter: &amp;quot;UNFOCUS&amp;quot;,
                        disabled: false,
                        validations: if(
                          len(
                            ri!lead.phoneNo
                          ) &amp;gt; 10,
                          &amp;quot;Value may not be longer than 10 characters. You have entered &amp;quot; &amp;amp; len(
                            ri!lead.phoneNo
                          ) &amp;amp; &amp;quot; characters.&amp;quot;,
                          null
                        )
                      ),
                      a!textField(
                        label: &amp;quot;Email&amp;quot;,
                        labelPosition: &amp;quot;ABOVE&amp;quot;,
                        value: ri!lead.email,
                        saveInto: ri!lead.email,
                        refreshAfter: &amp;quot;UNFOCUS&amp;quot;,
                        disabled: false,
                        validations: if(
                          or(
                            isnull(trim(ri!lead.email)),
                            len(trim(ri!lead.email)) &amp;gt; 255,
                            length(split(trim(ri!lead.email), &amp;quot; &amp;quot;)) &amp;gt; 1,
                            count(split(ri!lead.email, &amp;quot;@&amp;quot;)) &amp;lt;&amp;gt; 2
                          ),
                          &amp;quot;Invalid Email Address&amp;quot;,

                          with(
                            localPart: split(trim(ri!lead.email),&amp;quot;@&amp;quot;)[1],
                            domainPart: split(trim(ri!lead.email),&amp;quot;@&amp;quot;)[2],

                            if(
                              or(
                                length(split(domainPart, &amp;quot;.&amp;quot;)) &amp;lt; 2,
                                contains(split(localPart, &amp;quot;.&amp;quot;), &amp;quot;&amp;quot;),
                                contains(split(domainPart, &amp;quot;.&amp;quot;), &amp;quot;&amp;quot;),
                                not(isnull(stripwith(lower(domainPart), &amp;quot;abcdefghijklmnopqrstuvwxyz1234567890-.&amp;quot;))),
                                not(isnull(stripwith(lower(localPart), &amp;quot;abcdefghijklmnopqrstuvwxyz1234567890-._+&amp;#39;&amp;amp;%&amp;quot;)))
                              ),

                              &amp;quot;Invalid Email Address&amp;quot;,

                              &amp;quot;&amp;quot;

                            )
                          )
                        )
                      ),
                      a!paragraphField(
                        label: &amp;quot;Address&amp;quot;,
                        labelPosition: &amp;quot;ABOVE&amp;quot;,
                        value: ri!lead.address,
                        saveInto: ri!lead.address,
                        refreshAfter: &amp;quot;UNFOCUS&amp;quot;,
                        height: &amp;quot;MEDIUM&amp;quot;,
                        disabled: false,
                        validations: {}
                      )
                    }
                  ),
                  a!columnLayout(
                    contents: {
                      a!dateField(
                        label: &amp;quot;Date&amp;quot;,
                        labelPosition: &amp;quot;ABOVE&amp;quot;,
                        value: ri!lead.date,
                        saveInto: ri!lead.date,
                        disabled: false,
                        validations: {}
                      ),
                      a!textField(
                        label: &amp;quot;Destination&amp;quot;,
                        labelPosition: &amp;quot;ABOVE&amp;quot;,
                        value: ri!lead.destination,
                        saveInto: ri!lead.destination,
                        refreshAfter: &amp;quot;UNFOCUS&amp;quot;,
                        disabled: false,
                        validations: {}
                      ),
                      a!sideBySideLayout(
                        items: {
                          a!sideBySideItem(
                            item: a!dateField(
                              label: &amp;quot;Date From&amp;quot;,
                              labelPosition: &amp;quot;ABOVE&amp;quot;,
                              value: ri!lead.date_from,
                              saveInto: ri!lead.date_from,
                              disabled: false,
                              validations: {}
                            )
                          ),
                          a!sideBySideItem(
                            item: a!dateField(
                              label: &amp;quot;Date To&amp;quot;,
                              labelPosition: &amp;quot;ABOVE&amp;quot;,
                              value: ri!lead.date_to,
                              saveInto: ri!lead.date_to,
                              disabled: false,
                              validations: {}
                            )
                          )
                        }
                      ),
                      a!sideBySideLayout(
                        items: {
                          a!sideBySideItem(
                            item: a!integerField(
                              label: &amp;quot;No of Adults&amp;quot;,
                              labelPosition: &amp;quot;ABOVE&amp;quot;,
                              value: ri!lead.adults,
                              saveInto: ri!lead.adults,
                              refreshAfter: &amp;quot;UNFOCUS&amp;quot;,
                              disabled: false,
                              validations: {}
                            )
                          ),
                          a!sideBySideItem(
                            item: a!integerField(
                              label: &amp;quot;No of Kids&amp;quot;,
                              labelPosition: &amp;quot;ABOVE&amp;quot;,
                              value: ri!lead.kids,
                              saveInto: ri!lead.kids,
                              refreshAfter: &amp;quot;UNFOCUS&amp;quot;,
                              disabled: false,
                              validations: {}
                            )
                          )
                        }
                      ),
                      a!paragraphField(
                        label: &amp;quot;Aditional Details&amp;quot;,
                        labelPosition: &amp;quot;ABOVE&amp;quot;,
                        value: ri!lead.comments,
                        saveInto: ri!lead.comments,
                        refreshAfter: &amp;quot;UNFOCUS&amp;quot;,
                        height: &amp;quot;MEDIUM&amp;quot;,
                        disabled: false,
                        validations: {}
                      )
                    }
                  )
                }
              )
            },
            style: &amp;quot;STANDARD&amp;quot;,
            marginBelow: &amp;quot;STANDARD&amp;quot;
          )
        },
        {
          /* Replace this rich text with the component or rule that should populate this step */
          a!richTextDisplayField(
            labelPosition: &amp;quot;COLLAPSED&amp;quot;,
            value: {a!richTextItem(text: &amp;quot;The contents of the second step belong here&amp;quot;, style: &amp;quot;EMPHASIS&amp;quot;)},
            align: &amp;quot;CENTER&amp;quot;
          ),
          a!boxLayout(
            label: &amp;quot;CUSTOMER DETAILS&amp;quot;,
            contents: {
              a!columnsLayout(
                columns: {
                  a!columnLayout(
                    contents: {
                      a!textField(
                        label: &amp;quot;Name&amp;quot;,
                        labelPosition: &amp;quot;ABOVE&amp;quot;,
                        value: if(len(ri!lead.name)&amp;gt;(ri!CTA_Booking.customer.name), (ri!CTA_Booking.customer.name &amp;amp; ri!lead.name), ri!CTA_Booking.customer.name),
                        saveInto: ri!CTA_Booking.customer.name,


                        refreshAfter: &amp;quot;UNFOCUS&amp;quot;,

                        masked: false
                      ),
                      a!textField(
                        label: &amp;quot;Address&amp;quot;,
                        labelPosition: &amp;quot;ABOVE&amp;quot;,
                        value:  if(len(ri!lead.address)&amp;gt;(ri!CTA_Booking.customer.address), (ri!CTA_Booking.customer.address &amp;amp; ri!lead.address), ri!CTA_Booking.customer.address),
                        saveInto: ri!CTA_Booking.customer.address,

                        refreshAfter: &amp;quot;UNFOCUS&amp;quot;,

                        validations: {}
                      )
                    }
                  ),
                  a!columnLayout(
                    contents: {
                      a!textField(
                        label: &amp;quot;Phone Number&amp;quot;,
                        labelPosition: &amp;quot;ABOVE&amp;quot;,
                        value:  if(len(ri!lead.phoneNo)&amp;gt;(ri!CTA_Booking.customer.phoneNo), (ri!CTA_Booking.customer.phoneNo &amp;amp; ri!lead.phoneNo), ri!CTA_Booking.customer.phoneNo),
                        saveInto: ri!CTA_Booking.customer.phoneNo,

                        validations: if(
                          len(
                            ri!lead.phoneNo
                          ) &amp;gt; 10,
                          &amp;quot;Value may not be longer than 10 characters. You have entered &amp;quot; &amp;amp; len(
                            ri!lead.phoneNo
                          ) &amp;amp; &amp;quot; characters.&amp;quot;,
                          null
                        )
                      ),
                      a!textField(
                        label: &amp;quot;Email Address&amp;quot;,
                        labelPosition: &amp;quot;ABOVE&amp;quot;,
                        value:  if(len(ri!lead.email)&amp;gt;(ri!CTA_Booking.customer.email), (ri!CTA_Booking.customer.email &amp;amp; ri!lead.email), ri!CTA_Booking.customer.email),
                        saveInto: ri!CTA_Booking.customer.email,
                        refreshAfter: &amp;quot;UNFOCUS&amp;quot;,

                        validations: if(
                          or(
                            isnull(trim(ri!lead.email)),
                            len(trim(ri!lead.email)) &amp;gt; 255,
                            length(split(trim(ri!lead.email), &amp;quot; &amp;quot;)) &amp;gt; 1,
                            count(split(ri!lead.email, &amp;quot;@&amp;quot;)) &amp;lt;&amp;gt; 2
                          ),
                          &amp;quot;Invalid Email Address&amp;quot;,

                          with(
                            localPart: split(trim(ri!lead.email),&amp;quot;@&amp;quot;)[1],
                            domainPart: split(trim(ri!lead.email),&amp;quot;@&amp;quot;)[2],

                            if(
                              or(
                                length(split(domainPart, &amp;quot;.&amp;quot;)) &amp;lt; 2,
                                contains(split(localPart, &amp;quot;.&amp;quot;), &amp;quot;&amp;quot;),
                                contains(split(domainPart, &amp;quot;.&amp;quot;), &amp;quot;&amp;quot;),
                                not(isnull(stripwith(lower(domainPart), &amp;quot;abcdefghijklmnopqrstuvwxyz1234567890-.&amp;quot;))),
                                not(isnull(stripwith(lower(localPart), &amp;quot;abcdefghijklmnopqrstuvwxyz1234567890-._+&amp;#39;&amp;amp;%&amp;quot;)))
                              ),

                              &amp;quot;Invalid Email Address&amp;quot;,

                              &amp;quot;&amp;quot;

                            )
                          )
                        )

                      )
                    }
                  )
                }
              )
            },
            style: &amp;quot;STANDARD&amp;quot;,
            marginBelow: &amp;quot;STANDARD&amp;quot;
          )
        },
        {
          /* Replace this rich text with the component or rule that should populate this step */
          a!richTextDisplayField(
            labelPosition: &amp;quot;COLLAPSED&amp;quot;,
            value: {a!richTextItem(text: &amp;quot;The contents of the third step belong here&amp;quot;, style: &amp;quot;EMPHASIS&amp;quot;)},
            align: &amp;quot;CENTER&amp;quot;
          ),
          a!boxLayout(
            label: &amp;quot;BILLING DETAILS&amp;quot;,
            contents: {
              a!columnsLayout(
                columns: {
                  a!columnLayout(
                    contents: {
                      a!dateField(
                        label: &amp;quot;Date&amp;quot;,
                        labelPosition: &amp;quot;ABOVE&amp;quot;,
                        value: if(isnull(ri!CTA_Booking.date),today(),ri!CTA_Booking.date),
                        saveInto: ri!CTA_Booking.date,

                        readOnly: false,
                        disabled: true
                      ),
                      a!dropdownField(
                        label: &amp;quot;Status&amp;quot;,
                        labelPosition: &amp;quot;ABOVE&amp;quot;,
                        placeholder: &amp;quot;--- Select a Value ---&amp;quot;,
                        choiceLabels: cons!CTA_BookingStatus,
                        choiceValues: cons!CTA_BookingStatus,
                        value: ri!CTA_Booking.status,
                        saveInto: ri!CTA_Booking.status,
                        searchDisplay: &amp;quot;AUTO&amp;quot;,
                        disabled: false,
                        validations: {}
                      ),
                      a!textField(
                        label: &amp;quot;Created By&amp;quot;,
                        labelPosition: &amp;quot;ABOVE&amp;quot;,
                        value: loggedinuser(),
                        saveInto: ri!lead.name,
                        refreshAfter: &amp;quot;UNFOCUS&amp;quot;,
                        showWhen: false(),
                        disabled: true,
                        masked: false,
                        validations: {}
                      )
                    }
                  ),
                  a!columnLayout(
                    contents: {
                      a!floatingPointField(
                        label: &amp;quot;Hotel Cost&amp;quot;,
                        labelPosition: &amp;quot;ABOVE&amp;quot;,
                        value: ri!CTA_Booking.hotelCost,
                        saveInto: ri!CTA_Booking.hotelCost,
                        refreshAfter: &amp;quot;KEYPRESS&amp;quot;,
                        validations: {}
                      ),
                      a!floatingPointField(
                        label: &amp;quot;Travel Cost&amp;quot;,
                        labelPosition: &amp;quot;ABOVE&amp;quot;,
                        value: ri!CTA_Booking.travelCost,
                        saveInto: ri!CTA_Booking.travelCost,
                        refreshAfter: &amp;quot;KEYPRESS&amp;quot;,
                        validations: {}
                      ),
                      a!floatingPointField(
                        label: &amp;quot;Additional Cost&amp;quot;,
                        labelPosition: &amp;quot;ABOVE&amp;quot;,
                        value: ri!CTA_Booking.additionalCost,
                        saveInto: ri!CTA_Booking.additionalCost,
                        refreshAfter: &amp;quot;KEYPRESS&amp;quot;,
                        validations: {}
                      ),
                      a!floatingPointField(
                        label: &amp;quot;Total Cost&amp;quot;,
                        labelPosition: &amp;quot;ABOVE&amp;quot;,
                        value: if(
                          or(
                            isnull(
                              ri!CTA_Booking.hotelCost
                            ),
                            isnull(
                              ri!CTA_Booking.travelCost
                            ),
                            isnull(
                              ri!CTA_Booking.additionalCost
                            )
                          ),
                          0,
                          sum(ri!CTA_Booking.hotelCost, ri!CTA_Booking.travelCost,ri!CTA_Booking.additionalCost)  


                        ),
                        saveInto: ri!totalCost,
                        refreshAfter: &amp;quot;KEYPRESS&amp;quot;,
                        disabled: true,
                        validations: {}
                      )
                    }
                  )
                }
              )
            },
            style: &amp;quot;STANDARD&amp;quot;,
            marginBelow: &amp;quot;STANDARD&amp;quot;
          )
        },
        {
          /* Replace this rich text with the component or rule that should populate this step */
          a!richTextDisplayField(
            labelPosition: &amp;quot;COLLAPSED&amp;quot;,
            value: {a!richTextItem(text: &amp;quot;The contents of the fourth step belong here&amp;quot;, style: &amp;quot;EMPHASIS&amp;quot;)},
            align: &amp;quot;CENTER&amp;quot;
          ),
          a!boxLayout(
            label: &amp;quot;TRAVEL INFO&amp;quot;,
            contents: {
              a!columnsLayout(
                columns: {
                  a!columnLayout(
                    contents: {
                      a!textField(
                        label: &amp;quot;Destination&amp;quot;,
                        labelPosition: &amp;quot;ABOVE&amp;quot;,
                        value:  if(len(ri!lead.destination)&amp;gt;(ri!CTA_Booking.travelInfo.destination), (ri!CTA_Booking.travelInfo.destination &amp;amp; ri!lead.destination), ri!CTA_Booking.travelInfo.destination),
                        saveInto: ri!CTA_Booking.travelInfo.destination,

                        refreshAfter: &amp;quot;UNFOCUS&amp;quot;,

                        disabled: false,
                        validations: {}
                      ),
                      a!sideBySideLayout(
                        items: {
                          a!sideBySideItem(
                            item: a!dateField(
                              label: &amp;quot;Date From&amp;quot;,
                              labelPosition: &amp;quot;ABOVE&amp;quot;,
                              value: ri!lead.date_from,
                              /*value: if(len(ri!lead.date_from)&amp;gt;(ri!CTA_Booking.travelInfo.dateFrom), (ri!CTA_Booking.travelInfo.dateFrom &amp;amp; ri!lead.date_from), ri!CTA_Booking.travelInfo.dateFrom),*/
                              saveInto: ri!CTA_Booking.travelInfo.dateFrom,

                              disabled: false,
                              validations: {}
                            )
                          ),
                          a!sideBySideItem(
                            item: a!dateField(
                              label: &amp;quot;Date To&amp;quot;,
                              labelPosition: &amp;quot;ABOVE&amp;quot;,
                              value: ri!lead.date_to,
                              /*value: if(len(ri!lead.date_to)&amp;gt;(ri!CTA_Booking.travelInfo.dateTo), (ri!CTA_Booking.travelInfo.dateTo &amp;amp; ri!lead.date_to), ri!CTA_Booking.travelInfo.dateTo),*/
                              saveInto: ri!CTA_Booking.travelInfo.dateTo,


                              disabled: false,
                              validations: {}
                            )
                          )
                        }
                      )
                    }
                  ),
                  a!columnLayout(
                    contents: {
                      a!integerField(
                        label: &amp;quot;Adults&amp;quot;,
                        labelPosition: &amp;quot;ABOVE&amp;quot;,
                        value: if(len(ri!lead.adults)&amp;gt;(ri!CTA_Booking.travelInfo.adults), (ri!CTA_Booking.travelInfo.adults &amp;amp; ri!lead.adults), ri!CTA_Booking.travelInfo.adults),
                        saveInto: ri!CTA_Booking.travelInfo.adults,
                        refreshAfter: &amp;quot;UNFOCUS&amp;quot;,

                        disabled: false,
                        validations: {}
                      ),
                      a!integerField(
                        label: &amp;quot;Kids&amp;quot;,
                        labelPosition: &amp;quot;ABOVE&amp;quot;,
                        value: if(len(ri!lead.kids)&amp;gt;(ri!CTA_Booking.travelInfo.kids), (ri!CTA_Booking.travelInfo.kids &amp;amp; ri!lead.kids), ri!CTA_Booking.travelInfo.kids),
                        saveInto: ri!CTA_Booking.travelInfo.kids,
                        refreshAfter: &amp;quot;UNFOCUS&amp;quot;,

                        disabled: false,
                        validations: {}
                      )
                    }
                  )
                }
              )
            },
            style: &amp;quot;STANDARD&amp;quot;,
            marginBelow: &amp;quot;STANDARD&amp;quot;
          )
        }
      ),
      a!columnsLayout(
        columns: {
          a!columnLayout(
            contents: {
              a!buttonArrayLayout(
                buttons: {
                  a!buttonWidget(
                    label: &amp;quot;Back&amp;quot;,
                    value: local!currentMilestoneBarStep - 1,
                    saveInto: local!currentMilestoneBarStep,
                    style: &amp;quot;NORMAL&amp;quot;,
                    showWhen: local!currentMilestoneBarStep &amp;gt; 1
                  ),
                  a!buttonWidget(
                    label: &amp;quot;Cancel&amp;quot;,
                    style: if(
                      local!currentMilestoneBarStep = 1,
                      &amp;quot;NORMAL&amp;quot;,
                      &amp;quot;LINK&amp;quot;
                    )
                  )
                },
                align: &amp;quot;START&amp;quot;
              )
            }
          ),
          a!columnLayout(
            contents: {
              a!buttonArrayLayout(
                buttons: a!buttonWidget(
                  label: if(
                    local!currentMilestoneBarStep = length(local!milestoneBarSteps),
                    &amp;quot;Submit&amp;quot;,
                    &amp;quot;Next&amp;quot;
                  ),
                  saveInto: if(
                    local!currentMilestoneBarStep = length(local!milestoneBarSteps),
                    {},
                    a!save(
                      local!currentMilestoneBarStep,
                      local!currentMilestoneBarStep + 1
                    )
                  ),
                  submit: if(
                    local!currentMilestoneBarStep = length(local!milestoneBarSteps=4),
                    true,
                    false
                  ),
                  style: &amp;quot;PRIMARY&amp;quot;,
                  validate: true
                )
              )
            }
          )
        }
      )
    }
  )
}&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Display Value from two tables in Interface</title><link>https://community.appian.com/thread/78974?ContentTypeID=1</link><pubDate>Sat, 16 Jan 2021 18:32:20 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:fd63a25b-9996-4b0c-b759-422ea6ad0353</guid><dc:creator>Shikha</dc:creator><description>&lt;p&gt;Are you writing the values to DB anywhere ? Can you please post the code here ? (insert -&amp;gt; insert code )&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Display Value from two tables in Interface</title><link>https://community.appian.com/thread/78973?ContentTypeID=1</link><pubDate>Sat, 16 Jan 2021 10:38:33 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:6f9c576f-b5f7-4fc5-aa7a-b40c7be1fc9a</guid><dc:creator>Dara Raghuveer Prasad Meena</dc:creator><description>&lt;p&gt;Hello Shikha, Thankyou for Reply.&lt;/p&gt;
&lt;p&gt;Table1 is Parent table and Table2 is a Child with Parent to child(Cascade All ) Relationship&lt;/p&gt;
&lt;p&gt;Table1 is a Lead Table(User fills the form) with Details&lt;/p&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt;Name, Email Id, Phone No, Address, Date From and Date To, Adults&lt;/p&gt;
&lt;p&gt;};&lt;/p&gt;
&lt;p&gt;After Submission Agent Manager receives full data which has to appear in Table2, I have used Milestone(Bar) Pattern in Interface.&lt;/p&gt;
&lt;p&gt;In 1st Milestone I am showing User Form with all Disabled fields.&lt;/p&gt;
&lt;p&gt;In 2nd Milestone I am showing Customer Details with Editable Fields.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt;Name, Email id, Address and Phone Number&lt;/p&gt;
&lt;p&gt;},&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Now, Problem is If Manager wants to edit the Data in Customer Details in Milestone2 the new data should display in the particular field and the new data should save to the Customer table and if changes not made previous data should saved to the table.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Can you help me to solve the issue&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Display Value from two tables in Interface</title><link>https://community.appian.com/thread/78967?ContentTypeID=1</link><pubDate>Fri, 15 Jan 2021 04:46:54 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:32d8cf35-ce8a-4161-97f0-913e04123122</guid><dc:creator>Shikha</dc:creator><description>&lt;p&gt;Can you elaborate a bit more on the use case, along with the table structure?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>