• vfexp41
  • NEWBIE
  • 10 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 13
    Questions
  • 10
    Replies
HI,

             i am planning to clone the opportunity line items. in opportunity  i have 1 opportunitylineitem record, when i created new opportunityline item at that case i have to change the old opportunityline item status to close and i have to copy the old record values(price,discount,amount) to newly created  record. how can i achieve it.
Hi All,

                I have a two Accounts----that is Account A
                                                                         Account B

         For my Account A have 5 contacts,
         For my Account B have 3 contacts    my goal is i have to merge Account A to Account B in this i have to assign the Account A contacts to Account B, without removing contacts from Account A.. How can i start my work to achieve this functionality ..any suggestions..
HI,
       i Have a custom object i want to display the pop up window when i select the picklist value, and  when i click on save button  i have to display this pop-up window on standard salesforce page.
  how can i acheive this..??
I am working with visualforce template i am getting all decimal values in my mail but i want to round it in Max upto 2 decimals.How can i achive

 <messaging:emailTemplate recipientType="Contact" relatedToType="Quote__c" subject="Your requested quote #{!relatedTo.Name}" >
      <messaging:htmlEmailBody>
                <apex:outputField value="{!relatedTo.Total_Price__c}"/>
              <apex:outputField value="{!relatedTo.Total_Shipping__c}"/>  
            <apex:outputField value="{!relatedTo.Gtotal__c}"/>
     </messaging:htmlEmailBody>

     </messaging:emailTemplate>

MY OUTPUT IS--->>

     SubTotal  $90.0000
   Shipping & handling     $2.000
 Grand Total(Incl.Tax)  $100.1700
please any one can guide mee to integration between salesforce to magento?????
HI,
      IN my Sandbox i have 2 custom objects and 4 standard objects

  the relation ship

 Account--->>contact-->>opp-->>Quote(custom object)-->>quote-line(custom object)-->>Product

 i am planning to move this to production i want move standard objects also, or only custom objects

 i have the following

 3 WFR on Quote + 1 WFR on Quote-line item
 1 trigger on Quote
 1 V.f page is for Quote
 3 webservices
 1 Visualforce template
 
 here quote is parent and line item is child. Quote having roll-up summaries for line-items
can anyone give mesuggestions in which way i want to move above all, first which i want to move
HI,

          I am displaying the values of Quote in Visualforce page, for my total amount field i have 4 decimals it showing in PDF page
$30.0000, i want to round the value in PDF  how it is possible

    <apex:page standardController="Quote__c" showHeader="false" renderAs="pdf">
<apex:repeat value="{!Quote__c.quote_items__r}" var="line">
          <apex:outputField value="{!line.Unit_Price__c}"/>
             <apex:outputField value="{!line.Total_Price__c}" styleClass="productName"/>
</apex:repeat>
</apex:page>

  how can i round the totalprice,unitprice in visualforce page