<?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>Appian Community Edition - Recent Threads</title><link>https://community.appian.com/discussions/f/appian-community-edition</link><description>Questions related to Appian Community Edition</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Don't see 'ACME AUTO' application for hands-on activity of Developers Learning Path</title><link>https://community.appian.com/thread/154617?ContentTypeID=1</link><pubDate>Fri, 15 May 2026 17:20:02 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:cff05587-d522-42eb-bf3a-b366d551f727</guid><dc:creator>danny.leo</dc:creator><slash:comments>0</slash:comments><comments>https://community.appian.com/thread/154617?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/appian-community-edition/40331/don-t-see-acme-auto-application-for-hands-on-activity-of-developers-learning-path/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;greetings! how did you resolve this issue?&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Don't see 'ACME AUTO' application for hands-on activity of Developers Learning Path</title><link>https://community.appian.com/thread/40331?ContentTypeID=0</link><pubDate>Mon, 13 Apr 2026 14:48:32 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:abb757a4-f364-48dd-9e94-63b9e66147de</guid><dc:creator>Saba</dc:creator><slash:comments>8</slash:comments><comments>https://community.appian.com/thread/40331?ContentTypeID=0</comments><wfw:commentRss>https://community.appian.com/discussions/f/appian-community-edition/40331/don-t-see-acme-auto-application-for-hands-on-activity-of-developers-learning-path/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;I&amp;rsquo;m doing Appian Learning Path.&amp;nbsp; I don&amp;rsquo;t see ACME AUTO application in my community edition for Hands-on Activity of &amp;lsquo;Appian Essentials&amp;rsquo; course. How can I access it?&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;</description></item><item><title>Write to data store using forEach</title><link>https://community.appian.com/thread/40396?ContentTypeID=0</link><pubDate>Sun, 03 May 2026 16:27:13 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:24762de8-2465-4df2-8c7f-6a506a95b27c</guid><dc:creator>Vladislav Morozov</dc:creator><slash:comments>3</slash:comments><comments>https://community.appian.com/thread/40396?ContentTypeID=0</comments><wfw:commentRss>https://community.appian.com/discussions/f/appian-community-edition/40396/write-to-data-store-using-foreach/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Hello, I&amp;#39;m trying to write an array of data using foreach in a write to multiple data store entities, but it gives me error without specifying what could be wrong: here is the code and the error:&lt;/p&gt;
&lt;p&gt;a!forEach(&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; items: pv!getDocuments,&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; expression: {&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; a!entityData(&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; entity: cons!CM_REF_CLAIM_DECLARATION_DOC,&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; data: &amp;#39;type!{urn:com:appian:types:CM}cm_ref_claim_declaration_doc&amp;#39;(&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; idClaimDeclDoc: index(fv!item, &amp;quot;documentId&amp;quot;, null),&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; idDoc: index(fv!item, &amp;quot;documentId&amp;quot;, null),&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; idClaimDecl: pv!id_claim_declaration,&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; createdBy: index(fv!item, &amp;quot;documentLoadUser&amp;quot;, null),&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; createdOn: index(fv!item, &amp;quot;documentLoadDateTime&amp;quot;, null)&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; )&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ),&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; or(&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; a!isNotNullOrEmpty(fv!item.letterTemplate),&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; a!isNotNullOrEmpty(fv!item.letterCreationDate)&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ),&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; a!entityData(&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; entity: cons!CM_DSE_LETTER,&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; data: &amp;#39;type!{urn:com:appian:types:CM}cm_letter&amp;#39;(&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; idClaimDecl: pv!id_claim_declaration,&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; idClaim: pv!claimDeclaration.idClaim,&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; idRisk: pv!claimDeclaration.idRisk,&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; sentDate: index(fv!item, &amp;quot;letterSentDate&amp;quot;, null),&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; idDoc: index(fv!item, &amp;quot;documentId&amp;quot;, null),&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; createdBy: index(fv!item, &amp;quot;letterCreationUser&amp;quot;, null),&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; createdOn: index(fv!item, &amp;quot;letterCreationDate&amp;quot;, null),&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; receivedDate: index(fv!item, &amp;quot;documentReceptionDate&amp;quot;, null)&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; )&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ),&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {}&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ),&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; a!entityData(&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; entity: cons!CM_DSE_DOCUMENT,&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; data: &amp;#39;type!{urn:com:appian:types:CM}cm_document&amp;#39;(&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; idDoc: index(fv!item, &amp;quot;documentId&amp;quot;, null),&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; docName: index(fv!item, &amp;quot;docName&amp;quot;, null),&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; docDescription: index(fv!item, &amp;quot;documentDescription&amp;quot;, null),&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; receiptDate: index(fv!item, &amp;quot;documentReceptionDate&amp;quot;, null),&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; uploadedDate: index(fv!item, &amp;quot;documentLoadDateTime&amp;quot;, null),&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; uploadOwner: index(fv!item, &amp;quot;documentLoadUser&amp;quot;, null),&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; idDocMacroCategory: index(fv!item, &amp;quot;documentIdMacroCategory&amp;quot;, null),&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; idDocMicroCategory: index(fv!item, &amp;quot;documentIdMicroCategory&amp;quot;, null),&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; status: index(fv!item, &amp;quot;letterStatus&amp;quot;, null),&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; sendLetterDate: index(fv!item, &amp;quot;letterSentDate&amp;quot;, null),&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; createdBy: index(fv!item, &amp;quot;documentLoadUser&amp;quot;, null),&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; createdOn: index(fv!item, &amp;quot;documentLoadDateTime&amp;quot;, null),&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; enrichDate: now()&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; )&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; )&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; )&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/67/pastedimage1777825596244v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Is the &amp;quot;forEach&amp;quot; a problem? How should I write it then?&lt;/p&gt;</description></item><item><title>RE: Write to data store using forEach</title><link>https://community.appian.com/thread/154557?ContentTypeID=1</link><pubDate>Fri, 08 May 2026 04:34:03 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:2b7a8aaa-2060-49d6-b293-85abc2ba42c1</guid><dc:creator>manojtumulu</dc:creator><slash:comments>0</slash:comments><comments>https://community.appian.com/thread/154557?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/appian-community-edition/40396/write-to-data-store-using-foreach/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Before write to DB, add a temporary rule input:&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;=a!localVariables(&lt;br /&gt; local!data: &amp;lt;your expression&amp;gt;,&lt;br /&gt; local!data&lt;br /&gt;)&lt;/p&gt;
&lt;p&gt;Inspect:&lt;/p&gt;
&lt;p&gt;Any null&lt;br /&gt;Any duplicates (primary key value)&lt;br /&gt;Any unexpected {}&lt;/p&gt;
&lt;p&gt;and make sure flatten the structure bcz write to Multiple Data Store Entities expects&lt;/p&gt;
&lt;p&gt;[&lt;br /&gt; entity1,&lt;br /&gt; entity2,&lt;br /&gt; entity3,&lt;br /&gt; ...&lt;br /&gt;]&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Write to data store using forEach</title><link>https://community.appian.com/thread/154547?ContentTypeID=1</link><pubDate>Thu, 07 May 2026 06:45:58 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:6db9e9f1-279f-4624-9df1-32ee0359a4e6</guid><dc:creator>Harsha Sharma</dc:creator><slash:comments>0</slash:comments><comments>https://community.appian.com/thread/154547?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/appian-community-edition/40396/write-to-data-store-using-foreach/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Use Insert-&amp;gt;Code to enter code lines for better readability in Community&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/67/pastedimage1778136338897v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Write to data store using forEach</title><link>https://community.appian.com/thread/154546?ContentTypeID=1</link><pubDate>Thu, 07 May 2026 05:43:44 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:843dc04f-9ba0-418c-83d6-63e2f40f3ee3</guid><dc:creator>Shubham Aware</dc:creator><slash:comments>0</slash:comments><comments>https://community.appian.com/thread/154546?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/appian-community-edition/40396/write-to-data-store-using-foreach/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Write to Multiple Data Store Entities smart service expects a flat list of a!entityData() - but a!forEach returns an array of arrays (one array per iteration), which breaks the smart service input.&lt;br /&gt;&lt;br /&gt;use a!flatten():&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!flatten(
a!forEach(
items: pv!getDocuments,
expression: { ... }
)
)&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;and keep {} for the false branch, not null.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Urgent: Community Edition Access Needed for Certification Re-attempt (India Region | No Response for around 2 Weeks)</title><link>https://community.appian.com/thread/40367?ContentTypeID=0</link><pubDate>Thu, 23 Apr 2026 15:10:10 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:25561e65-f419-4cec-8f4f-fd7fd97d3915</guid><dc:creator>sagniknandi</dc:creator><slash:comments>0</slash:comments><comments>https://community.appian.com/thread/40367?ContentTypeID=0</comments><wfw:commentRss>https://community.appian.com/discussions/f/appian-community-edition/40367/urgent-community-edition-access-needed-for-certification-re-attempt-india-region-no-response-for-around-2-weeks/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p data-start="1599" data-end="1614"&gt;Hello everyone,&lt;/p&gt;
&lt;p data-start="1616" data-end="1755"&gt;I am currently preparing for the Appian Associate Developer Certification and urgently need access to a Community Edition (CE) environment.&lt;/p&gt;
&lt;p data-start="1757" data-end="1868"&gt;My registered work email is: sagnik@alumnux.com&lt;span class="ms-0.5 inline-block align-middle leading-none"&gt;&lt;/span&gt;&lt;br data-start="1804" data-end="1807" /&gt; I am attempting to access the platform from the India region.&lt;/p&gt;
&lt;p data-start="1870" data-end="2144"&gt;I had previously been provisioned a CE workspace under this email, but it was later deactivated due to inactivity. I have since raised multiple requests for a new environment and also emailed the Community Edition team over two weeks ago, but have not received any response.&lt;/p&gt;
&lt;p data-start="2146" data-end="2338"&gt;I would also like to mention that I attempted the certification exam on 21-Apr-2026 but was unable to clear it, primarily due to lack of sufficient hands-on practice in the Appian environment.&lt;/p&gt;
&lt;p data-start="2340" data-end="2487"&gt;I am now preparing for a re-attempt and require CE access to complete the exercises in the learning path and strengthen my practical understanding.&lt;/p&gt;
&lt;p data-start="2489" data-end="2647"&gt;If any moderators or Appian team members could please assist in re-provisioning access or guiding me on the correct next steps, it would be extremely helpful.&lt;/p&gt;
&lt;p data-start="2649" data-end="2687"&gt;Thank you in advance for your support.&lt;/p&gt;
&lt;p data-start="2689" data-end="2712"&gt;Regards,&lt;br data-start="2697" data-end="2700" /&gt; Sagnik Nandi&lt;/p&gt;</description></item><item><title>Cannot insert records to use "Write Records Smart Service" in Process Model</title><link>https://community.appian.com/thread/40351?ContentTypeID=0</link><pubDate>Sun, 19 Apr 2026 15:59:58 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:1778f86c-ac8c-4ce7-8b31-b22c25862250</guid><dc:creator>shanguiy394945</dc:creator><slash:comments>2</slash:comments><comments>https://community.appian.com/thread/40351?ContentTypeID=0</comments><wfw:commentRss>https://community.appian.com/discussions/f/appian-community-edition/40351/cannot-insert-records-to-use-write-records-smart-service-in-process-model/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p data-path-to-node="4,1"&gt;Hi everyone,&lt;/p&gt;
&lt;p data-path-to-node="4,2"&gt;As the title suggests, I am having trouble inserting data using the &amp;quot;Write Records&amp;quot; in smart service.&lt;/p&gt;
&lt;p data-path-to-node="4,3"&gt;I have configured the node according to the official documentation, but I keep encountering an error that prevents the data from being inserted.&lt;/p&gt;
&lt;p data-path-to-node="4,4"&gt;I would appreciate it if anyone could help me identify the cause of this issue.&amp;nbsp;&lt;/p&gt;
&lt;p data-path-to-node="4,4"&gt;&lt;br /&gt;&lt;br /&gt;# Process Model&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/67/_B930AF30EA30FC30F330B730E730C330C830_-2026_2D00_04_2D00_20-0.38.25.png" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;#&amp;nbsp;Configuration in Write Records&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/67/_B930AF30EA30FC30F330B730E730C330C830_-2026_2D00_04_2D00_20-0.45.50.png" /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;# Process&amp;nbsp;Variable&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/67/_B930AF30EA30FC30F330B730E730C330C830_-2026_2D00_04_2D00_20-0.47.09.png" /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;#&amp;nbsp;Error Messages during debugging&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/67/_B930AF30EA30FC30F330B730E730C330C830_-2026_2D00_04_2D00_20-0.49.26.png" /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/67/_B930AF30EA30FC30F330B730E730C330C830_-2026_2D00_04_2D00_20-0.50.36.png" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;# Data Access in Data Model(LAW Loan Approval V2)&lt;/span&gt;&lt;/p&gt;
&lt;div class="SideBySideItem---flex_item SideBySideItem---default_direction" data-testid="SideBySideItem-wrapper" data-padding-left="0" data-padding-right="-10" data-stacked="false"&gt;
&lt;div class="FieldLayout---field_layout FieldLayout---margin_below_none FieldLayout---margin_above_none FieldLayout---inScalarSideBySideItem"&gt;
&lt;div class="FieldLayout---input_below"&gt;
&lt;div class=""&gt;
&lt;p class="ParagraphText---richtext_paragraph ParagraphText---default_direction ParagraphText---align_start elements---global_p"&gt;Optimized (Synced)&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;&lt;span&gt;# Environment&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Appian Community Environment(Appian Version: 26.3)&lt;/span&gt;&lt;/p&gt;</description></item><item><title>RE: Cannot insert records to use "Write Records Smart Service" in Process Model</title><link>https://community.appian.com/thread/154338?ContentTypeID=1</link><pubDate>Mon, 20 Apr 2026 07:06:01 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:38351684-3f40-4758-afe8-56eb41ffeb1d</guid><dc:creator>shanguiy394945</dc:creator><slash:comments>0</slash:comments><comments>https://community.appian.com/thread/154338?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/appian-community-edition/40351/cannot-insert-records-to-use-write-records-smart-service-in-process-model/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Thank you so much! I ensured the Process Variables were populated before reaching the Write Records node as you suggested. That fixed the issue!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Cannot insert records to use "Write Records Smart Service" in Process Model</title><link>https://community.appian.com/thread/154336?ContentTypeID=1</link><pubDate>Mon, 20 Apr 2026 05:44:56 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b8c01272-f31d-4c1a-9540-8677960ad21a</guid><dc:creator>Shubham Aware</dc:creator><slash:comments>1</slash:comments><comments>https://community.appian.com/thread/154336?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/appian-community-edition/40351/cannot-insert-records-to-use-write-records-smart-service-in-process-model/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Your pv! LAWloanApplication has No Value. Write Records needs a populated record type instance, not an empty PV.&lt;br /&gt;Assign values to the PV before the Write Records node using a Script Task.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Unable to Store data entered in interface to the data store</title><link>https://community.appian.com/thread/154262?ContentTypeID=1</link><pubDate>Tue, 14 Apr 2026 16:41:43 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:271d6dcf-efbd-4eee-8394-e77b71e95729</guid><dc:creator>alex.acosta</dc:creator><slash:comments>0</slash:comments><comments>https://community.appian.com/thread/154262?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/appian-community-edition/40327/unable-to-store-data-entered-in-interface-to-the-data-store/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;if you are using a grid you could try something like this:&amp;nbsp;&lt;/p&gt;
&lt;p&gt;a!localVariables(&lt;br /&gt; /* Example data to load into the TravelReimbursement record type. &lt;br /&gt; Replace the field names with your actual record fields. */&lt;br /&gt; local!dataToLoad: a!forEach(&lt;br /&gt; {&lt;br /&gt; a!map(&lt;br /&gt; employeeId: 1001,&lt;br /&gt; tripStartDate: today() - 10,&lt;br /&gt; tripEndDate: today() - 7,&lt;br /&gt; destination: &amp;quot;New York&amp;quot;,&lt;br /&gt; amount: 850.00,&lt;br /&gt; currency: &amp;quot;USD&amp;quot;,&lt;br /&gt; status: &amp;quot;Submitted&amp;quot;&lt;br /&gt; ),&lt;br /&gt; a!map(&lt;br /&gt; employeeId: 1002,&lt;br /&gt; tripStartDate: today() - 5,&lt;br /&gt; tripEndDate: today() - 3,&lt;br /&gt; destination: &amp;quot;Chicago&amp;quot;,&lt;br /&gt; amount: 420.50,&lt;br /&gt; currency: &amp;quot;USD&amp;quot;,&lt;br /&gt; status: &amp;quot;Submitted&amp;quot;&lt;br /&gt; )&lt;br /&gt; },&lt;br /&gt; cast(&lt;br /&gt; /* Use your travel reimbursement record type here */&lt;br /&gt; recordType!TravelReimbursement,&lt;br /&gt; fv!item&lt;br /&gt; )&lt;br /&gt; ),&lt;/p&gt;
&lt;p&gt;/* Track whether we&amp;#39;ve already written the data */&lt;br /&gt; local!submitted: false,&lt;/p&gt;
&lt;p&gt;/* Refresh the grid data when local!submitted changes */&lt;br /&gt; local!records: a!refreshVariable(&lt;br /&gt; value: a!queryRecordType(&lt;br /&gt; recordType: recordType!TravelReimbursement,&lt;br /&gt; fields: {&lt;br /&gt; /* Replace with your actual field references */&lt;br /&gt; recordType!TravelReimbursement.fields.employeeId,&lt;br /&gt; recordType!TravelReimbursement.fields.tripStartDate,&lt;br /&gt; recordType!TravelReimbursement.fields.tripEndDate,&lt;br /&gt; recordType!TravelReimbursement.fields.destination,&lt;br /&gt; recordType!TravelReimbursement.fields.amount,&lt;br /&gt; recordType!TravelReimbursement.fields.currency,&lt;br /&gt; recordType!TravelReimbursement.fields.status&lt;br /&gt; },&lt;br /&gt; pagingInfo: a!pagingInfo(startIndex: 1, batchSize: 50)&lt;br /&gt; ).data,&lt;br /&gt; refreshOnVarChange: local!submitted&lt;br /&gt; ),&lt;/p&gt;
&lt;p&gt;a!formLayout(&lt;br /&gt; titleBar: &amp;quot;Travel Reimbursements&amp;quot;,&lt;br /&gt; contents: {&lt;br /&gt; a!buttonLayout(&lt;br /&gt; primaryButtons: {&lt;br /&gt; a!buttonWidget(&lt;br /&gt; label: if(local!submitted, &amp;quot;Data Written&amp;quot;, &amp;quot;Write Sample Reimbursements&amp;quot;),&lt;br /&gt; style: &amp;quot;SOLID&amp;quot;,&lt;br /&gt; disabled: local!submitted,&lt;br /&gt; saveInto: {&lt;br /&gt; a!writeRecords(&lt;br /&gt; records: local!dataToLoad,&lt;br /&gt; onSuccess: a!save(local!submitted, true)&lt;br /&gt; )&lt;br /&gt; }&lt;br /&gt; )&lt;br /&gt; }&lt;br /&gt; ),&lt;/p&gt;
&lt;p&gt;a!gridField(&lt;br /&gt; label: &amp;quot;Travel Reimbursement Records&amp;quot;,&lt;br /&gt; labelPosition: &amp;quot;ABOVE&amp;quot;,&lt;br /&gt; data: local!records,&lt;br /&gt; columns: {&lt;br /&gt; a!gridColumn(&lt;br /&gt; label: &amp;quot;Employee ID&amp;quot;,&lt;br /&gt; value: fv!row[recordType!TravelReimbursement.fields.employeeId]&lt;br /&gt; ),&lt;br /&gt; a!gridColumn(&lt;br /&gt; label: &amp;quot;Destination&amp;quot;,&lt;br /&gt; value: fv!row[recordType!TravelReimbursement.fields.destination]&lt;br /&gt; ),&lt;br /&gt; a!gridColumn(&lt;br /&gt; label: &amp;quot;Start Date&amp;quot;,&lt;br /&gt; value: fv!row[recordType!TravelReimbursement.fields.tripStartDate]&lt;br /&gt; ),&lt;br /&gt; a!gridColumn(&lt;br /&gt; label: &amp;quot;End Date&amp;quot;,&lt;br /&gt; value: fv!row[recordType!TravelReimbursement.fields.tripEndDate]&lt;br /&gt; ),&lt;br /&gt; a!gridColumn(&lt;br /&gt; label: &amp;quot;Amount&amp;quot;,&lt;br /&gt; value: fv!row[recordType!TravelReimbursement.fields.amount]&lt;br /&gt; ),&lt;br /&gt; a!gridColumn(&lt;br /&gt; label: &amp;quot;Status&amp;quot;,&lt;br /&gt; value: fv!row[recordType!TravelReimbursement.fields.status]&lt;br /&gt; )&lt;br /&gt; },&lt;br /&gt; pageSize: 10&lt;br /&gt; )&lt;br /&gt; },&lt;br /&gt; buttons: a!buttonLayout(&lt;br /&gt; primaryButtons: a!buttonWidget(&lt;br /&gt; label: &amp;quot;Close&amp;quot;,&lt;br /&gt; submit: true&lt;br /&gt; )&lt;br /&gt; )&lt;br /&gt; )&lt;br /&gt;)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Unable to Store data entered in interface to the data store</title><link>https://community.appian.com/thread/40327?ContentTypeID=0</link><pubDate>Thu, 09 Apr 2026 09:47:27 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:421cdd0f-a27b-4c48-80c6-ae3fb2eb6ab5</guid><dc:creator>swaroopk07</dc:creator><slash:comments>4</slash:comments><comments>https://community.appian.com/thread/40327?ContentTypeID=0</comments><wfw:commentRss>https://community.appian.com/discussions/f/appian-community-edition/40327/unable-to-store-data-entered-in-interface-to-the-data-store/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;I am creating the workflow for the travel imbursement.&lt;/p&gt;
&lt;p&gt;The data entered in the interface is not being stored in the Database.&lt;/p&gt;
&lt;p&gt;I am using latest version (26.3) of community edition India region.&lt;br /&gt;Can I get solution for this or alternate way for this.&lt;/p&gt;</description></item><item><title>RE: Don't see 'ACME AUTO' application for hands-on activity of Developers Learning Path</title><link>https://community.appian.com/thread/154255?ContentTypeID=1</link><pubDate>Tue, 14 Apr 2026 13:20:42 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8b1a3db0-afa0-4f1a-83a1-7b555a803a95</guid><dc:creator>Harsha Sharma</dc:creator><slash:comments>0</slash:comments><comments>https://community.appian.com/thread/154255?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/appian-community-edition/40331/don-t-see-acme-auto-application-for-hands-on-activity-of-developers-learning-path/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;okay then you should be able to deploy the app to your workspace using the Steps Shubham has mentioned already.&amp;nbsp;&lt;br /&gt;Community Edition home-&amp;gt; App Catalogue -&amp;gt; Acme Automobile Applications -&amp;gt; Deploy App to workspace.&amp;nbsp;&lt;br /&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/67/pastedimage1776172806234v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Don't see 'ACME AUTO' application for hands-on activity of Developers Learning Path</title><link>https://community.appian.com/thread/154254?ContentTypeID=1</link><pubDate>Tue, 14 Apr 2026 13:05:19 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d3561e54-f6dd-4579-b0f7-896a186504e5</guid><dc:creator>Saba</dc:creator><slash:comments>0</slash:comments><comments>https://community.appian.com/thread/154254?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/appian-community-edition/40331/don-t-see-acme-auto-application-for-hands-on-activity-of-developers-learning-path/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;I opened the &amp;lsquo;Appian Designer&amp;rsquo; from Home Screen under the &amp;lsquo;BUILD YOUR FIRST APP&amp;rsquo;. I can see the ACME AUTO now.&lt;/p&gt;
&lt;p&gt;In the hands-on activity, instructions are to open the navigation from top right menu&lt;/p&gt;
&lt;p&gt;Screen shots from hands-on Activity (to open navigation from top right menu) and from where I opened the &amp;#39;Appian Designer&amp;#39; are below&lt;/p&gt;
&lt;p&gt;Thank you everyone!&lt;/p&gt;
&lt;p&gt;Hands-on activity instructions:&lt;/p&gt;
&lt;p&gt;&lt;img style="height:311px;max-height:311px;max-width:393px;" height="285" src="/resized-image/__size/786x622/__key/communityserver-discussions-components-files/67/pastedimage1776171676473v2.png" width="392" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;worked for me:&lt;/p&gt;
&lt;p&gt;&lt;img style="height:172px;max-height:172px;max-width:398px;" height="154" src="/resized-image/__size/796x344/__key/communityserver-discussions-components-files/67/pastedimage1776171834105v3.png" width="397" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Don't see 'ACME AUTO' application for hands-on activity of Developers Learning Path</title><link>https://community.appian.com/thread/154253?ContentTypeID=1</link><pubDate>Tue, 14 Apr 2026 12:52:44 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:4600079e-3918-47e5-a38d-3fe0d362791e</guid><dc:creator>Saba</dc:creator><slash:comments>1</slash:comments><comments>https://community.appian.com/thread/154253?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/appian-community-edition/40331/don-t-see-acme-auto-application-for-hands-on-activity-of-developers-learning-path/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;US region&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Don't see 'ACME AUTO' application for hands-on activity of Developers Learning Path</title><link>https://community.appian.com/thread/154251?ContentTypeID=1</link><pubDate>Tue, 14 Apr 2026 10:31:44 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:066e123a-3312-4f74-918b-a7a33905fea6</guid><dc:creator>Shubham Aware</dc:creator><slash:comments>1</slash:comments><comments>https://community.appian.com/thread/154251?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/appian-community-edition/40331/don-t-see-acme-auto-application-for-hands-on-activity-of-developers-learning-path/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Once you log in to the Appian Community Edition designer, click the waffle icon and go to Community Edition Home. On the right side, you will see the App Catalog option, and under that, you can find the Acme Automobile applications.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Don't see 'ACME AUTO' application for hands-on activity of Developers Learning Path</title><link>https://community.appian.com/thread/154250?ContentTypeID=1</link><pubDate>Tue, 14 Apr 2026 10:30:56 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e062d133-9547-4293-8828-f8b99ce52473</guid><dc:creator>Harsha Sharma</dc:creator><slash:comments>1</slash:comments><comments>https://community.appian.com/thread/154250?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/appian-community-edition/40331/don-t-see-acme-auto-application-for-hands-on-activity-of-developers-learning-path/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Which region have you configured your workspace in? Workspaces created in India region are having issues since latest Appian updates.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Don't see 'ACME AUTO' application for hands-on activity of Developers Learning Path</title><link>https://community.appian.com/thread/154241?ContentTypeID=1</link><pubDate>Mon, 13 Apr 2026 16:16:55 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:9d3c1ab9-e28e-40f7-a0cf-288ba0c7863b</guid><dc:creator>Saba</dc:creator><slash:comments>0</slash:comments><comments>https://community.appian.com/thread/154241?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/appian-community-edition/40331/don-t-see-acme-auto-application-for-hands-on-activity-of-developers-learning-path/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;I send an email to&amp;nbsp;&lt;a id="" href="mailto:communityedition@appian.com"&gt;communityedition@appian.com&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a id="" href="mailto:community@appian.com"&gt;community@appian.com&lt;/a&gt;&amp;nbsp;on April 9, 2026 (4 days ago), haven&amp;#39;t received an answer.&amp;nbsp; Does anyone know how long they take to reply?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Don't see 'ACME AUTO' application for hands-on activity of Developers Learning Path</title><link>https://community.appian.com/thread/154238?ContentTypeID=1</link><pubDate>Mon, 13 Apr 2026 15:27:08 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:07958cb5-6918-48f8-90f9-f3337f13711c</guid><dc:creator>mahesha928463</dc:creator><slash:comments>1</slash:comments><comments>https://community.appian.com/thread/154238?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/appian-community-edition/40331/don-t-see-acme-auto-application-for-hands-on-activity-of-developers-learning-path/rss?ContentTypeId=0</wfw:commentRss><description>&lt;div class="content full threaded-reply-content user-defined-markup" data-replyid="152850" data-userid="258106" data-permalink="~/discussions/f/appian-community-edition/40037/unable-to-see-access-environment-button/152850"&gt;
&lt;div class="content"&gt;
&lt;p&gt;Suggest you to drop an email to communityedition@appian.com&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: unable to access database/create a datamodel in appian community</title><link>https://community.appian.com/thread/154221?ContentTypeID=1</link><pubDate>Fri, 10 Apr 2026 12:03:02 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:7714ed25-344b-4f4c-be59-8b52ed4b6cb9</guid><dc:creator>Shubham Aware</dc:creator><slash:comments>0</slash:comments><comments>https://community.appian.com/thread/154221?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/appian-community-edition/40323/unable-to-access-database-create-a-datamodel-in-appian-community/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;The page&amp;#39;s interface contains a Record List grid (readonly) with an error. Since the grid has an issue, the interface fails to render.&lt;br /&gt;Fix the grid error in the Record Type first, then the preview will load.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>unable to access database/create a datamodel in appian community</title><link>https://community.appian.com/thread/40323?ContentTypeID=0</link><pubDate>Tue, 07 Apr 2026 12:41:44 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ed913fb1-f162-4d97-a06f-6811814c852e</guid><dc:creator>Parsha Anusri</dc:creator><slash:comments>10</slash:comments><comments>https://community.appian.com/thread/40323?ContentTypeID=0</comments><wfw:commentRss>https://community.appian.com/discussions/f/appian-community-edition/40323/unable-to-access-database-create-a-datamodel-in-appian-community/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Hi Team&lt;/p&gt;
&lt;p&gt;Iam working in appain community edition and trying to create a record type and facing the following problems like&lt;/p&gt;
&lt;p&gt;1 .not getting start from scratch option while creating record type&lt;/p&gt;
&lt;p&gt;2. when selecting database option it shows error : data source cannot be reached&lt;/p&gt;
&lt;p&gt;3. CDT/Data store is not accessible in this environment&lt;/p&gt;
&lt;p&gt;4.unable to see cloud database in navigation bar&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;could you please suggest the recommened approach.&lt;/p&gt;</description></item><item><title>RE: unable to access database/create a datamodel in appian community</title><link>https://community.appian.com/thread/154219?ContentTypeID=1</link><pubDate>Fri, 10 Apr 2026 11:23:17 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:abca9f04-a0d5-402d-943c-c503839e55e0</guid><dc:creator>Parsha Anusri</dc:creator><slash:comments>1</slash:comments><comments>https://community.appian.com/thread/154219?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/appian-community-edition/40323/unable-to-access-database-create-a-datamodel-in-appian-community/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/67/7853.image-_2800_1_2900_.png" /&gt;&lt;br /&gt;while creating link error has occured can anyone explain y&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Unable to Store data entered in interface to the data store</title><link>https://community.appian.com/thread/154216?ContentTypeID=1</link><pubDate>Fri, 10 Apr 2026 06:02:55 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:12a6f83c-5052-454a-8d5b-033ed69b8feb</guid><dc:creator>Harsha Sharma</dc:creator><slash:comments>0</slash:comments><comments>https://community.appian.com/thread/154216?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/appian-community-edition/40327/unable-to-store-data-entered-in-interface-to-the-data-store/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Need elaboration on the design and error, if any.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Unable to Store data entered in interface to the data store</title><link>https://community.appian.com/thread/154215?ContentTypeID=1</link><pubDate>Fri, 10 Apr 2026 06:02:22 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:92eea373-9254-4b4a-bf0e-f2dd7ea2f1ea</guid><dc:creator>Stefan Helzle</dc:creator><slash:comments>0</slash:comments><comments>https://community.appian.com/thread/154215?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/appian-community-edition/40327/unable-to-store-data-entered-in-interface-to-the-data-store/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;How do you plan to store the data?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Unable to Store data entered in interface to the data store</title><link>https://community.appian.com/thread/154214?ContentTypeID=1</link><pubDate>Fri, 10 Apr 2026 05:37:25 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:390b1aa2-2884-4054-bd41-a89f9ed6aad5</guid><dc:creator>Shubham Aware</dc:creator><slash:comments>0</slash:comments><comments>https://community.appian.com/thread/154214?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/appian-community-edition/40327/unable-to-store-data-entered-in-interface-to-the-data-store/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;How are you submitting the data from the interface?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>