Appian Community and Appian Academy are being upgraded. From July 24–August 3, the Appian Community will be in read-only mode. During this time, the site will be read-only and user registration will be disabled. We apologize for any inconvenience this may cause, but a more secure, stable, and performant Community experience is coming soon!
The new Appian Community launches August 3, followed by Appian Academy on August 7. During the migration, Appian Community Edition, Appian Academy, Documentation, Certifications, Instructor-led Customer Training, Partner Sales Training & Accreditation, and Forum (for Appian Partners and Customers only) will remain available.
Dear all,
I have a a!pickerFieldRecords component in my interface and it pulls up data from different records but not the particular record I am trying to use. Does anyone know why it would successfully pull data from other records but not from this particular one? I have included the SAIL code below. I also need to add that the record type I am referencing exists and has a number of rows in it.
Thanks
a!pickerFieldRecords( label: "Vendor", labelPosition: "ABOVE", maxselections: 1, recordtype: 'recordType!{fc745541-434d-48b1-800e-ad12f9896ef2}REQ Vendor', value: ri!vendor, saveInto: ri!vendor, validations: {} )
Discussion posts and replies are publicly visible
I've never seen where anyone used the UUID of a record type in their SAIL code. Perhaps, creating a constant of type Record Type and referencing that constant would help.
I know there's a lot of extraneous constants out there, but it does seem to help other situations as well.
Thanks for your kind answer.