• Madhu
  • NEWBIE
  • 0 Points
  • Member since 2007

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 13
    Questions
  • 7
    Replies
Hi All
 
I want to make the custom case field  dissable(not read only) in "Edit" mode.Could any one help
me .
 
 
Regards
madhu
  • September 06, 2007
  • Like
  • 0
HI
 
could u anyone pls tell me ,how to write the custom formulas........
 
Regards,
yellaiah.
  • July 26, 2007
  • Like
  • 0
hi
 
 i have one doubt,pls anyone clarify me as early as possible.my doubt is every object(like cae) has some standard fields(like subject,Description,Priority,etc) ,when i create the pagelayout  automatically these fields are coming but no way to remove the fields from the layout but these are unwanted for me.how can i void these fields in my layout.this seems to be small doubt but in many cases giving the problem.
 
 
Regards,
madhu
  • July 12, 2007
  • Like
  • 0
hai
Now in salesforce new feature is added(setup->build->code).in that i can write packages but my problem is ,where can i call this package.pls give me quick response.
 
Regards
madhu.
 
  • June 26, 2007
  • Like
  • 0
hai
i need to pass the values from child to parent by using "window.returnValue"(this is working fine if both pages are in same domain).but my problem is if  its different(webservers) ,the values are not passed to the  parent window.iam sending my code also pls any one modify and reply me .
 
1.parent.html
 
<html>
  <head>
    <title>Parent document</title>
    <script type="text/javascript">
      var vTestData, vRv ;
      vTestData = "I am a rock" ;
      function fnShowModal()
      {
        vRv = window.showModalDialog("child1.html", window.self, "") ;
      }
      function fnShowValue()
      {
        alert("vTestData = [" + vTestData + "]\nvRv = [" + vRv + "]") ;
      }
      fnShowValue() ; // The original value and an undefined return value
      fnShowModal() ; // Pop the modal
      fnShowValue() ; // The modified value and the return value
    </script>
  </head>
</html>
 
 
2.child.html
 
<html>
  <head>
<base target=_self>
    <title>Modal Dialog</title>
    <script type="text/javascript">
function invoke1()
{
 //alert( dialogArguments.vTestData);
     // dialogArguments.vTestData += ", I am an island" ;
      parent.window.returnValue = "yellaiah" ; // optional
window.close();
}
    </script>
  </head>
  <body>
    <input type="button" onclick="invoke1();">
  </body>
</html>
 
 
how can we run from different servers or domains?
pls give me fast reply.
 
Regards
madhu
 
 
  • June 22, 2007
  • Like
  • 0
hai
hello friends ,iam new to salesforec,how can i start to learn concepts in the salesforce and standard terms
in the salesforce...pls anyone one guide me in right way.
 
Regards
madhu
  • June 22, 2007
  • Like
  • 0
hai
i can i invoke the parent window javascript function in child window(child window is developed in flex)
pls help me anyone.
 
Regards,
madhu
  • June 21, 2007
  • Like
  • 0
hai
how can i integrate the salesforce with flex using apex api?.if anyone knows pls give me the fast  reply.
 
 Regards,
yellaiah.
  • June 20, 2007
  • Like
  • 0
hai
i to get the fields from case object.can anyone send the sample query
for that bcz my query is not working "select Name form Case".pls help me
 
Regards
madhu
  • June 18, 2007
  • Like
  • 0
hai
i wrote on s-control,how can i find the URL of that s-control
pls anyone clarify my doubt.
 
Regards,
madhu.
  • June 18, 2007
  • Like
  • 0
hai
i have one doubt, will mozilla supports Ajax Tool Kit9.0 or not,my problem
is my code is working on IE but the same is not working on mozilla,in my code
i used Ajax Tool Kit9.0
 
 Regards,
  yellaiah.
  • June 15, 2007
  • Like
  • 0
hai
i have one doubt,pls anyone clarify to me
i have two s-controls,in first control i have one submit button and some drop down values
when clicking the submit button i need to display the second control in new window and also i need
to pass the values to new window.
 
pls give me the fast reply
                         
                          Regards,
                           madhu
  • June 12, 2007
  • Like
  • 0
hai
i need to display the contents of s-control in edit page,
anyone pls guide me.
 
          madhu
  • June 05, 2007
  • Like
  • 0
I have an scontrol that brings over the COGS value from "product" into "opportunity Product" and calculate the total COGS value of each line item.
 
<script type="text/javascript">
var num1 = parseFloat({!Product2.COGS2__c});
var num2 = parseFloat({!OpportunityLineItem.Quantity});
var result = ""
if (num1 && num2) {
result = Math.round(num1 * num2 * 100)/100;
document.write(result);
}
</script>
 
I've place the scontrol on the opportunity product page layout so that the COGs value is visible. However, what I'd like to do is have the scontrol populate an actual field called "COGS" so I can write formulas around it.
 
Any ideas ?
 
Can someone help me solve this.
 
I need the amount field on the opportunity object (which is a standard non-editable field) to represent a different calculated value.
 
I've created 2 custom fields and a button
(A) "Amount2" in the opportunity object.
(B) "Total price 2" in the opportunity product object (a custom calculation) 
(C) "Update Amount 2" button in the opportunity to upload the sum of (B) into (A)
 
I've been playing with scontrols for a week now trying to figure out how to populate amount 2 with the sum of Totalprice 2 but it doesn't work!!!!!!! Can someone please help?
hai
hello friends ,iam new to salesforec,how can i start to learn concepts in the salesforce and standard terms
in the salesforce...pls anyone one guide me in right way.
 
Regards
madhu
  • June 22, 2007
  • Like
  • 0
I have a picklist having values A and B (this field is sforce field. Not an scontrol field.)
While selecting value "A" I need to display a field(will be number or text field).
And while selecting value "B" I need to hide that field.
Any way to do it?
 
Thanks
  • June 21, 2007
  • Like
  • 0
hai
i can i invoke the parent window javascript function in child window(child window is developed in flex)
pls help me anyone.
 
Regards,
madhu
  • June 21, 2007
  • Like
  • 0
hai
i wrote on s-control,how can i find the URL of that s-control
pls anyone clarify my doubt.
 
Regards,
madhu.
  • June 18, 2007
  • Like
  • 0
hai
i have one doubt, will mozilla supports Ajax Tool Kit9.0 or not,my problem
is my code is working on IE but the same is not working on mozilla,in my code
i used Ajax Tool Kit9.0
 
 Regards,
  yellaiah.
  • June 15, 2007
  • Like
  • 0