├── .editorconfig ├── .github └── workflows │ └── main.yml ├── License ├── QPROLESRC └── SNDMSG.rpgle ├── QRPGLESRC ├── WRT2IFS ├── WRTUT8IFS.sqlrpgle └── WRTXML2IFS.sqlrpgle ├── QSQLSRC ├── WRT2IFS.sql ├── WRTUT8IFS.sql └── WRTXML2IFS.sql ├── QSRVPGMSRC └── SNDMSG.rpgle ├── QSRVSRC └── SNDMSG.bnd ├── README.md └── Table2XML.sql /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BirgittaHauser/Write-to-IFS-with-SQL/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BirgittaHauser/Write-to-IFS-with-SQL/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BirgittaHauser/Write-to-IFS-with-SQL/HEAD/License -------------------------------------------------------------------------------- /QPROLESRC/SNDMSG.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BirgittaHauser/Write-to-IFS-with-SQL/HEAD/QPROLESRC/SNDMSG.rpgle -------------------------------------------------------------------------------- /QRPGLESRC/WRT2IFS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BirgittaHauser/Write-to-IFS-with-SQL/HEAD/QRPGLESRC/WRT2IFS -------------------------------------------------------------------------------- /QRPGLESRC/WRTUT8IFS.sqlrpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BirgittaHauser/Write-to-IFS-with-SQL/HEAD/QRPGLESRC/WRTUT8IFS.sqlrpgle -------------------------------------------------------------------------------- /QRPGLESRC/WRTXML2IFS.sqlrpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BirgittaHauser/Write-to-IFS-with-SQL/HEAD/QRPGLESRC/WRTXML2IFS.sqlrpgle -------------------------------------------------------------------------------- /QSQLSRC/WRT2IFS.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BirgittaHauser/Write-to-IFS-with-SQL/HEAD/QSQLSRC/WRT2IFS.sql -------------------------------------------------------------------------------- /QSQLSRC/WRTUT8IFS.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BirgittaHauser/Write-to-IFS-with-SQL/HEAD/QSQLSRC/WRTUT8IFS.sql -------------------------------------------------------------------------------- /QSQLSRC/WRTXML2IFS.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BirgittaHauser/Write-to-IFS-with-SQL/HEAD/QSQLSRC/WRTXML2IFS.sql -------------------------------------------------------------------------------- /QSRVPGMSRC/SNDMSG.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BirgittaHauser/Write-to-IFS-with-SQL/HEAD/QSRVPGMSRC/SNDMSG.rpgle -------------------------------------------------------------------------------- /QSRVSRC/SNDMSG.bnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BirgittaHauser/Write-to-IFS-with-SQL/HEAD/QSRVSRC/SNDMSG.bnd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BirgittaHauser/Write-to-IFS-with-SQL/HEAD/README.md -------------------------------------------------------------------------------- /Table2XML.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BirgittaHauser/Write-to-IFS-with-SQL/HEAD/Table2XML.sql --------------------------------------------------------------------------------