Appian Community
Site
Search
Sign In/Register
Site
Search
User
DISCUSS
LEARN
SUCCESS
SUPPORT
Documentation
AppMarket
More
Cancel
I'm looking for ...
State
Not Answered
Replies
4 replies
Subscribers
7 subscribers
Views
1968 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
AI and Rules
Dashboard UI Expression has a limit of 2000 characters - can this be increased.
Tim
Certified Lead Developer
over 12 years ago
Dashboard UI Expression has a limit of 2000 characters - can this be increased.
My conf.suite.DATA_CAP_PARAGRAPHS is set to 12500 so it must be a different setting if so?...
OriginalPostID-66143
OriginalPostID-66143
Discussion posts and replies are publicly visible
0
matt.flanagan
Appian Employee
over 12 years ago
No, it can't be increased. We recommend putting complex dashboard UI expressions in rules:
forum.appian.com/.../Record_Design
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
Tim
Certified Lead Developer
over 12 years ago
I've been trying that:
Expression Rule:
='type!{
www.appian.com/.../2009}ListViewItem'(
title: ri!incidentHdr.ServiceType&" #"&ri!incidentHdr.CaseId,
details: ri!incidentHdr.CaseTitle,
timestamp: ri!startTime
)
List View Template:
=rule!createRecordHdr(rf!incidentHdr.ServiceType, rf!incidentHdr.CaseId,rf!incidentHdr.CaseTitle, rf!pp.startTime )
But this isn't working, any obvious errors?
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
Tim
Certified Lead Developer
over 12 years ago
Ok, ignore me. It's late here in the UK and I'm struggling to copy and paste apparently. Got it working now. Thanks!
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
matt.flanagan
Appian Employee
over 12 years ago
For the first parameter you are passing the value of rf!incidentHdr.ServiceType into the rule input that I assume is named incidentHdr and are then trying to access the ServiceType field of that input.
So it's like doing incidentHdr.ServiceType.ServiceType.
Give this a try:
Expression Rule:
='type!{
www.appian.com/.../2009}ListViewItem'(
title: ri!serviceType&" #"&ri!caseId,
details: ri!caseTitle,
timestamp: ri!startTime
)
List View Template:
=rule!createRecordHdr(rf!incidentHdr.ServiceType, rf!incidentHdr.CaseId,rf!incidentHdr.CaseTitle, rf!pp.startTime )
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel