• miha198206
  • NEWBIE
  • 50 Points
  • Member since 2010

  • Chatter
    Feed
  • 2
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 25
    Questions
  • 27
    Replies

Hi,

 

Is it possible to make a SOSL query to retrieve more than 200 records? How can I make a paging to retrieve the records in small batched using SOSL?

 

Thank you.

Mikhail

Hello,

 

I have a few screens in my Visual Workflow and I would like to add images to some of the screens. I haven't found such capabilities. How can I achieve my goal?

 

Thanks,

Mikhail

Primary Intelligence (www.primary-intel.com) is seeking an experienced application developer with Salesforce, Force.com, Apex, VisualForce and Triggers experience to join our team and lead the development, integration and maintenance of our force.com applications supporting Sales, Sales Management and Sales Support business processes.

 

This position will become the lead developer of a new, cutting-edge solution we have introduced as part of our solution set. You can review the first version here: Version 1.0

 

Our clients have recognized immense value from the barebones v1.0 product available to them today and Primary Intelligence needs a developer to join our team and take over the development of this key product. We have a robust product roadmap for the next 18 months for this product and now need to find the right person to lead the development efforts for v2.0 and beyond.

 

Local and remote candidates accepted (anywhere in the U.S.or Canada).

 

Review the full details of the opportunity here: Job Description

 

Feel free to contact me with any questions.

 

Ken Allred

kallred@primary-intel.com

 

My organization (using enterprise edition) is looking for two custom visualforce pages.  I would appreciate a quote on the following items:

 

Visualforce page for Lead Conversion that shows additional required fields for the conversion process

 

Visualforce page to combine the Account & Opportunity records into one screen to improve workflow for our users

 

It is really up in the air right now on exactly what we need, but based off the above, any ball park figure would be appreciated.

We need this application to run on a mobile app device as well.

 

We have currently on Quickbooks which need to move to the cloud:

- All Clients (800 to 900 approx)
- Invoice balances/history/current
- What was sold (Approx. 25 products to choose from)
- When it was sold

- Product expiration dates (these are perishable food products)

- Company balance

 

The Overview of Operations:
Distributor (Me) --> Driver (Truck Inventory)---> Ending Client (800 to 900)

 

Between these 3 areas everyone should have access to REAL-TIME inventory, finances and related information. I want to be able to drill down on clients to see any current details. If there is an issue it will be "open" or "closed" for that client.

 

I am very serious about this project. Hope to hear from you soon.

 

Thanks

 AcuComp is a fast-growing national firm that sells our system to property-casualty insurance agencies to help them separate themselves from their competition. 

 

 We are looking to hire a Salesforce.com consultant to help replicate our current web-based application in the Salesforce.com Cloud environment.   

 

You will be working directly with the technical manager of the current system throughout the entire length of the project.


Requirements:

1.  Salesforce.com Architecture, Design, and Development experience

2.  Visual Force, Apex experience

3.  Data Migration experience

4.  Must be able to work remotely with limited supervision

5.  Must be task driven and respectful to committed deadlines.

 

We are looking for an individual with a wide variety of Salesforce.com skills.  The individual needs to be competent with each skill listed above, but does not need to be an expert.

 

Must be available to start as soon as possible and be able to devote a majority of their work-time to the project until it is complete.

 

Qualified and interested candidates should email us at nias@monarchbizdev.com to learn more and submit your resume for consideration.

We have several projects taking place over the next 8 weeks and likely more beyond that. We would like to develop long term relationships with freelancers for these projects and new ones as they come up. We are looking for the following:

 

  • 2-3 years of professional experience Salesforce development and configuration.
  • Must have good knowledge and extensive work experience in development & implementation of multiple SFDC projects.
  • A proven functional/technical professional with at least 2 full lifecycle Salesforce.com implementations.
  • Admin-301, Dev-401 Salesforce certifications required.  Dev-501 recommended.
  • Strong programming (Apex, .net, or Java) background with web development experience.
  •  Strong experience with Integrations to other systems - social media & mobile a PLUS.
  • Ability to translate business requirements into Technical Specifications. 
  • Outstanding written and verbal communication skills and attention to detail.
  • Plone, Drupal or Joomla would be a plus

We are located in Westchester County, NY and would prefer that some work take place on site, but telecommuting is an option.

We are a Salesforce partner looking for an entrepreneurial individual with EXCELLENT technical skills and at least 2 years of experience with Salesforce to help set up an offshore operation.

This will be a hands-on position with responsibility to start and grow a team of Salesforce developers. Preference will be given to full time candidates. Initially, you will yourself be providing billable services to customers so you HAVE to know Salesforce inside and out! Also you MUST have excellent written and verbal English skills.

You may be located anywhere in Asia or Eastern Europe (India, Romania, Philippines, Argentina or South America)

Compensation - Competitive Salary + Equity

Please contact me at sandeepb"at"acutedge"dot"com if you are interested.

We are ISV partners looking for a developer to build a social networking platform with the following specs:

1) Subscriptions for Force.com paid "superusers" would be automatically tied to billing/deductions via Paypal or some other payment source.

2) Limited access standard users can sign up for Chatter Free accounts via a publicly accessible website so there is no need to internally "create" an account for just anybody. 

 

Please include portfolio/links to examples of other Force.com development - preferably Chatter.

Hi,

 

I have a requirement to filter users on the basis of user's license type.

I am able to access profile license type field in apex explorer but while using the same field in system log or apex class, it throws an error "no such fields on prfile"

kindly help

I have a very simple VF page, trying to insert a new record, but the Apex:inputField didn't work for lookup field.

 

Following is the sample code:

 

<apex:page controller="contactController">
    <apex:form >
        <apex:pageBlock>
            <apex:pageBlockTable value="{!contacts}" var="con">
                <apex:column value="{!con.Id}" headerValue="FP #">
                    <apex:facet name="footer">
                        <apex:commandLink value="Add" action="{!add}"/>
                    </apex:facet>
                </apex:column>
                <apex:column value="{!con.AccountId}" headerValue="account">
                    <apex:facet name="footer">
                        <apex:inputField value="{!contact.AccountId}" required="true"/>
                    </apex:facet>
                </apex:column>
            </apex:pageBlockTable>
        </apex:pageBlock>
    </apex:form>
</apex:page>

 

public class contactController 
{
    public assigntravelrates()
    {
        Contact = new Contact();
        Contacts = [select Id, AccountId from Contact limit 2];
    }
    public List<contact> Contacts { get; set; }
    public Contact Contact { get; set; }
    public void add()
    {
        insert Contact;
    }
}

 

when I first time clicks the lookup icon and clicks the add link, it throws a error says "you must enter a value", then I choose the account again, it throws the "required field missing" error which is correct.

 

 

Did anyone have met the same issue?

I try to create the page from here: http://www.salesforce.com/us/developer/docs/pages/Content/pages_compref_page.htm

 

I've made a page:

 

 

<apex:page renderAs="pdf">
    <style> body { font-family: Arial Unicode MS; font-size:72px;} </style>
    <h1>Congratulations</h1>
    <p>This is your new PDF</p>
</apex:page>

 

 

But styles was not applied. How can I use css in PDF? Why does this code sample not work for me?

 

Thanks a lot.

 

Mikhail

Hi everyone!

 

I have three objects that are linked together (Account, Project__c, Space__c). Both the Project and the Space have a lookup to an Account and the Project looks up to a Space. What I want to do is when I populate the Account on the Project record it will update the related Space with that same Account.

 

Here's my code:

 

 

trigger PopulateCurrentTenant on Project__c (after insert, after update) {
    Set<id> tenantIds = new Set<id>();
    Set<id> spaceIds = new Set<id>();
    for (Project__c p : Trigger.new){
        tenantIds.add(p.Account__c);
        spaceIds.add(p.Space__c);   
    }
    // query for all the tenant records for the unique tenantIds in the records
    // create a map for a lookup / hash table for the user info
    List<Account> tenants = [Select Id, Name from Account Where Id in :tenantIds];
    Map<id, Account> tenantsMap = new Map<id, Account>();
    for(Account a : tenants){
    tenantsMap.put(a.Id,a);
  }  
 	
 	List<Space__c> spaces = [Select Id, Name, Account__c from Space__c Where Id in :spaceIds];
 	Map<id, Space__c> spacesMap = new Map<id, Space__c> ();
 	for(Space__c s : spaces){
 		spacesMap.put(s.Id,s);
 	}
    // iterate over the list of records being processed in the trigger and
    // set the Existing Tenant on the Space after being inserted or updated
    for (Project__c p : Trigger.new){
    	Space__c thisSpace = spacesMap.get(p.Space__c);
        Account thisTenant = tenantsMap.get (p.Account__c);
thisSpace.Account__c = thisTenant;
} }

 

 

The code deploys fine but there's only one issue: it doesn't do a thing; nothing happens when I edit a project. it just doesnt update the related space with the account.

 

Are the maps empty? Am I querying the data incorrectly?

 

Thank you in advance for your help!

 

 

I have the following text file I uploaded as a static resource:

 

 

.centertext {

text-allign:  center;

}

 

 

I am using the tabbed account and I have a controller extension that exposes some lists (because I want to split a custom object into 3 tabs based on record type.) I am trying to center 2 of the columns in the below section of the VF page (Base Members and Current Members) .. I added the reference at the top of the VF page to the static resource as follows:

 

 

<apex:page standardController="Account" extensions="EnrollmentAcctExt" showHeader="true" 
      tabStyle="account" standardStyleSheets="false">
      <apex:stylesheet value="{!URLFOR($Resource.AccountStyle, 'AccountStyle.css')}"/>

 and here is my pageblock that brings in the listing... however, the base members field is not centering:

 

 

 

<apex:tab label="Health Enrollment" name="HealthEnrollment" id="HE" styleclass="AcctListStyle">          
        <apex:pageBlock mode="edit" title="Health Enrollment Current">
           <apex:form >
            <apex:commandButton action="{!NewEnrollHealth}" value="New"/>
           </apex:form>
         <apex:pageblockSection id="key" title="">
          <apex:pageblockTable value="{!healthsummaryactive}" var="hs"> 
              <apex:column headervalue="Health Enrollment Name">
                  <apex:outputLink value="/{!hs.id}">{!hs.Name}</apex:outputLink>
              </apex:column>  
              <apex:column headervalue="Year">
                <apex:outputField value="{!hs.Year__c}"/>
              </apex:column> 
              <apex:column headervalue="Market">
                <apex:outputField value="{!hs.Market__c}"/>
              </apex:column> 
              <apex:column headervalue="Category">
                <apex:outputField value="{!hs.Category__c}"/>
              </apex:column> 
              <apex:column headervalue="Status">
                <apex:outputField value="{!hs.Status__c}"/>
              </apex:column> 
              <apex:column headervalue="Base Members">
                <apex:outputField value="{!hs.Base_Members__c}" styleClass="centertext"/>
              </apex:column> 
              <apex:column headervalue="Current Members">
                <apex:outputField value="{!hs.Current_Members__c}"/>
              </apex:column> 
          </apex:pageblocktable>
         </apex:pageblockSection>
        </apex:pageblock> 

 Do I have something in the wrong place or is my css file wrong?  Any help is greatly appreciated!!!! Thanks!!

 

Fred

 

We're using Visualforce pages more and more here, but we've been working around something for a while that I think is probably pretty simple.

 

Many times, we have multiple visualpage pages that use different controllers (or extensions) based on the record type, or how many records we want to pull. 

 

I see there are several different examples using javascript / params to have a user pass a variable value to a controller - we've been successful there.  But I would simply like to set the variable value when the page loads, so for instance if they go to a page that is supposed to display only 30 records, verses a page that is supposed to display 180 records.  Is there a simple way to pass this value to a controller variable using the <apex:page action=""> perhaps?

I have a trigger. In this trigger I have a line:

 

contact.addError(
  'Candidate \'' + contactQuery + 
  '\' is already exists. This candidate can\'t be inserted. Existed candidate was updated');

 

 

After this line of code I put other line of code to update other record. Something like:

 

otherContact.Name = 'Test Name';
update otherContact;

 

 

Since I have an 'addError' statement in this trigger my 'update otherContact' statement is terminated. How can I update record in this case?

addError

I've made a custom object (Asset) which has a lookup field to Case object. I added Assets related list to Case page layout and select in Assets related list 5 columns. Then I saved page layout. But when I go to Case detail page I see Name field in Assets related list only. What can be the reason of this? How to solve it?

 

Mikhail

Hi All,

 

We're a small start-up and don't have a lot of technical staff - and there's one big SF.com project we want to do - but do not have the technical stuff to pull off in a quality way.

 

I need a developer who can basically set up a custom program for us.

 

I can provide more detailed description, but in effect what we want is as follows:
- Customer completes a form which creates a new record in SF (this we can already do!!)
- That action triggers a succession of automated emails, daily - for 30 days or UNTIL the user buys the product (is converted from a lead in SF.com to a Contact.)

- The emails must be personalized (Name fields, etc.) to that individual, and we should be able to test this thing in advance to make sure it works.

 

Anyone out there up for assisting with this project? We have budget and a schedule which I am happy to discuss with qualified developers.

 

I will need some sort of references. Hope you understand!!

 

Thanks,

 

--CHJones

We are looking for a consultant to help us build a custom app in sforce. The ideal candidate will have experience with:
sfroce API
the new Ajax toolkit
s-control development
Javascript
HTML