cancel
Showing results for 
Search instead for 
Did you mean: 

Notification mail in ess

Former Member
0 Kudos
71


Hi everyone ,

In my leave request for ess portal , nptification to hr manager is working fine in that i want to pass

1) type of leave

2) No of days leave taken

thanks in advance .

View Entire Topic
Former Member
0 Kudos

Hi Sandeep,

Standard Container REQ.ITEMS_TAB[1].ATTS holds all your data related to leave. It has got type of leave and no of hours also in it. Row 67th in ITEMS_TAB contains your leave type and row 5th row contains your number of hours.

For type of leave use below expression in binding:

&REQ.ITEMS_TAB[1].ATTS[67].VALUE&

For no of hours use below expression in binding:

&REQ.ITEMS_TAB[1].ATTS[5].VALUE&

Regards,

Ibrahim Ansari

Former Member
0 Kudos

Hi Ibrahim ,

I solved the issue  based on your explanation . thankyou very much .