Bulk Records
By using apex programming, we can insert one or more records
into the associated object, by iterating the code till the required number of
times by using any of the iterative statement.
Syntax:
For (<Initialization Part>;
<Conditions Part>; <Increment/Decrement Part>)
{
//Write the code to Insert Records.
}
0 Comments