• S Praveen
  • NEWBIE
  • 0 Points
  • Member since 2011

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

Hi

 

I have one requirement that to create a stacked bar chart, so anybody can help regarding this and i am trying to use google charts for ths beccause the data should pass dynamically or any other way.

 

Any help will appreciate.

 

 

Regards,

Praveen Sappati

Hi

 

I have one requirement that using visual force page have to upload video in to salesforce database ,  please help me to get out of this requirement and its very urgent.

 

 

Regards,

Praveen S

Hi

 

I have a requirement like there is an object 'A' and object 'B' those having same picklist suppose say p1 and p2.

 

there is a lookup of object 'B' in object 'A', when user selects some value in the lookup then those picklist values of object 'B' should get populated in Object 'A' 

 

Please help me out its very urgent

 

 

Regards,

Praveen.

Hi,

 

I have one requirement i.e., i want to give a multipicklist field in formula field but it is not accepting,

 

for picklist field we declare as TEXT(picklist field) in the formula field.but for multi-picklist field this type is not accepting.

 

 

Please help me as this is very urgent.

 

 

Regards,

Praveen

Hi All,

 

 

I have an requirement like to assign different page layouts for NEW, EDIT and VIEW  for standard page , is it possible by using standard page or we have to develop visual force page.

 

Please help me out its urgent.

 

 

Regards,

Praveen

Hi All

 

I created a VF to override standard creating page of custom object. All that works fine in salesforce.

 

But it can not work for custom portal user, which threw error message "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.".

 

Then I restore the creating page to SF standard one. It works for custom portal user. 

 

So there should be some permission setting for this VF to custom portal user.  How can I set it?

 

Thanks

Kunlun

  • February 13, 2012
  • Like
  • 0

Hi,

Hope someone will help me with this,

I have a custom button that pulls field data into a form but want to add some logic that requires certain fields be populated on the page layout before the button will execute.

 

Thank You

 

Brian

Hi

 

In my organization I have a scenario that, in Opportunity when the TYPE field = "Existing" then the Account(Lookup) Field should be enabled, otherwise it should be in disable state.


Can any one please help on this....

 

Thanks!!!

  • August 17, 2011
  • Like
  • 0

Hi

 

I have one requirement that using visual force page have to upload video in to salesforce database ,  please help me to get out of this requirement and its very urgent.

 

 

Regards,

Praveen S

Hi

 

I have a requirement like there is an object 'A' and object 'B' those having same picklist suppose say p1 and p2.

 

there is a lookup of object 'B' in object 'A', when user selects some value in the lookup then those picklist values of object 'B' should get populated in Object 'A' 

 

Please help me out its very urgent

 

 

Regards,

Praveen.

Hello,

 

Continuing on from my previous question "Disable Reset Password Option On Profiles/User...", I wondered is it possible to add a validation rule to the field labelled "Generate new password and notify user immediately" on the Create/Edit "User" Form. I would like to do this to stop certain profiles from being able to generate a new password email when creating new SFDC users.

 

On looking at the user object the only field I could see which i thought may have been related to this is the custom field ResetPW__C but this is not the same field unfortunately.

 

Do you know what field uses the label "Generate new password and notify user immediately"  and if a validation rule can therefore be added to this?

 

Thanks in advance.

Hi All,

 

 

I have an requirement like to assign different page layouts for NEW, EDIT and VIEW  for standard page , is it possible by using standard page or we have to develop visual force page.

 

Please help me out its urgent.

 

 

Regards,

Praveen

need a controller class of following apex page
<body>
<form>
<table id="TableId">
<thead>
<tr>
<th scope="col" class="num"></th>
<th scope="col" class="fname">Name</th>
</tr>
</thead>
<tbody id="tablebody">
<tr>


                    
<td class="num">1.</td>
<td><input type="text" name="" value="" id="name1"/></td>
</tr>
</tbody>
<tfoot>
<tr>
<td><input type="Button" value="Save" onclick="Validate();"/></td>
<td colspan="2"> <a onclick="InsertRow();">Add More 1 Records</a> </td>
</tr>
</tfoot>
</table>
                                                                                               
<script>
var AllName = '';
function addRow(num)
{
        if(document.all)
        {
           var tbody1 = document.getElementById('tablebody');
           var row = document.createElement("TR");
           var td1 = document.createElement("TD");   
           td1.setAttribute("className","num");
           td1.innerHTML = num + '.' ;  
           
           var td2 = document.createElement("TD");
           var SpanTd2 = document.createElement("Span");
           var aTextBoxSpanTd2 = document.createElement('input');
           aTextBoxSpanTd2.type = "text";                              
           aTextBoxSpanTd2.id = "name" + num ;
           SpanTd2.appendChild(aTextBoxSpanTd2);
           td2.appendChild(SpanTd2);
           
           row.appendChild(td1);
           row.appendChild(td2);
         
           tbody1.appendChild(row);
         }
        else
        {
           var tbody1 = document.getElementById('tablebody');
           var row = document.createElement("TR");
           var td1 = document.createElement("TD");   
           td1.setAttribute("class","num");
           td1.innerHTML = num + '.' ;  
           
           var td2 = document.createElement("TD");
           var SpanTd2 = document.createElement("Span");
           var aTextBoxSpanTd2 = document.createElement('input');
           aTextBoxSpanTd2.type = "text";       
           aTextBoxSpanTd2.id = "name" + num ;
           SpanTd2.appendChild(aTextBoxSpanTd2);
           td2.appendChild(SpanTd2);
          
           row.appendChild(td1);
           row.appendChild(td2);
          
           tbody1.appendChild(row);
        }   
}

function InsertRow()
{
var table = document.getElementById("TableId");
var strTb = '', rowCount = table.rows.length;
var NewId = rowCount-1;
for(i = NewId ; i < NewId + 1 ; ++i)
{  
addRow(i);
}
}

function Validate()
{ 
        var table = document.getElementById("TableId");
        var rowCount = table.rows.length;
        var MyTeam = new Array(rowCount);

        for(i = 1 ; i <= rowCount-2 ; i++)
        {
                     var Name =  "name" + i;  
                     var NameValue = document.getElementById(Name).value;
                    
                     if(NameValue == '')  
                     {      
                                                        alert("Name is required in S.no" + " " + i);
                     } 
                     else
                     {
                                 if(i == 1)
                                 {
                                             AllName = NameValue;
                                 }
                                 else
                                 {
                                             AllName = AllName + ';' + NameValue;
                                 }
                     }
        
        } 
        alert(AllName); // Pass All name into the controller and separate this string value by ; and insert all the record.
} 
</script>
</form>
</body>
</apex:page>

Hi folks,

 

I created two custom objects and established master relationship between them. when i create a parent record automatically child record also want create with same vales of parent record in related list.Is it possible using standard functionality with out writing controls............Is it possible using rollup summary?????????

 

 

thanks,

krish.

Hi,

 

Can Google Charts be shown as Components in the Dashboards section on the Home page?

Any help on this will be hioghly appreciated.

 

Regards,

OnDem

Hi,

I have displayed the total available pages with help of 'commandLink' and on the 'Click' event of that i am displaying the records of that page.

Now, i want to apply particular color to that commandLink which is 'clicked' by the user so as to differentiate from others.

Code is as follow. Any pointers on this will be helpful.

Code:
<apex:repeat value="{!valuesForPageNumber}" var="page" id="theRepeat" >
    <apex:commandLink value="" onClick="setLink({!page})" action="{!paginationLink}" >
           <apex:outputText value="{!page}"/>
    </apex:commandLink>&nbsp;&nbsp;
</apex:repeat>

 

Yash