Hi All,
I am assigning string to container as shown below.
Container infoMessage;
infoMessage += strFmt("Ledger dimension %1-%2 Total number of lines processed %3 with total calculated interest %4", header.DimensionValues[#one], header.DimensionValues[#two], line.RecId, header.TotalCalcInterestAmount);
I am adding all the messages to the container and after the execution I will display the info messages one by one. in the above line of code I am getting "The placeholder '%4' to strFmt is not used in the format string." BP warning can any one please suggest me how can i solve this?
Thanks in advance.