Bulk upload from Excel to Appian

Hello,

We are building a site which will be used to gather request and I'm trying to find if there is a possibility to make bulk upload of these request using excel. The form which need to be submitted contain single rows and also arrays of data. We want all of these bulk uploaded request to stay in "draft" mode and not being push to the backend databases, because that can lead to incorrect information to the database since we have some validations which need to pass. We need to give the client the agility to edit these information when they are loaded as bulk. What are the capabilities of Appian to load bulk data, what are the limitations? 

Thank you!

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer

    The most preferred way should be as already suggested to use temporary or staging DB tables to load data from excel. Keep two additional columns in each staging table named as VALIDATION_MESSAGE and IS_VALIDATE. Update validation message if any from sanity, data, datatype or any other validation. Update IS_VALIDATE true if no validation message else false. This way you can export only those rows which are not valid and display to the user so that they can correct and upload another set of excels with right data.

Reply
  • 0
    Certified Lead Developer

    The most preferred way should be as already suggested to use temporary or staging DB tables to load data from excel. Keep two additional columns in each staging table named as VALIDATION_MESSAGE and IS_VALIDATE. Update validation message if any from sanity, data, datatype or any other validation. Update IS_VALIDATE true if no validation message else false. This way you can export only those rows which are not valid and display to the user so that they can correct and upload another set of excels with right data.

Children