I added two text fields and a number(integer) field to an existing CDT, publishe

I added two text fields and a number(integer) field to an existing CDT, published it, updated datastore, made necessary changes to the process modeler; however the values are not written to the text fields in database (MySql), number field works fine. Any thoughts?...

OriginalPostID-87411

OriginalPostID-87411

  Discussion posts and replies are publicly visible

Parents
  • Hi Patty, I have downloaded the XSD and have amended it to add the new fields.
    Please find the entry in the xsd file for these three new fields I mentioned before.
    </xsd:element>
    <xsd:element name="shiplist" type="xsd:string">
    <xsd:annotation>
    <xsd:appinfo source="appian.jpa">
              @Column(nullable=true)
    </xsd:appinfo>
    </xsd:annotation>
    </xsd:element>
               <xsd:element name="farlocation" type="xsd:int">
    <xsd:annotation>
    <xsd:appinfo source="appian.jpa">
    @Column(nullable=true)
    </xsd:appinfo>
    </xsd:annotation>
    </xsd:element>
               <xsd:element name="other" type="xsd:string">
    <xsd:annotation>
    <xsd:appinfo source="appian.jpa">
    @Column(nullable=true)
    </xsd:appinfo>
    </xsd:annotation>
    </xsd:element>
Reply
  • Hi Patty, I have downloaded the XSD and have amended it to add the new fields.
    Please find the entry in the xsd file for these three new fields I mentioned before.
    </xsd:element>
    <xsd:element name="shiplist" type="xsd:string">
    <xsd:annotation>
    <xsd:appinfo source="appian.jpa">
              @Column(nullable=true)
    </xsd:appinfo>
    </xsd:annotation>
    </xsd:element>
               <xsd:element name="farlocation" type="xsd:int">
    <xsd:annotation>
    <xsd:appinfo source="appian.jpa">
    @Column(nullable=true)
    </xsd:appinfo>
    </xsd:annotation>
    </xsd:element>
               <xsd:element name="other" type="xsd:string">
    <xsd:annotation>
    <xsd:appinfo source="appian.jpa">
    @Column(nullable=true)
    </xsd:appinfo>
    </xsd:annotation>
    </xsd:element>
Children
No Data