User-1240674726 posted
Guys.... we found it! :)
th problem was when exporting the code from a MSSQL db, some column value width property was too short, so when columns were created in Progress those fields could not been retrieved if its values legth was wider.
it was solved by re-creating those tables and redifined te fileds width! here an example:
ADD FIELD "FIELD_DESC" OF "K_CRE_BASE_PRODUCTS" AS character
FORMAT "X(50)"
INITIAL ?
POSITION 4
MAX-WIDTH 100
LENGTH 50
ORDER 30
in this case, the column being created is named FIELD_DESC, its previous max-width was 16.
Hope this helps anyone whos having same problem!!
Cheers!