function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Satish PrajapatSatish Prajapat 

Internal Salesforce Error for Big Object

Hello Experts,
I have big object, and I am inserting data from the batch class into big object. When I run test it give me error :
"Internal Salesforce Error: 1347441463-30 (-83575418) (-83575418)"
When I insert data from anonymous console than it inserted successfully, but test is failed.
So, how to deal with this problem.
 
Best Answer chosen by Satish Prajapat
Satish PrajapatSatish Prajapat
Hello All,
We can avoid this error but cant resolve.
procedure:
Write the code into if condition.
if( !Test.isRunningTest() )
{
         //Your Code
}

You can bypass the error appearing into the salesforce.

Thanks,
satish Kumar prajapat.

All Answers

Satish PrajapatSatish Prajapat
Hello All,
We can avoid this error but cant resolve.
procedure:
Write the code into if condition.
if( !Test.isRunningTest() )
{
         //Your Code
}

You can bypass the error appearing into the salesforce.

Thanks,
satish Kumar prajapat.
This was selected as the best answer
Vinit JoganiVinit Jogani
Hi Satish, I am facing the same error. I see your response above, do you have any document or blog supporting or explaining the issue / reason?