• Rameshwar
  • NEWBIE
  • 0 Points
  • Member since 2008

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 9
    Questions
  • 4
    Replies
Hi,
 
I want to create a clone copy of standard object - Account and all the associated validation rules in S-Control.
Is it possible to clone the standard object using AJAX or any other way in S-Control ?
 
 
Thanks
Rameshwar
Hi,
 
I am trying to access a look up field data from a web page but it is working when i select any listed data in a lookup data listing
page
 
here, I found some stuff from the community board
 
 
 
In which, it is stated that you can not access any lookup field from web to lead form
 
 
I have put all the html code in s-Control then that lookup field is working fine but when I copied the same html in external server
page and called in a salesforce webtab then it is not workable for me.
 
So, Kindly suggest me any alternatives / solution on this
 

Thanks & Regards
Rameshwar
04-18-2008 08:15 AM
Hi,
 
I am trying to access a look up field data from a web page but it is working when i select any listed data in a lookup data listing
page
 
here, I found some stuff from the community board
 
 
 
In which, it is stated that you can not access any lookup field from web to lead form
 
 
I have put all the html code in s-Control then that lookup field is working fine but when I copied the same html in external server
page and called in a salesforce webtab then it is not workable for me.
 
So, Kindly suggest me any alternatives / solution on this
 

Thanks & Regards
Rameshwar
Hi,
 
I am using LMA(License management application provided by salesforce)
 
and I have configured my custom app with this application but when I am trying to query/retrive  to downloaded LMA application
custom objects field data record it gives me none result with 0 size return in QueryResult
 
here is some code gives you more idea
 

------------------------------------------------------------------------

Provbinding.QueryOptionsValue = New QueryOptions()

Provbinding.QueryOptionsValue.batchSize = 500

Provbinding.QueryOptionsValue.batchSizeSpecified = True

Dim Qresult As QueryResult

Qresult = Nothing

strSOQL = "SELECT sfLma__Install_Date__c, sfLma__Proxy_User__c FROM sfLma__License__c"

Qresult = Provbinding.query(strSOQL)

Dim enddate() As String

if Qresult.size = 0 Then

Me.TotalLicense = Qresult.records.Length

Return 2

end if

------------------------------------------------------------------------

It return queryresult set with 0 value which is not true as I have 1 record in this object sfLma__License__c

and I faced one more problem in above query when I am using created custom field in a downloaded package custom oobject

it throw err like


NVALID_FIELD:
RecordType.Name,sfLma__Expiration__c, Organization_Id__c,PackageExpiryDate__c
                                      ^
ERROR at Row:1:Column:91
No such column 'Organization_Id__c' on entity 'sfLma__License__c'. If you are attempting to use a custom field, be sure to append the '__c' after the custom field name. Please reference your WSDL or the describe call for the appropriate names.
------------------------------------------------------------------------

please anybody suggest me any solution on both of the above problem

Hi,
 
I am facing problem in setting the standard Task.ActivityDate by using .NET  
It shows me following error
 
+++++++++++++++++++++++++++
'4/11/2008' is not a valid value for the type xsd:date
 
'4/11/2008 12:00:00 PM' is not a valid value for the type xsd:date
'2008/4/11' is not a valid value for the type xsd:date
 
+++++++++++++++++++++++++++
 
 
Can anybody give me idea how to set the date in a standard object field ?
 
Help me to pull out from this problem
 
Thanks
 
Rameshwar
 
Hi,
I would like to know can we hide the content in a S-control for all type of user login (including Administrator) ?
If yes then how to do it ?
 
Is any other way to hide the specific details like username/password in S-Control ?
 
Thanks
Rameshwar
Hi,

I have problem in self execution of S-Control as I am trying to auto event fire up for executing S-Control when any user logging into Salesforce or at the time of selection of application from AppExchange.

Is it possible to trace the login activity or any event in salesforce without the usage of Trigger ?


Thanks
Rameshwar
Hi,
 
Can anybody tell me that how to make the standard field in user object as readonly
 
Like , I want to make the title field in user object as read only.
 
Thanks
Rameshwar
Hi,
 
I am tried to set the selected datetime value in a reminderdatetime field of task object in the following format.
  1. Complete date plus hours and minutes:
      YYYY-MM-DDThh:mmTZD (eg 1997-07-16T19:20+01:00)
  2. Complete date plus hours, minutes and seconds:
      YYYY-MM-DDThh:mm:ssTZD (eg 1997-07-16T19:20:30+01:00)
  3. Complete date plus hours, minutes, seconds and a decimal fraction of a
     second
      YYYY-MM-DDThh:mm:ss.sTZD (eg 1997-07-16T19:20:30.45+01:00)
but it gives me error when i try to use above format.
--------------------------------------------------------------------------------------------------- 
Exception :
{faultcode:'soapenv:Client', faultstring:''2007-12-25T00:00:00+05.5:30' is not a valid value for the type xsd:dateTime', }
---------------------------------------------------------------------------------------------------
I am trying to set the value in this datetime field by using following code 
+++++++++++++++++++++++++++++
var strReminderDate = document.getElementById("ReminderDateTime").value;//strReminderDate = yyyy/mm/dd
var strTime = document.getElementById("cboReminderDateTime").value //strTime = 00:00(hh:mm)
var remdateArr = new Array();
remdateArr = strReminderDate.split("/");
var remnewDate = remdateArr[2]+"/"+remdateArr[0]+"/"+remdateArr[1]+" "+strTime+"Z";
task.ReminderDateTime = new Date(remnewDate);
+++++++++++++++++++++++++++++
So how do I assign the selected date & time in the ReminderDateTime field 
of Activity Object through javaScript.
Thanks & Regards
Rameshwar
Hi,
 
I am using LMA(License management application provided by salesforce)
 
and I have configured my custom app with this application but when I am trying to query/retrive  to downloaded LMA application
custom objects field data record it gives me none result with 0 size return in QueryResult
 
here is some code gives you more idea
 

------------------------------------------------------------------------

Provbinding.QueryOptionsValue = New QueryOptions()

Provbinding.QueryOptionsValue.batchSize = 500

Provbinding.QueryOptionsValue.batchSizeSpecified = True

Dim Qresult As QueryResult

Qresult = Nothing

strSOQL = "SELECT sfLma__Install_Date__c, sfLma__Proxy_User__c FROM sfLma__License__c"

Qresult = Provbinding.query(strSOQL)

Dim enddate() As String

if Qresult.size = 0 Then

Me.TotalLicense = Qresult.records.Length

Return 2

end if

------------------------------------------------------------------------

It return queryresult set with 0 value which is not true as I have 1 record in this object sfLma__License__c

and I faced one more problem in above query when I am using created custom field in a downloaded package custom oobject

it throw err like


NVALID_FIELD:
RecordType.Name,sfLma__Expiration__c, Organization_Id__c,PackageExpiryDate__c
                                      ^
ERROR at Row:1:Column:91
No such column 'Organization_Id__c' on entity 'sfLma__License__c'. If you are attempting to use a custom field, be sure to append the '__c' after the custom field name. Please reference your WSDL or the describe call for the appropriate names.
------------------------------------------------------------------------

please anybody suggest me any solution on both of the above problem

Hi,
 
I am facing problem in setting the standard Task.ActivityDate by using .NET  
It shows me following error
 
+++++++++++++++++++++++++++
'4/11/2008' is not a valid value for the type xsd:date
 
'4/11/2008 12:00:00 PM' is not a valid value for the type xsd:date
'2008/4/11' is not a valid value for the type xsd:date
 
+++++++++++++++++++++++++++
 
 
Can anybody give me idea how to set the date in a standard object field ?
 
Help me to pull out from this problem
 
Thanks
 
Rameshwar
 
Hi,
I would like to know can we hide the content in a S-control for all type of user login (including Administrator) ?
If yes then how to do it ?
 
Is any other way to hide the specific details like username/password in S-Control ?
 
Thanks
Rameshwar
Hi,
 
I am tried to set the selected datetime value in a reminderdatetime field of task object in the following format.
  1. Complete date plus hours and minutes:
      YYYY-MM-DDThh:mmTZD (eg 1997-07-16T19:20+01:00)
  2. Complete date plus hours, minutes and seconds:
      YYYY-MM-DDThh:mm:ssTZD (eg 1997-07-16T19:20:30+01:00)
  3. Complete date plus hours, minutes, seconds and a decimal fraction of a
     second
      YYYY-MM-DDThh:mm:ss.sTZD (eg 1997-07-16T19:20:30.45+01:00)
but it gives me error when i try to use above format.
--------------------------------------------------------------------------------------------------- 
Exception :
{faultcode:'soapenv:Client', faultstring:''2007-12-25T00:00:00+05.5:30' is not a valid value for the type xsd:dateTime', }
---------------------------------------------------------------------------------------------------
I am trying to set the value in this datetime field by using following code 
+++++++++++++++++++++++++++++
var strReminderDate = document.getElementById("ReminderDateTime").value;//strReminderDate = yyyy/mm/dd
var strTime = document.getElementById("cboReminderDateTime").value //strTime = 00:00(hh:mm)
var remdateArr = new Array();
remdateArr = strReminderDate.split("/");
var remnewDate = remdateArr[2]+"/"+remdateArr[0]+"/"+remdateArr[1]+" "+strTime+"Z";
task.ReminderDateTime = new Date(remnewDate);
+++++++++++++++++++++++++++++
So how do I assign the selected date & time in the ReminderDateTime field 
of Activity Object through javaScript.
Thanks & Regards
Rameshwar