• Neena K Bains
  • NEWBIE
  • 30 Points
  • Member since 2014


  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 4
    Replies
I am attempting to create a workflow rule field update formula that will return/update a date.  This formula will take a given date (DATE 1) plus (+) a processing days number (NUMBER 1) and return/update a date (DATE 2) during the work week.


Field Definitions
DATE 1 = Given Date
NUMBER 1 = Processing Days
DATE 2 = Result
 
Basic Formula:
DATE 1 + NUMBER 1 = DATE 2

Example 1
If I set a date field to 11/4/2014 (Tuesday) and want to add 3 business days, it should return 11/7/14 (Friday).
​DATE 1: 11/4/14 (Tuesday)
NUMBER 1: 3 (Business Days)
DATE 2: 11/7/14 (Friday)
 
Example 2
If I set a date field to 11/4/2014 (Tuesday) and want to add 10 business days, it should return 11/18/14 (Tuesday).
​DATE 1: 11/4/14 (Tuesday)
NUMBER 1: 10 (Business Days)
DATE 2: 11/18/14 (Tuesday)
 
Please note, DATE 2 should always be during the week.  Any help would be greatly appreciated. Thank you!
 

I am looking for (preferably) an app exchange app that allows you to generate an org chart of relations between custom objects.

 

We are using Financial Force for managing multiple companies which in turn are managed by 1 mother company who will be the only one using the FFA/Salesforce account. Companies are currently defined in the dimension 1 object inside FinancialForce. Relations between these companies exist through a parent-child relation. What we want is a visual way of showing these relationships, preferably interactive. I googled an example of our situation. This is just a googled image but actually shows the same kind of relationships we have in FinancialForce/Salesforce. Ideally we'd want an org chart that allows you to click the relations which will then lead you straight to the details of that company. 


I have looked at several appexchange applications, but none seem to provide what we need. Usually the generation of an org chart is limited to the opportunities and accounts objects.

So my question is, is there a salesforce app that can do what we want?
If not, What would be the best way to implement it? Personally I do not have any experience developing for salesforce, but it seems easy enough to do for someone who does have the necessary experience. The relations are already there, and I know there are open source libraries for creating org charts. 

 

I hope someone can point me in the right direction. Sorry if this is in the wrong section, I wasn't sure where to put it. 

Thanks in advance!

Hi All 

 

I have  VF page where i am displaying Product data in columns.. 

I need to have a fix width to the columns even when the i change the size of the page. 

When i change the size of the page the values in the column start appearing in the next line 

<apex:column headerValue="Product Code"  >
                    <a href="/{!product.prod.id}">{!product.prod.Productcode}</a>
                    </apex:column>
                    
                  <td>  <apex:column headerValue="Product Name">
                 <a href="/{!product.prod.id}">{!product.prod.Name}</a>

                    </apex:column></td>



          <apex:column value="{!product.prod.Description}"  width="35" />
        <td >   <apex:column headerValue="List Price">           
                <apex:repeat value="{!product.pbes}" var="pbe">
                   <apex:outputField value="{!pbe.UnitPrice}" />
                </apex:repeat>
            </apex:column>   </td>
    

 Thanks All