Employee attendance system

hello all,
what are the requirements for creating a employee attendance tracking system
what are all the tables colums i want to create for the same

HI user13792460
FOR DATA BASE Side u can use intially
--======================
  FOR DATA BASE
--===========
CREATE TABLE DEPT
( DEPTNO NUMBER(3),
DNAME VARCHAR2(35) NOT NULL ,
LOC VARCHAR2(17),
CONSTRAINT PK_DEPT PRIMARY KEY ( DEPTNO ) );
--==================================
CREATE TABLE EMP
( EMPNO NUMBER(5) ,
ENAME VARCHAR2(39)NOT NULL,
JOB VARCHAR2(9),
DEPTNO NUMBER(3),
CONSTRAINT PK_EMP PRIMARY KEY ( EMPNO ) ,
CONSTRAINT FK_DEPT FOREIGN KEY ( DEPTNO )   
REFERENCES DEPT( DEPTNO )
--=================================
CREATE TABLE EMP_ATTENDANCE
( ATTEND_ID NUMBER(5) ,
ATT_DATE DATE,
TIME_IN  DATE,
TIME_OUT  DATE,
ATTENDANCE_FLAG  CHAR(1),
PERMISSION_FLAG  CHAR(1),
MISSION_FLAG     CHAR(1),
HOLIDAY_FLAG      CHAR(1),
EMPNO NUMBER(5) ,
DEPTNO NUMBER(3),
CONSTRAINT PK_ATTEND_ID PRIMARY KEY ( ATTEND_ID) ,
CONSTRAINT FK_EMP_ATTEND FOREIGN KEY ( EMPNO )   
REFERENCES EMP( EMPNO ),
CONSTRAINT FK_DEPT_ATTEND FOREIGN KEY ( DEPTNO )   
REFERENCES DEPT( DEPTNO )
--==================================Viewing Information about constraints
To see information about constraints, you can query the following data dictionary tables.
--==================================
SELECT * FROM  user_constraints;
SELECT * FROM  user_cons_columns;
--==================================
Hope this helps u...
Regards,
Abdetu...

Similar Messages

  • Attendance system

    Hi Friends,
    I am practicing apex (im just a beginner) :)
    I am making an attendace system.
    Say I have a page with botton (in) and (out)
    Each employee will be given a userid in apex and the sytem will capture the userid and sysdate and the
    time in/out button.
    My question is, how do I construct my table? to have a good data design.
    Is it this one:
    Emp_Attendance1
    userid varchar2(30)
    in       date
    out    dateor this one:
    Emp_Attendace2
    userid varchar2(30)
    login_type number(1)  value 1 or 2  => as (in out)
    timestamp dateOr is there a pre-created sample apps for employee attendance system available here?
    Or can you share me your design too :D
    Thanks a lot

    Hi,
    If you want to track everytime the user logs in,you can use the table
    Attendance
    Username varchar2(50)
    login_time date
    and
    select distinct trunc(login_time) from attendance where username = lower(:app_user)
    will allow the user to see his attendance.
    Thanks,
    Anandi.

  • Employee Attendance log in system

    Hello all,
    1. how to design employee attendance log in system using oracle forms and have to create reports for the same.?
    2. how to create tables for employee attendance log in system ?

    1. how to design employee attendance log in system using oracle forms and have to create reports for the same.?use any editor you know how to use,
    2. how to create tables for employee attendance log in system ?CREATE TABLE .....

  • FM or Tcode for No.of days employee attended Training in HR ABAP

    Hi Experts,
    I need to calculate No.of Days employee attended training in given payroll period level.
    For ex, iam giving 01.2010 FY (Payroll Period 21.04.2010 to 20.05.2010) .
    Need to find out how many days each employee under traning during this period.
    In PA30 we can see his status (pa00001-stat1 = '2') but i need to calculate how many days he is under traning .
    In PA30, we can see the status changed from Training to Shopfloor or something, Since he is active his end date is 31.12.9999.
    Could  you please tell me where can we see traning information in System (tcode or table or Std program).
    Regards
    SK

    Hello
    You can see the training attended by an employee in the tcode PSV1 and PSV2. If you have LSO implemented in the system, then it will be LSO_PSV1 and LSO_PSV2.
    Regards
    Ranganath

  • Need a function to calculate employee attendance data for a given period

    need a function to calculate employee attendance data for a given period
    as
    Working days,
    CL ,
    SL,
    PL,
    LWP
    regards,
    Gaurav Sood.

    Issue resolved

  • Employee Attendance Related

    Hi
    I have two forms to mark employee attendance daily and employee Leave.Which employees are present marking attendance P into emp_attendance table.
    i have to keep record of the absent teacher who didn't inform and emplyee which are on leave.Which employees are on leave a remainder should be generated during the attendance time these employes are on leave from date till to date.who didn't inform there attendance mark as a casual leave automatically in attedance table..
    my leave type are
    P--Present
    CL---Casual Leave
    SL--Sick Leave
    PL---Planned Leave.
    i am defining below two tables which i made to mark employee attendance and employee leave.if u want suggest me some more field please suggest me.
    table1-EMP_ATTENDANCE
    EMP_ID
    ATTENDANCE_DATE
    ATTENDANCE_STATUS
    ARIVAL_TIME
    DEPARTURE TIME
    TABLE2-EMP_LEAVE
    Emp_ID
    LEAVE_TYPE
    START_DATE
    END_DATE
    Thanks
    Nisha.
    Edited by: Nisha Rani on Sep 6, 2009 11:29 PM

    Sure looks like school work to me so I'd suggest you put some more effort into this yourself.
    But one question does intrigue me based on what you provided ... what is an attendance status and, relationally speaking, how do these two tables relate? What prevents a person from being present while also on vacation?

  • IDOC  type related to Payroll and Employees Attendance and Absence

    Hi  Evrybody,
    Right now im working on ALE INBOUND Interface, which relates to transfer of data.
    I'm searching for an Basic IDOC  type related to Payroll and Employees Attendance and Absence,
    If any pointers would be much helpful.
    Thanks n Regards.
    [email protected]

    Solved myself.

  • Third Party Attendance System Integration with Oracle Payroll

    Hi,
    How to integrate Third Party Attendance System like Bio-Metric System with Oracle Payroll. Please help me in this regard.
    Thanks in Advance,

    user644268,
    Depends on your exact requirements whether this attendance system is for the absense capture or work time logging. You need to be specific when putting up a scenario.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                               

  • Object: employee attendance maintainance

    Hi all,
       I am a fresher in ABAP and i am trying to work on employee attendance management for a company.
    i have one employee master, a department master, attendance transaction table. I have few doubts regarding the screen to update employees and screeen to maintain attendance and leave status .
    1. How do i validate the employeee date of birth?
    2. How do i get the total no. of working hours with entry time and exit time?
    3. How do i create a nuber range using SNRO and how do i get it to my program.
    Please if anybody have time answer it i am struggling a lot
    Thnaks in advance.
    Regrads

    hi check this..
    1. How do i validate the employeee date of birth?
    do like this..
    data: v_gbdat like pa0002-gbdat .
    select gbdat from pa0002 into v_gbdat
                      where pernr in s_pernr.
    2. How do i get the total no. of working hours with entry time and exit time?
    go to the table pa0007 ....check the fields...
    MOSTD
    WOSTD
    ARBST
    go to PA2012 for the time record..
    regards,
    venkat

  • CAN I USE JAVA CARD TECHNOLOGY TO BUILD BIOMETRIC COLLEGE ATTENDANCE SYSTEM

    HELLO everybody,
    I am new in Java card technology.Please any one can guide me.Can i use Java Card Technology to build biometrics college attendance system.If i can so which device should i need to buy or eBooks..
    PLEASE I NEED HELP..
    Thanks for your time ..
    I am looking forward to hearing from everyone..
    Thanks
    Durjan Hussain
    SCJP1.4,SCWCD

    Thanks AlexRashevsky for your good comments,
    I want to build Student Biometrics Attendance system.I want to use biometrics reader.Please i need guide for which biometrics device can i use to build the system.If you can give me your contact number that could be great with country code.Because i am doing this Project for my M.Sc dissertation and also for real client.
    I am looking forward to hear from you.
    Thanks.

  • How to display Employee Attendance Data in Crosstab Format?

    Hi all,
    I have the data in sql server 2005 like below, which saves the employee in date and in time and entry type 
    How can i create a cross tab query for the above records in sql server 2005. and i need the record in the below format:
    where 1, 2, 3 are indate days, and below is intime, out time and the difference of hours per employee...
    How can i achieve it as i have to make report for it... need sql query or stored procedure for the format required.
    Thanks in adv.

    One could argue that the crosstab is best produced in the presentation layer and that SQL Server should only return the raw data. But if you like to hurt yourself...
    First you need an unpivoting query to put starttime, endtime and length in a single row. Since all columns in a row needs to have the same data type, this requires some care.
    We take this CTE:
    WITH CTE AS (
      SELECT t.EmpID, u.n, datepart(day, t.starttime) AS day
             substring(convert(char(23),
                CASE u.n WHEN 1 THEN t.starttime
                         WHEN 2 THEN t.endtime
                         WHEN 3 THEN dateadd(ss, datediff(ss, t.starttime, t.endtime), '19000101')
                END, 108), 11, 5)
      FROM   tbl
      CROSS  JOIN (SELECT n = 1 UNION ALL SELECT 2 UNION ALL SELECT 3)
      WHERE  t.starttime >= @month + '01'
        AND  t.starttime <  dateadd(month, 1, @month + '01')
    I assume here that @month is on the form YYYYMM.
    Before I go on, I like to point out that something you need to consider is what output you want if there are multiple entries the same day. And even worse, what output do you want if the intervals are overlapping? To keep this post down in complexity, I
    will ignore this situation, but I like to stress that unless you have the appropriate triggers and constraints in place, you will have that sort of data in a real production scenarion. Bad data knows how to creep in.
    With the CTE above, we can now pivot the data per day. It is kind of boring to write:
    SELECT EmpID,
           MIN (CASE day WHEN 1 THEN data END) AS [1],
           MIN (CASE day WHEN 2 THEN data END) AS [2],
           MIN (CASE day WHEN 31 THEN data END) AS [31]
    FROM   CTE
    GROUP  BY EmpID, n
    ORDER  BY EmpID, n
    Note: all code here is untested. If you want a tested solution, you need to supply the CREATE TABLE statements for your table and sample data as INSERT statements.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Employee attendance query

    I Have 3 tables
    dbo.Emp_setting
    name data type allownulls
    Empset_id int Unchecked
    personal_id int Unchecked
    DesignationID int Checked
    DivisionID int Checked
    Emp_status char(1) Checked
    Emp_TypeId int Checked
    Dept_Id int Checked
    Group_Id int Checked
    NDIVGRP_CODE bigint Checked
    dbo.tempDeviceLogs
    name datatype allow nulls
    LogsID int Unchecked
    Device_Person_id int Unchecked
    Device_id int Unchecked
    logDateTime datetime Unchecked
    logVerifyMode nchar(10) Unchecked
    workCodeID int Unchecked
    Machin_install_id int Unchecked
    data_loaded_dt datetime Checked
    Inout int Checked
    dbo.persons_profile
    [pesonal_id]
    ,[Emp_Code]
    ,[Title]
    ,[First_name]
    ,[Middle_name]
    ,[last_name]
    ,[Father_Husband_Name]
    ,[Dob]
    ,[Age]
    ,[gender]
    ,[Marital_status]
    ,[Nationality]
    ,[bloodGroup]
    ,[perAddress]
    ,[PerStreet]
    ,[PerLocation]
    ,[PerCity]
    ,[PerPincode]
    ,[CorAddress]
    ,[CorStreet]
    ,[CorLocation]
    ,[CorCity]
    ,[CorPincode]
    ,[LandlinePhone]
    ,[cellNo]
    ,[EmailId]
    ,[NosofDependendants]
    ,[Dependendants_details]
    ,[Emergency_FirstName]
    ,[Emergency_Middle_name]
    ,[Emergency_Last_name]
    ,[Emergency_WithRelation]
    ,[Emergency_PhoneNo]
    ,[Emergency_CellNo]
    ,[Emergency_emailId]
    ,[Office_PF_ac_no]
    ,[ESI_ac_no]
    ,[JoinedDate]
    ,[Photofile]
    ,[ReportTo]
    ,[Brief_Notes]
    ,[dateofTermination]
    ,[termination_note]
    ,[Print_Priority]
    ,[DeviceEmployeeID]
    ,[LogsPermitted]
    ,[Machin_install_id]
    ,[Designation]
    ,[Dept]
    ,[Section]
    ,[Groups]
    ,[EmpWorkingTypeT]
    Expected output 
    employeename device_person_id designation emptype Date status
    STATUS is emp_status whether employee is present or absent for a specific day

    in output if we enter todays date then it should show employee details with whether he is present for entered date or not.
    in tempdevicelogs DEVICE_PERSON_ID and in Emp_setting PERSON_ID columns are equal
    SELECT b.Device_Person_ID, a.Personal_id, Date1,
    CASE WHEN b.Device_Person_id IS NOT NULL THEN 'A' ELSE 'P' END as Emp_Status
    FROM Emp_setting a
    LEFT OUTER JOIN (SELECT device_person_id, MAX(logDateTime) AS Date1 FROM tempDeviceLogs GROUP BY device_person_id) b
    ON a.personal_id = b.device_person_id
    with this code am getting output as
    Device_Person_ID Personal_id Date1 Emp_Status
    879 879 2014-05-23 13:06:23.000 A
    92 92 2014-05-23 00:00:00.000 A
    501 501 2014-05-23 00:00:00.000 A
    971 971 2014-05-23 00:00:00.000 A
    384 384 2014-05-23 09:11:54.000 A
    802 802 2014-05-23 00:00:00.000 A
    407 407 2014-05-23 14:52:13.000 A
    762 762 2014-05-23 13:46:20.000 A
    616 616 2014-05-24 00:00:00.000 A
    487 487 2014-05-23 08:27:10.000 A
    109 109 2014-05-23 00:00:00.000 A
    650 650 2014-05-24 00:00:00.000 A
    773 773 2014-05-23 06:03:40.000 A
    556 556 2014-05-24 00:00:00.000 A
    630 630 2014-05-23 00:00:00.000 A
    530 530 2014-05-23 14:51:01.000 A
    301 301 2014-05-24 00:00:00.000 A
    387 387 2014-05-23 05:12:03.000 A
    550 550 2014-05-23 00:00:00.000 A
    942 942 2014-05-23 00:00:00.000 A
    985 985 2014-05-23 00:00:00.000 A
    95 95 2014-05-24 00:00:00.000 A
    521 521 2014-05-23 00:00:00.000 A
    782 782 2014-05-24 00:00:00.000 A
    264 264 2014-05-23 09:02:32.000 A
    951 951 2014-05-23 08:41:22.000 A
    172 172 2014-05-23 00:00:00.000 A
    527 527 2014-05-24 00:00:00.000 A
    229 229 2014-05-23 14:10:37.000 A
    364 364 2014-05-24 00:00:00.000 A
    1005 1005 2014-05-24 00:00:00.000 A
    26 26 2014-05-23 00:00:00.000 A
    533 533 2014-05-24 00:00:00.000 A
    86 86 2014-05-23 00:00:00.000 A
    553 553 2014-05-24 00:00:00.000 A
    63 63 2014-05-24 00:00:00.000 A
    292 292 2014-05-23 09:30:36.000 A
    633 633 2014-05-24 00:00:00.000 A
    639 639 2014-05-24 00:00:00.000 A
    854 854 2014-05-23 00:00:00.000 A
    213 213 2014-05-23 00:00:00.000 A
    499 499 2014-05-23 09:18:33.000 A
    994 994 2014-05-23 00:00:00.000 A
    307 307 2014-05-23 09:21:13.000 A
    267 267 2014-05-24 00:00:00.000 A
    1006 1006 2014-05-23 08:40:14.000 A
    127 127 2014-05-23 00:00:00.000 A
    814 814 2014-05-23 00:00:00.000 A
    370 370 2014-05-23 00:00:00.000 A
    107 107 2014-05-23 00:00:00.000 A
    914 914 2014-05-23 00:00:00.000 A
    130 130 2014-05-23 00:00:00.000 A
    797 797 2014-05-23 00:00:00.000 A
    728 728 2014-05-24 00:00:00.000 A
    883 883 2014-05-23 00:00:00.000 A
    7 7 2014-05-23 00:00:00.000 A
    585 585 2014-05-23 00:00:00.000 A
    691 691 2014-05-23 00:00:00.000 A
    442 442 2014-05-23 08:12:05.000 A
    834 834 2014-05-23 00:00:00.000 A
    840 840 2014-05-23 00:00:00.000 A
    24 24 2014-05-23 00:00:00.000 A
    688 688 2014-05-23 00:00:00.000 A
    711 711 2014-05-23 00:00:00.000 A
    141 141 2014-05-24 00:00:00.000 A
    757 757 2014-05-24 00:00:00.000 A
    525 525 2014-05-23 00:00:00.000 A
    974 974 2014-05-23 00:00:00.000 A
    279 279 2014-05-23 00:00:00.000 A
    671 671 2014-05-23 08:52:21.000 A
    270 270 2014-05-23 00:00:00.000 A
    857 857 2014-05-23 14:28:11.000 A
    84 84 2014-05-23 14:00:09.000 A
    153 153 2014-05-24 00:00:00.000 A
    227 227 2014-05-23 08:29:05.000 A
    559 559 2014-05-24 00:00:00.000 A
    674 674 2014-05-24 00:00:00.000 A
    508 508 2014-05-23 08:35:42.000 A
    61 61 2014-05-23 00:00:00.000 A
    482 482 2014-05-23 00:00:00.000 A
    651 651 2014-05-23 00:00:00.000 A
    800 800 2014-05-23 00:00:00.000 A
    90 90 2014-05-23 00:00:00.000 A
    290 290 2014-05-24 00:00:00.000 A
    253 253 2014-05-23 09:29:58.000 A
    339 339 2014-05-24 00:00:00.000 A
    104 104 2014-05-24 00:00:00.000 A
    119 119 2014-05-23 00:00:00.000 A
    142 142 2014-05-24 00:00:00.000 A
    875 875 2014-05-23 09:04:53.000 A
    65 65 2014-05-24 00:00:00.000 A
    720 720 2014-05-23 00:00:00.000 A
    620 620 2014-05-24 00:00:00.000 A
    858 858 2014-05-23 00:00:00.000 A
    271 271 2014-05-23 13:31:56.000 A
    812 812 2014-05-23 08:31:14.000 A
    105 105 2014-05-23 00:00:00.000 A
    228 228 2014-05-23 00:00:00.000 A
    136 136 2014-05-23 00:00:00.000 A
    540 540 2014-05-23 00:00:00.000 A
    42 42 2014-05-24 00:00:00.000 A
    5 5 2014-05-23 14:14:00.000 A
    640 640 2014-05-23 00:00:00.000 A
    689 689 2014-05-23 00:00:00.000 A
    594 594 2014-05-24 00:00:00.000 A
    500 500 2014-05-23 00:00:00.000 A
    523 523 2014-05-23 08:04:59.000 A
    1041 1041 2014-05-23 09:04:58.000 A
    1024 1024 2014-05-23 08:18:28.000 A
    139 139 2014-05-23 00:00:00.000 A
    803 803 2014-05-23 00:00:00.000 A
    623 623 2014-05-24 00:00:00.000 A
    669 669 2014-05-23 07:50:35.000 A
    128 128 2014-05-23 08:27:59.000 A
    122 122 2014-05-23 00:00:00.000 A
    866 866 2014-05-23 00:00:00.000 A
    59 59 2014-05-23 00:00:00.000 A
    772 772 2014-05-24 00:00:00.000 A
    723 723 2014-05-23 00:00:00.000 A
    108 108 2014-05-23 00:00:00.000 A
    251 251 2014-05-23 14:00:23.000 A
    531 531 2014-05-24 00:00:00.000 A
    749 749 2014-05-23 00:00:00.000 A
    743 743 2014-05-24 00:00:00.000 A
    537 537 2014-05-23 00:00:00.000 A
    145 145 2014-05-23 00:00:00.000 A
    835 835 2014-05-23 00:00:00.000 A
    71 71 2014-05-23 00:00:00.000 A
    263 263 2014-05-23 08:40:24.000 A
    117 117 2014-05-23 00:00:00.000 A
    549 549 2014-05-24 00:00:00.000 A
    526 526 2014-05-23 00:00:00.000 A
    873 873 2014-05-24 00:00:00.000 A
    77 77 2014-05-24 00:00:00.000 A
    409 409 2014-05-24 00:00:00.000 A
    280 280 2014-05-23 06:51:33.000 A
    956 956 2014-05-23 00:00:00.000 A
    217 217 2014-05-24 00:00:00.000 A
    223 223 2014-05-23 00:00:00.000 A
    518 518 2014-05-24 00:00:00.000 A
    123 123 2014-05-23 08:26:14.000 A
    558 558 2014-05-24 00:00:00.000 A
    83 83 2014-05-23 05:41:26.000 A
    581 581 2014-05-23 00:00:00.000 A
    177 177 2014-05-23 08:22:48.000 A
    652 652 2014-05-24 00:00:00.000 A
    352 352 2014-05-23 08:57:45.000 A
    91 91 2014-05-24 00:00:00.000 A
    538 538 2014-05-24 00:00:00.000 A
    495 495 2014-05-23 08:26:38.000 A
    838 838 2014-05-24 00:00:00.000 A
    947 947 2014-05-23 09:13:06.000 A
    114 114 2014-05-23 00:00:00.000 A
    20 20 2014-05-23 14:05:07.000 A
    953 953 2014-05-24 00:00:00.000 A
    841 841 2014-05-23 00:00:00.000 A
    57 57 2014-05-23 00:00:00.000 A
    798 798 2014-05-23 00:00:00.000 A
    157 157 2014-05-23 00:00:00.000 A
    578 578 2014-05-23 00:00:00.000 A
    137 137 2014-05-23 00:00:00.000 A
    790 790 2014-05-23 00:00:00.000 A
    8 8 2014-05-23 00:00:00.000 A
    598 598 2014-05-24 00:00:00.000 A
    1039 1039 2014-05-23 00:00:00.000 A
    151 151 2014-05-23 00:00:00.000 A
    194 194 2014-05-23 09:11:33.000 A
    541 541 2014-05-23 08:06:59.000 A
    NULL 261 NULL P
    NULL 593 NULL P
    NULL 925 NULL P

  • How to get employee attendance based on device login

    i am having two tables by name tempdevicelogs and emp_settings. In tempdevicelogs "logdatetime" is a coloumn and
    in emp_setting  "emp_status" is another column.
    if any employee logs in then emp_status should show present else absent.
    emp_status is char type.
    can anyone help me out to get the results.
    Thank you

    These two tables are related with device_person_id(dbo.tempDeviceLogs) and personal_id(dbo.Emp_setting) 
    this is  dbo.tempDeviceLogs
    logid device_    device_id logdatetime             logverify work       machin_install data_loaded_dt      inout
    person_id                                  mode     codeid     id
    1 2955
    1 2014-01-02 06:30:37.000
    10         0
    1 2014-01-06 00:00:00.000
    0
    2 3167
    1 2014-01-02 06:30:41.000
    10         0
    1 2014-01-06 00:00:00.000
    0
    3 3349
    1 2014-01-02 06:30:49.000
    10         0
    1 2014-01-06 00:00:00.000
    0
    dbo.Emp_setting
    Empset_id  personal_id designation_id division_id  emp_status emp_type_id dept_id 
    1                  1                 63                      3              
       y                   2                4                          
    2                  2                  230                    3                
    y                   2                 26                        
    3                  3                 173                     3                 y  
                    2                  10                        
    19.             987      
    20               988

  • Emp Attendance system - Forms

    Hello all,
    In the Oracle form I want to display the following.
    Employee's total log in time every single seconds dynamically for the day
    just like a time watch.

    Hi,
    This Question Should be raised in a separate forum. This Forum is meant for PL/SQL.
    Try this question here
    Forms

  • Terminated employees and system-wide "clean up"

    We have, unfortunately, a pretty high turnover rate in our purchasing department and we use the Oracle Purchasing module. We have over 14,000 purchasable items and around 3,000 on average assigned to each buyer that we have. When someone takes their place we have to reassign every item to the new buyer using a keystroke simulator which is a REAL pain in the back side.
    The first question is does something exist to do this for us?
    The second question is much more broad with relation to turnover and terminations. There are obviously some requests scheduled to run every day, every week, etc by many users. When other users are expecting to get this output and the submitting user has been terminated the job obviously doesn't run. The same kind of scenario exists for workflows that require approvals. If the user is terminated and has outstanding workflows to approve we're in trouble.
    Is there a massive report of some kind to give information on these kind of things? Scheduled jobs, workflows of which the user is a "member", all things that need to be examined when a user is terminated?
    A tall order, I know, but we find problems all the time related to terminated users. It's very difficult to review and better yet avoid.
    Perhaps there is just a business process that some of you use to avoid this. Any suggestions? We have started scheduling SOME jobs under a generic operations user but not all have been migrated.
    Thanks in advance!

    You're going to need to be more specific, as I'm not quite sure I understand what you're talking about.
    If you're referring to copying from an external hard drive or flash drive, and you want to actually move files rather than copy them, you can hold down the option key to force it to do a "move" rather than a "copy." This is not new behavior, though... the Mac OS has worked this way as long as I can recall (and I've been using it since 1984).
    If you're having a problem with trying to move files from one place to another on a single drive causing them to be copied instead, that is likely because of some permissions issue preventing you from actually being able to move them.

Maybe you are looking for

  • I just synced my iPhone 3GS and lost songs..they don't show in my itunes account either and I downloaded them from ITunes to the Phone

    I have a 16 GB 3GS ATT iPhone and just finished syncing and updating software to 4.3.5, BUT songs that I had on my iPhone do not show in to my iTunes account AND have disappeared on my iPhone. Where are they and how do I get them back???? I think I c

  • Request Number issue with KEA0

    We are facing  a challenge in translation for COPA values.There is a Tcode KEA0 where COPA values are maintained.We have done the translation( Chinese Language)  and when we save, it was not asking for a transport request. Please let me know how do w

  • Preferences do not apply...

    Hi, Most or all of my rules aren't working. I.E. - My mail server flags the subject of Spam email as [*junk*]. When I tell Mail to move any email where the subject contain the phrase [*junk*] to my spam filter, it doesn't. Same applies to half a doze

  • Freeze frame question

    I have a sequence that includes several freeze frames created with the Shift-N command. These freeze frames are used to stop the action of a football play to spotlight a player and then continue the play. Works great except the freeze frame is not ve

  • Asking to verify billing information but I just purchased the plan last month

    I got an email saying my account was about to expire and then when I open up photoshop or anything else from creative cloud another window opens saying they're having trouble verifying my billing information and or I'm offline. I just bought the stud