cancel
Showing results for 
Search instead for 
Did you mean: 

Buttons in My Inbox FIORI App

former_member383720
Participant
0 Kudos

Hello Experts,

Can you provide explanation of functionality of following Buttons in My inbox FIORI App -

1) Claim

2) Release

3) Forward

4) Suspend

Accepted Solutions (1)

Accepted Solutions (1)

Jocelyn_Dart
Product and Topic Expert
Product and Topic Expert

Hi Ankit/Mohamed, these are standard Business Workflow features as follows:

CLAIM = reserve a task/work item to your user id so that you can work on it. Mostly used when tasks are sent to multiple people at the same time.

RELEASE = unreserve, i.e. opposite of claim

FORWARD is self-explanatory - forward to someone else (this new person also needs to have authority to action the task)

SUSPEND is also known as Resubmission - you can hide a task from your list for a time. Personally as a workflow expert I don't like this option (people struggle to find the task again) and generally turn it off.

former_member383720
Participant
0 Kudos

Thanks Jocelyn for your reply.

former_member633000
Discoverer
0 Kudos

jocelyn.dart Is there a way to hide the SUSPEND button on my inbox app?

Answers (3)

Answers (3)

former_member246326
Discoverer
0 Kudos

You can use standard BADI WF_TASK_SUPPORT (Enhancement Spot-WF_INBOX_TASK_SUPPORTS) implementation to hide My Inbox Buttons...you have to implement method IF_WF_TASK_SUPPORT~GET_MULTIPLE_TASK_SUPPORT.

Sample one

LOOP AT ch_tasks_supports ASSIGNING FIELD-SYMBOL(<fs_task_supports>)
WHERE task = 'TS90000090' OR
task = 'TS90000091' OR
task = 'TS90000092'.

<fs_task_supports>-forward = abap_false.
<fs_task_supports>-claim = abap_false.
<fs_task_supports>-uiexecutionlink = abap_false.
<fs_task_supports>-resubmit = abap_false. "Suspend
<fs_task_supports>-processinglogs = abap_false.
<fs_task_supports>-workflowlog = abap_false.
<fs_task_supports>-release = abap_false.

ENDLOOP.

former_member47944
Participant
0 Kudos

Dear Jocelyn Dart ,
Thank You very much for your appropriate reply.

Best Regards.

former_member47944
Participant
0 Kudos

Dear Ankit Garg,
Have you found any answer ?