Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

FDM Delete Service Insights

Avatar

Level 7

Folks, 

I see this question was already answered in this thread. But just need some more details on how simply this can be done.

I have a form with some fields and a button (which actually performs remove operation). So on click of this button, I want equivalent record to be deleted in the Database too.

I already written a servlet, which actually does delete operation for the input provided. But I don't know how to use this servlet in Form. I know how to retrieve data from DB, display as JSON in servlet and use that in the Form Fields, but the other way around is I am a bit not clear.

Please help with your inputs.

 

Regards,

Sri Bhargav

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Employee Advisor

@Ssb_94 I don't think fdm does delete. You can write a restful service for delete and call that instead.

View solution in original post

3 Replies

Avatar

Level 7

Folks,

So somehow we were able to write a RESTful service which actually performs task of deleting records from DB for the given inputs.

When I tested the operation (DELETE query), it was successful, but still I am able to see record in DB.

Any idea what might have went wrong? Or if any additional work needs to be done in order to implement it?

Regards,

Avatar

Correct answer by
Employee Advisor

@Ssb_94 I don't think fdm does delete. You can write a restful service for delete and call that instead.

Avatar

Level 7

Thanks @Mayank_Gandhi,

Yeah we will proceed with writing a custom service and then invoke it probably from Rule Editor.