Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

For example: The user has accidentally deleted the Chemotherapy form. Run the below SQLs:SQL> select xml from


Code Block
languagesql
titleget_xml
select xml from dyextn_containers where caption = 'Chemotherapy form';


The output would be the form xml file along with the form ID and database table name in which the form records are stored. Eg: Form ID is 86 and db table name is 'DE_E_11006'

Code Block
languagexml
titleform_xml_output
<container id="1">
  <id>86</id>
  <name>chemotherapyForm</name>
  <caption>Chemotherapy form</caption>
  <dbTableName>DE_E_11006</dbTableName>.......

...