cancel
Showing results for 
Search instead for 
Did you mean: 

How to remove the entire data from custom BO created from SDK?

former_member230674
Contributor
0 Kudos

Hi Team,

I have created a custom BO from SDK and load data using XML data . I need to flush the existing data and need to load the new data every week.

Any idea on how to fulfill this requirement ?

Thanks,

Prasad GVK.

Accepted Solutions (0)

Answers (1)

Answers (1)

0 Kudos

Hi Prasad,

If you need an automatic way of flushing the existing, you can create a Mass Data Run that executes an action were you delete all instances from your BO. You can schedule the MDR to run every week on a specific hour.

For more information about how to create a MDR, you can check the official documentation for 1411 (link), page 433.

Best Regards,

Codruta


former_member230674
Contributor
0 Kudos

Hi Codruta Pascariu ,

Thanks for input. Using MDR process, i can delete BO instance by instance.Is there any property/option to delete all instances of BO.Please let me know if any such option is available.

Thanks,

Prasad GVK.

SvenFeurer
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hi Prasad,

Within the SDK I've often done it like this: right-click on the respective BO -> Clean -> Activate.

Regards,

Sven

0 Kudos

Hi Prasad,

If you need to do this only once, then you can use the cleaning option that Sven suggested, but if you need to flush the data weekly then you need the MDR and you can use the parallel processing which will make it faster.

Best Regards,

Codruta

former_member230674
Contributor
0 Kudos

Thanks for all of you for helpful replies.