apex

php: problems with embedded apex in a string ?

how can I write more embedded " and ' in php ? For example, I dunno how to write this html complete element with all apex: As you can see, I use '' for the php string. Then inside, I use "", but then I need another level of apix and I dunno how to write that one in my php document. (php thinks that the string is complete in the middle b...

Salesforce: Fire a SOAP Outbound Message using Apex

I have an existing Workflow Rule that fires of a (SOAP) Outbound Message when a certain type of object is created or updated. That works fine. I want to extend it so that a similar Outbound Message is also sent when the objects are deleted. According to this discussion, Workflow Rules cannot be made to fire based on object deletions, s...

When using Javascript, is there an Apex built in to get the value of a radio group?

Friends, My apex page has several different radio groups, each one can have the value of Yes or No. When the user presses a button I need to capture the values of these radio groups in the javascript processing for the page and then "do stuff" dependent on their values. Is there an Apex Javascript API that I could utilise to obta...

Visual force help,add ,edit and delete

hi folks, i have an app in salesforce..but i need a standalone webpage ..so i imported the objects created ..please coulde you give the codes for this three buttons... add edit delete ...

import data from the objects created in salesforce

Hi All, I have created an app in salesforce platform, i have some primitive records in that, i need to import them in visual force. For example,if we create a record in Account in Salesforce,,, like charles,Jennifer,Tom and all i need to import them in visualforce and do things which i can do in salesforce..please help me out with t...

Does Oracle Apex 4 enable the following AJAX features? (ie without the dev writing the Javascript)

Check client side that any 2 out of three fields have been completed before allowing submision of a form Show/hide data capture fields based on the value of a check box (all client side)? ...

How to prevent the symbol "&" from being replaced by "&

Hi, Hoping someone could pls let me know how to prevent the symbol "&" from being replaced by "&" within my URL, specifically within javascript? Just to expand on requirement, I am getting my url from an oracle database table, which I then use within Oracle Application Express, to set the src attribute of an iframe to this url. FY...

How does Alpha Five Version 10 Rate for Web App Development

I came across this RDMS via the advert on stackoverflow. Seems to be in the vein of MS Access / Filemaker / Apex database development tools but focused on web based applications. It quotes rave reviews from EWeek and a favourable mention from Dr Dobbs regarding its ability to create AJAX web applications without coding. The Eweek rev...

develope a website using visulaforce

hi folks , I'm trying to develop a website using visual force with apex. but i'm unable., please guide me .. i'm unable to find the docs regarded with the visual force.. help me with the documents and websites regarding them !! please !! ...

How to Access Oracle Database Table Column Data within Javascript in Oracle ApEx

Hi, I have a column in a database table that contains several urls and I was wondering what is the best way to get these urls from the database table into a javascript function. Example code of how to approach this would be much appreciated. Thanks. ...

setTimeout Not Working Oracle Apex

Hi, I am trying to run this code from this thread in StackOverflow in Oracle ApeX and it looks as if the setTimeout call is not working as suppose to: [see thread][1] <html lang="en"> <head> <title>Dashboard Example</title> <style type="text/css"> body, html { margin: 0; padding: 0; width: 100%; height: 100%; overflow: hidden; } ifram...

Javascript code losing Focus

Hi, I have the following code that I am playing with: <script type="text/javascript"> var Dash = { nextIndex: 0, dashboards: [ {url: 'http://www.google.com', time: 5}, {url: 'http://www.yahoo.com', time: 10} ], display: function() { var dashboard = Dash.dashboards[Dash.nextIndex]; p...

Is there a replication delay in Salesforce.com via the APEX API?

I have been using SOAP to deal with Salesforce.com and have been using the getUpdated() call, using the timestamp I retrieve from the getServertimestamp() call. I have watched my process check, (it polls every minute) and a few seconds after I save the change in the Sandbox environment, I see it poll, get no <ids> in the getUpdated cal...

Salesforce.com Id attribute seems to have a 15 and 18 character value, whats the difference?

When using the SOAP API to work with salesforce.com (SFDC) it seems that the primary key in the underlying database is Id. Well there seems to be two representations of this value as either a 15 character version or an 18 character version. I have been using the 18 since it is clearly more specific, but what is contained in the last th...

How do I reference adjacent cells in an Apex tabular form?

Friends, I'm converting an Oracle Form to Apex and have run into problem(s?) which I hope you can help with. Put simply the problem is how do I reference adjacent cells in an Apex tabular form? Is it possible? The reason for asking is that I need to create a tabular form with 3 dependent select lists, lets call them: Divisions ...

VPD and Context With Application Express

I'm going to build application using Application Express and Oracle Database Enterprise, VPD Implemented on the schema using Context, for developer issue I set on login trigger to set user; but I can't view data inside application but I can view it using SQL statement So is their issue in Apex when using VPD , Context , or On log on t...

How to identify the current row in an Apex Tabular Form?

Friends, I have written the following JavaScript to ascertain which row of an tabular form the user is currently on. i.e. they have clicked a select list on row 4. I need the row number to then get the correct value of a field on this same row which I can then perform some further processing on. What this JavaScript does is get the i...

Disable button programmatically in oracle apex using javascript/jquery

Hi Everyone: I'm trying to disable a button inside of a form region in Oracle Application Express (Apex v3) in an ajax-ified manner. I'm using jQuery to accomplish the ajax part. $('#P16_MYBUTTON').hide(); Doing a view source on the rendered page I noticed that the button doesn't have an ID even though in Apex I've given it a name...

VisualForce: Pass a parameter to a custom component inside a repeater

I can't figure out why this isn't working: <apex:repeat value="{!MyContacts}" var="c" > <c:ContactRowComponent contactLastName="{!c.LastName}"/> </apex:repeat> (where on the main controller MyContacts returns an array of Contact objects, and on the component contactLastName is defined as a String attribute) This gives me error:...

Using Apex Data Loader to load records into object with master details relationship

Hi, I need to load data into two objects. I am able to load data into one object using the data loader. The second object has a master-details relationship with the first object so I need to have the unique record id of the records of first object in the CSV file. How can I add those record id's to my CSV file? Thank you. ...