1,500 questions
0
votes
0
answers
45
views
How to invoke API developed using AWS API Gateway which was protected by Amazon Cognito user pool token in Salesforce Apex class
I have created an API using AWS API Gateway, which is protected by an Amazon Cognito User Pool.
I need to obtain a token from Amazon Cognito to invoke or access this API from my Salesforce Apex class. ...
-1
votes
1
answer
123
views
Can i disappear the save report button from action menu in interactive report in oracle apex?
I have an interactive gride page. i want to hide SAVE button in action menu to prevent user to save report as default or primary report
i have tried to do that using page item be hidden contain value =...
0
votes
1
answer
184
views
How to disable autocommit in Oracle Apex
I am working on an Oracle Apex form where I have one field and two buttons. I need one button to perform an INSERT and then a COMMIT, while the other button only performs the INSERT without committing ...
0
votes
1
answer
355
views
Too many SOQL queries: 101
I have a trigger which runs i will share a piece of code which is affecting the functionality
for(Pos_Item__c posItem:[SELECT Id,InProcess_Inventory_Stock__c FROM Pos_Item__c WHERE Id IN :...
0
votes
0
answers
291
views
How do I end an automated process in Oracle's Apex that is not stopping?
I made a mistake when creating an automation in Apex and now it will not stop running. Is their a way to stop the automation from running?
I tried running the below code but I get an error that says &...
-1
votes
1
answer
36
views
Re: Salesforce Apex: Dates
Re: Salesforce Apex: Dates
Keep getting this error message.
Compile error: Variable does not exist: hello
Line: 6
public with sharing class Solution {
private String dateAsString = '2019-01-01 00:00:...
1
vote
1
answer
265
views
Apex testing logic controlled by custom metata type
In my Apex code, I already have an external HTTP callout.
Now, I aim to use a boolean flag in production code to control whether do real HTTP callout or read a static JSON from mdt records (i.e. a ...
0
votes
1
answer
1k
views
ORA-29024: Certificate validation failure When Using in apex_web_service.make_rest_request or UTL_HTTP.REQUEST Oracle APEX (Autonomous Database)
I followed all the steps in this forum and let's say that from the autonomous sql developer it worked in these two ways:
ORA-29024: Certificate validation failure When Using UTL_HTTP.REQUEST in ...
0
votes
1
answer
203
views
Apex Trigger: account rating not updating based on case status count
Based on the case status, update the account rating when the case status is closed only.
If the closed case is 1 then the rating is cold and if the closed case is 2 then the rating is hot.
I have ...
0
votes
0
answers
2k
views
Unknown Error Message: Check for javascript errors
I have 2 questıons .
1)While writing code, this message appears on the developer console screen :'Unknown Error Message: Check for javascript errors. How can I solve this problem?
İn apex job my ...
0
votes
0
answers
393
views
Oracle Apex Automation not executing for multiple applications
I have created 4 automations for one application and these automations work with no issue. They are set to run every minute and they execute.
When I try to add another automation to a different ...
0
votes
1
answer
2k
views
How to find apex class included in scheduled apex job
how to find the apex class in this scheduled apex record.its not showing the apex class , then I try this in apex jobs section but it's also not showing this job
Please give me solution for that . ...
0
votes
1
answer
121
views
How to authentication with Xero and salesforce without repeating authentication steps using apex?
Could you please help how to authentication with Xero and Salesforce using apex without repeat steps of authentication process on Salesforce side?
As of now I used refresh token but it's expire after ...
0
votes
1
answer
683
views
how to split one row into 2 lines, interactive grid oracle apex?
There are a lot of columns to edit in this interactive grid, i want to split the row into 2 lines
interactive grid
like this
i do not know if possible or not
is there a way to do it?
I did a lot of ...
0
votes
1
answer
62
views
vf pagination page can't offset the data
https://github.com/RuRu1229/paging-page
this is my page&apexCode
I want to do when I press the button,I can dispaly the (next/previous) five value In the screen.
Now I have six value,but when I ...
1
vote
1
answer
151
views
how can i update first then send the email with one button?
for example, in the model dialog, when i changed the date and click the send email button.
first, i need to update the informations then run the send email process,
to be clear, i want to give you ...
-3
votes
1
answer
2k
views
Doesn't match '[a-z][a-zA-Z0-9]*' (rule: Code Style-MethodNamingConventions)
I dont understand whats the issue here is. Please still gives the error.
public static void AmountHandlertest(){
//CODE;
}
I want to run that method but shows an error saying Doesn't match '[a-...
1
vote
1
answer
1k
views
oracle apex using dynamic action on a date field
I am a fresher in oracle apex, need some inputs.
There is a form to enter header information. In that there is a date field :P100_ENTERED_DATE, if this field value is less than current date then we ...
0
votes
1
answer
1k
views
How to perform actions based on user logins in Salesforce without a Login Flow?
I need to perform certain actions or notifications whenever a user logs into Salesforce. However, it seems that creating a trigger directly on the LoginEvent object is not possible in Salesforce.
I ...
0
votes
1
answer
455
views
Call asynchronous method with mock callout class
I am currently writing a mock callout class to test an API call that is being pushed into a production environment. The problem that I am having is the class that has the API call in it is an ...
-1
votes
1
answer
517
views
How to write to an existing Excel file in Oracle Apex 22?
I was trying to write in Excel file that is already located on the server. I'm using Oracle Apex 22. Is it avalibale?
I was trying to write in excel file. but I couldn't find the way I have been ...
0
votes
1
answer
215
views
How to handle Special Characters in Upload wizard in Oracle APEX
How to handle Special Characters in Upload wizard in Oracle APEX from CSV file:
é
è
à
ù
ç
ñ
ö
ë
í
á
ó
Also, I want to do Transformation of these special char to Alpha chars.
When I upload Excel ...
0
votes
1
answer
132
views
solve err in before insert trigger on pl/sql
I create table b
create table b(
id number(3),
name varchar2(5),
birth_day date
);
& I create trigger p
create or replace trigger p
before insert on b
for each row
declare
g number;
begin
...
0
votes
0
answers
172
views
why am i not getting the data of record and just lable in visualforce page?
attched is my output
enter image description here
Bolow is my visulforce Page and apex page
i am expecting output as a single record in 2 column and has next and previous button to next and previous ...
0
votes
1
answer
636
views
Setting a value in Controller from Visualforce Page is taking too long
I'm using Visualforce Page to display some selection fields, and based on the selections I'm updating my list.
<apex:form>
<div class="map-controls">
<div class=&...