-
ChatterFeed
-
1Best Answers
-
0Likes Received
-
0Likes Given
-
12Questions
-
10Replies
Sync a Custom Object to Outlook 2003
Hi,
I am creating a custom Object "Address book". Wanted to know if its possible to sync the records to outlook 2003?
I am also looking for an option where if a user created a new record in that object, it should automatically sync to the outlook.
earegly waiting for any information regarding the same
-
- GV1
- June 24, 2013
- Like
- 0
- Continue reading or reply
Unable to identify the error
In my Workflow Rule:
Step 2: Configure Workflow Rule
Rule Criteria: Run this rule if the following Formula evaluates to true:
ISPICKVAL(Referral__r.Referral_Status_n__c, “Create Opportunity”)
Error: Syntax error
Kindly help me to fix this
-
- GV1
- June 21, 2013
- Like
- 0
- Continue reading or reply
'oncomplete' not working for my 'actionfunction', please help
Below is my code: the oncomplete function of my actionfunction is not throwing allert.
Can someone help?
<div>
<apex:inputCheckbox id="abc1" value="{!ss.IsCompleted}" onclick="javascript:updateLobStg('{!ss.LobStageId}', this,'{!ss.Description}');"/>
</div>
<script>
function updateLobStg(lobStgId,checkBox,description){
var isChecked = $(checkBox).is(':checked');
/*------ some code----*/
af_updateLobStage(lobStgId,isChecked);
</script>
<form>
<apex:actionfunction name="af_updateLobStage" status="counterStatus" action="{!updateLobStage}" oncomplete="window.alert('clicked')">
<apex:param name="lobStgId" value="" assignto="{!selectedLobStageId}"/>
<apex:param name="isChecked" value="" assignto="{!isLobStageCompleted}"/>
</apex:actionfunction>
</form>
There is no error on the controller side and its executing fine.
-
- GV1
- June 13, 2013
- Like
- 0
- Continue reading or reply
open a new webpage when click "apex:outputLink"
Can you give me sample code for opening a new webpage when I click on a image.
This is the image display:-
<apex:image url="{!URLFOR($Resource.Playbook_Resource, 'assets/css/img/bestPractice.png')}" onclick="javascript:NewPage('{!object.pageurl}'/>
I am storing the URL of the new image in the field object.pageurl
-
- GV1
- June 12, 2013
- Like
- 0
- Continue reading or reply
Tricky Problem
I have to populate the "Change" field for the last completed process as well as the first uncompleted process.
This should happen as soon as the completed field is set to Yes progressively.
How can I do it.
Note: In my VF page only the "Enabled" records can be changed/toggled between ''yes/'no'.
Is it possible to do it without coding?
Example Situation
Process Name | Sort_order__c | Completed | Change |
Plan | 1 | Yes | Disable |
Design | 2 | Yes | Enable |
Execute | 3 | No | Enable |
Test | 4 | No | Disable |
Validate | 5 | No | Disable |
Example Situation
Process Name | Sort_order__c | Completed | Change |
Plan | 1 | Yes | Disable |
Design | 2 | Yes | Disable |
Execute | 3 | Yes | Enable |
Test | 4 | No | Enable |
Validate | 5 | No | Disable |
Example Situation
Process Name | Sort_order__c | Completed | Change |
Plan | 1 | Yes | Disable |
Design | 2 | Yes | Disable |
Execute | 3 | Yes | Disable |
Test | 4 | Yes | Enable |
Validate | 5 | No | Enable |
Thanks in advance
-
- GV1
- June 10, 2013
- Like
- 0
- Continue reading or reply
How to call / initiate a approval process from click of a button on a standard object
Need overview on the below requirement.
Need to Create a button on the Account page where a user can click to get themselves added to the account Team.
Button Name: "Add to Account Team". Once the button is clicked, a workflow approval process should start. An email should be sent to Account owner. Once the account owner approves, the individual that wanted to be added to the team is added. If declines, an email goes out saying he is declined.
-
- GV1
- June 09, 2013
- Like
- 0
- Continue reading or reply
How to get all the IDs (dynamic ids) in the JQuery
I have a few divs inside APEX Repeat
on click of one div I have to expand that div and colapse all the others.
How to get all the divs in the JQuery
-
- GV1
- June 07, 2013
- Like
- 0
- Continue reading or reply
formula
Please help !
Formula field = Number of days elapsed between, when the record is in the New status until it is moved into the Open, In prrogress, or Closed statuses
Where Status is a picklist field on the same object with the values
- New
- Open
- IN Progress
- Closed
Thanks in advance
-
- GV1
- June 06, 2013
- Like
- 0
- Continue reading or reply
CheckBox to Populate a Field
Hi All
I have a VisualForce page embeded as a related list in Opportunity, which takes the Opportunity id and displays certain details.
There is a Checkbox in the VF page. when this Checkbox is selected I need to update another object at backend and refresh the entire Opportunity detail page.
The VF page is already there, i just have to incorporate this change. Can someone give me some sample code looking at which I can understand how do I use Java script, and how do I update the object with the value of Opportunity ID and the field (on VF page) pervious to the Checkbox.
I am a Newbie, any help will be greatly appriciated.
Regards
-
- GV1
- June 03, 2013
- Like
- 0
- Continue reading or reply
Need sample code
Hi All
I have a VisualForce page embeded as a related list in Opportunity, which takes the Opportunity id and displays certain details.
There is a Checkbox in the VF page. when this Checkbox is selected I need to update another object at backend and refresh the entire Opportunity detail page.
The VF page is already there, i just have to incorporate this change. Can someone give me some sample code looking at which I can understand how do I use Java script, and how do I update the object with the value of Opportunity ID and the field (on VF page) pervious to the Checkbox.
I am a Newbie, any help will be greatly appriciated.
Regards
-
- GV1
- June 03, 2013
- Like
- 0
- Continue reading or reply
How to use Custom setting in a workflow rule to map values of two fields on an object
How to use workflow rule to map values of two fields in an object using a custom setting
I have two fields in opportunity object. I need to update field1, using a workflow, when field2 is assigned a value.
the maping of the values are stored in Custome setting "Map" as below.
CRY | CTI
------------------
US | New york
US | Denver
US | Washington
US | California
UK | London
UK | Cambrige
UK | Manchester
Example : If i select "London" in field2, UK should come in field1.
How to write a worlklow for this.
-
- GV1
- May 30, 2013
- Like
- 0
- Continue reading or reply
Need help: field updating three level down in a trigger
I have four objects
-
- GV1
- May 29, 2013
- Like
- 0
- Continue reading or reply
Unable to identify the error
In my Workflow Rule:
Step 2: Configure Workflow Rule
Rule Criteria: Run this rule if the following Formula evaluates to true:
ISPICKVAL(Referral__r.Referral_Status_n__c, “Create Opportunity”)
Error: Syntax error
Kindly help me to fix this
- GV1
- June 21, 2013
- Like
- 0
- Continue reading or reply
'oncomplete' not working for my 'actionfunction', please help
Below is my code: the oncomplete function of my actionfunction is not throwing allert.
Can someone help?
<div>
<apex:inputCheckbox id="abc1" value="{!ss.IsCompleted}" onclick="javascript:updateLobStg('{!ss.LobStageId}', this,'{!ss.Description}');"/>
</div>
<script>
function updateLobStg(lobStgId,checkBox,description){
var isChecked = $(checkBox).is(':checked');
/*------ some code----*/
af_updateLobStage(lobStgId,isChecked);
</script>
<form>
<apex:actionfunction name="af_updateLobStage" status="counterStatus" action="{!updateLobStage}" oncomplete="window.alert('clicked')">
<apex:param name="lobStgId" value="" assignto="{!selectedLobStageId}"/>
<apex:param name="isChecked" value="" assignto="{!isLobStageCompleted}"/>
</apex:actionfunction>
</form>
There is no error on the controller side and its executing fine.
- GV1
- June 13, 2013
- Like
- 0
- Continue reading or reply
Tricky Problem
I have to populate the "Change" field for the last completed process as well as the first uncompleted process.
This should happen as soon as the completed field is set to Yes progressively.
How can I do it.
Note: In my VF page only the "Enabled" records can be changed/toggled between ''yes/'no'.
Is it possible to do it without coding?
Example Situation
Process Name | Sort_order__c | Completed | Change |
Plan | 1 | Yes | Disable |
Design | 2 | Yes | Enable |
Execute | 3 | No | Enable |
Test | 4 | No | Disable |
Validate | 5 | No | Disable |
Example Situation
Process Name | Sort_order__c | Completed | Change |
Plan | 1 | Yes | Disable |
Design | 2 | Yes | Disable |
Execute | 3 | Yes | Enable |
Test | 4 | No | Enable |
Validate | 5 | No | Disable |
Example Situation
Process Name | Sort_order__c | Completed | Change |
Plan | 1 | Yes | Disable |
Design | 2 | Yes | Disable |
Execute | 3 | Yes | Disable |
Test | 4 | Yes | Enable |
Validate | 5 | No | Enable |
Thanks in advance
- GV1
- June 10, 2013
- Like
- 0
- Continue reading or reply
formula
Please help !
Formula field = Number of days elapsed between, when the record is in the New status until it is moved into the Open, In prrogress, or Closed statuses
Where Status is a picklist field on the same object with the values
- New
- Open
- IN Progress
- Closed
Thanks in advance
- GV1
- June 06, 2013
- Like
- 0
- Continue reading or reply
Need sample code
Hi All
I have a VisualForce page embeded as a related list in Opportunity, which takes the Opportunity id and displays certain details.
There is a Checkbox in the VF page. when this Checkbox is selected I need to update another object at backend and refresh the entire Opportunity detail page.
The VF page is already there, i just have to incorporate this change. Can someone give me some sample code looking at which I can understand how do I use Java script, and how do I update the object with the value of Opportunity ID and the field (on VF page) pervious to the Checkbox.
I am a Newbie, any help will be greatly appriciated.
Regards
- GV1
- June 03, 2013
- Like
- 0
- Continue reading or reply
Need help: field updating three level down in a trigger
I have four objects
- GV1
- May 29, 2013
- Like
- 0
- Continue reading or reply
Override User Assigned Page Layout for Lead in VisualForce page Detail block
I am using an <apex:detail... > tag to display a Lead within my custom VisualForce page. When the page loads it uses the Lead Page Layout assigned to the running user profile.
Is there a way for me to override the page layout that is loaded so i can display a different page layout without needing to change the page layout assigned to the profile?
thanks in advance!
- Opster
- January 07, 2013
- Like
- 0
- Continue reading or reply