cancel
Showing results for 
Search instead for 
Did you mean: 

Removing collision error from ESS and Delimiting of records in R/3

Former Member
0 Kudos

Dear All,

One of our clients requirement is that "the attendance recording system posts Unauthorized leave which is loss of pay for employees whose attendance details' are not captured for a given day. Then the employee regularizes it with respective leave".

So in R/3 it allowing overlap the existing leave and it is also delimiting or replacing the record. but in ESS portal it is going collison error, and now allowing to apply leave for the same date.

Regards

Ragini Dsouza

Accepted Solutions (1)

Accepted Solutions (1)

wp1
Explorer
0 Kudos

Hi,

That's hard coded.

The ESS is using the same framework like PTMW which doesn't support that.

Here is the coding doing that:
Include LHRTIM00_TMW_COLLISIONF02

*Kollisionen mit Reaktionskennzeichen 'E' oder 'A' setzen den RETCD auf
*E, solche mit Reak-Kennz. 'W' auf W.
*Das Reaktionskennzeichen 'X' aus IT2010 führt zu einer Meldung vom Typ
*'E'.

case reaction-reac.
when 'W'.
retcd = cl_pt_tmw_tdm_const=>retcd_w.
when 'E'.
retcd = cl_pt_tmw_tdm_const=>retcd_e.
when 'A'.
retcd = cl_pt_tmw_tdm_const=>retcd_e.
when others.
message x013.
endcase.

Answers (0)