aditya_gupta41
4 years agoContributor
Handling Multiple 'null values
I am currently having this requirement where i need to handle all the null values coming in input. The common thing i noticed that all these values end with ‘_DATE’ but this is coming in an object. for all the null values, i need to pass value ‘0000-00-00’. The challenge which i am facing is this is dynamic. sometimes there are overall 28 fields ending with ‘_DATE’ and sometimes its more than 100.
[
{
"DEPRECIATIONAREAS": [
{
"ASSET": "00005000xxxx",
"DEP_UNITS": 0,
"O_START_DATE": "2006-09-01",
"S_START_DATE": null,
"INTEREST_START_DATE": null,
"READINESS": "2006-08-31",
"INDEX": "",
"AGE_INDEX": "",
"VAR_DEP_PORTION": 0.0000,
"SCRAPVALUE": 0.0000,
}
]
"POSTINGINFORMATION": [
{
"ASSET": "000050009142",
"SUBNUMBER": "0000",
"CAP_DATE": "2006-08-31",
"DEACT_DATE": null,
"INITIAL_ACQ": "2006-08-31",
"INITIAL_ACQ_YR": 2006,
"INITIAL_ACQ_PRD": 11,
"PLRET_DATE": null,
"PO_DATE": null,
"CAP_KEY": ""
}
]
}
]
Can someone provide me a solution for this?
Thanks in Advance
This works. Thanks for your help @j.angelevski