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
8 replies
Subscribers
7 subscribers
Views
3712 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
Integrations
We need to integrate Appian with a system that has a MS SQL Server database with
JEAN PIERRE
over 10 years ago
We need to integrate Appian with a system that has a MS SQL Server database with lots of fields of type DECIMAL.
We have problems defining our DataStores in Appian. It seems that Appian does not support DECIMAL types? This would be a catastrophe for our project...
We need support....
OriginalPostID-129092
OriginalPostID-129092
Discussion posts and replies are publicly visible
Parents
0
Eduardo Fuentes
Appian Employee
over 10 years ago
Simply edit the XSD and add the @Column() annotation to specify the specific data type as explained here:
forum.appian.com/.../Defining_a_Custom_Data_Type.html
This is an example to map an Appian Text Field to a CHAR(40) Non-nullable column:
<xsd:element name="name" type="xsd:string">
<xsd:annotation>
<xsd:appinfo source="appian.jpa">
@Column(columnDefinition="CHAR(40) NOT NULL")
</xsd:appinfo>
</xsd:annotation>
</xsd:element>
when editing the XSD you need to delete the CDT and re-upload the new version then run impact analysis or manually remap the data store so it points to the latest version of the CDT.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Reply
0
Eduardo Fuentes
Appian Employee
over 10 years ago
Simply edit the XSD and add the @Column() annotation to specify the specific data type as explained here:
forum.appian.com/.../Defining_a_Custom_Data_Type.html
This is an example to map an Appian Text Field to a CHAR(40) Non-nullable column:
<xsd:element name="name" type="xsd:string">
<xsd:annotation>
<xsd:appinfo source="appian.jpa">
@Column(columnDefinition="CHAR(40) NOT NULL")
</xsd:appinfo>
</xsd:annotation>
</xsd:element>
when editing the XSD you need to delete the CDT and re-upload the new version then run impact analysis or manually remap the data store so it points to the latest version of the CDT.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Children
No Data