Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
48 views

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. ...
Valli69's user avatar
  • 10k
-1 votes
1 answer
579 views

I'm working on an Apex Invocable Method that returns a wrapper class with nested wrapper objects. However, in Flow, I'm unable to access the inner wrapper fields properly. Here’s a simplified version ...
yogesh lee's user avatar
-1 votes
1 answer
139 views

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 =...
Retal Omar's user avatar
1 vote
2 answers
908 views

Got latest VSCode,latest Sf cli,latest npm ,latest Java 21 Intention is to get all objects (without using Org browser as it will be very time consuming) in manifest.xml to local VS Code project so ...
Carolyn Cordeiro's user avatar
0 votes
1 answer
204 views

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 ...
Mateo Zambrano's user avatar
0 votes
1 answer
554 views

I am tasked with the creation of a Salesforce 2GMP (Second Generation Managed Package) and I wonder how I can include a Custom Metadata Type in my package. A simple creation of the Custom Metadata ...
renepanke's user avatar
0 votes
1 answer
396 views

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 :...
Kavya's user avatar
  • 3
0 votes
1 answer
62 views

My apex code below extracts phone number from Subject field in the Case object. The thing is that I can't compare with Account Phone field because Phone field is only numbers just like this 9998887777....
apexDeveloper's user avatar
0 votes
0 answers
309 views

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 &...
Auggie's user avatar
  • 1
0 votes
0 answers
29 views

I'm developing a managed package and have a requirement to implement functionality that automatically uploads files attached on managed package object at regular intervals on some external drives like ...
nischal vasisth's user avatar
-1 votes
1 answer
45 views

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:...
user2021924's user avatar
0 votes
0 answers
169 views

When creating a Quote PDF i want to react to this event by custom logic in a Salesforce Apex Trigger. I created a trigger for it: trigger QUOTEDOCTRIGGER on ContentVersion (after insert) { for (...
renepanke's user avatar
1 vote
1 answer
274 views

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 ...
Xi Xiao's user avatar
  • 973
0 votes
1 answer
230 views

public class ItemTypeWrapper { @AuraEnabled public Id ItemTypeId ; @AuraEnabled public String ItemType; public ItemTypeWrapper(Id ItemTypeId, String ItemType) { this....
Kavya's user avatar
  • 3
0 votes
1 answer
1k views

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 ...
Edisson Gabriel López's user avatar
0 votes
1 answer
55 views

I am new to learning apex code and have a scenario where we need to open a salesforce tabular report using the report's name. I have created VF tab, visualforce page and kept the tab in homepage ...
bibar's user avatar
  • 1
0 votes
1 answer
208 views

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 ...
rahul soni's user avatar
0 votes
0 answers
224 views

Before showing my code that needs debugging, I want to know if it's possible to import data exposed by a Flask API into a custom Salesforce object with an APEX class. I know it is possible to create a ...
Jeremiah Lethoba's user avatar
0 votes
0 answers
2k views

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 ...
Destina Özgür's user avatar
0 votes
1 answer
2k views

I need writing some apex test code, where I want to mock a user which I then via the test has to find. I seem to have some problems creating one though? So far I understand I need an account, Contact ...
I am not Fat's user avatar
0 votes
0 answers
399 views

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 ...
Samuel Trahan's user avatar
0 votes
2 answers
907 views

I am very new to Apex development, and I am trying to pass a list of strings from records in bulk from a Salesforce flow, but can't get the Apex script to work. If I try invoking from the external ...
Daniel Zhou's user avatar
0 votes
1 answer
2k views

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 . ...
Pamoda Wijesinghe's user avatar
0 votes
1 answer
1k views

I like to write and If-Statement in Apex Code with the following logic: The Variable myVariableString can be blank, empty, ValueA, ValueB, ValueC or, and here I asume, because the Variable gets its ...
ioSven's user avatar
  • 13
0 votes
1 answer
131 views

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 ...
Rutu PATEL's user avatar
0 votes
1 answer
366 views

I am currently trying to create some pdfs for a Meta Human salesforce app and cannot figure out how to merge two visual force pages into one correctly. I am using the apex:include tag to merge the two ...
TurtleMan's user avatar
  • 193
0 votes
1 answer
697 views

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 ...
Halil İbrahim Çamur's user avatar
0 votes
1 answer
820 views

I have an interactive report in oracle apex, which has details of a bug like bug number bug description developer reviewer tdd dtc mr etc I have a copy button for each row with the following code <...
Divya Rose's user avatar
0 votes
1 answer
65 views

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 ...
Ruru's user avatar
  • 1
0 votes
1 answer
516 views

I computed a value using SQL and assigned it to a page item (P1_item) in page 1. I used this item in SQL query of a list of value in shared component (select col1 from table where col2=:P1_item). Then ...
Cassie's user avatar
  • 35
1 vote
1 answer
154 views

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 ...
0ptimus's user avatar
  • 33
0 votes
1 answer
542 views

Doing a group project with a few people and we are make the tables separately, is there a way to export a table so that someone else can import it and run queries with it? someone tried sending me in ...
Cookie Guy's user avatar
-3 votes
1 answer
2k views

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-...
Pixel's user avatar
  • 79
0 votes
1 answer
80 views

i need cron expression for to schedule job for every 2min. I tried String Cron = '0 0/2 * 1/1 * ? *'; but throwing exception like the sec and min cron expression should be in integer only.
Bharath Ram's user avatar
1 vote
1 answer
1k views

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 ...
vr_oracle's user avatar
0 votes
1 answer
222 views

I have a column in Interactive grid as select list and the list should refresh based on from and to date. however there is a scenario where I dont want the select list to change when from and to date ...
Deepika N's user avatar
0 votes
1 answer
1k views

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 ...
Himanshu Joshi's user avatar
0 votes
2 answers
913 views

I am new to Salesforce Development/Apex and am running practice exercises. When I run this code thru the 'Anonymous Apex' window, it throws an error reading: "Unexpected token 'Public'. " ...
Lucious Jackson's user avatar
0 votes
1 answer
462 views

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 ...
Trout's user avatar
  • 33
0 votes
0 answers
877 views

I have created an HTML table region using PLSQL Dynamic Content, and I want to create a button that exports or converts the region content (HTML TABLE) to an Excel file. Is that possible or not? Can ...
CodeGuide1000's user avatar
-1 votes
1 answer
525 views

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 ...
MSamy's user avatar
  • 1
0 votes
1 answer
361 views

I have three classes that I am trying to push from the sandbox to production. Class 1 the main class which contains an API call to send data to local servers, class 2 is a class that is called from a ...
Trout's user avatar
  • 33
0 votes
1 answer
223 views

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 ...
Anshul Ayushya's user avatar
0 votes
1 answer
547 views

I need to write a SOQL query listing all FieldPermissions without the formula/calculated fields The query I wrote is: SELECT Id, Field, SObjectType, PermissionsRead, PermissionsEdit FROM ...
Suliman Qahaz's user avatar
0 votes
1 answer
132 views

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 ...
mostafa majidi's user avatar
0 votes
1 answer
834 views

Business Hour Setup IMGI'm trying to calculate business hours between two days. However for some reason random days are showing up with less than 24 hours or less than 86400000 seconds in between on ...
ScarofScion's user avatar
0 votes
0 answers
172 views

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 ...
Siddhesh Paratane's user avatar
1 vote
2 answers
7k views

I am aiming to take a file a user attaches through an Lightning Component and create a document object containing the data. So far I have overcome the request size limits by chunking the data being ...
Jonathon Macleod's user avatar
0 votes
1 answer
637 views

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=&...
ugiican's user avatar
0 votes
1 answer
269 views

Created a Contact Trigger and a ContactTriggerHandler class to produce an error if the Contact is related to a relationship that contains 'Pricing Letters' and any item in the Address or Email Address ...
RobIsNotATechGuy's user avatar

1
2 3 4 5
30