Hello,
I have a "tools" site that we have setup like an add-on to some software we use internally. I was given a project to create a mass import from a CSV file that needs to geo-code an address to lat/long as part of its process. My thought was to use the import built in but I can't figure out how to make it work.
I'm looking for the following:
- A page that has an import field and a few other custom fields for data. IE: Custom fields will be data that is set for all rows that doesn't need to be in the file but needs to be part of the upload. This will be set by the person uploading.
- Once the file is uploaded and the fields set, a sort of a "Go" button to start the process.
- 4 of the columns will contain 2 addresses (2 columns each merged together for the full address) that need to be looked up for lat/long each.
- On the back end, the data will need to be validated and if successful, the data is added to the DB via Stored Procedures (I cannot do a direct insert as the data touches a few tables)
- For each row, multiple stored-procs will need to be run with the result from the previous used for the next. (They return things like generated ID data, etc.)
- I'd like the security to work the same as it does so I can just assign the needed users
I think I could get some of it through the events but I've struggled to get an inital page. I got just an upload only page but it didn't work well as it looks like it wants a list page. I'm not looking for someone to do this for me, just give me some tips on how to get started if it's possible.
Thank you!