Last change of Start Date

I am facing the following problem:
An employee was laid off on January 31, 2009 - he received his pension etc. In February 2009, he was appointed again in another Department but HR just transferred him. His last start date must be only February 1, 2009, but is August 1, 1991. How the most recent start date can be changed to 1 February 2009 because it has an impact on the price of long term etc.. The payroll cannot be rolled back since he already crossed to GL.

Thanks for your help
Roald

PS It's Oracle 11i

Published by: Roald on 15/09/2009 09:29

OK, I understand now. I guess that your start date of cycle of leave is determined in a fast formula. Could you adapt to this situation? If it is an isolated may enter in the FF, or if it's something that happens to a number of people then consider now a start date of the "alternative" leave in a table user or forces of de FACTO and that SEO in FF.

Concerning

Tim

Tags: Oracle Applications

Similar Questions

  • BlackBerry Z10 Z10 calendar Bug (closed schedule when you create a new appointment and try to change the start date/time)

    Hello

    Report a bug with my new Z10.  Fairly easy to reproduce:

    1. Go to "calendar".
    2. Click 'Add '.
    3. Click on the 'Starts' falling down
    4. Farm of "calendar".

    I tried to restart the phone, but same result.  This works if you change a date, but not to create a new appointment.

    Thank you

    Jamie

    This is a known problem and I hope it will be fixed in a future update.

  • Last DBMS_SCHEDULER job Start Date

    I have a job scheduled to run every 15 minutes using DBMS_SCHEDULER

    I used user_scheduler_jobs table to get last_start_date for my work, and it reflects the time where the work was last started.

    But, when I manually run the job using DBMS_SCHEDULER. RUN_JOB ('JOB_NAME'); the last_start_date still reflects the time when the work was performed automatically.

    It does not reflect the time where I run the job manually.

    I also observed that if the work is performed automatically at 10:00, the next_run_date in the "user_scheduler_jobs" table shows 10:15 even if I run the job manually at 10:10. (The next_run_date should not be 10:25)?

    Is there a way I can access the time at which the work was performed manually?

    Thank you.

    I think he can relate to the use_current_session parameter:

    DBMS_SCHEDULER. () RUN_JOB

    job_name IN VARCHAR2,

    use_current_session IN BOOLEAN DEFAULT true);

    This parameter specifies if the task must occur in the same session that was called from the procedure.

    When use_current_session is defined on TRUE :

    • run_count, last_start_date , last_run_duration , and failure_count are not updated.< is="" this="" what="" you="" are="">
  • view the log by using the time field a date of last year start date

    As the new year begins, I notice that if I try to do a 'show log beginning December 28 00:00:00 ' to get all the logs that surrounds an event of last week, I get no results. Most likely because the router's view I want newspapers beginning December 28, 2016, who has not yet arrived.  This command must be modified to use the * last * appearance of the starting date, not the date of beginning of this calendar year.

    This has been fixed in 5.2.3 and 5.3.0 increase CSCud91074

    Thank you

    Sam

  • Start date of change for the employee

    I have an employee whose departure date was entered incorrectly. The system will not start date change which indicates that allocation changes exist between the old and the new dates.

    This is what the data looks like:

    Employee has been shown as hired August 1, 2014.

    An assignment was made for 1 - August to August 2, 2014.

    A second tour there on 3 August 2014 and the end date is 31-Dec-4712

    The start date must be changed in August 16, 2014.

    Two assignments seem to be a data entry error.

    Is there a way to accomplish this change? Since the two assignments are in error, there is not need to exist.

    Any help is appreciated.

    Datetrack on August 1, 2014 and go to the screen for the assignment. Use the remove menu icon and a popup asking if you want to delete all future changes...

    Once you remove the future recordings, you will have a unique assignment record.

    Navigate to the file and replace the most recent start date August 16, 2014.

    Hope that helps.

  • Put the Date of last changed on PDF

    Is there a way to put the date of last change on a PDF using Javascript? I'm putting together a folder of maps in PDF format, and the only way I can think to do is to print each card with its file name and last modified date (so we can go back to the folder and delete the duplicates and the very old).

    Wonderful wire print with Document PDF file name has helped find me a way to put the file name and the current date in each pdf as a footer, but when I tried to modify the code to get the last update, I get an error.

    I have to admit that I am a newbie when it comes to Javascript, so any suggestions would be extremely useful.

    My code is as follows:

    // SetRemoveFooter 
    
    app.addSubMenu({ cName: "Footer",cUser: "Set/Remove Footer", cParent: "File", nPos: 20 }); 
    app.addMenuItem({ cName: "Set Date Time (Filename)", cParent: "Footer", cExec: "SetFooter(1)"}); 
    app.addMenuItem({ cName: " -> Set Date .... centered", cParent: "Footer", cExec: "SetFooter(2)"}); 
    app.addMenuItem({ cName: " -> Set Date .... right", cParent: "Footer", cExec: "SetFooter(3)"}); 
    app.addMenuItem({ cName: "Set Page ", cParent: "Footer", cExec: "SetFooter(4)"}); 
    app.addMenuItem({ cName: "Set Both", cParent: "Footer", cExec: "SetFooter(5)"}); 
    app.addMenuItem({ cName: "-------------------------------", cParent: "Footer",cExec: "{}"}); 
    app.addMenuItem({ cName: "Remove Both", cParent: "Footer", cExec: "RemoveFooter(5)"}); 
    app.addMenuItem({ cName: "Remove Date Time (Filename)", cParent: "Footer", cExec: "RemoveFooter(1)"}); 
    app.addMenuItem({ cName: "Remove Page", cParent: "Footer", cExec: "RemoveFooter(4)"}); 
    
    //Set/remove Footer 
    function SetFooter(ARG) 
    { 
    var FileNM = this.documentFileName
    
    var AcDate = document.lastModified
    var AcDateFormat = "yyyy/mmm/dd HH:MM" 
    
    var Box2Width = 50 
    for (var p = 0; p < this.numPages; p++) 
    { 
    var aRect = this.getPageBox("Crop",p); 
    var TotWidth = aRect[2] - aRect[0] 
    if (ARG<=3 || ARG==5) 
    {var fd = this.addField("xftDate", "text", p, [30,15, TotWidth-30-30,30]); 
    fd.value = util.printd(AcDateFormat, AcDate) + " (" + FileNM +")"; 
    fd.textSize=6; fd.readonly = true; 
    if (ARG==1){ fd.alignment="left" }; 
    if (ARG==2){ fd.alignment="center" }; 
    if (ARG==3){ fd.alignment="right" }; 
    } 
    
    if (ARG==4 || ARG==5) 
    {var bStart=(TotWidth/2)-(Box2Width/2) 
    var bEnd=((TotWidth/2)+(Box2Width/2)) 
    var fp = this.addField(String("xftPage"+p+1), "text", p, [bStart,30,bEnd,15]); 
    fp.value = "Page: " + String(p+1)+ "/" + this.numPages; 
    fp.textSize=6; fp.readonly = true; 
    fp.alignment="center"; 
    } 
    } } 
    
    
    function RemoveFooter(ARG) 
    { 
    if (ARG<=3 || ARG==5) {var x = this.removeField("xftDate");} 
    if (ARG==2 || ARG==5) {for (var p = 0; p < this.numPages; p++) 
    { 
    var x = this.removeField(String("xftPage"+p+1)); } 
    } }
    

    Everything worked perfectly until I added the line var AcDate = document.lastModified

    Is there a simple solution, or is it a much more complicated problem?

    Thank you!

    It failed because there is no such thing as document.lastModified

    Try this instead: this.info.ModDate

  • If you upgrade or change your plan, resets the start date?

    See the question above. I want to know if I upgrade/switch a plan, the start date of the subscription will be based on my initial contract or a new one?

    Not the start date is not reset. The payment date remains the same, the amount of charge are adjusted accordingly.

    Concerning

    Stéphane

  • In the last months, I started to receive messages pop up when editing pdf files. One is "cannot complete this action because the"filename. " PDF-Adobe Acrobat Pro"program is not responding. "Choose" switch to "and correct the problem. O

    In the last months, I started to receive messages pop up when editing pdf files. One is "cannot complete this action because the"filename. " PDF-Adobe Acrobat Pro"program is not responding. "Choose" switch to "and correct the problem. The other is "content preparation courses. "Please wait while the document is being prepared for" and displays a progress bar. One last question, I noticed it is adobe hangs quite frequently and shows "not responding". I had Adobe Acrobat X Pro for several years, and these have not always taken place only months. I ' n not Adobe expert so I don't know why this is happening. I checked the updates. Any advice on what is happening?

    Hi jeffm7844011,

    Could if it you please let me know the version of the OS on your system?

    Please let me know this happens to you with all the PDF files that you try to change or with specific PDF files?

    Please see this KB document: https://helpx.adobe.com/acrobat/kb/message-content-preparation-progress-opening.html and Windows resolve system errors, freezes | Adobe software .

    Also please try to repair the installation by navigating to the help > repair installation.

    Let me know if it helps.

    Concerning
    Sarojini

  • Query to get the last change in the particular column

    Hello

    [Update]
    I need help to find the last change to a particular to a table column.

    tell the table as
    t_address (phone_number, first_name, user_id, change_date)

    I need to find what was her last phone number change happened.
    Well, the date of change is updated for any changes in this table. I want to understand the change_date only when a particular field has changed (from the previous value). It seems a little complicated for me.

    t_address (phone_number, first_name, user_id, change_date)

    say for any change of phone_number, name it will be an entry in this table t_address. and change_date will be the inserted date.

    say

    USR_ID phone_number name change_date
    Hari 123 Henderson 12/12/2011
    Hari hari 123 12/11/2011
    Hari hari 345 12/10/2011

    now my requirement is to get 12/11/2011 as on that particular date, the phone number has changed from previous value.


    Please suggest.

    Published by: user7807429 on Sep 10, 2012 11:51

    Hello

    WITH t_address AS (
    SELECT 'hari' usr_id, 123 phone_number, 'harinath' first_name ,DATE '2011-12-12' change_date FROM dual UNION ALL
    SELECT 'hari' usr_id, 123 phone_number, 'hari' first_name ,DATE '2011-12-11' change_date FROM dual UNION ALL
    SELECT 'hari' usr_id, 345 phone_number, 'hari' first_name ,DATE '2011-12-10' change_date FROM dual
    )
    SELECT  usr_id
           ,phone_number
           ,prev_phone_number
           ,first_name
           ,change_date
    FROM    (
        -- Select only the rows where the phone number changed
        -- and max phone change date for each user
        SELECT  usr_id
               ,phone_number
               ,first_name
               ,change_date
               ,prev_phone_number
               ,MAX(change_date)
                OVER (PARTITION BY usr_id
                      ORDER BY change_date
                      RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING
                      ) max_change_date
        FROM    (
            -- Select the data together with the phone number of the previous row
            SELECT  usr_id
                   ,phone_number
                   ,first_name
                   ,change_date
                   ,LAG(phone_number)
                    OVER (PARTITION BY usr_id
                          ORDER BY change_date
                          ) prev_phone_number
            FROM    t_address
            )
        -- check for difference with decode because phone_number might be NULL
        WHERE   DECODE( prev_phone_number, phone_number, 1, 0 ) = 0
        )
    WHERE   change_date = max_change_date;
    
    USR_ID PHONE_NUMBER PREV_PHONE_NUMBER FIRST_NAME CHANGE_DATE
    ------ ------------ ----------------- ---------- -----------
    hari            123               345 hari       11.12.2011 
    

    You can include the current value if you join more intimate in the select t_user.

    Concerning
    Marcus

  • Access policy for the user whose status is "disabled until the start date.

    Hello

    By default political access does not work for the user whose start date is later in OIM 11 g. I have an access policy that the provisions of all users of Xellerate OID. This policy is not work for users who start date is later, i.e. status = disabled until the start date.

    No workaround to make the strategy work is much appreciated.



    Thank you
    GYAN

    up to 10g it work very well if you put provisining date as the current date. But, you cannot apply even in oim 11g

    Try below

    Add new udf to the user profile
    reconcile the start date in the new udf and leave the start of oim null date
    In this case the access policy will be triggers and you will be able to get an account created to the OID, and then set the start workflow OID IOM

    for reminder and all just to add trigger for the new udf and update on the changes.

    Note: In your case as OID in disable State it will cause no problem after the user status "disable up to that Start Date. If the resource object in activate State and change you the status to disable up to that starting date, it does not fire disable the user trigger.

    Kind regards
    Mireille nayan

  • Change the billing Date

    HI -.

    Good, bare with me, please.

    I started a student subscription cloud Sep 6 this year for $30 / month (one of the best thngs I ever made). I am charged me 6, that was wonderful, I am on a fixed income and get my check 3 and always had money in my account to pay you. Then in November, you had a special for students $ 20 / month, and I asked the forum if it would be possible to change my subscription to take advantage of the 30% discount you provided students and told me that Yes, that shouldn't be a problem. Well I don't have any set this November 30. My former student subscription, charged the 6, was 'downgraded' to a free trial and my new paid subscription began on June 30 with an invoice date of the 30th. Not good. Often, I have too much month left at the end of the money. All I want to do is spend my billing date of the 30th of the month to sometimes shortly after the 3rd of the month to ensure that you get paid before I spend the money on something stupid, like food or tuition. My old subscription $30 / mo was released by the 6th, but it was canceled, and now I'm stuck with June 30 as the date of billing. Is there a possible way to change the day of the month that I am charged? I'd even pay a 'fit' of the difference of the week (which, technically, I already paid for but, to save the $10 / month, I'd be willing to do). If you click on my credit card when there is no money in it, the taxes would negate the savings that I'm hoping to get my change my subscription.

    Thanks for your time-

    -Sharon

    Hello Sharon,

    It is not an easy way to change the billing date, it is generally associated with the day the ordering process. One way to change this (that I know) would be to contact the close customer service the date to which you wish to be billed and have them install a new order.

    -Dave

  • End date must CLEARLY not less than the start date, else it

    Hello

    I put DATE of BEGINNING of THE CONTRACT and END of CONTRACT fields on the form. These 2 objects (DateTime objjects), I pulled game tab of the palette and fell on my layout, fine design.

    Now, I try to put a validation than the end dat eshould not lower than the beginning, so I had a thread as below from Niall.

    http://forums.Adobe.com/message/1909551

    and I've done my coding FormCalc to the OUTPUT of the END DATE field as event title below,

    Please note that FormCalc
    End date must not less than the start date, else CLEAR-Begin

    var ACE
    var endDate

    As = xfa.resolveNode ("CUSTOMER..") RawValue Page31_Contracts.Con_Whole_Page.CON_Basic_Info.CON_START_DATE")
    endDate = xfa.resolveNode ("CUSTOMER. Page31_Contracts.Con_Whole_Page.CON_Basic_Info.CON_END_DATE") GLR awValue

    If (ACE > endDate) then
    xfa.host.messageBox ("end date is less than the departure date! End date is allowed")
    xfa.resolveNode (the "CUSTOMER". Page31_Contracts.Con_Whole_Page.CON_Basic_Info.CON_END_DATE") GLR awValue = null
    endif

    End date must not less than the start date, else CLEAR-end

    I tried to VALIDATE, calculate, change events of END DATE, but nothing works!

    Can pls. Let me Kow how I optimize my requirement? I'm anewbie,

    Thank you

    If you use the exit event, you will likely have the same code on the date fields beginning and end, because they have an addiction to each other. Maybe better try the validate end date event, so that if a field is changed the event is fired. You can try the following to validate the event

    // Pls. note this FormCalc
    // End date should not less than Start date, else CLEAR it - Begin
    
    var stDate
    var endDate
    
    stDate = CON_START_DATE.rawValue
    endDate = $.rawValue
    
    if ( HasValue(endDate) ) then
        if (stDate > endDate) then
            xfa.host.messageBox("End date is lower than Start date! End date is cleared")
            $.rawValue = null
        endif
    endif
    1
    // End date should not less than Start date, else CLEAR it - End
    
  • Change the start page.

    Hello community!

    My first question should be why Robohelp makes life so frustrating complicatingly!  Gaaaaah!  Seriously, no other program development is so illogical or restrictive. Good thing, I'm only using the trial because I'm having a hard time building a desire to use it, especially when Madcap flare is so much easier to use.  Maybe someone can help me with this!

    Pass and take the Parameters of Webhelp, found only in the menu file to Generatepoint.  I want to change the location of start page for my webhelp project ("OH!").

    So there, in the general tab, under output and beginning of the page, the field to set which page to show when loading the webhelp project. So I change the html file, click on save, press Generate and viola! -no change!  No change using any other page no more and even placement of the page html in the first spot... No.

    He couldn't be as simple it could it?

    If anyone have idea how really change the start page of a file from Webhelp?

    Welcome to our community

    Weird, a lot of people find RoboHelp actually simpler to use and understand than the Flare.

    First, we will ensure you are not to be confused with the default theme, the start page. I assume you are using RoboHelp HTML 9 here.

    When you examine the properties of single Source available, you can configure the name of the start page.

    The start page of WebHelp is usually named Index.htm and is where you point users to open the WebHelp. This page defines a cascade of events in motion. It divides the browser in different areas where each area charge a different content to the main toolbar, Navigation bar and so on. The last action is to load the default theme in the topic pane. What you describe suggests that you want to change the default theme.

    To change the default theme, expand Content Categories , and then select the default category. Then, click the choose... button and propose a new topic to become the default.

    See if that helps things of the kind... Rick

    Useful and practical links

    Wish to RoboHelp form/Bug report form

    Begin to learn RoboHelp HTML 7, 8 or 9 in the day!

    Adobe Certified RoboHelp HTML Training

    SorcerStone blog

    RoboHelp EBooks

  • How to change the default date format in guests

    Hello
    I have two guests start date, end date. I get these using the results of Sql as 02/01/2009.I need to change the format for the type char... because over one is the DATE data type. I tried with
    to_char(start_date,'DD-mon-YYYY') of results sql but its not give good results!

    My results are like like that on February 1, 2009. How can I do this using Sql result in guests himself.

    Thank you
    Ravi

    Hello Nico,

    Thanks... that is exactly, what I'm talking about...

  • Use the project start Date and duration to calculate the end Date of project

    I'm trying to calculate the end date of the project in a report using the project end Date and time entered on the opportunity.
    For example, if the start date of the project filled an opportunity is 31/01/2009 and the length (integer) is entered on the opportunity is 5, the project end date is in the report must be 30/06/2009.

    I'm trying to TIMESTAMPADD forumaul allows you to add the duration (number of months) to the project start date
    This Fx works TIMESTAMPADD (SQL_TSI_MONTH, 12, '-used Custom Attributes ".) DATE_40)
    But if I try to replace the number twelve by the length (integer field) I get an error when you try to save: TIMESTAMPADD (SQL_TSI_MONTH, "-opportunity Custom Metrics".) S_INT_0, '-used custom attributes. DATE_40)

    Any ideas on how I can get this to work would be greatly appreciated.

    Hi, try this. It might solve your prioblem TIMESTAMPADD (SQL_TSI_MONTH, CAST (YOUR FIELD AS INTEGER), account. (' "Last modified")

    -John CRMIT

Maybe you are looking for

  • Failed to load profile of Netflix on ATV?

    I have a third gen Apple TV, my Netflix account is owned by one of my roommates and has three profiles. That work very well with the exception of mine. For some reason, whenever my account is disconnected on my TV, tries to load it is unsuccessful. I

  • Why Firefox doesn't create so many temporary files in the cache? Once it filled all space (46GB)?

    Every now and then, Firefox will have created zillions of directories and the files cached in the directory for a Firefox profile. The directories are called 0 (zero) and F (using the hexagonal as numbers names, i.e.g), and within each of them will b

  • Built-in microphone does not record

    I have a Toshiba laptop with a built-in webcam and microphone.  For some reason, the microphone has stopped working - I can not record sound or having people hear me on Skype - if it says that it works correctly when I open Control Panel is. What sho

  • Full partition system

    Windows 7 Home Premium, Service Pack 1 Intel Core 2 Duo E6850 @ 3.0 GHz CPU RAM installed 8.0 64 bit My operating system is installed in a 138 GB partition on a drive of 1 t. The rest of the disk is allocated as working space. I have also two 500 GB

  • Windows 8 does not work on my netbook. screen resolution is too small.

    Windows 8 does not work on my netbook. screen resolution is too small. Miicrosoft does not refund my purchase.