• ksr
  • NEWBIE
  • 0 Points
  • Member since 2009

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 9
    Questions
  • 2
    Replies

Hi All,


Is there any specific configuration to load VF pages in blackberry simulator?
Because VF Page does not gets displayed in blackberry, even if displayed, its takes longer time to load VF pages.

Can any one help me what should I do to display VF pages without JVM error?

 

Thanks in advance.

 - KSR

  • November 20, 2009
  • Like
  • 0

Hi All,


Is there any specific configuration to load VF pages in blackberry simulator?
Because VF Page does not gets displayed in blackberry, even if displayed, its takes longer time to load VF pages.

Can any one help me what should I do to display VF pages in mobile client?

 

Thanks in advance.

 - KSR

  • November 20, 2009
  • Like
  • 0

Hi All,

 

Is there any way to load dynamic data in picklist from database on predefined template(without using apex page)?

 

Thanks in advance.

 

--KSR

  • October 29, 2009
  • Like
  • 0

Dear All,

 

If the user’s profile has the "Single sign-On Enabled" permission in organization level, Can that user work on the workflow process?

 

If yes, How the user name and approver name will be mapped with salesforce user object?

 

Thanks in advance.

 

--KSR 

  • October 27, 2009
  • Like
  • 0


We have created an application in salesforce.com.

 

Is there any way to access that application through some user(specified role), who

doesn't have an account in salesforce?.

 

If it is possible. pls help me.

Thanks in advance.

--KSR

  • October 26, 2009
  • Like
  • 0

Hi All,

 

Is there any possibilities to add additional fields in user table(standard object)?

 

Thanks in advance.

 

Regards,

 KSR 

  • October 26, 2009
  • Like
  • 0

Hi All,

I am getting the following exception while invoking sample Web Service,  Can anyone help me?

 

WS call errorSystem.CalloutException: Web service callout failed: WebService returned a SOAP Fault: INVALID_SESSION_ID: Invalid Session ID found in SessionHeader: Illegal Session faultcode=sf:INVALID_SESSION_ID faultactor=

 

I did the following steps:

 

Step 1: created HelloWorldWebService class

 

global class HelloWorldWebService {
   webService static string sayHello() {
        return 'Hello World!';
     }
}


Step 2: Generated WSDL file for HelloWorldWebService.cls

 

Step 3: Generated WSDL2Apex code

 

Step 4: Created the below controller "HelloWorldWSContoller.cls"

 

public class HelloWorldWSContoller{
    String uname='hai';
    public String getUsername() {
           return uname;
    }
         
    public String getHelloWorld() {
     string result = null;
        try{
           ApexPages.addmessage(new ApexPages.message(ApexPages.severity.INFO,'Inside getHelloWorld()'));           
            HelloworldServiceWSDL2Apex.HelloWorldWebService stub = new HelloworldServiceWSDL2Apex.HelloWorldWebService();
            uname = stub.sayHello();
            result = uname;
            ApexPages.addmessage(new ApexPages.message(ApexPages.severity.ERROR,'after webservc call.'));           
           
        }catch(Exception e){
          ApexPages.addmessage(new ApexPages.message(ApexPages.severity.ERROR,'exception occured after webservc call.'+e));                    }
        return result ;
    }
}


Step 5: Invoking the WebService using the following visualforce page

 

<apex:page controller="HelloWorldWSContoller" tabStyle="Account">
     <apex:messages styleClass="error" />
 <apex:pageBlock >
         <apex:sectionHeader title="Webservice Invocation" subtitle="{!TODAY()}"/>
        <apex:pageBlockTable value="{!HelloWorld}" var="item">
         <apex:outputText value="item"/>
           </apex:pageBlockTable>
    </apex:pageBlock>
</apex:page>

 

Step 5: Added remote site url in "Remote Site Settings"

 

Did I missed any steps? If so, please correct me.
Thanks in advance..!

 

Regards,
KSR

  • September 16, 2009
  • Like
  • 0

Hi All,

 

I am getting the following privileges message while creating a custom pages.

 

 

Insufficient Privileges
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.

 

Here is my code:

 

<apex:page standardController="Mileage__c" >
<h1>{!$User.FirstName}'s Mileage Perspective </h1>
<apex:detail > </apex:detail>
<apex:detail subject="{!Mileage__c.Contact__c}" relatedList="false"/>
</apex:pag>
 

 

Can anyone help me How to solve the above insufficient privileges?

 

Regards,

KSR

  • September 06, 2009
  • Like
  • 0

Hi,

 

I am getting the foll exception while creating custom Object in Force IDE(eclipse 3.4):

 

Plug-in "com.salesforce.ide.ui" was unable to instantiate class "com.salesforce.ide.ui.wizards.components.object.CustomObjectWizard".
Error creating bean with name 'customObjectMetadata' defined in class path resource [config/components.xml]: Cannot create inner bean 'util:constant#1754daa' of type [org.springframework.beans.factory.config.FieldRetrievingFactoryBean] while setting bean property 'sharingModel'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'util:constant#1754daa#3': Post-processing of the FactoryBean's object failed; nested exception is java.lang.StackOverflowError

 

Can any one help me How to solve this?

 

Regards,

- KSR

  • September 04, 2009
  • Like
  • 0

Dear All,

 

If the user’s profile has the "Single sign-On Enabled" permission in organization level, Can that user work on the workflow process?

 

If yes, How the user name and approver name will be mapped with salesforce user object?

 

Thanks in advance.

 

--KSR 

  • October 27, 2009
  • Like
  • 0

Hi All,

 

Is there any possibilities to add additional fields in user table(standard object)?

 

Thanks in advance.

 

Regards,

 KSR 

  • October 26, 2009
  • Like
  • 0