• Viwal
  • NEWBIE
  • 5 Points
  • Member since 2011
  • Sr. Developer
  • Accenture

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 5
    Questions
  • 10
    Replies

Hi Guys,
I have developed a HTML email template in which i have inserted a Signature as JPEG file.
Presently users can copy this from the mail.
For security reasons this signature should not be copied from the mail.

 

Can someone please help me on this.

  • February 01, 2013
  • Like
  • 0

Hi,

 

I have a inline visualforce page on an object detail page.

 

I want to have a Button on the object detail page  which will dowload this page.

Anybody know how to do this?

 

  • January 28, 2013
  • Like
  • 0

Hi,

Can we integrate Chatter to an intranet site so that users can post status after authentication.

 

Thanks

  • October 05, 2012
  • Like
  • 0

Hi

I want to fetch data from Profiles such as  Administrative Permissions and Standard Object Permissions.


For example if you click on a profile name you can see the profile detail,custom app setting,standard object permission.

I Wanted a way to generate an excel report for all profiles with all the permissions on sObjects.

 

For example

 

                      Accounts        Contact

ProfileA          read               read    

ProfileB         read,write      write

 

 

Is there any way to do it using APIs.Any help on this would be great.

 

 


  • January 06, 2012
  • Like
  • 0

what is the difference between salesforce administrator and developer ?

Can somebody please explain it.

  • January 04, 2012
  • Like
  • 0

Hi

 

Another dev made some changes remotely on our app, and when I try to see them on Force IDE, it still shows the older version.

 

Tried refreshing from server, as well as refreshing the schema but nothing worked. Any idea what am I missing?

 

 

 hello group,

            

                      i hav two s-obj enquiry and student. in enquiry i want a picklist called course. iam trying to retrieve course name  from course obj in enquiry (picklist). but i dont have any picklist in  enquiry related to course name picklist in datamodel. and also there is no relationship between two s-obj. is this possilbe to retrieve a field from one s-obj to another one in to picklist with out any relationship....

 

               
pls guide in a r8 way

 

     thanks for giving reply(in advance)          

Hi,

Can we integrate Chatter to an intranet site so that users can post status after authentication.

 

Thanks

  • October 05, 2012
  • Like
  • 0

Can we export the data from salesforce to tab delimited text file using data loader?

  • July 18, 2012
  • Like
  • 0

I've run into an issue that is baffling and frustrating. I've got a pageblocktable that simply shows a few elements of a wrapper class that includes some selectoptions, display strings, and most importantly a boolean that is tied to a checkbox. I just discovered that the checkbox values are not binding to the booleans in the wrapper (they were last week), which totally breaks the page and sucks. Please help me...

 

here's the visualforce code: 

<apex:pageBlockTable title="Select School(s)" var="s" value="{!schoolListChoices}">
     <apex:column title="Select">     
          <apex:facet name="header">Select</apex:facet>     
          <apex:inputCheckBox value="{!s.Selected}" /> <!--not binding...-->
     </apex:column>
     <apex:column title="Name">
          <apex:facet name="header">Name</apex:facet>
          <apex:outputText value="{!s.DisplayName}" />
     </apex:column>
</apex:pageBlockTable>

 

Here's the relevant APEX:

//Wrapper

public class reportCardWrapper{
public String displayName {get;set;}
public ID recordID {get;set;}
public ID selectedReportingPeriod {get;set;}
public boolean selected {get;set;}
public list<selectOption> reportingPeriods {get;set;}

public reportCardWrapper(string dn, ID rid){
this.selected = false; //this stopped binding for some reason
this.recordID = rid;
this.displayName = dn;
this.reportingPeriods = new List<selectOption>();
selectedReportingPeriod = null;
}

}

//Loop that checks for "selected"

boolean bSchoolOrGradeSelected = false;
for(reportCardWrapper rw : schoolListChoices){
     if(rw.selected){ //should be true because of the checkbox tied to it on the page.
          schoolToSelectedReportingPeriod.put(rw.recordID,rw.selectedReportingPeriod);
          if(bSchoolOrGradeSelected){//add to the or statement     
               query += ' OR Student__r.School__c = \'' + rw.recordID + '\'';
          }
          else{
               query += ' Student__r.School__c = \'' + rw.recordID + '\'';
               bSchoolOrGradeSelected = true;//this never goes true because the selected value wont bind
           }
     }
}

There is no salesforce error, the only error I get is the one I wrote that checks to make sure at least one box is selected (by looping thru the wrappers and checking the "selected" field. I have another section of the page that has similar logic, but uses datatables instead of pageblocktable, which also has the same issue suddenly.

 

What is going on SF?!

 

Thanks,

Jimmy

what is the difference between salesforce administrator and developer ?

Can somebody please explain it.

  • January 04, 2012
  • Like
  • 0

Hi

 

I have a problem when using MetaData Api

I have created a project in eclipse and I placed all jar files

metadata.jar

enterprise.jar

wsc-20.jar

while running it asks username and password I gave

Succefully Login

Acc.to pdf Code it asks Choices 1 retrieve

                                                             2.deploy etc

 

when I seelct any of these options it give java.lang.Exception: Should provide a valid retrieve manifest for unpackaged content. Acc.to pdf I cant understacd wat is manifest file and what it should Contain and where it should be placed . Please tell me.

 I placed package.xml which i got from force.com IDE in Src directory of Current Application .

 

Please Let me know how can i deal with this package.xml

 

I can't understand the pdf.

 

Please reply me

 its urgenttt

 

Thanks

 

 

 

  • July 11, 2011
  • Like
  • 0

Hi all,

is it possible to show lookup icon for master detail relationship on a custom visualforce page???

 

Thank you.