I have to get the last 4 digit from the account number. How to achieve that in the AJO
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
You can validate it on the following lines
{%= substr(toString(<ReplaceWithAccountNumber>), length(toString(<ReplaceWithAccountNumber>))-4, length(toString(<ReplaceWithAccountNumber>))) %}
You can validate it on the following lines
{%= substr(toString(<ReplaceWithAccountNumber>), length(toString(<ReplaceWithAccountNumber>))-4, length(toString(<ReplaceWithAccountNumber>))) %}
Hello @NiteshSingh ,
If your usecase is to display the last 4 digits of account number by masking it. we have below mask function,
{%= mask("123443216789",0,4) %}
- this function will keep last 4 digits as it is and mask the remaining as X.
Output - XXXXXXXX6789
If your usecase is to get last 4 digits for other calculation you can refer the code suggested by @Mohan_Dugganab
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies