• aslam
  • NEWBIE
  • 30 Points
  • Member since 2008

  • Chatter
    Feed
  • 1
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 17
    Questions
  • 13
    Replies

Hi,

 

I've setup a page that allows a user to download a link that is an attachment to an account. The problem is that file is accesable to the guest user but when the portal user logs in and tries to download the file they receive an authorization required message.

 

The portal user has a High Volume Portal license and I've made sure that the profile has read access to the account object as well as the document object. How do I enable file access for High Volume Portal users. It seems ridiculous that the guest users can have higher levels of access then authenticated users.

 

Thanks!

Scott

  • September 01, 2010
  • Like
  • 0

Hi,
iBirds' Services is a Software solution company with great experience in Cloud based application including Salesforce.com platform. We are in the IT field for 10+ years, and 6+ Years Experience in Salesforce.com development and services.

My Expertise:
* Creation & implementation of Custom Objects, Custom Apps, Page Layouts, Related Lists,Tabs, Validation Rules, Workflow Rules, Sharing Rules, Outbound/Inbound Messages
* Lead, Account, Opportunity Managements
* Lead Conversion process, email-to-case, web-to-lead implementations
* Generate different kind of reports & dashboards
* Development using Visualforce pages, Apex classes, Triggers, Webservices, Javascript, Ajax

* Code optimization w.r.t. governor limits of salesforce
* Data migration and manipulation using Salesforce tools
* Unit tests code coverage and deployments
* Integration using salesforce APIs
* Portals setup & appExchange package deployment
* Force.com sites development
* Create good UI using VF and Other(Like Javascript, CSS, etc).
* Integrate custom VF pages with Standard Object.
* API Integration with Twilio, MySQL, Oracle, PHP, Java and SAP.

More Info:
Websites:
http://www.aslambari.com
http://www.ibirdsservices.com

Portal:
http://www.aslambari.com/products.html
http://ibirdsservices.com/websites.php

Blog:
http://techsahre.blogspot.com

Some Live Sites and Projects built on Force.com:
http://appexchange.salesforce.com/listingDetail?listingId=a0N30000003JKG2EAO
http://appexchange.salesforce.com/listingDetail?listingId=a0N300000058fflEAA
http://www.telgo.ca/
http://www.eliites.com/
http://tfs.force.com/apex/Home
http://www.vendorgenie.com/
Customer Portal for Panasonic Indonesia (Going to live)

My profile is here:
http://www.linkedin.com/in/aslambari

My General profile:
http://www.ibirdsservices.com/salesforce.php

Thanks
Aslam Bari
Email: aslam.bari@gmail.com
Skype: aslam_bari
Mobile: +91-9251425422

  • April 06, 2012
  • Like
  • 0

Hi All,

I have a strange error problem. I have cretaed force.com site setup and profile setup.

i have a url for login lets say

http://xyz.dev.cs0.force.com/SiteLogin

I opened this url in two tabs of same browser. Now i logged in from first table passing username/pwd. Its successfully logged in and landing to home page.

Now, i go to second tab and try to pass username/pwd, it gives me below error:

 

Error: Error occurred while loading a Visualforce page.

Please email us if you need to get in touch.

 

This is causing only when i try to submit preopened old page, if i try to login from fresh executed login page, then everything fine. Is that something related to OLD view state or something. There is no logs in debug.

 

If anybody knows, please help.

 

Thanks

Aslam Bari

  • December 15, 2011
  • Like
  • 0

Hi All,

I have a Salesforce Offshore team available to work on SFDC related projects if anybody interested. Please check more details as below:

 

More Info:
Portal: http://www.aslambari.com
Products: http://www.aslambari.com/products.html
Blog: http://techsahre.blogspot.com

Thanks
Aslam Bari

  • October 05, 2011
  • Like
  • 0

Hi All,

I created one Native Polling System For Salesforce "SF Ballot".

http://www.aslambari.com/sf_ballot.html

 

Needs your feedback.

 

Thanks

Aslam Bari

 

  • April 17, 2011
  • Like
  • 0

Hi All,

I created one Native Polling System For Salesforce "SF Ballot".

http://www.aslambari.com/sf_ballot.html

 

Needs your feedback.

 

Thanks

Aslam Bari

 

  • April 17, 2011
  • Like
  • 0

Restrict Duplicate Records In Salesforce [Duplicate Detector]
http://techsahre.blogspot.com/2011/04/restrict-duplicate-records-in.html

 

Thanks

Aslam Bari

  • April 09, 2011
  • Like
  • 0

Hi All,

Here is a list of some library/components created by me regarding salesforce related stuffs. In case useful for anybody.

 

http://www.aslambari.com/products.html

 

Thanks

Aslam Bari

  • March 31, 2011
  • Like
  • 0

Hi All,

I recenlty created this Plugin for my previous development "ApexDoc". Checkout :)

 

 http://www.aslambari.com/apexdocplugin.html

 

Thanks

Aslam Bari

  • February 02, 2011
  • Like
  • 0

Hi All,

I created one Apex documentation tool just like javadoc. Please share your feedbacks on that.

 

http://www.aslambari.com/apexdoc.html

 

Blog:-

http://techsahre.blogspot.com/2011/01/apexdoc-salesforce-code-documentation.html

 

Thanks

Aslam Bari

  • January 27, 2011
  • Like
  • 1
  • October 13, 2010
  • Like
  • 0
  • October 13, 2010
  • Like
  • 0

Hi All,

I created one Apex documentation tool just like javadoc. Please share your feedbacks on that.

 

http://www.aslambari.com/apexdoc.html

 

Blog:-

http://techsahre.blogspot.com/2011/01/apexdoc-salesforce-code-documentation.html

 

Thanks

Aslam Bari

  • January 27, 2011
  • Like
  • 1

I am at my wits end trying to get access to a custom settings object via Apex in a trigger and in a class.

 

Here's a simple class to get all the IDs from a custom settings object called ETO_LRT__c that has two fields Record_Type_Name__c and Record_Type_Id__c. I definitely have at least one dataset defined for this object.

 

When I try to access it via a utility class method, it always returns 0 values.

 

Here's the class

 

public class ETO_LeadUtils {

   public static Set<Id> ETO_AllRTs() {

   Set<Id> RTList = new Set<Id>();

   Map<String, ETO_LRT__c> CSMap= ETO_LRT__c.getAll();

   system.debug('Number of ETO LRTs = '+CSMap.size());

 

   for(String s : CSMap.keySet()){

    RTList.add(CSMap.get(s).Record_Type_Id__c);

   }

      return RTList;  }

 

 @isTest    public static void ETO_testAll(){

   ETO_LeadUtils.ETO_AllRTs();    }

}

 

What am I doing wrong?

 

 

Hello,

 

I am starting my own company, a waste management company. THerefore I need a site in which customers can sent orders (email/fax) to waste disposer to empty their bins. The waste disposer will sent an invoice, which the customer can use to fill in the order (kg and price). Eventually a summary of all the waste streams (price, kg) and some graphs can be shown to the customer.

 

I think it is not very complex. What is the price range to built it and the time period?

 

My thought for the futur: the site will be contect directly to weighing configuration of the waste disposers, so the invoice will be generated automatically. The site will be a reall 'cloud'. This is possible?

 

Hoping to hear from you!

 

Michael

mjavra@hotmail.com

We are searching for a contractor to help finish a project that is about 50% done. We have created an number of custom pages that allows us to perform our business tasks, in what we call our CRM, which is not the same as the SalesForce CRM. We are searching for someone in our area of Golden, Colorado who can come into our office and finish this project. We believe it can be finished within a couple weeks. Please provide us with your contact information and a resume that includes copies of your past works. The time to fill this position is short and we are looking to hire immediately. A test will be performed during the interview.

 

We are not looking for Companies at this time.

*  Great opportunity for experienced Visualforce/Apex developer
*  Senior level position on small development team
*  Excellent salary + employee benefits
 
Well established, privately-owned technology and consulting services company is looking for a Sr. Developer with experience deploying solutions built on Salesforce.com to join its team.


This is a full-time position responsible for designing customized front-end web portals to provide access to customer
information hosted on Salesforce.com.  Each client will have its own unique web portal.

 

Must be US Citizen or Permanent Resident.



  • 3+ experience with Visualforce/Apex and Salesforce customization
  • 3+ years of software development experience including experience with C++ or Java
  • Front-end Web design and development experience (XHTML, HTML, CSS, ASP.Net)
  • Good eye for layout/design
  • Experience with SQL Server 2005/2008
  • Excellent communication skills

 

Salary:  $75,000 - $115,000 + employee benefits

 

email resume:  kathy.magel@yahoo.com

  • October 21, 2011
  • Like
  • 0

We are currently seeking a Salesforce.com Developer for a direct hire position with our client in Columbia, MD.

Excellent salary and benefits

 

Design and develop solutions for salesforce.com.
Create, document & execute test plans.
Write technical approach and design documentation

 

3 years + engineering/programming work experience
Web Development skills in CSS, Javascript, HTML & XML
Salesforce.com ceritified force.com developer preferred.

 

Please send resume to kristy.harris@ncwresources.com

We're looking for someone that knows apex and is an approval workflow expert. Items to be completed include:

 

- Customize the following force.com app: http://appexchange.salesforce.com/listingDetail?listingId=a0N300000016bzNEAQ

Customization needs to include updates to code to accomodate custom fields on the opportunity and rule objects, not the fields that are in the code.

- Visualforce pages to include opportunity product line items in notifications that are sent to approvers.

- Custom link/button to export line items and related opportunity/user information as a .csv.

 

It is partially completed, just needs to be finished, tested and then pushed to production.


This project needs to be completed as soon as possible. Please send resume and similar project examples with references to salesforce@adtran.com.

 

Thanks!

Jennifer

Seeking an experienced Force.com Developer to be the chief architect of an innovative new investment technology product that will change the way hedge funds, mutual funds, and other professional investment firms do business. Compensation will be a flat fee plus an equity stake in the firm, so I'm looking for someone interested in essentially co-founding the company with me. I already have all the major screens mocked up and a full E-R diagram and database schema designed, now I need someone to build the product while I focus on the product vision, sales, finances, and other executive functions of the firm. The ideal candidate will have a strong development background with the potential to manage other development employees and potentially outsource development vendors.

I've spent the last eight years working on the buy side, sell side, and vendor side of the investment industry and have extensive contacts and relationships who I can get this product in front of once it is built. I have the capital to self finance the early phases of the company and would like to complete a prototype and proof of concept testing by the end of the year, then leave my current full time job at a prominent hedge fund to dedicate myself full time to this venture at the start of 2012.

This will product will heavily leverage new technologies, like the streaming API and REST APIs. All other responsibilities and qualifications can be found below:

Specific Responsibilities:

• Development of custom Visualforce pages, including Apex classes and triggers
• Custom HTML, CSS and javascript for the application
• Using the streaming API for real-time updates
• Integrating with email using native Force.com
• Participate in all phases of software development/implementation including functional analysis, development of technical requirements, prototyping, coding, testing, deployment and support

Qualifications:

• BS Computer Science, Software Engineering, or equivalent work experience
• 2 Years of development on the force.com platform
• Strong knowledge of Visualforce and Apex
• Usage of Salesforce.com's API and integration capabilities
• Extensive experience with web development, proficient with HTML, CSS, and Javascript
• Knowledge of relational databases, and configuring the Salesforce ER hierarchy

If this sounds like something you're interested in email me at adamjdodge@gmail.com



Hi All,

I created one Apex documentation tool just like javadoc. Please share your feedbacks on that.

 

http://www.aslambari.com/apexdoc.html

 

Blog:-

http://techsahre.blogspot.com/2011/01/apexdoc-salesforce-code-documentation.html

 

Thanks

Aslam Bari

  • January 27, 2011
  • Like
  • 1

Hi,

 

I've setup a page that allows a user to download a link that is an attachment to an account. The problem is that file is accesable to the guest user but when the portal user logs in and tries to download the file they receive an authorization required message.

 

The portal user has a High Volume Portal license and I've made sure that the profile has read access to the account object as well as the document object. How do I enable file access for High Volume Portal users. It seems ridiculous that the guest users can have higher levels of access then authenticated users.

 

Thanks!

Scott

  • September 01, 2010
  • Like
  • 0

We are currently trying to develop an application on VF where we need to embed charts in PDF. Wanted to see if any one had tried it before or forsee any issues with it.
I had found the following article regarding charts and VisualForce

http://wiki.developerforce.com/index.php/Google_Visualizations

Girish

Principal

CM-Focus LLC

 

 

Is anyone doing this successfully?  We're at a point where I'd like to migrate from just using regular code comments to using full blown javadoc-accessible documentation, to make it easier and more appealing for our devs to reuse code.

 

Can anyone provide any examples of generating javadoc html from the .cls files stored by Eclipse?

Hi,

I implemented a sample Http callout from an apex class to my server. But it always gives me a "System.CalloutException: Read timed out". I could not find any relevant information while searching on salesforce.

1. How do I confirm that my server is reachable from salesforce? (i believe it is that is why it is throwing a Read timed out exception in place of unreachable destination host or host not found).

2. I am using secure http i.e. https protocol. Are there any specific settings required on salesforce for this?

3. It is a servlet that I am trying to contact. I suppose that would work and I do not necessarily need to expose a web service.

Following is the class I am using. I accessing it as a web service.

global class HttpCalloutSample
{
    webService static String getContent(String url)
    {
        Http h = new Http();
        HttpRequest req = new HttpRequest();
        req.setEndpoint(url);
        req.setMethod('GET');
        HttpResponse res = h.send(req);
        return res.getBody();
    }
}


- Pushkar
  • September 05, 2008
  • Like
  • 0