...
- Herzum Approval History
- Herzum Approval Approval Configuration for Single Issue
- Pending approval requests
- Herzum Approval Mail handler
- Herzum Approval Services
- Herzum Approval Validators
- Herzum Approval Post Functions
Export Procedure
...
At the end of the procedure you can click Download Exported File, to download the file to your browser.
Approval Data export files by example
ApprovalExportData.zip file contain all approval tables in xml format
Export Table: AO_D195E9_CONDITIONAL_RULE into CONDITIONAL_RULE_XML xml file
If the USER_EVALUATOR field is set with a custom field, the app retrieves the custom field name in order to save it into the field USER_EVALUATOR_NAME.
If the USER_EVALUATOR field is set with a user key, the app retrieves the username in order to save it into the field USER_EVALUATOR_NAME.
The app will insert into the CONDITIONAL_RULE_XML xml file the following data:
SELECT "CONDITIONAL_NAME", "CONDITIONAL_RULE", "ID" AS ID_EXPORT, "USER_EVALUATOR", USER_EVALUATOR_NAME
FROM public."AO_D195E9_CONDITIONAL_RULE";
Export Table: AO_D195E9_LANGUAGE_PACK" into LANGUAGE_PACK_XML xml file
The app will insertinto the LANGUAGE_PACK_XML xml file the following data:
SELECT "DESCRIPTION", "ENABLED", "ID" AS ID_EXPORT , "LOCALE", "MODIFIED_DATE", "MODIFIED_USER", MODIFIED_USER_NAME "NAME"
FROM public."AO_D195E9_LANGUAGE_PACK";
Export Table: AO_D195E9_
...
The app will insert into the LANGUAGE_PACK_ KEY_VAL_XML xml file the following data:
SELECT "ID" AS ID_EXPORT, "LANGUAGE_PACK_ID as AS LANGUAGE_PACK_ID_EXPORT ", "PROPERTY_KEY", "VALUE"
FROM public."AO_D195E9_LANG_PACK_KEY_VAL";