• Anuj Thakur 4
  • NEWBIE
  • 50 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 16
    Questions
  • 12
    Replies
Hi Team,
User is not able to login to salesforce org. We have single sign on implemented. So first user has lost the access through SSO means user is not able to login through SSO. so as alternatively, user tried to login using "login.salesforce.com" url and user logged in successfully. 
but after some days, suddenly user is not able to login using  "login.salesforce.com" also. Now user cant login to org.
But other user from the same profiles are able to login to org. so we have checked profiles, permission etc but everything looks fine. We have checked the login history as well there we get "Your company's authentication service is currently down." error. could some one pls suggest what could be the issue.

Thanks,
Anuj
Hi Team,
I have  a custom field Contact_Self_relationship__c on contact object which is a self lookup to contact itslef.
I have 2 contacts Alen and Josh. In both contact, Contact_Self_relationship__c  field have value as Ana (which is also a contact). Means Ana is parent contact for both Alen and Josh.
Now I am tryning to fetch the Alen and Josh contact record based on the Ana. I tried parent to child and child to parent combinations but I am not getting the list of child contacts. can anyone help me here?
Hi,
1.we can create child record using process builder but is it possible to  create grand child record using process builder?
2. System.enqueueJob() is getting called from Batch class execute method and one more System.enqueueJob() is calling from trigger in same transaction then we get the error that multiple queueable not allowed in one transaction. But You can add up to 50 jobs to the queue with System.enqueueJob in a single transaction then why we get the error.
Any response is appriciated!!

Thanks,
Anuj

Thanks,
Anuj
Hi All,
1. we know that we can not call a future from a batch or from another future because both are asynchronous. But we can call a batch from another        batch even batchs also asynchronous. I googled it but did not get any proper answer. could you please suggest your views ont his.
2. we can call a batch from another batch only from start or finish method but not from execute method, why?
Any response would be appriciated.
Thanks,
Anuj
 
Hi All,
we are getting below error while data is coming from external system. Data is not updating properly in our salesforce system. we have checked all the code properly there is no change in code since a long time and we have checked all the aspects but no clue. finally we got the below error while debugging this issue.
System.DmlException: Update failed. First exception on row 0 with id 
 a1X0J00002FMwvFUAT; first error: FIELD_CUSTOM_VALIDATION_EXCEPTION, 
 This record was already anonymized in accordance to GDPR. 
 Fields that might hold personal data are no longer editable.: [] .
It seems some violation of GDPR. could someone help on this if faced that type of issues.
Any response would be highly appriciated.

Thanks,
Thakur
Hi All,

Need one quick help. is there any way to fetch the AsyncApex limits from org. As we know that we are having 250000 AsyncApex jobs limits for every 24 hour. after increasing it by salesforce can we verify that limit has been increased from 2.5 Lcs to some other number.
sop can we fetched that limits details by any way?
Any response will be appriciated.

Thanks,
Chanchal
Hi All,
I am trying to display the Account records on Visual Force Page where Phone and fax fields values are equal. 
I have written a Controller and design a VF page. But when I am clicking on "Display records" Button then I am getting below error.
Visualforce Error
System.NullPointerException: Attempt to de-reference a null object
Error is in expression '{!display}' in component <apex:commandButton> in page displayrecords: Class.DispalyMatchingRecords.display: line 9, column 1
Class.DispalyMatchingRecords.display: line 9, column 1
I tried to debug this, Actually while adding the value in "acc" list its throwing the error.
Could anyone help me out here. Actually I am not having much knowledge of VF pages so not sure where I am doing wrong.

VF Page:- 
<apex:page controller="DispalyMatchingRecords" >
    <apex:form>
    <apex:pageBlock>
        <apex:pageBlockTable value="{!acc}" var="a">
        <apex:column value= "{!a.Id}"/>
            <apex:column value= "{!a.Name}"/>
        </apex:pageBlockTable>
<apex:commandButton value="Display Records" action="{!display}"/>  
    </apex:pageBlock>
        </apex:form>
</apex:page>

Controller:-
public class DispalyMatchingRecords {

   public List<Account> acc {get;set;}
    public void display(){
        List<Account> ac =[Select Id, Name, Phone,Fax from Account];
        for(Account a: ac){
            if(a.Phone != null && a.Fax != null){
                if(a.Phone == a.Fax){
                    acc.add(a);
                }
            }
        }
    }
}
Hi,
I am uploading the bulk of Quote data using data loader. But while d ooing mapping I am not able to find the Account in mapping. when I have checked the Edit access on Account Name field on Quote its not there. and that Edit aceess is not enabled only. how to add the edit access for that.
Any suggestion would be appriciated. Please suggest this is urgent.

Thanks in Advance.
Regards,
Anuj
Hi
I have created a VF page. I am trying to create a new Account with the help of my VF page. its running successfully but not saving the data i salesforce.
after entering the values in input text box and saving, I checked but account is not created. 
caould someone help meon this. why Account is not created.   
This is my VF page:
<apex:page standardController="Account">
<apex:form >
Name: <apex:inputText value="{!account.Name}"/><br/>

Phone:<apex:inputText value="{!account.Phone}"/><br/>
<apex:commandButton value="Create New account" action="{!Save}"/>
</apex:form>

</apex:page>
Thanks,
Anuj      

Hi,
I am 2 question here Please provide your views  on below questions.
1.
we are invoking a method by Queueable Apex. but while executing this method, no debug statements are printing. Is there any feature of Queueable that if we  will execute any method from queueable, Debug statements can be printed or not as this is Asynchronous Apex?
2.

There is a variable called "VariableSetting". but its not defined anywhere in code. Also, its using in code like VariableSetting.SOMEVARIABLENAME which returns Boolean values. But if i am trying to print on "VariableSetting" it says error: "variable does not exist". Could someone suggest on this.

Any suggestion will be appriciated.