Hi All,
I have one custom Text Field in the Bank Acc. Reconciliation Line table in the Business Central. In that field, I have the below value.
Value is:
FROM:CO NAME=Test, Test ,Test;CO.ID#=0123456789;ENTRY DESC=Test;INDIV NAME=Test2;INDIV.ID#=000000000000000; PAR=0000000000000; ACH LOCATION #0000000000;
So Challenge is:
I need to extract this field because I want a separate each key-value pair after semicolon from this field and store that value and use that.
For example like this,
CO NAME [key]=Test, Test, Test [value];
CO.ID# [key]=0123456789 [value];
ENTRY DESC [key]=Test [value];
INDIV NAME [key]=Test2 [value];
INDIV.ID# [key] =000000000000000 [value];
PAR [key]=0000000000000 [value];
Is there any way to do it In the AL code?
Any help will be appreciated.
Thank you.