General DevelopmentGeneral Developmentdoes trigger worked with data loader- September 17, 2008 Hi, I want one trigger which create record in Rate Tracker object based upon activate date field change in account. Here is my code. Code:trigger createRateIncreaseChange on Account (before update) List<Rate_Increase_Tracker__c> rateIncrease = new List<Rate_Increase_Tracker__c>(); if ( (Trigger.old0.Ad_Package_Order_Activated_Date__c != Trigger.new0.Ad_Package_Order_Activated_Date__c)) ...http://community.salesforce.com/sforce/board/message?board.id=general_development&mess... of days left in Month- September 17, 2008 I am trying to create a formula field to show the of days left in the month. The formula is referencing a Date field to go off of. Does anyone know why I am getting Error! If anyone knows how to fix this, do you also know a way to show the of Business Days left in the month DAY(DATE(YEAR( Date__c ),MONTH( Date__c )+1,0))-DAY( Date__c )http://community.salesforce.com/sforce/board/message?board.id=general_development&mess... trying to add a custom link to a custom tab- September 17, 2008 I created an object called Car, so there's a custom tab called Cars that displays a list of these objects. I'm trying to add a custom link to this generated page called Cars (and have the custom link display next to each Car's name), but I can't see any way to edit the layout or content of that page other than to add fields belonging to the Car object. I have a custom link defined on the Car object, but I can't see any way to display that on the Cars page. This old tutorial's info doesn't...http://community.salesforce.com/sforce/board/message?board.id=general_development&mess... Need Urgent Help- September 17, 2008 Hello, I'm recently took over a client who already has SF account. I need to know how can I use the currently online web form to send leads to SF. Also there are territories setup for 2 sales people. How can I make sure that a specific geographical subscriber goes into a specific user's territory lead list after they fill out the online formThanks.Message Edited by kyao888 on 09-17-2008 11:04 AMhttp://community.salesforce.com/sforce/board/message?board.id=general_development&mess... Variable in the select statement in S-Control- September 17, 2008 I am querying Task table but I have a variable in the where clause. I dont get anything back, I am wondering if my usage is proper or notCode: recId is a variable holding the id SearchString = "SELECT ActivityDate from Task where id = ' "+ recId +" ' "; var queryResult = sforce.connection.query(SearchString);Is the above correct way to reference a variable within a select statement in s-control For some reason it doesn't work for mehttp://community.salesforce.com/sforce/board/message?board.id=general_development&mess... |