• SFDC kids
  • NEWBIE
  • 50 Points
  • Member since 2021

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 5
    Questions
  • 5
    Replies
Hi Team,

CAn you please give me some idea , why and when we need dynamic dashboard

Thanks
Hi Team,

I have created a LWC component and want to link with quick Action. but QuickAction only support with AURA. so how to i link LWC.

Regards
Hi All,

I don't understand about ESB Integration in salesforce, can you  please explain about this

Thanks
Hi Team

I am not able to save below code:
@RestResource(urlMapping='/CreateCustomer/*')
global with sharing class CreateCustomerRestAPI {

    @HttpPost
    global static string doPost(){
        RestRequest  req     = RestContext.request;   
         String jsonInput  = req.requestBody.toString();


        AccountWrapper d = (AccountWrapper)JSON.deserialize(jsonInput, AccountWrapper.class);

    return null;

}   

    public class AccountWrapper{
    public String name; //AccountTest
    public cls_contact contact;
    public class cls_contact {
        public String firstName; 
        public String secondName;
    }
  }

}

Please suggest

 
Hi Team,

My test class is workig fine in send box 90% code, coverage but i deployed on production then this class fails. i am not getting what exact issue. 

Please help
Hi Team,

CAn you please give me some idea , why and when we need dynamic dashboard

Thanks
Hi Team,

I have created a LWC component and want to link with quick Action. but QuickAction only support with AURA. so how to i link LWC.

Regards
Hi All,

I don't understand about ESB Integration in salesforce, can you  please explain about this

Thanks
Hi Team

I am not able to save below code:
@RestResource(urlMapping='/CreateCustomer/*')
global with sharing class CreateCustomerRestAPI {

    @HttpPost
    global static string doPost(){
        RestRequest  req     = RestContext.request;   
         String jsonInput  = req.requestBody.toString();


        AccountWrapper d = (AccountWrapper)JSON.deserialize(jsonInput, AccountWrapper.class);

    return null;

}   

    public class AccountWrapper{
    public String name; //AccountTest
    public cls_contact contact;
    public class cls_contact {
        public String firstName; 
        public String secondName;
    }
  }

}

Please suggest

 
Hi Team,

My test class is workig fine in send box 90% code, coverage but i deployed on production then this class fails. i am not getting what exact issue. 

Please help