A proprietary Java-like programming language for the Force.com Platform, not to be confused with Oracle's Application Express [tag:oracle-apex]

learn more… | top users | synonyms

0
votes
1answer
13 views

How to redirect a certain group login in to another page apex oracle

so I'm kind of new to apex and If I had a log in page and a certain user logs in that belongs to a certain group... say customers? Well if they log in , it would redirect them to a customer ...
0
votes
1answer
20 views

Salesforce - Hiding visualforce form items based on organization

I have a custom viusalforce page as part of a package that i'm developing. The package will be installed on a number of different Salesforce organizations. I require to hide certain parts of the ...
0
votes
0answers
15 views

Turn off lead assignment rules in salesforce lead trigger

I'm having trouble with a Salesforce lead trigger, fired after insert. The lead assignment rules need to be on by default, but I need to bypass the rules for leads that match a certain criteria. ...
0
votes
1answer
32 views

How to find if an apex:inputField is disabled

From a VisualForce controller, how can I find if a dependent pick-list inputfield is disabled? There does not seem to be an accessible 'disabled' property for the field. I am creating validation to ...
0
votes
1answer
15 views

Is there a way to group by the date portion of a datetime field in SOQL

select day_only(createdDate) createdonDate, count(createdDate) numCreated from account group by day_only(createdDate) order by day_only(createdDate) desc this soql return result ...
0
votes
2answers
43 views

javascript to check string in this format

i want javascript code to check whether my input text is in specific format as AS0301-12345 <apex:inputText id="searchText" value="{!searchText}" onmousemove="checkingstring(this)"/> ...
1
vote
1answer
35 views

Oracle APEX Shuttle Box Output

I am new to APEX, and I am having issues with displaying output. The shuttle box itself works fine, but below it I have a submit button. When this is pressed it should display the user's manager in ...
0
votes
0answers
20 views

How to save a file's content(bytestream) from HttpResponse object to a pdf in apex code

On a page load(or a hyperlink click) I am calling a method which is calling a webservice. Webservice returns content of a pdf file(residing on jackrabbit content repository) as bytestream in the ...
0
votes
1answer
31 views

Combination of SOQL Statements String with Boolean Attributes

Do you have an idea on how can i combine the following SOQL statements into just one i tried several options and by creating the two entries i was able to get it to work.. i'm fairly new to APEX ...
1
vote
0answers
13 views

Lightbox is not closing in some browser apex

I am using lightbox in my page. While closing light box it is closing fine in all browser.. But it is not properly closing in Opera.. My light box component code - <apex:component > ...
1
vote
1answer
19 views

SOAP callout fails silently

I have generated an Apex class from my WSDL successfully and was able to authenticate on the remote server by setting the HTTP Authorization header manually. I have double checked on the remote server ...
0
votes
0answers
32 views

Uploading Multiple Files in Salesforce through Visualforce

I would like to upload multiple files in Salesforce using visualforce. I can upload one file at a time. But my requirement is, i want to display only one "add a file" button in visualforce page, when ...
-1
votes
0answers
19 views

SalesForce Pricing [closed]

We want to collect the data ourselves regarding the companies and store the data in SalesForce. We want to create the apis using Apex to access from our C# application. So we will be accessing the ...
0
votes
1answer
35 views

How to wrap apex:columns in a div to use in slideToggle()

I am trying to have a jquery slideToggle() function bound to a row of data in an apex:pageBlockTable. I am displaying some information in the table and want that if someone clicks on any row, some ...
0
votes
0answers
22 views

How to display a byte stream on visualforce page?

I have few documents in jackrabbit content repository which I want to display in the browser on the click of a link on visualforce page. I have a web-service to access those documents and ...
0
votes
1answer
8 views

Query to search list of sObjects in the Organization

I am trying to build a Visualforce Page where i want to display all the sObjects in the system with their related data counts in a tabular format. ObjectName ObjectLabel RecordCount Can i know how ...
1
vote
1answer
39 views

Trigger Duplicate CSV

am trying to upload a CSV file / insert a bulk of records using the import wizard. In short I would like to keep the latest record, in case if duplicates are found. Duplicates record are a combination ...
1
vote
1answer
30 views

Salesforce creating incorrect HMAC SHA1 value

I'm trying to generate an HMAC value within Salesforce using the Crypto generateMac function, but the result doesn't match with other utilities. For example, I'm trying to hash the value Hash me ...
0
votes
0answers
45 views

Render Salesforce Document Object Instance Body on Visualforce Page

I have a PDF file stored in Documents in Salesforce. I need to get the Document from the Document object and render it as a PDF visualforce page. When I get the body of the docuemnt it is the form ...
1
vote
1answer
32 views

How to pass values from multiple selectlists in same VF containing similar list data to Apex extension using a single variable/array

I am an amateur developer looking for a unique solution that Google doesn't have an answer to. I need to create a time-table for a class. There are 6 hours with 6 teachers assigned to each subject. ...
0
votes
1answer
77 views

Getting Specific rows in Datatable using JavaScript in Salesforce

I am working with visualforce pages. I am using datatable in page and i have used a checkbox in each row, now i want to get only those rows whose checkbox values is true, the code is given below. ...
0
votes
1answer
11 views

Unable to remove last comma from string

I am trying to remove the last comma in a string using the substring method: system.debug('******************* quoteQuery ' + quoteQuery); quoteQuery = quoteQuery.subString(0,quoteQuery.Length()-1); ...
0
votes
2answers
53 views

Invalid field Email for SObject AggregateResult in VisualForce

I want to display the AggregateResult on my Visualforce page but it is generating the following error " Invalid field Email for SObject AggregateResult" Below is my code: public with sharing class ...
1
vote
7answers
54 views

Removing some text data in HTML file

I am working on visualforce pages. below is given the part of HTML file code that has been generated after executing the apex code. <table class="detailList" cellspacing="0" cellpadding="0" ...
0
votes
1answer
30 views

Searching a specific text on visualforce page and hiding its all existence on the page using jquery

I am working with apex pages, i want to search a specific text suppose "View the whole Tree" on the page and hide and suppose it has many existence on the page, anyone can guide me with the jquery ...
0
votes
0answers
31 views

Deactivate a portal user in a test class

Does anybody know how to deactivate a portal user in a test class? I'm trying to delete Accounts with an assoicated Portal User and figured if I deactivated the portal user I may be able to delete ...
0
votes
0answers
43 views

Eclipse and Salesforce

I am working on Salesforce using the Eclipse IDE, I just want to access a simple currency converter webservice wsdl. http://www.webservicex.net/CurrencyConvertor.asmx?WSDL my question is can we use ...
0
votes
1answer
20 views

SetDefaultAccountValues in Account object it show sum error

This is my code. I have to set the default value for Account fields like Name ,Phone etc...but it shows some error. trigger setDefaultAccountValues on Account (before insert, before update){ ...
0
votes
1answer
31 views

retURL in URLFOR not redirectin​g correctly

I have a VF page that is embedded inline on a custom object page layout section. In the VF page, I used a command button to redirect to another custom object using the URLFOR New Action. ...
0
votes
2answers
48 views

Visualforce Apex Trigger updating wrong records

I cant figure out why this trigger is sometimes updating records that dont match the criteria. The idea is that when an account goes from 'on-hold' to an active service, any cancelled assignments are ...
1
vote
2answers
66 views

Declaring new variables on the fly?

Has anyone found a way to declare variables on the fly? I have some variables that can be limitless... val1 val2 val3 val4... Is there a way to create these on the fly, something like... ...
0
votes
1answer
41 views

Grab textbox salesforce ID and display somewhere else on same page

I have a apex:textbox which renders on a visualforce page with a SF ID. I need to grab the SF ID on the same page load and place into a link. eg: I need this: <input ...
0
votes
1answer
48 views

Populating SelectList with sobject

I am trying to create a class that will populate the a multi selectlist depending on what URL parameters are passed in. Im having trouble. The slectlist never renders, however, looking through the ...
0
votes
0answers
32 views

Apex: Update simple checkbox report

I am using apex 4.2. I can't seem to find a clear cut and explained example of this anywhere. I have created a reprot with a source query select person_id, first_name,last_name from persons where ...
0
votes
0answers
32 views

Basic Http Authentication from Salesforce to Taleo

I am a newbie and am writing a SOAP web service(for integration purpose), in order to execute the SOAP call I need to authenticate the user first(standard integration user). Following is the code ...
1
vote
1answer
37 views

Show Opportunity related Contacts in Custom Object Field

I have the next issue. I have a custom object called 'Application', and I have this requirement: "Show all Contacts related to an Application. Create a field on Application object, must be read ...
0
votes
1answer
42 views

soql getting data via a junction object

I have the following three custom objects: Order__c Design__c (has a lookup to Order and a lookup to Location, so the design ojbect is the junction object) Location__c On the order page layout I ...
1
vote
1answer
98 views

Removing None Option in PickList visualforce apex

i have created an object with name PS_Detail__c .in this custom object i created a custom field .in this picklist i defined two values Dollar ,Unit. when i go to P/S Detail Tab for creating a new ...
1
vote
1answer
30 views

Copy header and detail using custom button

I have a custom object "Order" with detail object "Order Lines". I want to place a custom button on the Quote header called "Create Order" that when clicked will copy the Quote header and detail ...
2
votes
2answers
112 views

POST Request unable to recieve the JSON respose in Salesforce

I am calling an API of FluidSurvey. when i make a POST request ... it post the request on the fluidSurvey but i didnt get the JSON response. rather it returns nothing. any suggestion?? my controller ...
0
votes
0answers
21 views

Asana StatusCode=404

Writing a wrapper class for Asana API in Salesforce APEX, encountering this status code for any 'valid' GET command sent: HttpResponse[Status=Object Not Found, StatusCode=404] Even with the ...
0
votes
1answer
60 views

Encrypt in C# and decrypt using Apex

I want to pass a field in the query string from asp .net to Apex . I want to encrypt the value of the field and then pass it in the query string. I am not sure how to approach this, are there any ...
2
votes
2answers
60 views

System.CalloutException: For input string: “pasword@app.fluidsurveys.com”

I am trying to access the fluid survey API in Sales force. i use the following code but it create some error the code for controller class is public class fluidSurvey{ public String ...
0
votes
2answers
182 views

Salesforce/Apex - Saving values of dynamic number of checkboxes

I currently have a Visualforce page embedded on the contact record that displays all active campaigns with a chexckbox indicating if the contact is a member of the campaign (if checked then the ...
0
votes
1answer
49 views

How to create Web to Lead in Salesforce

I have a form host on my website (say www.mywebsite.com ) that takes general information for the clients requirements, its having texetboxes, dropdowns, checkbox, radio buttons, etc. Now I need this ...
0
votes
0answers
40 views

Dynamic action to columns on changing select list option

I am having some trouble incorporating Javascript into Apex. I have a table that essentially has a start_date, an end_date, and a task_name. The task_name is a drop down/select list. The other two ...
0
votes
1answer
82 views

Updating contact email in user trigger in Salesforce

I have a trigger on a user object that is triggered on user updating and updates the contact fields (user linked to this contact), such as first name, last name and email. First and last name are ...
0
votes
1answer
212 views

Salesforce Apex - Populating an object from SOQL query

I have a simple SOQL query that returns information relating to a Contact and CampaignMember. I'm attempting to populate a custom object with the results of the SOQL query. However I get the following ...
0
votes
1answer
40 views

Consumer secret exchange (encryption best practices) [closed]

I have a general question for any security minded experts out there. Currently have a requirement to securely manage the exchange of a "secret" between a client application (generally exists in SFDC) ...
0
votes
1answer
46 views

how to store single values in salesforce

I am fairly new to salesforce so forgive me if this question has asked before - I have thusfar not been able to figure out what seems like a simple thing to do. I am working on an app and I would ...

1 2 3 4 5 17