• Jason Schroeder
  • NEWBIE
  • 10 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 4
    Replies
We set up a flow to generate a contract. the Detail button is currently set on the account. the sales team runs through the generator and clicks finish and it starts back over. I would rather have it take me to the contract that it just created, so I found that you can build a apex page that will take you to the url. Can I get it to take me to the exact contract I just created?

here is what I found to put into a apex page. 
<flow:interview name="Contract_Generator" finishLocation="{!URLFOR('/

But I am not sure what to finish the statement with.
I've been asked to create a VF page that has a iFrame containing a PDF with Ecosign text tags. they want to click a button to open the VF page, fill in the required fields on the contract. Once complete click sumbit/send and have it auto send with the Echosign send agreement.

Is this at all possible. Does the installed app have this feature already and I am just missing it?

Right now I just created a VF page.

Here.
<apex:page sidebar="false" >
    <apex:form >
    <apex:pageBlock >
    <apex:pageBlockButtons >
     <apex:commandButton action="{!save}" value="Save"/>
     <apex:commandButton action="{!send}" value="send"/>
    </apex:pageBlockButtons>
          <apex:iframe src="/servlet/servlet.FileDownload?file=015i0000005DzA6"/>
      </apex:pageBlock>
      </apex:form>
</apex:page>

 
I would like to increase the size of the font and the font style. The sales staff have asked if this is possible? This page is something I borrowed from a lot of posts by many of the developers. 

here is my page code.

<apex:page standardController="Account" showHeader="True" sidebar="false" tabStyle="Account" >
      <style>
      .activeTab {background-color: #236FBD; color:white; 
         background-image:none}
      .inactiveTab { background-color: lightgrey; color:black; 
         background-image:none}
        </style>
   <apex:tabPanel switchType="client" selectedTab="tabdetails" 
                  id="AccountTabPanel" tabClass="activeTab" 
                  inactiveTabClass="inactiveTab">
       <apex:tab label="Account" name="Account" id="tabaccount">
       <apex:detail id="account"/>
       </apex:tab>
      <apex:tab label="Reservation" name="Reservation" id="tabOpp">
         <apex:relatedList subject="{!account}" list="opportunities" />
      </apex:tab>
      <apex:tab label="Open Activities" name="OpenActivities" id="tabOpenAct">
         <apex:relatedList subject="{!account}" list="OpenActivities" />
         </apex:tab>
         <apex:tab Label="Contract" name="Contract" id="tabContractAct">
         <apex:relatedList subject="{!account}" list="Contracts"/>
      </apex:tab>
     </apex:tabPanel>
</apex:page>
I found a custom page setup allowing me to control the convert page. It allows me to turn of the create task etc. So this is great. When it populates the opportunity name field it puts in NULL. I would like to automate this to match the account name that is being created.

The app has a controller and it is listed as: leadConvert.setOpportunityName(((myComponentController.doNotCreateOppty) 
            ? null : myComponentController.opportunityID.Name));

I would like to change it so that it applies a matching name to the account.
 
I've been asked to create a VF page that has a iFrame containing a PDF with Ecosign text tags. they want to click a button to open the VF page, fill in the required fields on the contract. Once complete click sumbit/send and have it auto send with the Echosign send agreement.

Is this at all possible. Does the installed app have this feature already and I am just missing it?

Right now I just created a VF page.

Here.
<apex:page sidebar="false" >
    <apex:form >
    <apex:pageBlock >
    <apex:pageBlockButtons >
     <apex:commandButton action="{!save}" value="Save"/>
     <apex:commandButton action="{!send}" value="send"/>
    </apex:pageBlockButtons>
          <apex:iframe src="/servlet/servlet.FileDownload?file=015i0000005DzA6"/>
      </apex:pageBlock>
      </apex:form>
</apex:page>

 
I would like to increase the size of the font and the font style. The sales staff have asked if this is possible? This page is something I borrowed from a lot of posts by many of the developers. 

here is my page code.

<apex:page standardController="Account" showHeader="True" sidebar="false" tabStyle="Account" >
      <style>
      .activeTab {background-color: #236FBD; color:white; 
         background-image:none}
      .inactiveTab { background-color: lightgrey; color:black; 
         background-image:none}
        </style>
   <apex:tabPanel switchType="client" selectedTab="tabdetails" 
                  id="AccountTabPanel" tabClass="activeTab" 
                  inactiveTabClass="inactiveTab">
       <apex:tab label="Account" name="Account" id="tabaccount">
       <apex:detail id="account"/>
       </apex:tab>
      <apex:tab label="Reservation" name="Reservation" id="tabOpp">
         <apex:relatedList subject="{!account}" list="opportunities" />
      </apex:tab>
      <apex:tab label="Open Activities" name="OpenActivities" id="tabOpenAct">
         <apex:relatedList subject="{!account}" list="OpenActivities" />
         </apex:tab>
         <apex:tab Label="Contract" name="Contract" id="tabContractAct">
         <apex:relatedList subject="{!account}" list="Contracts"/>
      </apex:tab>
     </apex:tabPanel>
</apex:page>
I found a custom page setup allowing me to control the convert page. It allows me to turn of the create task etc. So this is great. When it populates the opportunity name field it puts in NULL. I would like to automate this to match the account name that is being created.

The app has a controller and it is listed as: leadConvert.setOpportunityName(((myComponentController.doNotCreateOppty) 
            ? null : myComponentController.opportunityID.Name));

I would like to change it so that it applies a matching name to the account.