• LeaseWorksDev
  • NEWBIE
  • 0 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 2
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 4
    Replies
Code that has stopped working:

---
soslQuery = 'FIND :searchString IN NAME FIELDS RETURNING '
+ typeObject +'(Id, '+nameField+ ' where ' +prefix+filterType+ ' = \'' +filterValue+ '\' ORDER BY '+nameField+') LIMIT 20';
List<List<SObject>> results = Search.query(soslQuery);

---
If we replace the query like the below, it is returning results.

soslQuery = 'FIND \'*' + searchString + '*\' IN NAME FIELDS RETURNING '
+ typeObject +'(Id, '+nameField+ ' where ' +prefix+filterType+ ' = \'' +filterValue+ '\' ORDER BY '+nameField+') LIMIT 20';

SOSL is not honoring the values in the bind variable from today.
Job Background
  • We are a fast growing Salesforce.com Partner startup based in New York and looking for a senior developer to join our team.
  • The product is a force.com based application that helps aviation leasing companies manage their asset management and marketing operations
Requirements
  • Strong programming skills in Apex, Java or C/C++
  • Experience with Force.com platform
  • Experience in designing, developing and testing web based applications
  • Knowledge of SQL 
  • Solid knowledge of development methodologies and project life cycles
  • Prior experience working with Salesforce applications is a strong plus
  • Strong interest in aviation/airline industry a plus as this is an application targeted at this industry
Job Location
  • Bangalore, India (Currently work from home). Will consider other cities in India too.
Qualification and Experiece
  • Computer Science Engineering Degree or equivalent
  • Min 5 years of relevant work experience with reputed organaizations with at least one year on Force.com platform
 
 
JOB BACKGROUND: 
- We are a fast growing cloud based software startup based in New York City. 
- The product is a force.com based application that helps aviation leasing companies manage their assets and marketing operations.

JOB RESPONSIBILITIES:
- Implement new features
- Maintain current features

EXPECTED SKILLS:
- Extensive Apex and Visualforce programming experience
- Well-versed with various best practices, design patterns, data structures and governor limits inherent to the Force.com platform/Apex programming language.
- Strong logical reasoning abilities
- Experience and interest in the aviation industry a strong plus. 

HOW TO APPLY: jobs@lease-works.com
N.B. Consulting firms, please excuse! This is only for individuals who are willing to join us full time after a probation of maximum three months if you impress us with your development skills!.
 
JOB BACKGROUND: 
- We are a fast growing cloud based software startup based in New York City. 
- The product is a force.com based application that helps aviation leasing companies manage their assets and marketing operations.

JOB RESPONSIBILITIES:
- Implement new features
- Maintain current features

EXPECTED SKILLS:
- Extensive Apex and Visualforce programming experience
- Well-versed with various best practices, design patterns, data structures and governor limits inherent to the Force.com platform/Apex programming language.
- Strong logical reasoning abilities
- Experience and interest in the aviation industry a strong plus. 

HOW TO APPLY: jobs@lease-works.com
N.B. Consulting firms, please excuse! This is only for individuals who are willing to join us full time after a probation of maximum three months if you impress us with your development skills!.
 
Code that has stopped working:

---
soslQuery = 'FIND :searchString IN NAME FIELDS RETURNING '
+ typeObject +'(Id, '+nameField+ ' where ' +prefix+filterType+ ' = \'' +filterValue+ '\' ORDER BY '+nameField+') LIMIT 20';
List<List<SObject>> results = Search.query(soslQuery);

---
If we replace the query like the below, it is returning results.

soslQuery = 'FIND \'*' + searchString + '*\' IN NAME FIELDS RETURNING '
+ typeObject +'(Id, '+nameField+ ' where ' +prefix+filterType+ ' = \'' +filterValue+ '\' ORDER BY '+nameField+') LIMIT 20';

SOSL is not honoring the values in the bind variable from today.
Hi everybody,

How to delete Org account? Becaue i have created wrong ediction.

Hello,

 

i have the following scenario:

 

In the Child Object I have a custom field that is a Lokup object and i'm trying

to setup a Lookup filter that depends on one custom field on the Parent

Object.

 

The problem is that i cannot access the field of the Parent Object  in the Lookup

Field. The only workarount is to copy the parent object custom field in the

child object.

 

Is there any other solution?

 

Many thanks 

  • February 08, 2012
  • Like
  • 0
I have an inline VF page that contains a component. I pass the record object to the component so I can display fields from the record in the component. I am trying to add new fields to my component that reference data on the related object but when I do this I get the error: SObject row was retrieved via SOQL without querying the requested field: Configuration__c.Quantity__c. There is no Apex code here.

Component - configDetails:
<apex:component >
<apex:attribute name="config" description="This is the value for the Configuration" type="Configuration__c" required="true"/>

{!config.Quantity__c}
</apex:component>


Inline VF page:
<apex:page showheader="false" standardController="Configuration__c">
<c:configDetails config="{!Configuration__c}"/>
</apex:page>

 

This has been working fine for well over a year and the component currently displays data from the parent with no issues but when I try to add a new field I get this error.

Any idea what I am missing? I am only able to replicate this issue in production so I'm thinking it is some sort of security permission but I can't figure it out.

 

Thanks,
Jason

Message Edited by TehNrd on 12-16-2009 10:14 AM
  • December 16, 2009
  • Like
  • 0