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
2 replies
Subscribers
9 subscribers
Views
3383 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
General
Hi, I want to set up column length in CDT. The maximum length should be 500
saram
over 10 years ago
Hi,
I want to set up column length in CDT. The maximum length should be 5000 instead of default 255.
The same for decimal values, which should have 4 decimal digits instead of 2.
How can I do that in CDTs?
Thanks
OriginalPostID-144668
OriginalPostID-144668
Discussion posts and replies are publicly visible
Parents
0
heriz
over 10 years ago
Hi, you can set the length through customer the XSD :
<xsd:element name="yourfieldname" nillable="true" type="xsd:string">
<xsd:annotation>
<xsd:appinfo source="appian.jpa">
@Column(length=5000)
</xsd:appinfo>
</xsd:annotation>
</xsd:element>
Hope its can help.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Reply
0
heriz
over 10 years ago
Hi, you can set the length through customer the XSD :
<xsd:element name="yourfieldname" nillable="true" type="xsd:string">
<xsd:annotation>
<xsd:appinfo source="appian.jpa">
@Column(length=5000)
</xsd:appinfo>
</xsd:annotation>
</xsd:element>
Hope its can help.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Children
No Data