• satikailash
  • NEWBIE
  • 0 Points
  • Member since 2011

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

Hi, 

I have 2 visualforce sites 

print

print_low

the Only difference b/w the pages is a logo image.

I have reference these in one other page

 

<apex:page download1 contentType="application/pdf">

<apex:include pagename="print"/>

</apex:page>

 

<apex:page download2 contentType="application/pdf">

<apex:include pagename="print_low"/>

</apex:page>

 

How can I use only one page 'Print' and in page Download1 it shows Image1 and in Download2 it shows Image2.?

 

How can I add Entitlement Management to Outbound Change set.

 

I have declared some Milestones and Entitlement Processes and want to take over to Live System(Production).

 

 

If any one knows?? 

Please help :) 

Thanks and regards

I want to know how can i get ret url based on the field. say i have a checkbox field on my page say checkbox with yes and now

if checkbox with value yes is selected i need retUlr = google

if checkbox with value no is selected i need retUrl = yahoo

 

can it be possible???

I have made a custom object and on the home page I am using it as a items to approve thingi so taht I can have more options to see on the home page.......

<apex:page standardController="IssuedProduct__c" extensions="PI_ItemToApprove" sidebar="false" showheader="false" id="page">

<style>
#page\:form\:pageBlock {
    border-top: 3px solid #1797C0;
}
</style>
<apex:form id="form">

  <apex:pageBlock title="Items to Approve" id="pageBlock" >
  <apex:pageBlockButtons >
  <apex:commandButton value="ManageAll" onclick="parent.window.location.href='https://cs'; return false;" />

                
  </apex:pageBlockButtons>
  <apex:pageBlockTable value="{!ProductList}" var="item">
 
    
    <apex:column headerValue="Action"><a target="_parent" href="">Reassign</a>&nbsp;|&nbsp;<a target="_parent" href="">Approve/Reject</a></apex:column>
    <apex:column ><apex:commandLink target="_parent" action="{!google}" value="Google" rerender="all">
        <apex:param name="{workItemId}" value="{!item.id}" assignTo="{!processInstanceId}"/>
    </apex:commandLink>
    </apex:column>
    <apex:column headerValue="Issued Product Id" ><a target="_parent" href="/{!item.Id}">{!item.Name}</a></apex:column>
    <apex:column headerValue="Issued Product Name" >{!item.IssuedProductName__c}</apex:column>
    <apex:column headerValue="ISIN" >{!item.ISIN__c}</apex:column>
    <apex:column headerValue="Issue Date" >{!item.IssueDate__c}</apex:column>
    <apex:column headerValue="Maturity Date" >{!item.MaturityDate__c}</apex:column>
    <apex:column headerValue="Most Recent Approver" ><a href="/{!UserId}">{!userName}</a></apex:column> 
    <apex:column headerValue="Date Submitted" >{!item.CreatedDate}</apex:column>      

  </apex:pageBlockTable>

    
  </apex:pageBlock>
</apex:form>
</apex:page>

Hi, 

I have 2 visualforce sites 

print

print_low

the Only difference b/w the pages is a logo image.

I have reference these in one other page

 

<apex:page download1 contentType="application/pdf">

<apex:include pagename="print"/>

</apex:page>

 

<apex:page download2 contentType="application/pdf">

<apex:include pagename="print_low"/>

</apex:page>

 

How can I use only one page 'Print' and in page Download1 it shows Image1 and in Download2 it shows Image2.?

 

I have made a custom object and on the home page I am using it as a items to approve thingi so taht I can have more options to see on the home page.......

<apex:page standardController="IssuedProduct__c" extensions="PI_ItemToApprove" sidebar="false" showheader="false" id="page">

<style>
#page\:form\:pageBlock {
    border-top: 3px solid #1797C0;
}
</style>
<apex:form id="form">

  <apex:pageBlock title="Items to Approve" id="pageBlock" >
  <apex:pageBlockButtons >
  <apex:commandButton value="ManageAll" onclick="parent.window.location.href='https://cs'; return false;" />

                
  </apex:pageBlockButtons>
  <apex:pageBlockTable value="{!ProductList}" var="item">
 
    
    <apex:column headerValue="Action"><a target="_parent" href="">Reassign</a>&nbsp;|&nbsp;<a target="_parent" href="">Approve/Reject</a></apex:column>
    <apex:column ><apex:commandLink target="_parent" action="{!google}" value="Google" rerender="all">
        <apex:param name="{workItemId}" value="{!item.id}" assignTo="{!processInstanceId}"/>
    </apex:commandLink>
    </apex:column>
    <apex:column headerValue="Issued Product Id" ><a target="_parent" href="/{!item.Id}">{!item.Name}</a></apex:column>
    <apex:column headerValue="Issued Product Name" >{!item.IssuedProductName__c}</apex:column>
    <apex:column headerValue="ISIN" >{!item.ISIN__c}</apex:column>
    <apex:column headerValue="Issue Date" >{!item.IssueDate__c}</apex:column>
    <apex:column headerValue="Maturity Date" >{!item.MaturityDate__c}</apex:column>
    <apex:column headerValue="Most Recent Approver" ><a href="/{!UserId}">{!userName}</a></apex:column> 
    <apex:column headerValue="Date Submitted" >{!item.CreatedDate}</apex:column>      

  </apex:pageBlockTable>

    
  </apex:pageBlock>
</apex:form>
</apex:page>

Hi all...

could any one please tell me that, can i use Role(Standard),,,as a look up in my visualforce page?? (same as we do for Users)

Hi all,

 

I would like to send an email alert to the opportunity owner if he has not done any updates on his opportunity for last  15 days.

Please suggest how this could be done?

 

Thanx in advance