• softcloud2010
  • NEWBIE
  • 0 Points
  • Member since 2009

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 5
    Questions
  • 4
    Replies
Hi,
I would like to backup all my work from my current company org to my personal developer account org for my references. Is this possible?
If not, how can I save all my work for future references?

Thanks.

We would like to use assignment rules to assign case to different queue based on day and time.

Thanks.

How to hide/disable the 'Add Case Comment' button when the case status is closed?

 

Thanks.

Hi All,

 

We setup a single sign on from our public support site to salesforce customer portal. However, we would like to be able to redirect users to our support site when they click the URL to go directly to customer portal. Is it possible? is there any setting in SSO we can setup to auto redirect when user go to customer portal login page?

 

Thanks.

Hi All,

 

I have an apex class which are generated by WSDL. I also have custom Controller which basically get all the support cases for particular customer and I store it in List<>. My question is how to show the output in VisualForce page.

 
I keep getting the error of: Error: Unknown property 'supDetail.Number'

 

Here is my apex generated from WSDL:

 

public class ArrayOfSupportCaseEntity {
        public SupportCaseEntity[] SupportCaseEntity;
        private String[] SupportCaseEntity_type_info = new String[]{'SupportCaseEntity','http://abc.com/','SupportCaseEntity','0','-1','true'};
        private String[] apex_schema_type_info = new String[]{'http://abc.com/','true','false'};
        private String[] field_order_type_info = new String[]{'SupportCaseEntity'};
    }
    public class SupportCaseEntity {
        public String CaseNumber;
        public String Description;
        public String Model;
        private String[] CaseNumber_type_info = new String[]{'Lfid','http://www.w3.org/2001/XMLSchema','string','0','1','false'};
        private String[] Description_type_info = new String[]{'AuthCode','http://www.w3.org/2001/XMLSchema','string','0','1','false'};
        private String[] Model_type_info = new String[]{'PartID','http://www.w3.org/2001/XMLSchema','string','0','1','false'};
    }
    public class SupportCaseSoap {
        public String endpoint_x = 'http://www.abc.com/SupportCase/SupportCase.asmx';
        public Map<String,String> inputHttpHeaders_x;
        public Map<String,String> outputHttpHeaders_x;
        public String clientCertName_x;
        public String clientCert_x;
        public String clientCertPasswd_x;
        public Integer timeout_x;
        private String[] ns_map_type_info = new String[]{'http://abc.com/', SupportCase};
        public SupportCase.ArrayOfSupportCaseEntity GetSupportCase(String customerNumber) {
            SupportCase.GetSupportCase_element request_x = new SupportCase.GetSupportCase_element();
            SupportCase.GetSupportCaseResponse_element response_x;
            request_x.customerNumber= customerNumber;

Hi,
I would like to backup all my work from my current company org to my personal developer account org for my references. Is this possible?
If not, how can I save all my work for future references?

Thanks.

Hi All,

 

I have an apex class which are generated by WSDL. I also have custom Controller which basically get all the support cases for particular customer and I store it in List<>. My question is how to show the output in VisualForce page.

 
I keep getting the error of: Error: Unknown property 'supDetail.Number'

 

Here is my apex generated from WSDL:

 

public class ArrayOfSupportCaseEntity {
        public SupportCaseEntity[] SupportCaseEntity;
        private String[] SupportCaseEntity_type_info = new String[]{'SupportCaseEntity','http://abc.com/','SupportCaseEntity','0','-1','true'};
        private String[] apex_schema_type_info = new String[]{'http://abc.com/','true','false'};
        private String[] field_order_type_info = new String[]{'SupportCaseEntity'};
    }
    public class SupportCaseEntity {
        public String CaseNumber;
        public String Description;
        public String Model;
        private String[] CaseNumber_type_info = new String[]{'Lfid','http://www.w3.org/2001/XMLSchema','string','0','1','false'};
        private String[] Description_type_info = new String[]{'AuthCode','http://www.w3.org/2001/XMLSchema','string','0','1','false'};
        private String[] Model_type_info = new String[]{'PartID','http://www.w3.org/2001/XMLSchema','string','0','1','false'};
    }
    public class SupportCaseSoap {
        public String endpoint_x = 'http://www.abc.com/SupportCase/SupportCase.asmx';
        public Map<String,String> inputHttpHeaders_x;
        public Map<String,String> outputHttpHeaders_x;
        public String clientCertName_x;
        public String clientCert_x;
        public String clientCertPasswd_x;
        public Integer timeout_x;
        private String[] ns_map_type_info = new String[]{'http://abc.com/', SupportCase};
        public SupportCase.ArrayOfSupportCaseEntity GetSupportCase(String customerNumber) {
            SupportCase.GetSupportCase_element request_x = new SupportCase.GetSupportCase_element();
            SupportCase.GetSupportCaseResponse_element response_x;
            request_x.customerNumber= customerNumber;