Custom Fast formula for Time Entry Rule in OTL

Hi,
i have created custom validation for time entry rules. I need to validate where Project and task fields are null or not? If Yes, it has to fire the custom message that i have mentioned in function. Please check the below code and help me whether i am on right path:
CREATE OR REPLACE FUNCTION NON_pto_against_projects (
p_time_category_id NUMBER,
p_person_id NUMBER
RETURN VARCHAR2
IS
--Variables used for retrieving timecard id and ovn
l_db_pre_period_start DATE;
l_db_pre_period_stop DATE;
l_time_building_block_id hxc_time_building_blocks.time_building_block_id%TYPE;
l_object_version_number hxc_time_building_blocks.object_version_number%TYPE;
--Variables used for loading timecard tables
l_time_building_blocks hxc_self_service_time_deposit.timecard_info;
l_time_app_attributes hxc_self_service_time_deposit.app_attributes_info;
l_attributes hxc_self_service_time_deposit.building_block_attribute_info;
--Variables used for getting exploded time details
v_blocks_tab hxc_block_table_type;
v_attr_tab hxc_attribute_table_type;
l_messages_tab hxc_message_table_type;
l_detail_blocks hxc_self_service_time_deposit.timecard_info;
l_detail_messages hxc_self_service_time_deposit.message_table;
CURSOR csr_category_elements (p_category_id NUMBER)
IS
SELECT 'ELEMENT - ' || TO_CHAR (value_id) element_type_string
FROM hxc_time_category_comps_v
WHERE time_category_id = p_category_id;
l_cat_elements_string VARCHAR2 (2000);
l_temp VARCHAR2 (1000); --Trace message
l_success_flag CHAR (1); --Return values
BEGIN
--Initialize variables
l_success_flag := 'S';
l_time_building_blocks := hxc_self_service_time_deposit.get_building_blocks;
l_attributes := hxc_self_service_time_deposit.get_block_attributes;
v_blocks_tab :=
hxc_deposit_wrapper_utilities.blocks_to_array (l_time_building_blocks);
v_attr_tab :=
hxc_deposit_wrapper_utilities.attributes_to_array (l_attributes);
IF v_blocks_tab.FIRST IS NOT NULL
THEN
Take each ELEMENT type attribute, and search whether PROJECTS type attribute exists for the SAME BLOCK-START
FOR index1 IN v_attr_tab.FIRST .. v_attr_tab.LAST
LOOP
IF v_attr_tab (index1).attribute_category = 'ELEMENT - %'
THEN --Element attr
FOR element_rec IN csr_category_elements (p_time_category_id)
LOOP
If Element Attribute matches any of the NON-TOP elements in the Time Category-START
IF v_attr_tab (index1).attribute_category =
element_rec.element_type_string
THEN
Check PROJECTS Attributes project and task belonging to ELEMENT attribute's owner block-START
l_success_flag := 'E';
FOR index2 IN v_attr_tab.FIRST .. v_attr_tab.LAST
LOOP
IF v_attr_tab (index2).attribute_category LIKE
'PROJECT - %'
AND v_attr_tab (index2).building_block_id =
v_attr_tab (index1).building_block_id
AND v_attr_tab (index2).attribute1 IS NOT NULL
AND v_attr_tab (index2).attribute2 IS NOT NULL
THEN
l_success_flag := 'S';
EXIT;
END IF;
END LOOP;
IF l_success_flag = 'E'
THEN
RETURN 'E';
END IF;
Check PROJECTS Attributes project and task belonging to ELEMENT attribute's owner block-END
END IF;
If Element Attribute matches any of the NON-TOP elements in the Time Category-END
END LOOP;
END IF; --Element attr
END LOOP;
Take each ELEMENT type attribute, and search whether PROJECTS type attribute exists for the SAME BLOCK-END
END IF;
RETURN l_success_flag;
EXCEPTION
WHEN OTHERS
THEN
RAISE;
END NON_pto_against_projects;

INPUTS ARE resource_id (number)
, submission_date (text)these inputs are passed in PLSQL Code and some of them in formula context
2. While we define a new context for a time entry rule. How is the data that we enter in the time entry rule passed to the fast formula?See the time Rule entry screen and you will find the parameters window there.

Similar Messages

  • OTL Custom Formula not visible in Time Entry Rule window

    Hi Friends,
    I have created a custom Fast Formula of type 'OTL Time Entry Rules'. Created a context with segments for the OTL Formulas Flex Field with formula name same as of the context. But the formula is not visible in the in the time entry rule window.
    Can any one please suggest what is the reason for this?
    Many many thanks in advance.

    Hi,
    Check whether you have given the description for your custom Fast formula while defining the FF in the Write Formula screen.
    Coz, In the Time Entry rules window you will see the description of the fast formula .
    Though the description iss not a mandatory field while defining the FF in the Write Formula screen the time entry rule will take only the description of the FF instead of the FF Name.
    Get beack to me if you need further info.
    Thanks,
    Anuradha

  • How a time entry rules based on mapping works?

    Thanks a lot in advance for your help. I need to understand a seeded time entry rule Overlapping Time Entries. it looks like this:
    Name: Overlapping Time Entries
    Description: Seeded Overlapping Time Entries
    Usage: Submission / Resubmission / Delete
    Formula: NA
    Mapping: OTL Deposit Process Mapping
    I have done several time entry rule based on fast formula, but I don't understand this one that based on Mapping, could someone help me understand how it works?
    Thanks!
    -Bill

    Hello All,
    We are also having a Similar Issue , where Employees can enter work Hours on Holidays also.
    Eg:
    Sunday
    Regular: 08:00 to 10:00
    2hrs
    Holiday: 08:00 to 17:00
    8hrs
    Total 10 Hrs
    Iam getting the Overlapping Error when trying to save/continue.
    Can anyone Please help on this ?
    Hi Bill,
    were u able to resolve the issue.
    thanks,
    Rams
    Apps Consultant

  • Urgent:Time Entry Rule Creating Issue on Hitting Back Button

    Hello,
    We have created a Time Entry Rule to see if one of the Field either a Department or Project on the TimeCard is entered. The validation works fine for the first time when hitting the continue button.
    However on hitting the back button the validation fires again although department is there. Here is the snippet of the code.
    Can somebody please tell me what is the additional check that i need to perform so as to ensure that it doesnt fir again on hitting the back button.
    i NUMBER := 0;
    j NUMBER := 0;
    l_status NUMBER := 0;
    tc_blocks                Hxc_Self_Service_Time_Deposit.timecard_info;
    tc_attribs                Hxc_Self_Service_Time_Deposit.building_block_attribute_info;
    pragma autonomous_transaction;
    BEGIN
    tc_blocks := Hxc_Self_Service_Time_Deposit.get_building_blocks;
    tc_attribs := Hxc_Self_Service_Time_Deposit.get_block_attributes;
    hr_utility.set_location ('Prior Loop',1);
    i := tc_blocks.FIRST;
    --hr_utility.trace_on(null,'ORACLE');
    hr_utility.set_location ('Entering ff_formulas_pkg.OGER_CHK_TIMECARD_FIELDS', 1);
    WHILE i IS NOT NULL
    LOOP
    IF(tc_blocks(i).scope = 'TIMECARD') THEN
    j:=tc_attribs.FIRST;
    WHILE j IS NOT NULL
    LOOP
    BEGIN
    INSERT INTO LOG VALUES(UPPER(tc_attribs(j).attribute_category)||' '||tc_attribs(j).attribute6);
    commit;
    IF (UPPER(tc_attribs(j).attribute_category) = 'ELEMENT - 176' and (tc_attribs(j).attribute6 IS NOT NULL OR tc_attribs(j).ATTRIBUTE3 IS NOT NULL)) THEN
    l_status := 1;
    EXIT;
    END IF;
    END;
    j:=tc_attribs.NEXT(j);
    END LOOP;
    END IF;
    i:=tc_blocks.NEXT(i);
    END LOOP;
    RETURN l_status;
    Regards,
    Gayatri

    Hello Tim,
    Thanks for the response. The TER is set to Submission/Resubmission.
    Can you please suggest me if this is correct? Also could you pls take a look at the code pasted above and let me know if that is correct.
    Regards,
    Gayatri

  • Authorization for Time Entry on Cost Center Level

    Hi Experts,
    Would like to know, if we can do authorisation for time entry on the base of cost center. For example, an employee worked for 8 hrs and out of that 2 hrs worked for different cost center. That 2 hrs should be approve by Manager of that cost center and 6 hrs from his current cost center.
    I thought of Structural Authorisation but not sure how it will work. I would appreciate prompt response on the same.
    Thanks,
    Aashish

    I was pointing out [the rules|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement] about requesting "promptness" from what is a voluntary effort here to help each other and help those who first try to help themselves (keyword: "search").
    Actually, I noticed that you had cross-posted this thread to the HCM forum. Normally, we move threads to other forums which are more appropriate, and often lock cross-posting. This is one of those grey areas between technical and functional, so I turned a blind eye on it.
    I am hoping that there will be a functionality to mirror good questions to other related forums without having to cross-post. This would be very usefull for sure but the question would have to be good and the person who asked it would have to have a good track record of respecting [the rules|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement]. Most likely moderators would be the only ones to "mirror" good questions, unless they contain words such as "urgent" or "ASAP" or "prompt" or "points will be rewarded", etc...
    Cheers,
    Julius

  • Otl time entry rule

    how can i remove validation(time entry rules)?
    thanks

    The time entry rules for your user are defined by the preferences.
    These can be attached at a number of different levels.
    Kind regards,
    Andrew

  • Need to develop a Mobile Application for Time Entry

    Hi,
    I need to develop a Mobile App for Time Entry details which can used as an Applicaion on Android or iOS.
    Can anyone help me with the approach i need to follow to develop such an application which can be used on Android or other OS.
    Thanks,
    CV

    Hi CV,
    Oracle Application Development Framework Mobile (ADF Mobile) browser is a standards-based framework that enables the rapid development of enterprise mobile applications. Oracle Fusion Middleware 11g release 1 of ADF Mobile browser extends Oracle ADF to browsers running on mobile devices. Because ADF Mobile browser is built upon the component model of Java Server Faces (JSF), you can quickly develop applications for mobile browsers. ADF Mobile browser's mobile-specific extensions to JSF enable you to develop mobile applications using the same methodologies for developing JSF applications for the desktop.
    http://docs.oracle.com/cd/E17904_01/web.1111/e10140/pda_ovrv.htm#ADFMB101
    Cheers,
    Vlad
    Give points - it is good etiquette to reward an answerer points (5 - helpful; 10 - correct) for their post if they answer your question. If you think this is helpful, please consider giving points

  • CAT2 for Time Entry (single and multiple)

    Hello all,
    We have been using CATW for time entry and CAT2 for multiple time entry and have security set up accordingly. We're thinking of moving to CAT2 for all time entry but need to make sure we can configure to allow single time entry for those reporting only their own time, and multiple time entry for those reporting their own as well as others. I think this may be doable between a combination of security and IMG/Data Entry profile work. Does anyone have any experience using CAT2 in this way?
    Thanks,
    Doug

    First create a  data entry profile/CVR through SPRO for a time sheet,
    Then assign this profile to a user through user parameter CVR (Cats Variant for Recording) in the table USR05.
    This CVR is used in CAT2 to access the time sheet corresponding to the profile assigned to the user.
    Thanks
    Mahi

  • User exist to create custom error messge for service entry sheet

    Hi,
    Can any body tell me any user exist to create custom error messge for service entry sheet?
    Thanks,

    Hi
    Can you please elaborate on the business scenario??
    You may look at EXIT_SAPLMLSR_020 or EXIT_SAPLMLSR_021 for this purpose.
    Regards
    Prasad

  • Error in Fast Formula for Supplemental Earnings Elements

    Hi,
    I have an requirement in Supplement Earning Elements for US Localization. I need to define some Supplement Earning Elements that should comes in Payroll with the extension of existing Elements.
    Here are the Steps for setups which i have done so far-
    Step 1:Created new Elements with their values with effective dates for existing user Table name
    Step 2:Done the setup for New Elements with classification as Supplemental and Category also attached the formula like "FLAT AMOUNT" formula for Calculation rule in Element Earning screen.
    Step 3: when i tried to query for the element i have created, the value in Calculation Field is "Elementname_FLAT_AMOUNT_RWSI" which is not same for the existing elements.Existing Element which is of same classification and same category the Calculation rule field is "ElementName_FLAT_AMOUNT".
    Step 4: After that i did setup for Element Description and Element Link.
    Step 5: Then i have copied the Formula from Existing element(which is previously configured and working fine for the existing elements ), made the modifications for the newly created element. When Compiling the formula ,i am getting an Error "Incorrect Data type"
    I have two queries -
    1- The setup in Earnings Screen with Calculation Rule is correct or not. As the Calculation Field for newly elements and the existing elements are different (as mentioned in Step 3).
    2- Compilation Error "Incorrect Data Types" in Fast Formula.(as mentioned in Step 5).
    I m pasting the Fast Formula code here for ready reference
    Default for TERMINATED_EMPLOYEE      is 'N'
    Default for RUN_TYPE               is 'R'
    Default for FINAL_PAY_PROCESSED      is 'N'
    default for PAYROLL_TERMINATION_TYPE is 'L'
    default for BG_TERMINATION_TYPE is 'L'
    default FOR LAST_STANDARD_PROCESS_DATE_PROCESSED IS 'N'
    DEFAULT FOR ELEMENT_NAME_NEG_EARNINGS_ASG_GRE_ITD     IS 0
    DEFAULT FOR ELEMENT_NAME_ADDITIONAL_ASG_GRE_ITD     IS 0
    DEFAULT FOR ELEMENT_NAME_REPLACEMENT_ASG_GRE_ITD     IS 0
    DEFAULT FOR ELEMENT_NAME_ASG_GRE_YTD IS 0
    DEFAULT FOR ELEMENT_NAME_ASG_GRE_RUN IS 0
    Default for PAY_EARNED_START_DATE is '02-JAN-0001' (DATE)
    Default for PAY_EARNED_END_DATE is '02-JAN-0001' (DATE)
    Default for ASG_NUMBER is ' '
    Default for ELEMENT_NAME_ASG_GRE_FYTD IS '0'
    Default for CURRENT_ELEMENT_TYPE_ID is 0
    Default for GROUP_KF_PAY_FREQUENCY is '0'
    DEFAULT FOR Amount IS 0
    INPUTS ARE Amount
    IF ELEMENT_NAME_REPLACEMENT_ASG_GRE_ITD WAS DEFAULTED OR ELEMENT_NAME_REPLACEMENT_ASG_GRE_ITD = 0 THEN
    pay_frequency = GROUP_KF_PAY_FREQUENCY
    ELEMENT_TYPE_ID_PASSED = CURRENT_ELEMENT_TYPE_ID
    annual_rate = HCS_GET_SUPPLEMENT_RATE(ELEMENT_TYPE_ID_PASSED, PAY_EARNED_END_DATE, 'General Rate')
    annual_bal = ELEMENT_NAME_ASG_GRE_FYTD
    IF annual_bal = annual_rate THEN
    Amount = 0.00
    mesg = 'Contract amount '||TO_CHAR(annual_rate)||' fully paid for '||ASG_NUMBER
    ELSE
    Amount = annual_rate / TO_NUMBER(pay_frequency)
    If abs(annual_bal+amount-annual_rate) < 1 then
    Amount = annual_rate-annual_bal
    IF ELEMENT_NAME_ASG_GRE_RUN=0 THEN
    flat_amount = Amount
    + ELEMENT_NAME_ADDITIONAL_ASG_GRE_ITD
    + ELEMENT_NAME_NEG_EARNINGS_ASG_GRE_ITD
    ELSE
    ( flat_amount = Amount )
    ELSE
    (flat_amount = ELEMENT_NAME_REPLACEMENT_ASG_GRE_ITD + ELEMENT_NAME_ADDITIONAL_ASG_GRE_ITD
    + ELEMENT_NAME_NEG_EARNINGS_ASG_GRE_ITD
    clear_repl_amt = -1 * ELEMENT_NAME_REPLACEMENT_ASG_GRE_ITD
    IF ELEMENT_NAME_ASG_GRE_RUN = 0 THEN
    IF ELEMENT_NAME_ADDITIONAL_ASG_GRE_ITD <> 0 THEN
    clear_addl_amt = -1 * ELEMENT_NAME_ADDITIONAL_ASG_GRE_ITD
    IF flat_amount < 0 THEN
    (IF (PAYROLL_TERMINATION_TYPE WAS DEFAULTED AND
    BG_TERMINATION_TYPE = 'A' AND
    TERMINATED_EMPLOYEE = 'Y' AND
    FINAL_PAY_PROCESSED = 'N') OR
    (PAYROLL_TERMINATION_TYPE = 'A' AND
    TERMINATED_EMPLOYEE = 'Y' AND
    FINAL_PAY_PROCESSED = 'N') OR
    (PAYROLL_TERMINATION_TYPE WAS DEFAULTED AND
    BG_TERMINATION_TYPE = 'L' AND
    TERMINATED_EMPLOYEE = 'Y' AND
    LAST_STANDARD_PROCESS_DATE_PROCESSED = 'N') OR
    (PAYROLL_TERMINATION_TYPE = 'L' And
    TERMINATED_EMPLOYEE = 'Y' AND
    LAST_STANDARD_PROCESS_DATE_PROCESSED = 'N') THEN
    neg_earn = -1 * ELEMENT_NAME_NEG_EARNINGS_ASG_GRE_ITD
    ELSEHuman Resource Management (HRMS)
    (neg_earn = flat_amount - ELEMENT_NAME_NEG_EARNINGS_ASG_GRE_ITD
    flat_amount = 0
    ELSE
    (IF ELEMENT_NAME_NEG_EARNINGS_ASG_GRE_ITD <> 0 THEN
    neg_earn = -1 * ELEMENT_NAME_NEG_EARNINGS_ASG_GRE_ITD
    IF (PAYROLL_TERMINATION_TYPE WAS DEFAULTED AND
    BG_TERMINATION_TYPE = 'A' AND
    TERMINATED_EMPLOYEE = 'Y' AND FINAL_PAY_PROCESSED = 'N') OR
    ( PAYROLL_TERMINATION_TYPE = 'A' AND
    TERMINATED_EMPLOYEE = 'Y' AND FINAL_PAY_PROCESSED = 'N') OR
    (PAYROLL_TERMINATION_TYPE WAS DEFAULTED AND
    BG_TERMINATION_TYPE = 'A' AND
    TERMINATED_EMPLOYEE = 'Y' AND FINAL_PAY_PROCESSED = 'Y'
    AND RUN_TYPE != 'R') OR
    ( PAYROLL_TERMINATION_TYPE = 'A' AND
    TERMINATED_EMPLOYEE = 'Y' AND FINAL_PAY_PROCESSED = 'Y' AND
    RUN_TYPE != 'R') THEN
    (STOP_ENTRY = 'Y'
    mesg = ' ELEMENT_NAME earning has been stopped for this assignment.'
    ln_calc_meth = SET_ALTRNT_FLAT_RATE_CALC_METH('NOT_APPLICABLE','NOT_APPLICABLE')
    if (1 = 1) then (
         soe_run = ELEMENT_NAME_ASG_GRE_RUN
         soe_ytd = ELEMENT_NAME_ASG_GRE_YTD
    RETURN flat_amount, clear_addl_amt, clear_repl_amt, neg_earn, STOP_ENTRY, mesg
    Can anyone help me in solving this problem. Any kind of pointers would be helpful.
    Thanks
    Pradeep.

    Hi Pradeep,
    Hope you created the new element using the 'Earnings Template' form. If it is created using the 'Earnings Template' form then the calculation rule
    should be correct. You said you are modifying the new element formula by using the existing element formula code, have you checked if the
    formula code to the old and new once have changed anything other than the element name and standard input elements reference. Try to use
    the debug messages in formula and see if that give you any clue. You should find the document in metalink how to debug a formula.
    Thanks,
    Satin

  • OTL: Time Entry Rules

    Hello ,
    Iam working on a requirement, in OTL time card entry from the oracle self service page.
    If Employees work on Holidays then they are allowed to enter work Hours .
    Eg:
    Mon, 25 dec
    Regular: start 08:00
    stop 12:00
    hrs 04
    Holiday: start 08:00
    stop 17:00
    Hrs 8
    Iam getting the Overlapping Error as 'This time overlaps another entry.' when trying to save the timecard.
    Is there any way, I can override this Error.
    Can anyone Please help on this ?
    thanks,
    Babu

    Ramesh,
    OTL doesn't allow the over lapping entries, its one of the basic validations. But at the same time you can define OTL rules to configure this requirement which will automatically generate the holiday premium hours as per your requirement. There are many scenarios which you can configure to define the calculation of premium hours worked on holidays.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Formula for Net Entry Rate

    Dear SDN's,
    In my Net Entry Report i need to create a formula based on
    No. of emp. recruited u2013 Number of emp. Leaving divided by total HC (EOP)
    I want to make sure, the total HC will be the of the end of the previous month (e.g. - if the report is for April, so the total HC will be for the last day of March)
    Could you please send the suitable formula for the same ?
    Thanks and Kind Regards,
    Lakshman Kumar G

    In CMOD, you need to create Project Z***.
    I am sure sombody must have created before and the INCLUDE must be available for you to add code.
    WHEN 'ZVARIABLE'.
        IF i_step EQ 2.                              "Only post-input screen
          cal_mon  = sy-datum+4(2).
          cal_mon_yr = sy-datum+0(4).
          IF cal_mon = '01'.
            prev_mon = '12'.
            prev_mon_yr = cal_mon_yr - yr_minus.
          ELSE.
            prev_mon = cal_mon - mon_minus.
            prev_mon_yr = cal_mon_yr.
          ENDIF.
          w_e_t_range-sign = 'I'.
          w_e_t_range-opt  = 'EQ'.
          CONCATENATE prev_mon_yr prev_mon INTO w_e_t_range-low.
    Add the value range to the table
          APPEND w_e_t_range TO e_t_range.
        ENDIF.
    This code considers the year as well.  Improvise the code according to your requirement.
    Thanks.

  • Formula for Time going past midnight in Designer

    Hi
    I am having somewhat of a hard time finding a good formula to use in Livecycle Designer for working out hours that go past midnight.
    I have a timesheet which is great for anyone working during daytime hours but if i want to use it for someone who does nightwork it keeps returning a negative value.
    I have two datetime fields for start(FldStart) and finish(FldEnd).
    Problem occurs when i have 22:30 for start and 02:30 for end.
    I already have a calc to convert them to decimal in the Hours worked field so i'm in a bind here???????????
    My time format is HH:MM.
    HELP!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

    Hi Geo,
    Firstly thankyou for your reply.
    I am new to this and i am self taught when it comes to things IT so please excuse me if i get a little confused. When you mention that i have to include the date for start and end time do you mean i have to have the code something like this:
    FldHrsWorked.rawValue = ((Time2Num(FldEnd.formattedValue, "date{DD-MM-YY} time{HH:MM}") - Time2Num(FldStart.formattedValue, "date{DD-MM-YY} time{HH:MM}")) / (60 * 60 * 1000)) - FldLessBreaks
    I have put that code in to see if it worked but alas, nothing happens in my FldHrsWorked field now.
    I was reading in excel that if you put the formula =A2+(A1>A2)-A1 it will Subtract Times That Span Past Midnight Into a New Day but i can't figure how to add that in my original code.
    I really don't want to have the guys put in date and time for both fields as, well, put simply the whinging from them will do my head in!!!!!!
    Yours or others response would be a great help for me.
    PS: I think the Time2Num might be the cause here with the new code that i tried.

  • External hard drive doesn't wake up fast enough for Time Machine

    I am having trouble with using SuperDuper and Time Machine doing their jobs with my external firewire drives.
    Config: One 750GB drive (one partition called DataDisk) and one 1TB drive (with two partitiions - Clone and TMDisk) connected thru daisychained firewire to the mac mini.
    *Backup Strategy*: SuperDuper clones the internal hard drive to the Clone partition once a week. The Time Machine is setup to backup the DataDisk to the TMDisk.
    Usage: My Mac mini is essentially a media server with iTunes always running. Per advice on another thread, I have the mini's power saving setup to let the hard drives go to sleep when possible.
    Problem: Once the external drives have gone to sleep, and the SuperDuper tries to do the cloning, it fails. Similarly, the TM fails to find the backup drive. However, if I keep the drive active at the time of these backups, both SD and TM work fine.
    Is there a way for me to wake up the drives before SD starts its cloning? Note: I am not letting the mini go to sleep as I use Apple TV to play its contents remotely.
    Also, is there a way to wake up the drive before TM starts its operation every hour?
    Appreciate any help.
    Message was edited by: new2appletv

    Hi Andy,
    Thank you very much for your suggestions.
    I will try to test with USB connection. I will try with the 1TB drive first as the 750GB drive needs work. The 750GB drive needs the firewire interface card to be replaced by the USB card whereas the 1TB has both available together.
    I am not terribly in favour of keeping everything ON for the following reasons:
    1. The mini or the drives make a whirring noise all the time that they are ON. One of the reasons, I retired my windows PC is that it is inside a computer armoire in my bedroom and even then the noise from the SMPS and CPU fans drive me crazy.
    2. The TM starts a backup cycle every hour even when there is nothing to backup and this causes clicking noise from the drives. If I could configure TM to run only once a day so that I can get the rollback uption (which SD can't) when I accidentally delete some data file. But, I am told that TM can't be configured thus.
    3. Power consumption: I have a power meter that plugs into the AC outlet into which I can connect the devices under measurement. I will find out how much power it really consumes. I had purchased this device to measure the power consumption of the pump/filter in my Koi pond as that runs 24/7 and I don't like drawing too much of electricity as it is a scarce resource today (the electricity cost is also very high in Northern California).
    I am just wondering if I should buy one of those RF remotes that you connect to USB port which can operate from upto a distance of 60ft. I could keep this next to my Apple TV remote and use it to wake up the mac mini before using my Apple TV. I only hope that the mac mini wakes up on this type of remote as well.

  • Fast Formulas for deduction elements

    in the formulas generated for deduction elements, some of them have "Take_Overlimit_AT" while some do not. what is this value related to, and by selecting which option in the definition of the deduction is it generated?

    Input values are generally depend on what kind of deduction you have. on element description form you can check the tax cat for each deduction. these will effect what are the defaulted input values.
    hope it helps
    Ankur

Maybe you are looking for