Search found 2 matches

by schhub
Tue Mar 14, 2023 4:13 pm
Forum: General
Topic: XML-INTO not "parsing" all the different values
Replies: 2
Views: 10551

Re: XML-INTO not "parsing" all the different values

I solved the problem by changing the label variable type from CLOB to varchar

dcl-ds CSWBR qualified;
dcl-ds Shipment;
dcl-ds Shipment;
BarcodeId char(30);
BarcodeSource char(30);
Barcode char(30);
end-ds;
Type char(30);
end-ds;
dcl-ds Labels;
dcl-ds Label Dim(2);
type char ...
by schhub
Tue Mar 14, 2023 11:52 am
Forum: General
Topic: XML-INTO not "parsing" all the different values
Replies: 2
Views: 10551

XML-INTO not "parsing" all the different values

Hi to all,

This i s part of a new program

dcl-s Img64 SQLTYPE(CLOB:500000);

dcl-ds MyDS qualified;
dcl-ds Shipment;
dcl-ds Shipment;
BarcodeId char(30);
BarcodeSource char(30);
Barcode char(30);
end-ds;
Type char(30);
end-ds;
dcl-ds Labels;
dcl-ds Label Dim(2);
type char(30 ...