<?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>Set data from site into DB</title><link>https://community.appian.com/discussions/f/new-to-appian/28685/set-data-from-site-into-db</link><description>Hello, ALL. 
 Can someone Just give me a step-by-step about How to insert data into a DB from a site? 
 I Just trying during ALL the day nd dont know How to do.</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Set data from site into DB</title><link>https://community.appian.com/thread/112864?ContentTypeID=1</link><pubDate>Tue, 16 May 2023 17:03:36 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ca20019f-0634-4717-9299-96f194e185a3</guid><dc:creator>Luiz Braido</dc:creator><description>&lt;p&gt;ty!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Set data from site into DB</title><link>https://community.appian.com/thread/112862?ContentTypeID=1</link><pubDate>Tue, 16 May 2023 17:00:32 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d5123fd2-8d1f-4366-a0d5-46223dccb589</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;I see you&amp;#39;ve already gotten a reply to help with your issue - i&amp;#39;m chiming in here to point out that the code you pasted above causes the thread to render as about 10 pages long, unnecessarily - please use the Code Box when inserting code of any length as this restricts the consumed space in the thread, as well as reserving indentation and better formatting.&lt;br /&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/62/pastedimage1684256423955v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;If you&amp;#39;d like to try, you can edit your comment above via the &amp;quot;More&amp;quot; menu and move your code into one - it would help at least a little in that future readers of this thread will be able to browse it more easily.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Set data from site into DB</title><link>https://community.appian.com/thread/112854?ContentTypeID=1</link><pubDate>Tue, 16 May 2023 15:57:35 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:6362bb0e-7ed1-47fd-a57b-0af9cea07ed4</guid><dc:creator>Luiz Braido</dc:creator><description>&lt;p&gt;Really works, ty!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Set data from site into DB</title><link>https://community.appian.com/thread/112785?ContentTypeID=1</link><pubDate>Tue, 16 May 2023 00:18:18 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:99e020c4-852b-4087-adcf-93170fc452f3</guid><dc:creator>Mathieu Drouin</dc:creator><description>&lt;p&gt;You need to add the a!writeRecords smart service function in the submit button saveInto as shown in this example: &lt;a href="https://docs.appian.com/suite/help/23.1/recipe-use-the-write-records-smart-service-function-on-an-interface.html"&gt;docs.appian.com/.../recipe-use-the-write-records-smart-service-function-on-an-interface.html&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Set data from site into DB</title><link>https://community.appian.com/thread/112784?ContentTypeID=1</link><pubDate>Mon, 15 May 2023 23:46:12 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:38a17bb8-c9b3-4e40-b977-4db9ea47b477</guid><dc:creator>Luiz Braido</dc:creator><description>&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(

  local!currentEmployeeInformation: a!map(

    name: &amp;quot;&amp;quot;,

    birthDate: &amp;quot;&amp;quot;,

    streetAddress: &amp;quot;&amp;quot;,

    city: &amp;quot;&amp;quot;,

    uf: &amp;quot;&amp;quot;,

    cepCode: &amp;quot;&amp;quot;,

    country: &amp;quot;&amp;quot;,

    phone: &amp;quot;&amp;quot;,

    email: &amp;quot;&amp;quot;

  ),

  local!cancel,

  a!headerContentLayout(

    header: {

      a!cardLayout(

        contents: {

          a!columnsLayout(

            columns: {

              /* Form content */

              a!columnLayout(

                contents: {

                  a!columnsLayout(

                    columns: {

                      /* Empty column layouts on both sides *

                       * help to center the content */

                      a!columnLayout(),

                      a!columnLayout(

                        contents: {

                          a!sectionLayout(

                            showWhen: not(a!isPageWidth(&amp;quot;PHONE&amp;quot;)),

                            marginBelow: &amp;quot;EVEN_MORE&amp;quot;

                          ),

                          a!sectionLayout(

                            label: &amp;quot;Registrar Usu&amp;#225;rio&amp;quot;,

                            labelIcon: &amp;quot;user&amp;quot;,

                            labelSize: &amp;quot;LARGE&amp;quot;,

                            labelColor: &amp;quot;STANDARD&amp;quot;,

                            contents: {

                              a!localVariables(

                                local!showEmployeeInformation: false,

                                if(

                                  a!isPageWidth(&amp;quot;PHONE&amp;quot;),

                                  {

                                    /* On phone widths, show employee information *

                                     * in an initially collapsed card */

                                    a!richTextDisplayField(),

                                    a!cardLayout(

                                      contents: {

                                        a!sideBySideLayout(

                                          items: {

                                            a!sideBySideItem(

                                              item: a!stampField(

                                                labelPosition: &amp;quot;COLLAPSED&amp;quot;,

                                                text: initials(local!currentEmployeeInformation.name),

                                                contentColor: &amp;quot;STANDARD&amp;quot;,

                                                size: &amp;quot;TINY&amp;quot;

                                              ),

                                              width: &amp;quot;MINIMIZE&amp;quot;

                                            ),

                                            a!sideBySideItem(

                                              item: a!richTextDisplayField(

                                                labelPosition: &amp;quot;COLLAPSED&amp;quot;,

                                                value: {

                                                  a!richTextItem(

                                                    text: local!currentEmployeeInformation.name,

                                                    size: &amp;quot;MEDIUM&amp;quot;

                                                  ),

                                                  char(10),

                                                  a!richTextItem(

                                                    text: local!currentEmployeeInformation.role,

                                                    size: &amp;quot;SMALL&amp;quot;

                                                  )

                                                }

                                              )

                                            ),

                                            a!sideBySideItem(

                                              item: a!richTextDisplayField(

                                                value: a!richTextIcon(

                                                  icon: if(

                                                    local!showEmployeeInformation,

                                                    &amp;quot;chevron-down&amp;quot;,

                                                    &amp;quot;chevron-right&amp;quot;

                                                  ),

                                                  size: &amp;quot;MEDIUM&amp;quot;

                                                ),

                                                align: &amp;quot;RIGHT&amp;quot;

                                              )

                                            )

                                          },

                                          alignVertical: &amp;quot;MIDDLE&amp;quot;

                                        )

                                      },

                                      link: a!dynamicLink(

                                        value: not(local!showEmployeeInformation),

                                        saveInto: local!showEmployeeInformation

                                      ),

                                      style: &amp;quot;#f0f0f0&amp;quot;,

                                      padding: &amp;quot;MORE&amp;quot;,

                                      marginBelow: if(

                                        local!showEmployeeInformation,

                                        &amp;quot;NONE&amp;quot;,

                                        &amp;quot;MORE&amp;quot;

                                      ),

                                      showBorder: false,

                                      accessibilityText: if(

                                        local!showEmployeeInformation,

                                        &amp;quot;Employee information displayed. Press enter to hide.&amp;quot;,

                                        &amp;quot;Employee information hidden. Press enter to display.&amp;quot;

                                      )

                                    ),

                                    a!cardLayout(

                                      contents: {

                                        a!sectionLayout(

                                          label: upper(&amp;quot;Current Address&amp;quot;),

                                          labelSize: &amp;quot;EXTRA_SMALL&amp;quot;,

                                          labelColor: &amp;quot;STANDARD&amp;quot;,

                                          contents: {

                                            a!richTextDisplayField(

                                              labelPosition: &amp;quot;COLLAPSED&amp;quot;,

                                              value: {

                                                local!currentEmployeeInformation.streetAddress,

                                                char(10),

                                                local!currentEmployeeInformation.city,

                                                &amp;quot;, &amp;quot;,

                                                local!currentEmployeeInformation.state,

                                                &amp;quot; &amp;quot;,

                                                local!currentEmployeeInformation.zipCode,

                                                char(10),

                                                local!currentEmployeeInformation.country

                                              }

                                            )

                                          },

                                          marginBelow: &amp;quot;MORE&amp;quot;

                                        ),

                                        a!sectionLayout(

                                          label: upper(&amp;quot;Contact Information&amp;quot;),

                                          labelSize: &amp;quot;EXTRA_SMALL&amp;quot;,

                                          labelColor: &amp;quot;STANDARD&amp;quot;,

                                          contents: {

                                            a!richTextDisplayField(

                                              labelPosition: &amp;quot;COLLAPSED&amp;quot;,

                                              value: {

                                                a!richTextIcon(icon: &amp;quot;phone&amp;quot;),

                                                &amp;quot; &amp;quot;,

                                                local!currentEmployeeInformation.phone

                                              }

                                            ),

                                            a!richTextDisplayField(

                                              labelPosition: &amp;quot;COLLAPSED&amp;quot;,

                                              value: {

                                                a!richTextIcon(icon: &amp;quot;envelope&amp;quot;),

                                                &amp;quot; &amp;quot;,

                                                local!currentEmployeeInformation.email

                                              }

                                            )

                                          },

                                          marginBelow: &amp;quot;NONE&amp;quot;

                                        )

                                      },

                                      showWhen: local!showEmployeeInformation,

                                      style: &amp;quot;#f0f0f0&amp;quot;,

                                      padding: &amp;quot;MORE&amp;quot;,

                                      marginBelow: &amp;quot;MORE&amp;quot;,

                                      showBorder: false

                                    )

                                  },

                                  {}

                                )

                              ),

                              a!columnsLayout(

                                columns: {

                                  a!columnLayout(

                                    contents: {

                                      a!textField(

                                        label: &amp;quot;Username:&amp;quot;,

                                        placeholder: &amp;quot;Informe seu nome...&amp;quot;,

                                        value: local!currentEmployeeInformation.name,

                                        saveInto: local!currentEmployeeInformation.name,

                                        refreshAfter: &amp;quot;KEYPRESS&amp;quot;

                                      )

                                    }

                                  ),

                                  a!columnLayout(contents: {

                                a!dateField(

                                label: &amp;quot;Birth Date:&amp;quot;,

                                labelPosition: &amp;quot;ABOVE&amp;quot;,

                                value: {

                                local!currentEmployeeInformation.birthDate

                                },

                                saveInto: {

                                local!currentEmployeeInformation.birthDate

                                },

                                validations: {}

                                )

})

                                },

                                alignVertical: &amp;quot;MIDDLE&amp;quot;,

                                marginBelow: &amp;quot;LESS&amp;quot;,

                                spacing: &amp;quot;DENSE&amp;quot;,

                                stackWhen: {

                                  &amp;quot;NEVER&amp;quot;

                                },

                                showDividers: false

                              ),

                              a!columnsLayout(

                                columns: {

                                  a!columnLayout(

                                    contents: {

                                      a!textField(

                                        label: &amp;quot;Phone Number:&amp;quot;,

                                        labelPosition: &amp;quot;ABOVE&amp;quot;,

                                        placeholder: &amp;quot;Informe seu numero de contato...&amp;quot;,

                                        value:{local!currentEmployeeInformation.phone},

                                        saveInto: {local!currentEmployeeInformation.phone},

                                        refreshAfter: &amp;quot;KEYPRESS&amp;quot;,

                                        validations: {},

                                        inputPurpose: &amp;quot;PHONE_NUMBER&amp;quot;

                                      )

                                    }

                                  ),

                                  a!columnLayout(

                                    contents: {

                                      a!textField(

                                        label: &amp;quot;Email Address:&amp;quot;,

                                        labelPosition: &amp;quot;ABOVE&amp;quot;,

                                        placeholder: &amp;quot;Informe seu endere&amp;#231;o de email...&amp;quot;,

                                        value: {local!currentEmployeeInformation.email},

                                        saveInto: {local!currentEmployeeInformation.email},

                                        refreshAfter: &amp;quot;UNFOCUS&amp;quot;,

                                        validations: {},

                                        inputPurpose: &amp;quot;EMAIL&amp;quot;

                                      )

                                    }

                                  )

                                },

                                alignVertical: &amp;quot;BOTTOM&amp;quot;,

                                spacing: &amp;quot;DENSE&amp;quot;

                              ),

                              a!columnsLayout(

                                columns: {

                                  a!columnLayout(

                                    contents: {

                                      a!textField(

                                        label: &amp;quot;CEP:&amp;quot;,

                                        placeholder: &amp;quot;Informe o CEP...&amp;quot;,

                                        value: local!currentEmployeeInformation.cepCode,

                                        saveInto: {

                                          local!currentEmployeeInformation.cepCode,

                                          rule!UR_ViaCep(

                                            cep: local!currentEmployeeInformation.cepCode,

                                            onSuccess: {

                                              a!save(

                                                local!currentEmployeeInformation.streetAddress,

                                                fv!result.body.logradouro

                                              ),

                                              a!save(

                                                local!currentEmployeeInformation.city,

                                                fv!result.body.localidade

                                              ),

                                              a!save(

                                                local!currentEmployeeInformation.uf,

                                                fv!result.body.uf

                                              )

                                            }

                                          )

                                        }

                                      )

                                    },

                                    width: &amp;quot;1X&amp;quot;

                                  ),

                                  a!columnLayout(

                                    contents: {

                                      a!textField(

                                        label: &amp;quot;City&amp;quot;,

                                        labelPosition: &amp;quot;ABOVE&amp;quot;,

                                        placeholder: &amp;quot;Informe sua cidade...&amp;quot;,

                                        value: {local!currentEmployeeInformation.city},

                                        saveInto: {local!currentEmployeeInformation.city}

                                      )

                                    }

                                  ),

                                  a!columnLayout(

                                    contents: {

                                      a!textField(

                                        label: &amp;quot;UF&amp;quot;,

                                        labelPosition: &amp;quot;ABOVE&amp;quot;,

                                        placeholder: &amp;quot;Informe a UF...&amp;quot;,

                                        value: {local!currentEmployeeInformation.uf},

                                        saveInto: {local!currentEmployeeInformation.uf}

                                      )

                                    }

                                  )

                                },

                                marginBelow: &amp;quot;LESS&amp;quot;,

                                spacing: &amp;quot;DENSE&amp;quot;,

                                stackWhen: { &amp;quot;TABLET_PORTRAIT&amp;quot;, &amp;quot;PHONE&amp;quot; }

                              ),

                              a!textField(

                                label: &amp;quot;Street Address&amp;quot;,

                                labelPosition: &amp;quot;ABOVE&amp;quot;,

                                placeholder: &amp;quot;Informe seu logradouro...&amp;quot;,

                                value: {

                                  local!currentEmployeeInformation.streetAddress

                                },

                                saveInto: {

                                  local!currentEmployeeInformation.streetAddress

                                },

                                masked: false,

                                inputPurpose: &amp;quot;STREET_ADDRESS&amp;quot;

                              )

                            },

                            divider: &amp;quot;BELOW&amp;quot;,

                            dividerWeight: &amp;quot;THIN&amp;quot;

                          ),

                          a!columnsLayout(

                            columns: {

                              a!columnLayout(

                                contents: {

                                  a!buttonArrayLayout(

                                    buttons: { 

                                      a!buttonWidget(

                                        label: &amp;quot;Cancel&amp;quot;,

                                        value: true,

                                        saveInto: {local!cancel},

                                        submit: true

                                      )

                                    },

                                    align: &amp;quot;START&amp;quot;

                                  )

                                }

                              ),

                              a!columnLayout(

                                contents: {

                                  a!buttonArrayLayout(

                                    buttons: {

                                      a!buttonWidget(

                                        label: &amp;quot;Update&amp;quot;,

                                        submit: true,

                                        saveInto: {

                                          a!save(&amp;#39;recordType!{72ef8a55-ad70-42ec-8a88-553c0470648d}UR_Reg&amp;#39;.name, local!currentEmployeeInformation.name)

                                        },

                                        style: &amp;quot;PRIMARY&amp;quot;)

                                    }

                                  )

                                }

                              )

                            }

                          )

                        },

                        width: &amp;quot;MEDIUM_PLUS&amp;quot;

                      ),

                      a!columnLayout()

                    }

                  )

                }

              ),

              /* Additional details content */

              a!columnLayout(

                contents: {

                  a!cardLayout(

                    contents: {

                      a!sectionLayout(label: &amp;quot;&amp;quot;, marginBelow: &amp;quot;MORE&amp;quot;),

                      a!sectionLayout(

                        label: upper(&amp;quot;Preview&amp;quot;),

                        labelSize: &amp;quot;EXTRA_SMALL&amp;quot;,

                        labelColor: &amp;quot;STANDARD&amp;quot;,

                        contents: {

                          a!sideBySideLayout(

                            items: {

                              a!sideBySideItem(

                                item: a!stampField(

                                  labelPosition: &amp;quot;COLLAPSED&amp;quot;,

                                  text: initials(local!currentEmployeeInformation.name),

                                  contentColor: &amp;quot;STANDARD&amp;quot;,

                                  size: &amp;quot;TINY&amp;quot;

                                ),

                                width: &amp;quot;MINIMIZE&amp;quot;

                              ),

                              a!sideBySideItem(

                                item: a!richTextDisplayField(

                                  labelPosition: &amp;quot;COLLAPSED&amp;quot;,

                                  value: {

                                    a!richTextItem(

                                      text: local!currentEmployeeInformation.name

                                    ),

                                    char(10),

                                    a!richTextItem(

                                      text: local!currentEmployeeInformation.birthDate,

                                      size: &amp;quot;SMALL&amp;quot;

                                    )

                                  }

                                )

                              )

                            },

                            alignVertical: &amp;quot;MIDDLE&amp;quot;

                          )

                        },

                        marginBelow: &amp;quot;MORE&amp;quot;

                      ),

                      a!sectionLayout(

                        label: upper(&amp;quot;Current Address&amp;quot;),

                        labelSize: &amp;quot;EXTRA_SMALL&amp;quot;,

                        labelColor: &amp;quot;STANDARD&amp;quot;,

                        contents: {

                          a!richTextDisplayField(

                            labelPosition: &amp;quot;COLLAPSED&amp;quot;,

                            value: {

                              local!currentEmployeeInformation.streetAddress,

                              char(10),

                              local!currentEmployeeInformation.city,

                              &amp;quot;, &amp;quot;,

                              local!currentEmployeeInformation.uf,

                              &amp;quot; &amp;quot;,

                              local!currentEmployeeInformation.cepCode,

                              char(10),

                              local!currentEmployeeInformation.country

                            }

                          )

                        },

                        marginBelow: &amp;quot;MORE&amp;quot;

                      ),

                      a!sectionLayout(

                        label: upper(&amp;quot;Contact Information&amp;quot;),

                        labelSize: &amp;quot;EXTRA_SMALL&amp;quot;,

                        labelColor: &amp;quot;STANDARD&amp;quot;,

                        contents: {

                          a!richTextDisplayField(

                            labelPosition: &amp;quot;COLLAPSED&amp;quot;,

                            value: {

                              if(len(local!currentEmployeeInformation.phone)=10,

                              {a!richTextIcon(icon: &amp;quot;phone&amp;quot;),

                              &amp;quot; &amp;quot;, text(local!currentEmployeeInformation.phone, &amp;quot;(00) 0000-0000&amp;quot;)}, if(len(local!currentEmployeeInformation.phone)=11,

                              {a!richTextIcon(icon: &amp;quot;phone&amp;quot;),

                              &amp;quot; &amp;quot;, text(local!currentEmployeeInformation.phone, &amp;quot;(00) 00000-0000&amp;quot;)}, a!richTextIcon(&amp;quot;phone&amp;quot;)))

                            }

                          ),

                          a!richTextDisplayField(

                            labelPosition: &amp;quot;COLLAPSED&amp;quot;,

                            value: {

                              a!richTextIcon(icon: &amp;quot;envelope&amp;quot;),

                              &amp;quot; &amp;quot;,

                              local!currentEmployeeInformation.email

                            }

                          )

                        }

                      ),

                      /* Use cards to create a side bar */

                      a!cardLayout(

                        height: &amp;quot;EXTRA_TALL&amp;quot;,

                        style: &amp;quot;#f0f0f0&amp;quot;,

                        marginBelow: &amp;quot;STANDARD&amp;quot;,

                        showBorder: false

                      ),

                      a!cardLayout(

                        height: &amp;quot;EXTRA_TALL&amp;quot;,

                        style: &amp;quot;#f0f0f0&amp;quot;,

                        marginBelow: &amp;quot;STANDARD&amp;quot;,

                        showBorder: false

                      )

                    },

                    style: &amp;quot;#f0f0f0&amp;quot;,

                    padding: &amp;quot;MORE&amp;quot;,

                    marginBelow: &amp;quot;NONE&amp;quot;,

                    showBorder: false

                  )

                },

                width: if(

                  a!isPageWidth(&amp;quot;TABLET_PORTRAIT&amp;quot;),

                  &amp;quot;NARROW_PLUS&amp;quot;,

                  &amp;quot;MEDIUM&amp;quot;

                ),

                showWhen: not(a!isPageWidth(&amp;quot;PHONE&amp;quot;))

              )

            }

          )

        },

        padding: if(

          a!isPageWidth(&amp;quot;PHONE&amp;quot;),

          &amp;quot;STANDARD&amp;quot;,

          &amp;quot;NONE&amp;quot;

        ),

        marginBelow: &amp;quot;NONE&amp;quot;,

        showBorder: false

      )

    }

  )

)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Set data from site into DB</title><link>https://community.appian.com/thread/112783?ContentTypeID=1</link><pubDate>Mon, 15 May 2023 23:38:56 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:814d5986-57b0-46de-a78f-4c830d21d4db</guid><dc:creator>Mathieu Drouin</dc:creator><description>&lt;p&gt;That&amp;#39;s still too broad. Would need to see the code to be able to help.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Set data from site into DB</title><link>https://community.appian.com/thread/112782?ContentTypeID=1</link><pubDate>Mon, 15 May 2023 23:37:38 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:3e4f550c-7347-427f-a7ca-187267da8990</guid><dc:creator>Luiz Braido</dc:creator><description>&lt;p&gt;If u can take a look at this Topic: Input Rule error on site&lt;/p&gt;
&lt;p&gt;And have more tips, i really need help with this&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Set data from site into DB</title><link>https://community.appian.com/thread/112781?ContentTypeID=1</link><pubDate>Mon, 15 May 2023 23:33:34 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:895b09f9-9e73-4a63-b47d-7026a70e64d9</guid><dc:creator>Mathieu Drouin</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;If you have a specific issue regarding your form, please post it here and we can see if we can help.&lt;/p&gt;
&lt;p&gt;In the meantime, for step by step instructions, feel free to check out the tutorials here: &lt;a href="https://docs.appian.com/suite/help/23.1/Tutorials.html"&gt;docs.appian.com/.../Tutorials.html&lt;/a&gt; or the courses in Appian Academy.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>