I get the below error on customizing the xml font option to Times New Roman instead of Arial, for the reciept.xml file
Also taking into account another field customization I required to be made doubleline as the characters exceed gives me the same below error eventhough I used this customized xml file downloaded from the CustomerSource site. Is there a bug with POS accepting this customization ?
Length of LOB data(79268) to be replicated exceeds configured maximum 65536
*This post is locked for comments
I have the same question (0)I assume that the problem is on the database that store the file...
if you don't need to use cdc for the current table ... you can disable the cdc for the current table... by executing system stored procedure sys.sp_cdc_disable_table
however if you need to use cdc for the current table... you can re-size the maximum size for the replication by executing this script ''EXEC sp_configure ‘max text repl size’, [new_size]"
and make sure to execute "RECONFIGURE" to take the effect...
Hope this help...
Cheers,
Teguh