2,518 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
22
views
ORA-29273 / ORA-28759 when calling REST service with apex_web_service (wallet configured)
I’m trying to make a REST call to the Autenticacao.gov service from APEX using apex_web_service.make_rest_request.
I created a wallet, imported the required certificates, and I’m passing the wallet ...
0
votes
0
answers
29
views
Xero Contacts API only updates "Bills" payment terms but ignores "Sales" payment terms
Title:
Xero Contacts API only updates "Bills" payment terms but ignores "Sales" payment terms (no error returned)
Body:
I’m working on a Salesforce → Xero integration that updates contact payment ...
-1
votes
2
answers
66
views
How to Set email language depending on recipient language via Salesforce Apex Toolkit?
I am using Salesforce Apex Toolkit to send DocuSign Email/Envelope. I want to set the email language programmatically via Apex based on the Recipient's email language on the Salesforce Contact record.
...
1
vote
0
answers
53
views
Document Checklist Item in health cloud
I recently started working with Health Cloud.
I want to have a document checklist on the Account, so that users can track document statuses.
I noticed that there is an sObject called ...
1
vote
1
answer
83
views
Counting values using nested SQL query
I have the following tables with values:
CREATE TABLE Produkty
(
Id NUMBER(10) NOT NULL,
Nazwa VARCHAR2(50) NOT NULL,
Status VARCHAR2(50) NOT NULL,
CONSTRAINT CHK_Status CHECK (Status ...
-1
votes
1
answer
67
views
Embed uploaded ContentVersion image inline in email — how to get a direct public URL (ContentDownloadUrl) instead of DistributionPublicUrl?
I need to display pictures outside salesforce so I'm generating DistributionPublicUrl from ContentDistribution but the 'DistributionPublicUrl' it's a page with the picture but it's not the picture. ...
2
votes
1
answer
71
views
How to avoid SOQL query limit error when querying child records in a loop in Apex?
I am working on an Apex class that processes a large number of Account records and their related Contact records. The problem I am facing is that when the number of records grows, my code hits the ...
-1
votes
1
answer
161
views
Oracle APEX Hide/Show No Data Found Message
I have a requirement to hide the No Data Found message on an Interactive Report when page is initially loaded then show back the message if there is no data.
I have search items (Say PX_Search_Item_1, ...
2
votes
1
answer
324
views
Get Object storage size and File Storage size in apex/ api In Salesforce?
How to get detailed object storage size (KB/MB/GB) in Apex or via API?
I want to retrieve the detailed storage usage (in KB/MB/GB) for each object (both standard and custom) in Salesforce using Apex ...
0
votes
0
answers
111
views
Issue with Apex code to convert base64 image to PNG (OmniScript/Discovery Framework)
I am trying to make an Apex class which converts the Signature image stored in base64 on an Assessment Signature (Discovery Framework) record to a PNG image and attach it to the record. This is needed ...
0
votes
2
answers
171
views
Oracle APEX CSS and Related Files for Embedded React Application
We have a page in our APEX application that uses JavaScript and CSS files from a React Application. Basically, an npm run build, generated files in three directories: js, css, and media and we ...
0
votes
1
answer
47
views
How to pass Amounts_Due field from Apex to Stripe for implementing Flexible payment terms?
I am trying to implement Flexible Payment Terms in Salesforce for which I need to make a REST callout to Stripe. I am following this documentation(https://docs.stripe.com/invoicing/payment-plans?...
0
votes
0
answers
45
views
SP-API Feed Upload Error InvalidBucketName
I'm trying to upload a json feed. I get the AccessToken and call createFeedDocument successfully, getting the FeedDocumentID and url to upload to. After solving the Signature Doesn't Match problem, I ...
0
votes
0
answers
34
views
Saving dynamically generated form with checkboxes and conditional fields
I'm working on an Oracle APEX application (Oracle APEX 24.1.5) where I have a dynamically generated form using PL/SQL in a Dynamic Content region. The form includes various types of inputs, including ...
1
vote
0
answers
52
views
I am stuck with the following error while trying to call POST API in Oracle APEX
enter
DECLARE
vCount NUMBER;
v_dname VARCHAR2(100);
v_loc VARCHAR2(100);
v_json CLOB;
BEGIN
v_json := :BODY;
APEX_JSON.parse(v_json);
vCount := APEX_JSON.get_count(p_path => 'dept');
htp.prn('...