Last active
July 27, 2023 17:15
-
-
Save akovac35/033dfe88915e3af8fc42bb70dee2a858 to your computer and use it in GitHub Desktop.
ESQL for converting IIB / App Connect ExceptionList to CHAR
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DECLARE tmp ROW; | |
CREATE LASTCHILD OF tmp DOMAIN('XMLNSC') NAME 'XMLNSC'; | |
SET tmp.XMLNSC.ExceptionList = InputExceptionList; | |
SET tmp.BLOB = ASBITSTREAM(tmp.XMLNSC.ExceptionList OPTIONS FolderBitStream CCSID 1208); | |
-- CAST(tmp.BLOB AS CHAR CCSID 1208) to get the exception CHAR |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment