Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

how to read occurence of ldate in teven data dictionary table

furqanbaig_mirza
Participant
0 Kudos

i want to get the occurrence of the date in TEVEN table.

actually i am working on a report that deals with the clock in and clock out events of an employee.

so i want to check that if more than 1 record of in or out exist of a particular date this means that someone manually put that , and that's the task i want to sort out.

kindly help me..

Regards

Furqan

1 REPLY 1

marcin_cholewczuk
Active Contributor
0 Kudos

Hi,

I would divide it in 2 queries. One for clock in and one for clock out. First one would look like this


SELECT employee 
  FROM teven
  INTO TABLE lt_employee
  GROUP BY employee clock_in
  HAVING count(*) > 1.

Best regards

Marcin Choleczuk