• S Digal
  • NEWBIE
  • 0 Points
  • Member since 2013

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 12
    Replies
Hi  

Sandbox HTML Email Template with Image from Document, which has "https://c.cs8.content.force.com/servlet/servlet.ImageServer?id=015D000000XXncM&oid=00DX00000000xxX" URL but when we deployed both Document & releated Email Teamplate via Change set. It still shows "https://c.cs8.content.force.com/servlet/servlet.ImageServer?id=015D000000XXncM&oid=00DX00000000xxX" URL in production instance and pointing to Sandbox URL.
As per the deployment process, it is suppose to get change as "https://na81.content.force.com/servlet/servlet.ImageServer?id=015D000000YYncM&oid=00DY00000000yyY"

How to deal with this issue? Any help, would be appreciated.

Regards
SD
Hi  

Sandbox HTML Email Template with Image from Document, which has "https://c.cs8.content.force.com/servlet/servlet.ImageServer?id=015D000000XXncM&oid=00DX00000000xxX" URL but when we deployed both Document & releated Email Teamplate via Change set. It still shows "https://c.cs8.content.force.com/servlet/servlet.ImageServer?id=015D000000XXncM&oid=00DX00000000xxX" URL in production instance and pointing to Sandbox URL.
As per the deployment process, it is suppose to get change as "https://na81.content.force.com/servlet/servlet.ImageServer?id=015D000000YYncM&oid=00DY00000000yyY"

How to deal with this issue? Any help, would be appreciated.

Regards
SD

What is the Diff between RemoteAction and ActionFunction?

Hi,

 

I have a VF page which has a list of email ids listed as checkboxes. I have 3 buttons:

1. TO - which adds the selected emails to TO list

2. CC - which adds the selected emails to CC list

3. Next - which redirects to Send Email page.

 

But i am facing a problem, when i click on any of the button nothing happens.... page just gets refreshed. Though i have few debug statements in my action methods nothing comes in logs. 

 

VF page is:

<apex:page controller="conAddmailsIds" >
<apex:form >
Select Emails Ids:
<!-- <apex:selectRadio value="{!emailToAdd}" > <br/> -->
<apex:selectCheckboxes value="{!emailToAdd}">
<apex:selectOption itemLabel="manasa.r@hp.com" itemValue="manasa.r@hp.com"></apex:selectOption><br/>
<apex:selectOption itemLabel="manasa.r.gupta@gmail.com" itemValue="manasa.r.gupta@gmail.com"></apex:selectOption>
<apex:selectOption itemLabel="abc@def.com" itemValue="abc@def.com"></apex:selectOption>
<apex:selectOption itemLabel="ghi@jkl.com" itemValue="ghi@jkl.com"></apex:selectOption>
<apex:selectOption itemLabel="mno@pqr.com" itemValue="mno@pqr.com"></apex:selectOption>
</apex:selectCheckboxes>
<!-- </apex:selectRadio> -->
<apex:commandButton value="To" action="{!addToList}"/>
<apex:commandButton value="CC" action="{!addCCList}"/>

<br/> Selected aditional TO email ID is : {!toList}
<!-- <apex:dataList value="{!toList}" var="c">{!c}</apex:dataList> -->
<br/> Selected CC email ID is : {!ccList} <!-- <apex:dataList value="{!ccList}" var="c">{!c}</apex:dataList> -->

<br/> <apex:commandButton value="Next" action="{!conAddEmailsIds}"/>
</apex:form>
</apex:page>

 

Apex code:

 

public class conAddmailsIds{

public String [] emailToAdd{get;set;}
public String [] toList{get;set;}
public String [] ccList{get;set;}

public Pagereference conAddEmailsIds(){
system.debug('@@@@@@ in add'+toList);
PageReference p = new PageReference('/_ui/core/email/author/EmailAuthor?p24='+toList+'&p4='+ccList);
return p;
}
public Pagereference addToList(){
system.debug('@@@@@@ in to list'+emailToAdd);
toList = emailToAdd;
return null;
}
public Pagereference addCCList(){
ccList = emailToAdd;
return null;
}
}

Can anyone help me to figure out when there no action on click of button?

 

Regards,

Manasa

Hi  i have a 2 objects ,PO and  SS, i want to populate the values of SS object into PO ?

 

Any help would be appreciated.

 

 

Thanks In Adavance .

 

 

 

Can someone help me? This button sits on the OpportunitLineItem related list on the Opportunity page.  I would like to add an "if else" that stops the button from firing if the field "Modification__c" on the opportunitylineitem (that is checked of course) = true. I can not figure out how to query for this. Thanks!

 

{!REQUIRESCRIPT("/soap/ajax/20.0/connection.js")}
{!REQUIRESCRIPT("/soap/ajax/20.0/apex.js")}

var IdsToClone, cloneLength, IdToClone;

IdsToClone = {!GetRecordIDs($ObjectType.OpportunityLineItem)};

cloneLength = IdsToClone.length;

if(cloneLength == 0) {
alert("You must choose at least one product to clone");
}
else if(cloneLength > 1) {
alert("You can't clone more than one product at a time");
}

else{
IdToClone = IdsToClone[0];
window.open("/apex/cloneamendment?id="+IdToClone);
}

Hi all,

I am trying to download the documents of public folder rfom force.com site. I am using following approach for this.

 

value="{!URLFOR($Action.Document.Download, document.id)}"

 

But It opens the document in new tab and URL is shown in address bar. I want to download this instead of showing in new tab, because I don't want to show URL of the document.

could anyone please help me out.

Hi All,

Few users are not receiving approval assignment emails.

users that they are not receiving approval emails.

 

I have verified the user information, backup approver and other profile aspects. everything looks perfect.

 Any one kindly advise.

What is the piece about the Custom Support Setting in salesforce can anybody explain?

  • March 05, 2013
  • Like
  • 0

I've a developer edition and which mean I'm the system administrator, I develop some pages and classes and after I logout I don't know exactly what happened to my account, for every link it displays me the following error :

 

Insufficient Privileges
You do not have the level of access necessary to perform the operation you requested. Please contact the owner of the record or your administrator if access is necessary.

url on the this page : https://ap1.salesforce.com/secur/NoAccess.jsp

 

I tried it with my other developer edition account same problem again. I've all the credentials for my account i.e.. username, password, security token. Don't know if it is a bug or my problem.??