• Sunil Dwarakanath
  • NEWBIE
  • 10 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 2
    Replies
Hi,

We have an Unlimited edition. Will there be a limitation on number of Custom Objects that can be used in Console app?
Technically we are able to add more than 5 Custom Objects to Console app but in contract its mentioned as maximum 5.

Regards,
Sunil TD
Hi,

We have an Unlimited edition. Will there be a limitation on number of Custom Objects that can be used in Console app?
Technically we are able to add more than 5 Custom Objects to Console app but in contract its mentioned as maximum 5.

Regards,
Sunil TD
Hi,

my requirement is to send all records (Work Order - custom object) to some third part app by exposing a custom WSDL file.
I developer the below code, which compiles fine in salesforce but gives an error while testing the same in SOAP UI tool.
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
global class TestWOStatus{
    webservice static LIST<Work_Order__c> getWorkOrder(){
         LIST<Work_Order__c> wo = [SELECT ID,account__c,Product__c,Order_Type__c,Order_Status__c,Billing_Type__c,Closed_By__c FROM Work_Order__c];
         return wo;
       }
      
       /*webservice static String getWorkOrder(){
         return 'HELLO';*/
       }
}
-------------------------------------------------------------------------------------------------------------------------------------------------------

Any suggestions will be highly appreciated.