This commit is contained in:
10
docs/8.0/ayanova/docs/ay-ex-export.md
Normal file
10
docs/8.0/ayanova/docs/ay-ex-export.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# EXPORT EXTENSION
|
||||
|
||||
The Export extension can be used to export selected records from AyaNova.
|
||||
|
||||
Formats available are .json and .csv (comma separated values).
|
||||
|
||||
.json is most appropriate for preserving the original structure of the data being exported and a good "round trip" format as it's most compatible with importing back into AyaNova. JSON format is becoming more widely accepted and you should choose this format where possible.
|
||||
|
||||
.csv is more widely compatible with 3rd party applications than JSON but CSV is a "flat" file format that will lose some of the structure of the source data so some adaptations need to be made to the data during export and it may not be directly importable back into AyaNova again.
|
||||
|
||||
@@ -87,6 +87,7 @@ nav:
|
||||
- 'Report editor': 'form-ay-report-edit.md'
|
||||
- Extensions:
|
||||
- 'Tags extension': 'ay-ex-tags.md'
|
||||
- 'Export extension': 'ay-ex-export.md'
|
||||
- Customer:
|
||||
- 'Workorders': 'form-customer-workorders.md'
|
||||
- 'Customer service requests': 'form-customer-csr-list.md'
|
||||
|
||||
@@ -94,7 +94,7 @@ namespace AyaNova.Biz
|
||||
// when disposed if either commands fails
|
||||
await transaction.CommitAsync();
|
||||
}
|
||||
catch (Exception ex)
|
||||
catch
|
||||
{
|
||||
throw;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user