Rodrigo Mesquitamesquitarod.hashnode.net·Dec 1, 2022Multipart/Form-Data requests with APEX_WEB_SERVICEAs the demand for web applications grows, developers have had to find new ways to build their applications faster and more efficiently. In recent years, Oracle Database has become an invaluable tool for developers, offering powerful capabilities like...Discuss·4 likes·1.1K reads#oracle-apex
Tom Lieberyaitcon.hashnode.net·Jan 11, 2023Explain View-SQL via ChatGPT with PLSQLWhat a nice Feature.. Yesterday: I have seen this: https://dbdev01555.wordpress.com/2023/01/10/calling-openai-api-with-pl-sql/ Now I can make that happend: I want to explain my View-SQL Statement as Text so it is more Human readable: The IDEA: selec...Discuss·4 likes·367 readschatgpt
Rodrigo Mesquitamesquitarod.hashnode.net·Apr 12, 2023Create a dynamic membership card on APEXIn this post, I will demonstrate how to dynamically embed data into images and download them. For this demo, I will be creating a membership card by adding the membership details to a pre-defined template. First, let's add the membership template ima...Discuss·3 likes·69 readsApex
Bruno Cardosocardoso.hashnode.net·Apr 25, 2023Oracle APEX: Open a modal page With JavascriptHello Everyone 👋 Today I want to introduce you to apex.navigation.redirect a special method available on APEX Javascript API to redirect the user to any page. If you still don't understand what I'm saying, allow me to explain: https://giphy.com/gifs...Discuss·1 like·59 readsApex
SubashMohansubashmohan.hashnode.net·Apr 19, 2023Calling Apex Methods and Lifecycle HooksCalling Apex Methods In LWC, there are two ways of calling Apex methods: Imperative Apex: Imperative Apex call is a way to call an Apex method imperatively using JavaScript. This means that instead of relying on the @wire decorator, you can call an A...Discusslwc
Rodrigo Mesquitamesquitarod.hashnode.net·Apr 12, 2023Create a dynamic membership card on APEXIn this post, I will demonstrate how to dynamically embed data into images and download them. For this demo, I will be creating a membership card by adding the membership details to a pre-defined template. First, let's add the membership template ima...Discuss·3 likes·69 readsApex
Rafal Grzegorczykrafal.hashnode.net·Mar 9, 2023Pimp your old-looking Oracle APEX charts with a little bit of a linear gradient.Default chart colours are a little bit of a "Windows95" style? That's true. Adding colour gradients to those blue (or other) bar charts would be nice. How about making it look like that? Isn't it much better? We can customize charts with many optio...Discuss·3 likes·465 readsApex
shubham lashkanshubhamlashkan.hashnode.net·Mar 5, 2023How to convert leads using apex in salesforce?In Salesforce, Lead is one of the most important objects. We create a lead record to track information about potential customers who are interested in buying our products/services. The lead conversion process in Salesforce is a critical step in the s...Discuss·79 readsSalesforce
Tom Lieberyaitcon.hashnode.net·Feb 19, 2023SQL Macros used in Oracle ApexI've been missing parameterizable views in Oracle for many years.. with SQL macros they have now become possible: (from 19.7) /* teste sql macros */ with parms(p_von_date,p_bis_date) as (select trunc(sysdate) - 14 p_von_date, trun...Discuss·1 like·223 readsAutonomouse CarLogBookSQL
shubham lashkanshubhamlashkan.hashnode.net·Feb 19, 2023Dynamic SOQL in ApexIn this article, we will look at a code example that demonstrates how to retrieve all fields of an Account record using Dynamic SOQL in Salesforce. In the last article, you read about fetching all fields of an SObject using dynamic apex in Salesforce...Discuss·36 readsSalesforce
shubham lashkanshubhamlashkan.hashnode.net·Feb 11, 2023How to fetch all fields of an SObject using Apex in Salesforce?In this article, we will look at a code example that demonstrates how to retrieve all fields of an Account object using Dynamic Apex. What is Dynamic Apex? Dynamic Apex is a feature in the Salesforce platform that enables developers to write Apex cod...Discuss·93 readsSalesforce
shubham lashkanshubhamlashkan.hashnode.net·Feb 4, 2023How to bypass duplicate rules via Apex in Salesforce?In this article, we will learn how to save duplicate records using Apex if a duplicate rule is already configured in Salesforce. I am assuming that you already have a duplicate rule configured in Salesforce. In this article, we will be using the exam...Discuss·150 readsSalesforce CRM
Tarun Guptatarung.hashnode.net·Jan 27, 2023Apex Unit Tests Basics # Part - 01The apex testing framework on the Lightning Platform allows you to write and run tests for your apex classes and triggers. Adding Apex unit tests as part of your Salesforce development process ensures high-quality Apex code and that you meet the Apex...DiscussTesting