Hello,
I am working with LiveCycle connected with SAP, it is where I take the data. I have some problems when I work with boolean or not totally filled colums. I will put an example to make me understand.
Data in SAP:
InvoiceID(string) | Payed(boolean) | Credit(int) | Customer(string) |
---|---|---|---|
I001 | x | C001 | |
I002 | 500 | C002 | |
I003 | x | C003 | |
I004 | 200 | C004 |
Data in LiveCycle:
InvoiceID(string) | Payed(boolean) | Credit(int) | Customer(string) |
---|---|---|---|
I001 | x | 500 | C001 |
I002 | x | 200 | C002 |
I003 | C003 | ||
I004 | C004 |
When the column is full of data, LiveCycle makes a correct binding, but when the column is not full, like a boolean false, the data seems to be all filled first and then all not filled.
Also I have noticed that if I put 2 columns in LiveDesigner with the same binding:
InvoiceID(string) | Payed(boolean) | Payed(boolean).2 | Credit(int) | Customer(string) |
---|---|---|---|---|
I001 | x | x | 500 | C001 |
I002 | 200 | C002 | ||
I003 | NULL | NULL | C003 | |
I004 | NULL | NULL | C004 |
It is like whether LiveCycle writes the first row binding with the data column Payed and takes 2 values for the first row, then it has 2 more empty data for the next two slots in row2 and the next slots in row3 and row4 put them as null.
Thank you!