You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need the "BtchBookg" parameter in XML output. We have changed source on our side, please add it to your code:
TCreditTransferPaymentInformation = class
private
...
fBtchBookg:string; // set it to "false" in onCreate
public
...
property BtchBookg: String read fBtchBookg write fBtchBookg;
...
We need the "BtchBookg" parameter in XML output. We have changed source on our side, please add it to your code:
TCreditTransferPaymentInformation = class
private
...
fBtchBookg:string; // set it to "false" in onCreate
public
...
property BtchBookg: String read fBtchBookg write fBtchBookg;
...
and write it to XML right after "PmtMtd"
procedure TCreditTransferPaymentInformation.SaveToStream(const stream: TStream; const schema: String);
begin
SEPAWriteLine(stream, '');
SEPAWriteLine(stream, ''+SEPACleanString(PmtInfId)+'');
SEPAWriteLine(stream, ''+SEPACleanString(PmtMtd)+'');
//>>
SEPAWriteLine(stream, ''+SEPACleanString(fBtchBookg)+'');
The text was updated successfully, but these errors were encountered: