• onlinenanda
  • NEWBIE
  • 0 Points
  • Member since 2009

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 11
    Questions
  • 5
    Replies
An internal server error has occurred
An error has occurred while processing your request. The salesforce.com support team has been notified of the problem. If you believe you have additional information that may be of help in reproducing or correcting the error, please contact support@salesforce.com. Please indicate the URL of the page you were requesting, any error id shown on this page as well as any other related information. We apologize for the inconvenience.

Thank you again for your patience and assistance. And thanks for using Salesforce!

Error ID: 1801676817-2891 (-1760147273)



Click here to return to the previous page.

could any one update me why this vague message is being shown.

How to sort SelectOption List, sample code is appreciated

How to get server url and session id in apex class - i can not use visual force page to get that one.

 

your help is appreciated..

I need to set server url and sesssion id on apx controlle when page loads, Any thoughts!!!!!!!!!!!!!
how to  access controller variable from visual force page's java script
I need to get list of object types for worflow rule on my custom page , any body know the query to pull those list.

I need to customize  setup > Create > Workflow & Approvals > Approval Process to add another workflow in

Create new approval process

 

and also i need to add another page block to display custom workflows under

Inactive Approval Processes page block

 

 

 

Is there a way to customize 

 

setup > Create > Workflow & Approvals > Approval Process 

 

I need to add another page Block under

Inactive Approval Processes

also I need to add my custom process under Create New Approval Process Drop Down

I need to set Session ID and Server URL when page loads in controller class. This is required to call external synchronous web service call

I need to construct table with input fields in following code

 

    <apex:dataTable value="{!udas}" var="uda" cellPadding="4"     border="1">
    <apex:column >
    <apex:facet name="header" >Name</apex:facet>
    {!uda.udaName}
    </apex:column>
    <apex:column >
    <apex:facet name="header" >Type</apex:facet>
        {!uda.udaType}
    </apex:column>
    <apex:column >
    <apex:facet name="header" >Value</apex:facet>
    <apex:XXX  value="{!uda.value}" />
    </apex:column>
     </apex:dataTable>

 In above piece of code  apex:XXX should be decided based on {!uda.udaType},

for Example

if it is boolean then field should be checkbox, if it is string then field should be inputText

Any ideas

How to set dynamic id for inputText filed in Datatable. In following code

 

    <apex:dataTable value="{!udas}" var="uda" cellPadding="4"     border="1">
    <apex:column >
    <apex:facet name="header" >Name</apex:facet>
    {!uda.udaName}
    </apex:column>
    <apex:column >
    <apex:facet name="header" >Type</apex:facet>
        {!uda.udaType}
    </apex:column>
    <apex:column >
    <apex:facet name="header" >Value</apex:facet>
    <apex:inputText  value="{!uda.value}" id="{!uda.udaName}" />
    </apex:column>
     </apex:dataTable>

I need to set id as name so that when i pull out value i can get corrosponding name.

Since id field is of type string it is not accepting "{!uda.udaName}" .

 

IS there any other workaround to set dynamic id setting or how to know the field name for a inputText Field which is being created dynamically.

I need to set server url and sesssion id on apx controlle when page loads, Any thoughts!!!!!!!!!!!!!
I need to get list of object types for worflow rule on my custom page , any body know the query to pull those list.
I need to set Session ID and Server URL when page loads in controller class. This is required to call external synchronous web service call