-
ChatterFeed
-
0Best Answers
-
0Likes Received
-
0Likes Given
-
6Questions
-
8Replies
Can we get back the sandbox config once it is refreshed?
Hello
We have refreshed the sandbox configuration and data with the production which has wiped off some of the apex classes and all. Is there any way that Saleforce could get retrieve the version of Sandbox before it was refreshed?
-
- Indeevar
- May 27, 2009
- Like
- 0
- Continue reading or reply
How to make the custom list view as default for the user?
-
- Indeevar
- April 06, 2009
- Like
- 0
- Continue reading or reply
Security concerns for implementing Single Sign On
http://wiki.apexdevnet.com/index.php/How_to_Implement_Single_Sign-On_with_Salesforce.com
As per the standard implementation of SSO for SFDC, we will have to write a authentication web service which
the SFDC will call if the login user profile is enabled for SSO. But in this implementation the SFDC log in page
will come up always.
--> If we go with this implementation will the SFDC get access to Network credentials by any chance? This is the key requirements
for us that SFDC should not have access to NT ID and Password by any chance.
--> Where will the mapping between SFDC Login and NT ID maintained?
--> Also is there a way to implement SSO with out having the user go to SFDC Login page?
Any help on this is appreciated.
-
- Indeevar
- November 17, 2008
- Like
- 0
- Continue reading or reply
Handling Messaging.SingleEmailMessage apex governor limit of 10
HI
There is a requirement to send emails to contact owners for birthdays of their
respective contacts. So we are calling Messaging.SingleEmailMessage method within an Apex class
in a loop. But in the Apex class there is a limitation that this method cannot be called more
than 10 times. Contact Owners are more than 50 though. The loop runs this many times .
How to handle this governor limit issue?-
- Indeevar
- November 15, 2008
- Like
- 0
- Continue reading or reply
Handling Messaging.SingleEmailMessage limit of 10
HI
There is a requirement to send emails to contact owners for birthdays of their
respective contacts. So we are calling Messaging.SingleEmailMessage method within an Apex class
in a loop. But in the Apex class there is a limitation that this method cannot be called more
than 10 times. Contact Owners are more than 50 though. The loop runs this many times .
How to handle this governor limit issue?-
- Indeevar
- November 15, 2008
- Like
- 0
- Continue reading or reply
Apex webservice as per predefined XSD.
Can we write an apex webservice as per the pre defined XSD given by webservice consumer?
The XSD will have multiple complex Types and the input parameters are at different levels (nodes)
-
- Indeevar
- November 05, 2008
- Like
- 0
- Continue reading or reply
custom datepicker component
here is my code for a Custom Component which i'm creating for inserting a DatePicker Control in VF page:
<apex:component > <apex:attribute name="pickDateLabel" description="This is the value for the label to display before pickdate component." type="String" required="true"/> <apex:attribute name="pickDateField" description="This is ID value of the Field to be used for component." type="String" required="true"/> <apex:attribute name="defaultValue" description="This is value of the Field." type="String" required="false"/> <SCRIPT src="{!URLFOR($Resource.jQuery_UI_DatePicker,'/ui.datepicker/jquery-1.2.6.min.js')}" type="text/javascript" /> <apex:stylesheet value="{!URLFOR($Resource.jQuery_UI_DatePicker,'/ui.datepicker/smoothness/ui.datepicker.css')}" /> <SCRIPT src="{!URLFOR($Resource.jQuery_UI_DatePicker,'/ui.datepicker/ui.datepicker.js')}" type="text/javascript" /> <span style="font-weight:bold;text-align:right;">{!pickDateLabel}: </span> <input name="{!pickDateField}" id="{!pickDateField}" value="{!defaultValue}" style="font-size:12px;width:80px;" /> <apex:inputText id="datePicker" value="{!defaultValue}" style="font-size:12px;width:80px;"></apex:inputText> <script type="text/javascript"> $(document).ready(function(){ $("#{!pickDateField}").datepicker({ showOn: "both", buttonImage: "{!URLFOR($Resource.jQuery_UI_DatePicker,'/calendar.dp.png')}", buttonImageOnly: true, buttonText: "Pick date", dateFormat: 'mm/dd/yy' }); $("#{!$Component.datePicker}").datepicker({ showOn: "both", buttonImage: "{!URLFOR($Resource.jQuery_UI_DatePicker,'/calendar.dp.png')}", buttonImageOnly: true, buttonText: "Pick date", dateFormat: 'mm/dd/yy' }); }); </script> </apex:component>
<c:jQueryPickDate pickDateLabel="From" pickDateField="frmDate" defaultValue="{!frmDate}" />
Now, there are 2 textboxes shown on VF page where i use the Component, 1st One is Simple HTMl control, and is very nicely parsed by jQuery and a Date pick Calendar is shown on the Image lying adjacent to first textbox.
This is the HTML shown in Firefox on VF page load:
<span id="thePage:theForm:pageBlockFilter:j_id8"> <script type="text/javascript" src="/resource/1228293028000/jQuery_UI_DatePicker/ui.datepicker/jquery-1.2.6.min.js"/> <script type="text/javascript" src="/resource/1228293028000/jQuery_UI_DatePicker/ui.datepicker/ui.datepicker.js"/> <span style="font-weight: bold; text-align: right;">From: </span> <input value="" style="font-size: 12px; width: 80px;" name="frmDate" id="frmDate" class="hasDatepicker"/><img align="absbottom" class="ui-datepicker-trigger" src="/resource/1228293028000/jQuery_UI_DatePicker/calendar.dp.png" alt="Pick date" title="Pick date"/> <input type="text" style="font-size: 12px; width: 80px;" name="thePage:theForm:pageBlockFilter:j_id8:j_id9:datePicker" id="thePage:theForm:pageBlockFilter:j_id8:j_id9:datePicker"/> <script type="text/javascript"> $(document).ready(function(){ $("#frmDate").datepicker({ showOn: "both", buttonImage: "/resource/1228293028000/jQuery_UI_DatePicker/calendar.dp.png", buttonImageOnly: true, buttonText: "Pick date", dateFormat: 'mm/dd/yy' }); $("#thePage:theForm:pageBlockFilter:j_id8:j_id9:datePicker").datepicker({ showOn: "both", buttonImage: "/resource/1228293028000/jQuery_UI_DatePicker/calendar.dp.png", buttonImageOnly: true, buttonText: "Pick date", dateFormat: 'mm/dd/yy' }); }); </script> </span>
please help.
- VarunC
- December 03, 2008
- Like
- 0
- Continue reading or reply
Apex webservice as per predefined XSD.
Can we write an apex webservice as per the pre defined XSD given by webservice consumer?
The XSD will have multiple complex Types and the input parameters are at different levels (nodes)
- Indeevar
- November 05, 2008
- Like
- 0
- Continue reading or reply
DatePicker does not show for date fields...
I am having issue with DatePicker not popping up automatically. In fact, it does not pop up at all. My input field is definitely a date field. Firebug reports problem like this :-
this.div is null https://na3.salesforce.com/dJS/en/1219782666000/library.js Line 22568 this.div is null iframeShim(null)library.js (line 22568) DatePicker()library.js (line 7537) pickDate()(true, "j_id0:j_id1:j_id134:j_id135:j_id215:j_id216:j_id220:0:j_id224", false, undefined)library.js (line 7795) onfocus(focus )IPPage—i...FLg%3D%3D (line 2) [Break on this error] if (this.div.currentStyle) {
Could anyone help me?
Thanks
- thecoldfusion
- September 02, 2008
- Like
- 0
- Continue reading or reply