how to check nested json is exits/not?

julkifli33
Member Posts: 1,092
hi all ,
how do we check nested json exist or not exist?
this one is not nested is ok.
but how about if we want to check fractionAmount?
Thanks.
how do we check nested json exist or not exist?
this one is not nested is ok.
IF JsonObject.Contains('item') = false THEN ..................... else ......................
but how about if we want to check fractionAmount?
[ { "id": "630", "item": "Item001", "affectedAmounts": { "fractionAmount": 0 } "fees": [] } ]
Thanks.
0
Answers
-
Hello @julkifli33,
You could do something like this:if jsObj.SelectToken('affectedAmounts.fractionAmount', jsToken) then ..........
Regards0 -
Hi @ftornero
I tested this one error if not existAmount := SelectJsonToken(JsonObject,$.foreignAmount.amount).AsValue.AsDecimal()
so i just add like thisIF JsonObject.Contains('foreignAmount') = true THEN begin Amount := SelectJsonToken(JsonObject,$.foreignAmount.amount).AsValue.AsDecimal(); end;
0 -
Hi all.
i want to get this nested json value (BalanceTypeCode Value){ "AccountNumber": "************", "AccountCurrency": "USD", "AvailableBal": [ { "BalanceTypeCode": "OPBD", "AmountValue": 3534559.9, "AmountCcy": "USD", "CreditOrDebit": "CRDT", "Date": "2023-01-30" }, { "BalanceTypeCode": "CLAV", "AmountValue": 3133816.3, "AmountCcy": "SGD", "CreditOrDebit": "CRDT", "Date": "2023-01-13" }, .................. ] }
my code
for i := 0 to JsonArray.Count - 1 do begin
JsonArray.get(i, JsonToken);
JsonObject := JsonToken.AsObject();
RetValue := GetJsonToken(JsonObject, '$.AvailableBal.BalanceTypeCode').AsValue.AsText();
end;
but it failed
Unable to convert from Microsoft.Dynamics.Nav.Runtime.NavJsonValue to Microsoft.Dynamics.Nav.Runtime.NavText.0
Categories
- All Categories
- 73 General
- 73 Announcements
- 66.6K Microsoft Dynamics NAV
- 18.7K NAV Three Tier
- 38.4K NAV/Navision Classic Client
- 3.6K Navision Attain
- 2.4K Navision Financials
- 116 Navision DOS
- 851 Navision e-Commerce
- 1K NAV Tips & Tricks
- 772 NAV Dutch speaking only
- 617 NAV Courses, Exams & Certification
- 2K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 320 Dynamics CRM
- 111 Dynamics GP
- 10 Dynamics SL
- 1.5K Other
- 990 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 35 Design Patterns (General & Best Practices)
- 1 Architectural Patterns
- 10 Design Patterns
- 5 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1.1K General Chat
- 1.6K Website
- 83 Testing
- 1.2K Download section
- 23 How Tos section
- 252 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions