Hi Experts,
I have a table column with datatype EdtString with String Size Memo and few number of records with different values.
Tried with strReplace() & StrKeep() but didn't worked out since the value of properties will be different for different records.
Example for a particular row of record.
String Stored in Table :
{"Source":"D365A","JobTypeId":"Clerical","Description":"Clerical","ExemptStatus":"NonExempt","PaidHourly":"No","ExtIntId":16928090031}
Is there a way to remove the below highlighted property and values (values may be different for different rows in table) for Source & ExtIntId and display it in UI.
{"Source":"D365A","JobTypeId":"Clerical","Description":"Clerical","ExemptStatus":"NonExempt","PaidHourly":"No","ExtIntId":16928090031}
So, the expected result string looks like
{"JobTypeId":"Clerical","Description":"Clerical","ExemptStatus":"NonExempt","PaidHourly":"No"}
Thanks Much
Anoop