Hi Everyone,
I want to insert a record in a table , but the problem is one column value is sometime inserted and sometime not. the other two columns values are inserted correctly.
I debug the code values are retrieved correctly from Data Container but not inserted, and it does not shows or gives any insertion errors also tried with try/catch.
Thanks in Advance.
Here is my code.
where #colBankCode, #colBankName, and # colSwiftCode are integers 1,2,3 to retreive that column value from Data(Container)
SWIFTCODES swiftCodes;
BankRegNum value;
;
ttsBegin;
swiftCodes.initValue();
value = conPeek(Data, #colBankCode);
swiftCodes.RegistrationNumber = value;
swiftCodes.Name = conPeek(Data, #colBankName);
swiftCodes.SWIFTNo = conPeek(Data, #colSwiftCode);
swiftCodes.insert();
ttsCommit;
*This post is locked for comments