cancel
Showing results for 
Search instead for 
Did you mean: 

How to delete data of Query

Former Member
0 Kudos

Dear everyone

Cloud you tell me Whether data of Query can be delete?

I use "delete()" instance to deleted data of myself BO.

But Query's data was not be deleted.

Query have 3 record.BO have 1 record.

Circumstances:

I created a MDR (delete data of myself BO, extract data from standard BO, create data in myself BO).

More records each time I run MDR, so I worry about limitations due to execution response delay and data capacity increase.

Thank you.

Best Regards

Mu Zhou

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Charm M

Thanks for the advice so much.

I'm sorry I reply late.

I tried it. Now I can delete.

Thanks and Best Regards,

Mu Zhou

former_member275924
Active Participant
0 Kudos

Hi Mu Zhou ,

I think your process of MDR was

1. Delete the data from your custom BO.

2. And then extract the data from standard BO and create the data in your custom BO.

Did you want to delete all data from your custom BO?

In your action that create MDR , you should check Mass Enable .

If you had been checked Mass Enable , loop this and then delete .

foreach(var item in this){

item.delete();

}

Best Regards,

Charm M