{"id":1361,"date":"2025-01-05T22:26:16","date_gmt":"2025-01-05T22:26:16","guid":{"rendered":"https:\/\/workulus.com\/?p=1361"},"modified":"2025-01-06T00:53:17","modified_gmt":"2025-01-06T00:53:17","slug":"common-client-requests-that-can-hurt-performance-in-appian","status":"publish","type":"post","link":"https:\/\/workulus.com\/?p=1361","title":{"rendered":"Common Client Requests That Can Hurt Performance in Appian"},"content":{"rendered":"\n<p>When developing applications on Appian, it\u2019s common for clients to ask for features or capabilities that sound great on paper but can lead to performance issues, especially as the volume of data grows. As a developer or business analyst, it\u2019s essential to identify these requests early and explain why they might not be the best choice for the system\u2019s performance. Below are several common things clients may ask for that, when implemented without proper considerations, can negatively impact the application\u2019s speed, scalability, and overall performance.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">1. <strong>Displaying Large Datasets All At Once<\/strong><\/h3>\n\n\n\n<h4 class=\"wp-block-heading\">The Request:<\/h4>\n\n\n\n<p>Clients often want to display <strong>large datasets<\/strong> (e.g., thousands of rows in a grid or table) in real-time without any filtering or pagination. The reasoning is often to provide users with all the information at once for faster decision-making.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Why It\u2019s a Problem:<\/h4>\n\n\n\n<p>Loading a huge amount of data in a single request can severely impact performance:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Browser rendering time<\/strong>: Appian interfaces are rendered on the client-side (in the browser). Large datasets with many rows and columns can slow down the page load time, making the application sluggish and potentially unresponsive.<\/li>\n\n\n\n<li><strong>Server load<\/strong>: Retrieving large datasets from the server places significant load on the Appian server, especially if complex queries or calculations are involved.<\/li>\n\n\n\n<li><strong>UI responsiveness<\/strong>: The more data that is loaded and rendered, the more likely it is that users will experience lag, unresponsiveness, or even crashes, especially on lower-end devices or browsers.<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">The Solution:<\/h4>\n\n\n\n<p>Instead of loading all data at once, it\u2019s best to:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use <strong>pagination<\/strong> or <strong>lazy loading<\/strong> so that only the data the user needs is loaded at any given time.<\/li>\n\n\n\n<li>Implement <strong>filters<\/strong> and <strong>search functionality<\/strong> to help users find the data they are looking for without overwhelming the UI with all available records.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">2. <strong>Displaying Too Many Columns in Grids or Tables<\/strong><\/h3>\n\n\n\n<h4 class=\"wp-block-heading\">The Request:<\/h4>\n\n\n\n<p>Clients might request to display a large number of <strong>columns<\/strong> in a grid or table to show as much information as possible at once, believing that users will benefit from seeing everything in one glance.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Why It\u2019s a Problem:<\/h4>\n\n\n\n<p>A table with too many columns can:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Force horizontal scrolling<\/strong>, which negatively affects user experience, especially on mobile or smaller screens.<\/li>\n\n\n\n<li><strong>Increase page load time<\/strong> because the browser must render and format all columns.<\/li>\n\n\n\n<li><strong>Degrade performance<\/strong> if complex data types (e.g., rich text, documents) are displayed in many columns.<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">The Solution:<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Prioritize the <strong>most important data<\/strong> and avoid showing everything at once. Display only the most relevant columns for the user\u2019s immediate needs and offer <strong>expandable views<\/strong> or <strong>tooltips<\/strong> for additional information.<\/li>\n\n\n\n<li>Use <strong>dynamic visibility<\/strong> in Appian to only show columns that are necessary based on user context, such as permissions or role-specific views.<\/li>\n\n\n\n<li>Provide a <strong>&#8220;Show More&#8221; button<\/strong> or <strong>accordion-style expandable sections<\/strong> for non-essential columns or data.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">3. <strong>Real-Time Updates with Heavy Server Calls<\/strong><\/h3>\n\n\n\n<h4 class=\"wp-block-heading\">The Request:<\/h4>\n\n\n\n<p>Clients may want certain parts of their application to <strong>update in real-time<\/strong> \u2014 for example, a grid displaying live data from an external system or frequent task assignments \u2014 without manual intervention.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Why It\u2019s a Problem:<\/h4>\n\n\n\n<p>While real-time updates can enhance the user experience, frequent server calls can:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Increase load on the server<\/strong> and network bandwidth, especially if the updates are being processed every few seconds.<\/li>\n\n\n\n<li><strong>Lead to poor user experience<\/strong> when multiple components or pages are refreshing simultaneously.<\/li>\n\n\n\n<li><strong>Overwhelm the system<\/strong> if there\u2019s no mechanism to throttle or batch updates, especially in high-volume scenarios.<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">The Solution:<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use <strong>batch processing<\/strong> or <strong>scheduled updates<\/strong> for non-urgent data rather than real-time updates.<\/li>\n\n\n\n<li>If real-time updates are absolutely necessary, implement a mechanism to <strong>limit the frequency<\/strong> of updates (e.g., refresh data every minute instead of every second).<\/li>\n\n\n\n<li>Consider using <strong>Appian\u2019s event-driven architecture<\/strong> (e.g., using <code>a!refresh()<\/code> for specific components) rather than refreshing the entire page.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">4. <strong>Complex, Nested Expressions or Rules<\/strong><\/h3>\n\n\n\n<h4 class=\"wp-block-heading\">The Request:<\/h4>\n\n\n\n<p>Clients often ask for <strong>complex calculations<\/strong> or <strong>nested expressions<\/strong> that may seem logical but are computationally intensive. These could involve deep nesting of rules or large arrays being manipulated through multiple layers of expressions.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Why It\u2019s a Problem:<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Performance bottlenecks<\/strong>: Complex, deeply nested logic requires more processing time both on the Appian server and the client (browser). This can slow down the interface significantly, especially if many users are simultaneously executing these calculations.<\/li>\n\n\n\n<li><strong>Hard to maintain<\/strong>: Complex logic is difficult to maintain and debug, making it more likely to result in future performance problems as business logic evolves.<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">The Solution:<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Simplify the logic<\/strong>: Break complex expressions into smaller, modular rules or functions that can be reused. This improves performance and makes the system easier to maintain.<\/li>\n\n\n\n<li><strong>Use Appian\u2019s built-in functions<\/strong> instead of custom code whenever possible to leverage optimized, prebuilt performance.<\/li>\n\n\n\n<li>If large datasets need to be processed, consider <strong>moving the logic server-side<\/strong> (in process models or as an API call) rather than executing it in the interface.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">5. <strong>Unrestricted User Access to Data<\/strong><\/h3>\n\n\n\n<h4 class=\"wp-block-heading\">The Request:<\/h4>\n\n\n\n<p>Clients may request to give <strong>all users unrestricted access<\/strong> to all records or data, believing that making everything available will simplify user experience and allow for more freedom.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Why It\u2019s a Problem:<\/h4>\n\n\n\n<p>Unrestricted data access can cause:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Security risks<\/strong>: Sensitive or confidential data may be exposed to unauthorized users.<\/li>\n\n\n\n<li><strong>Performance degradation<\/strong>: When users have access to large datasets, every query can become a performance bottleneck, especially if the system needs to check permissions on every record for every user.<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">The Solution:<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Implement <strong>role-based access control (RBAC)<\/strong> to restrict access to sensitive data based on user roles or specific permissions.<\/li>\n\n\n\n<li>Use <strong>Appian\u2019s record security<\/strong> model to define access at a granular level, ensuring only authorized users can view or modify specific records.<\/li>\n\n\n\n<li><strong>Index records<\/strong> properly in Appian to ensure that security checks do not unnecessarily slow down performance when filtering data.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">6. <strong>Excessive Use of Document Management for Data Storage<\/strong><\/h3>\n\n\n\n<h4 class=\"wp-block-heading\">The Request:<\/h4>\n\n\n\n<p>Clients might request to store large amounts of <strong>non-document data<\/strong> (such as lists or large datasets) in <strong>Appian\u2019s document management system<\/strong> for ease of access, rather than using databases or record types.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Why It\u2019s a Problem:<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Document storage is not optimized for large data<\/strong>: Appian\u2019s document management system is optimized for file-based data, not for structured, high-volume datasets like transactional data or lists.<\/li>\n\n\n\n<li><strong>Slower performance<\/strong>: Storing large amounts of non-document data in the document store can lead to slower retrieval times and higher storage costs.<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">The Solution:<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Store <strong>structured data<\/strong> (like lists, logs, or transactional data) in <strong>Appian records<\/strong> or <strong>external databases<\/strong> rather than in document storage.<\/li>\n\n\n\n<li>Use <strong>Appian\u2019s database integration<\/strong> capabilities to manage large datasets that need to be accessed frequently or are transactional in nature.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">7. <strong>Using Multiple Complex Process Models for Small, Simple Tasks<\/strong><\/h3>\n\n\n\n<h4 class=\"wp-block-heading\">The Request:<\/h4>\n\n\n\n<p>Clients may request the creation of <strong>multiple process models<\/strong> for relatively simple tasks because they believe splitting the work will improve maintainability and control.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Why It\u2019s a Problem:<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Increased overhead<\/strong>: Each process model introduces additional overhead, including the need for more deployment, monitoring, and error-handling. Too many process models can lead to higher complexity and performance issues.<\/li>\n\n\n\n<li><strong>Difficulty in managing workflows<\/strong>: Having too many small, disconnected models can make the overall process harder to debug and optimize.<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">The Solution:<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li>For small tasks, consider using a <strong>single process model<\/strong> that can handle all required logic in a straightforward, efficient way.<\/li>\n\n\n\n<li>Use <strong>sub-processes<\/strong> where appropriate to break down tasks without creating excessive overhead.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">8. <strong>Overuse of User Inputs and Interaction<\/strong><\/h3>\n\n\n\n<h4 class=\"wp-block-heading\">The Request:<\/h4>\n\n\n\n<p>Clients might request interfaces with too many <strong>interactive elements<\/strong>, such as dropdowns, text fields, or buttons that are constantly updated based on user input. While this can create a highly dynamic and engaging UI, it can also cause performance issues.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Why It\u2019s a Problem:<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Excessive data binding<\/strong>: Each interaction might trigger a backend query or update, leading to unnecessary load and slower performance.<\/li>\n\n\n\n<li><strong>Overcomplicated UI<\/strong>: Too many inputs can confuse users and lead to an overwhelming interface. It may also make the app slower to render and process.<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">The Solution:<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Limit interactive elements to only those necessary for the user\u2019s task. Focus on delivering the most streamlined experience.<\/li>\n\n\n\n<li>Use <strong>conditional logic<\/strong> or <strong>on-demand loading<\/strong> to only update components when needed, rather than constantly refreshing the entire page or interface.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Conclusion<\/h3>\n\n\n\n<p>While clients often have valid reasons for requesting certain features, it\u2019s important to balance those needs with the realities of <strong>performance and scalability<\/strong>. If you need consultants to guide you through your Appian implementation, reach out today! <\/p>\n","protected":false},"excerpt":{"rendered":"<p>When developing applications on Appian, it\u2019s common for clients to ask for features or capabilities that sound great on paper but can lead to performance issues, especially as the volume &#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[23],"tags":[],"class_list":["post-1361","post","type-post","status-publish","format-standard","hentry","category-appian"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Common Client Requests That Can Hurt Performance in Appian - Workulus<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/workulus.com\/?p=1361\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Common Client Requests That Can Hurt Performance in Appian - Workulus\" \/>\n<meta property=\"og:description\" content=\"When developing applications on Appian, it\u2019s common for clients to ask for features or capabilities that sound great on paper but can lead to performance issues, especially as the volume ...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/workulus.com\/?p=1361\" \/>\n<meta property=\"og:site_name\" content=\"Workulus\" \/>\n<meta property=\"article:published_time\" content=\"2025-01-05T22:26:16+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-01-06T00:53:17+00:00\" \/>\n<meta name=\"author\" content=\"Kevin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kevin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/workulus.com\/?p=1361#article\",\"isPartOf\":{\"@id\":\"https:\/\/workulus.com\/?p=1361\"},\"author\":{\"name\":\"Kevin\",\"@id\":\"https:\/\/workulus.com\/#\/schema\/person\/a120ae2f28766a73c09b8feb8c1dd127\"},\"headline\":\"Common Client Requests That Can Hurt Performance in Appian\",\"datePublished\":\"2025-01-05T22:26:16+00:00\",\"dateModified\":\"2025-01-06T00:53:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/workulus.com\/?p=1361\"},\"wordCount\":1406,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/workulus.com\/#organization\"},\"articleSection\":[\"Appian\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/workulus.com\/?p=1361#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/workulus.com\/?p=1361\",\"url\":\"https:\/\/workulus.com\/?p=1361\",\"name\":\"Common Client Requests That Can Hurt Performance in Appian - Workulus\",\"isPartOf\":{\"@id\":\"https:\/\/workulus.com\/#website\"},\"datePublished\":\"2025-01-05T22:26:16+00:00\",\"dateModified\":\"2025-01-06T00:53:17+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/workulus.com\/?p=1361#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/workulus.com\/?p=1361\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/workulus.com\/?p=1361#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/workulus.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Common Client Requests That Can Hurt Performance in Appian\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/workulus.com\/#website\",\"url\":\"https:\/\/workulus.com\/\",\"name\":\"Workulus\",\"description\":\"Providing CRM, BPM, and SaaS solutions.\",\"publisher\":{\"@id\":\"https:\/\/workulus.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/workulus.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/workulus.com\/#organization\",\"name\":\"Workulus\",\"url\":\"https:\/\/workulus.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/workulus.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/workulus.com\/wp-content\/uploads\/2025\/01\/cropped-Screenshot-2025-01-01-at-8.43.07\u202fPM.png\",\"contentUrl\":\"https:\/\/workulus.com\/wp-content\/uploads\/2025\/01\/cropped-Screenshot-2025-01-01-at-8.43.07\u202fPM.png\",\"width\":170,\"height\":39,\"caption\":\"Workulus\"},\"image\":{\"@id\":\"https:\/\/workulus.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/workulus.com\/#\/schema\/person\/a120ae2f28766a73c09b8feb8c1dd127\",\"name\":\"Kevin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/workulus.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/dc229bd4b99de099765702fe22581c23d9263104f800ca2d9b1fc4a5bed276b6?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/dc229bd4b99de099765702fe22581c23d9263104f800ca2d9b1fc4a5bed276b6?s=96&d=mm&r=g\",\"caption\":\"Kevin\"},\"sameAs\":[\"https:\/\/workulus.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Common Client Requests That Can Hurt Performance in Appian - Workulus","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/workulus.com\/?p=1361","og_locale":"en_US","og_type":"article","og_title":"Common Client Requests That Can Hurt Performance in Appian - Workulus","og_description":"When developing applications on Appian, it\u2019s common for clients to ask for features or capabilities that sound great on paper but can lead to performance issues, especially as the volume ...","og_url":"https:\/\/workulus.com\/?p=1361","og_site_name":"Workulus","article_published_time":"2025-01-05T22:26:16+00:00","article_modified_time":"2025-01-06T00:53:17+00:00","author":"Kevin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kevin","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/workulus.com\/?p=1361#article","isPartOf":{"@id":"https:\/\/workulus.com\/?p=1361"},"author":{"name":"Kevin","@id":"https:\/\/workulus.com\/#\/schema\/person\/a120ae2f28766a73c09b8feb8c1dd127"},"headline":"Common Client Requests That Can Hurt Performance in Appian","datePublished":"2025-01-05T22:26:16+00:00","dateModified":"2025-01-06T00:53:17+00:00","mainEntityOfPage":{"@id":"https:\/\/workulus.com\/?p=1361"},"wordCount":1406,"commentCount":0,"publisher":{"@id":"https:\/\/workulus.com\/#organization"},"articleSection":["Appian"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/workulus.com\/?p=1361#respond"]}]},{"@type":"WebPage","@id":"https:\/\/workulus.com\/?p=1361","url":"https:\/\/workulus.com\/?p=1361","name":"Common Client Requests That Can Hurt Performance in Appian - Workulus","isPartOf":{"@id":"https:\/\/workulus.com\/#website"},"datePublished":"2025-01-05T22:26:16+00:00","dateModified":"2025-01-06T00:53:17+00:00","breadcrumb":{"@id":"https:\/\/workulus.com\/?p=1361#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/workulus.com\/?p=1361"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/workulus.com\/?p=1361#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/workulus.com\/"},{"@type":"ListItem","position":2,"name":"Common Client Requests That Can Hurt Performance in Appian"}]},{"@type":"WebSite","@id":"https:\/\/workulus.com\/#website","url":"https:\/\/workulus.com\/","name":"Workulus","description":"Providing CRM, BPM, and SaaS solutions.","publisher":{"@id":"https:\/\/workulus.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/workulus.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/workulus.com\/#organization","name":"Workulus","url":"https:\/\/workulus.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/workulus.com\/#\/schema\/logo\/image\/","url":"https:\/\/workulus.com\/wp-content\/uploads\/2025\/01\/cropped-Screenshot-2025-01-01-at-8.43.07\u202fPM.png","contentUrl":"https:\/\/workulus.com\/wp-content\/uploads\/2025\/01\/cropped-Screenshot-2025-01-01-at-8.43.07\u202fPM.png","width":170,"height":39,"caption":"Workulus"},"image":{"@id":"https:\/\/workulus.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/workulus.com\/#\/schema\/person\/a120ae2f28766a73c09b8feb8c1dd127","name":"Kevin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/workulus.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/dc229bd4b99de099765702fe22581c23d9263104f800ca2d9b1fc4a5bed276b6?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/dc229bd4b99de099765702fe22581c23d9263104f800ca2d9b1fc4a5bed276b6?s=96&d=mm&r=g","caption":"Kevin"},"sameAs":["https:\/\/workulus.com"]}]}},"_links":{"self":[{"href":"https:\/\/workulus.com\/index.php?rest_route=\/wp\/v2\/posts\/1361","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/workulus.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/workulus.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/workulus.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/workulus.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1361"}],"version-history":[{"count":4,"href":"https:\/\/workulus.com\/index.php?rest_route=\/wp\/v2\/posts\/1361\/revisions"}],"predecessor-version":[{"id":1365,"href":"https:\/\/workulus.com\/index.php?rest_route=\/wp\/v2\/posts\/1361\/revisions\/1365"}],"wp:attachment":[{"href":"https:\/\/workulus.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1361"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/workulus.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1361"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/workulus.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1361"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}