cancel
Showing results for 
Search instead for 
Did you mean: 

Send email afer "FI document posted" through PRRW

Former Member
0 Kudos

Experts:

I want to send out an Email to applicent afer "FI document posted" through Tcode:PRRW , Is there have any user exits or BTE I could use?

or some standard function provided by SAP?

The reason for send mail is just want to let user know we got the receipts(sometimes needs several days by express) and ready to deal with

Please advise!

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Easy way is to create Job on the posting run, schedule it everyday on a perticular time and step up e-mail notification to the client. can be achieved from SM37.

Regards,

Raziq

Answers (1)

Answers (1)

0 Kudos

One simple way to achieve this is to build it into your workflow step, as the event CREATED gets triggered every time you save the trip in status 'to be settled'. But also everytime the trip is saved, the event CHANGED is triggered. So, you need a workflow step 'Wait for event CHANGED' what is ending the old workflow instance, whereas the actual CREATED creates a new instance.

1. Events, which should be triggered in order to approve trip requests

(entered by transaction TRIP) or trip Plans in general. These events

are relevant for the manager responsible for the approving process.

The events are:

- 'PlanApproved'

- 'PlanCreated'

- 'PlanChanged'

- 'PlanCancelled'

2. Events, which should be triggered in order to approve trip payments.

These events are relevant for the travel expense department, which

has to release the payment process. The events are:

- 'Changed' (in the sense of Expense report changed)

- 'Requested'

- 'RequestApproved'

- 'Created'

- 'Approved'

- 'Cancelled'

- 'Deleted'

- 'RequestCreated'

- 'RequestWaits'

- 'ExpenseWaits'

- 'RequestSettled'

- 'RequestTransferredFI'

- 'ExpenseSettled'

- 'ExpenseTransferredFI'

(Documentation link)

http://help.sap.com/saphelp_470/helpdata/en/d5/202038541ec006e10000009b38f8cf/frameset.htm

So in this instance, whilst the standard template is delivered, you do need to configure an additional step in this case using "created" rather than "changed" to trigger the additional workflow needed in addition to the steps delivered inside the

workflow template.

Hope it would help!

Sally

Edited by: Sally Redmond on Mar 6, 2012 4:51 PM

Former Member
0 Kudos

Thanks for all replies!

I just want to know if there exists EXITS first,I found an Enhancement FITR0005 in SMOD,

Function module :EXIT_SAPMP56T_003,

But I'm not sure this will be triggered or not when "Post" pressed in Tcde:PRRW ,I don't have enough authority

to test this.