Posts

Showing posts from March, 2026

Oracle AI World Tour 2026 in FrankFURT

Image
I had the chance to attend the Oracle AI Cloud World Tour 2026, and it was an amazing experience👌💪💖 In this video,  I’m sharing some moments from the event, the atmosphere, around the Oracle AI World Tour 2026 in Frankfurt. Watch it 👀😉 The Oracle AI World Tour brings together developers, engineers, data professionals, architects, and tech enthusiasts to explore the latest innovations in Artificial Intelligence, cloud computing, and enterprise technology. It’s a great opportunity to learn about new tools, discover emerging trends, and connect with people who are working on similar technologies in the industry. Events like this are not just about presentations they’re also about the community. You can meet developers, exchange ideas, discuss realworld challenges, and see how different companies are using technology to solve complex problems. At the event, there were many interesting sessions about Oracle Cloud Infrastructure (OCI) , Generative AI , data platforms, and moder...

How to Handle Nested JSON Arrays from REST APIs in Oracle APEX ITEMS

Image
One of the most common challenges when integrating external REST APIs with Oracle APEX is dealing with nested arrays of key value pairs. Instead of returning data in a flat JSON object with fixed properties, many APIs return a flexible array like this: {   "attributesList": [     {       "attributeName": "customer_id",       "attributeValue": "CUST-1001"     },     {       "attributeName": "account_number",       "attributeValue": "ACC-778899"     },     {       "attributeName": "order_reference",       "attributeValue": "ORD-2026-001"     },     {       "attributeName": "order_date",       "attributeValue": "2026-01-15"     }   ] } This structure is very flexible the API can add new attributes without changing the JSON schema but it requires special configuration in APEX to ex...