Default time period

It appears that the default "time period" whenever a new event is made is 1 hour. I would prefer 15 or 30 minutes, I can change to this manually , however I wish to make it my default. Any help please.
thank you,
John

Hi Francois,
Yes it is definitely possible to change the time-period as per your choice. However, the format (HH:MM:SS) must be followed.
In order to change the default time period, you need to go to the same page(Message monitoring).
There do the following,
1. From the drop down list for Start/End Date, select "Free Entry"
2. Change From Time as per your wish (format HH:MM:SS)
3. Change To Time as per your wish (format HH:MM:SS)
And now you are ready to search based on this criteria. If you want to save this filter, you may click on "Save Filter" button available on the same page.
I hope this helps.
Regards, Gaurav.

Similar Messages

  • How to display the color of time period and the legend in Calendar view?

    Hi,
    Sorry to disturb you guys with a quite simple question.
    I want to do a calendar view to display the period of absence for the portal user. I've setup the iView but it displays neither the color of time period nor the legend.
    The problem is:
    1) If I test with <i>static legend</i> (that is, I input the time period directly in the form instead of using data service),
       a) I could only define <b>one</b> time period, because it's impossible to map the <i>out</i> port of calendar to <i>in</i> port of form on defining the event as 'goto'.
       b) I can't see the color displayd while deploying although there is just one time period! Neither the legend. I' ve given the label and color of the legend and assigned the action as default in design board. Why it doesn't work?
    2) If I test with <i>dynamic legend</i> following the chapter "<i>Display Date on a Calendar</i>" in the <i>Modeler's Guide</i> of VC;
        I assigned @RECORDNR to 'ID legend field', and used BAPI_ABSENCE_GETLIST as dynamic legend data service to edit the legend, and assigned the color for every ID. But neither color nor legend could kindly appear. What's the problem? Is there any error in the edit of entry list of the legend?
    Please help me! Thanks!!!

    Is there any advice?
    I'll greatly appreciate your help!

  • Not permitting time period to be overlapped....

    Hi ,
    I have the following table..in Oracle10g Standard Edition:
    SQL> desc ref_dikaioum_meres_ektos_edras;
    Name                          Type      Nullable Default Comments
    SEQ_CODE_DIKAIOUM_EKTOS_EDRAS NUMBER(5)                          
    SEQ_CODE_ERGAZOMENOY_TYPE_ID  NUMBER(5) Y                        
    DATES_APO                     DATE      Y                        
    DATES_EOS                     DATE      Y                        
    DAYS                          NUMBER(3) Y  How is it possible to define a businness rule(a constraint) that for a specific "SEQ_CODE_ERGAZOMENOY" not to permit new records to be inserted if the time_period(dates_apo...means date_from) and (dates_eos... means dates_to) is overlapped to another time period....
    For example:
    If there is a record .... seq_code_ergazomenoy_type_id=12 , dates_apo= '01/01/2007' , dates_eos='31/12/2007' ...
    and the user tries to insert a record like this.....
    .... seq_code_ergazomenoy_type_id=12 , dates_apo= '01/05/2007' , dates_eos='31/10/2007' ...
    or
    .... seq_code_ergazomenoy_type_id=12 , dates_apo= '01/05/2007' , dates_eos='31/01/2008' ...
    or
    .....seq_code_ergazomenoy_type_id=12 , dates_apo= '01/07/2006' , dates_eos='31/01/2007' ...
    or
    .....seq_code_ergazomenoy_type_id=12 , dates_apo= '01/01/2006' , dates_eos='31/01/2008' ...
    the system won't permit to insert it.....
    thanks a lot
    Simon

    Have you considered using 3360's suggestion of a materialized view with a check constraint?
    Like I said, it's really difficult to do this correctly, especially with triggers. In particular:
    1. Your package (or temporary table, or whatever) needs to able to store an arbitrary number of "records", not just one. If it only stores one, it won't correctly handle statements like INSERT INTO...SELECT...FROM where the SELECT returns more than one row. Tom's example uses an "index by" table of ROWIDs for this purpose.
    2. You need some sort of locking mechanism because you can't "see" changes that other, concurrent transactions have made but haven't committed yet. If you can't see them, you can't be certain that they their changes don't conflict with yours. The lock needs to prevent more than one transaction from inserting or updating rows for a given "domain" ("seq_code_ergazomenoy_type_id" I think in your case) at the same time. Tom's example uses DBMS_LOCK for this purpose, but...
    3. To handle serializable transactions, the lock needs to "persist" after you commit, at least until all other transactions that started before you committed have committed or rolled back themselves. DBMS_LOCK doesn't do this, but SELECT...FOR UPDATE can.
    In any case, if, for the moment, we ignore these important but difficult-to-address issues, and we ignore the "seq_code_dikaioum_ektos_edras" column (since I am not clear on how you want to use it), the logic for the query that finds the overlap (like in your after statement trigger) should be something like this (for a single record):
    declare
        n integer;
    begin
        select
            count(*)
        into
            n
        from
            dual
        where
            exists
                select
                    null
                from
                    ref_dikaioum_meres_ektos_edras     
                where
                    seq_code_ergazomenoy_type_id = pkg_ref_dikaioum_meres_chk.v_code_ergazomenou      
                    and
                    dates_apo < pkg_ref_dikaioum_meres_chk.v_dates_eos
                    and
                    dates_eos > pkg_ref_dikaioum_meres_chk.v_dates_apo
        if (n > 0) then
            raise_application_error(-20020,'error_message');
        end if;
    end;Tom's example loops through the rows identified in the "index by" table to perform this check for each "new" row.
    The "materialized view" approach basically does the same thing using a similar query. It "counts" the number of overlapping rows. When a transaction commits, the materialized view refreshes. A check constraint on the "count" column in the underlying table (that stores the "materialized" results of the view) prevents the "count" from being anything other than zero. If it is, the refresh fails.
    I wonder if your code is giving "false positives" because of the way you're using "seq_code_dikaioum_ektos_edras". Your SELECT statement could be returning the row that was just inserted because it has the greatest "seq_code_dikaioum_ektos_edras" and the row "overlaps with itself".
    Hope this helps.

  • Time Period Syntax

    Hello,
    I am trying to get a report for a list of documents within a time period.
    I want the start date as optional, in the sense, if the input criteria is not filled, it should give right from the beginning. Same with end date, if the input criteria is not filled, then the current date must be considered. How do we go about this?
    I am using the following snipet of code
    T1.DocDate between [%1] and [%2]
    How do I make input of the dates optional, since in this case, it gives me 0 output.
    Thanks
    Prajwal

    Hi,
    In Business One Version 2007 when you run the query and you do not choose any value for the date variable, SAP Business One assigns the value 01/01/1900 (January 1st 1900) as a default value instead of leaving the variable with the empty string ('').                                                            
    To reach a correct functionality of your query please modify it as following:
    ((T1.DocDate >= [%1] and [%1] <> '19000101') or [%1]='19000101')
    AND ((T1.DocDate <= [%2] and [%2] <> '19000101') or [%2]='19000101')
    Please refer to SAP note no. [1237002|https://websmp130.sap-ag.de/sap(bD1odSZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1237002].
    hope it helps,
    Regards,
    Ladislav
    SAP Business One Forum Team
    Edited by: Ladislav Meszaros on Nov 18, 2008 12:22 PM

  • New event - default times

    In month view when I double click on a day to create a new event the timings default to 2300 until 0000. I can't find any way to change these timings - can anyone help?

    Hi Paul, I have the same (or similar) problem.
    If I doubleclick to create an event in month view, depending on the current time of day, iCal will automatically create a time within the current 12-hour time period. If I then try to change the time with that annoying bubble (what ever happened to the beautiful sidebar), it will only allow changes within that current period. I.e. an event created at 10:00 can not be changed to 14:00. Entering "14" would result in the time being set to "04" in the morning. If I wait until after noon, then the times can be changed for the time period from noon to midnight only. This is really annoying. As a workaround, I can open the created event in day view and drag the event to the desired time. But this is not what I expect from Apple as useability.
    Anyone has similar experiences to Paul and me?

  • LMS - log rotation based on time period

    Dear All
    can we configure log rotation to be based on time period (ex:past one year)instead of log file size.
    if it is feasable please advise who to do it?
    Regards;
    Antonio

    I am not sure if I understand it correct, but you can do this easily by defining the expected file size of the log file to rotate;
    logrot runs on a scheduled basis and checks if the log file has reached the defined file size - if not it will do nothing else the file will be backed up. The key point is the configured file size;
    I use this for the syslog file to have a backup for each month:
        schedule logrot to run every first of each month and set the file size to a low value guarantes that I ve got a file for every month;
    from the online help of logrot:
    http://:1741/help/cmf/index.html?sysad_adm_logrotate.html
    4. Specify the number of archive revisions. If you do not want to keep any archives, enter 0 (the default) for this option.
    5. Specify the maximum file size. The log will not be rotated until this size is reached. The unit is in kilobytes (KB). The default is 1024 KB or 1 MB.
    why do you want to keep all log messages of a complete year in one file - what do you want to do?

  • Default Reporting Period

    Hie,
    Is there a way of setting a default reporting period for a user in SAP B1 at a particular given time.
    Thanks.

    The report parameters are always saved from your last report.  If you need one set frequently, you probably need to switch the parameter not as often.  That may help.
    Thanks,
    Gordon

  • TIMR6 :Time period indicator: Period

    Dear All,
    When i am uploading attendances in infotype 2002 for 103 employees through lsmw.
    I am getting one field " TIMR6 :Time period indicator: Period" in Display field mapping and conversion rules step.
    What is this called? why it will appear ? What is pupose of this indiacator? How to map it with source field?
    could you pls explain in detail?
    Because of this i am not getting the default value under subtype (Reg Attendance) while running the batch input
    Thanks and Regards,
    Prasad

    Hello,
    Male or female in 0002 is determined the field ANRED. (Mr. Ms.) based on this only the GESCH(Gender key is determined).
    So if a employee is a male fill ANRED with 1 else with 2.
    Thanks.
    Krishna

  • Latest time period setting in Fin Reports

    Hi,
    I have fin reports that are generating the following error..
    Error 1012709 - For virtual time series, the latest time period setting (Period) is not a level 0 member
    I know what the error means, but where do I set it to be Mar etc? I know where to do it in the excel addin but for Fin Reports??
    Cheers
    CD

    Solved in the planning forum, but if anybody is interested the answer is
    In Workspace, go to File > Preferences > Financial Reporting.
    There is a point of view section.
    Preview on/off, on brings up the POV selector before running a report.
    Also in section you can setup your default members to be used in the POVs.
    Cheers
    John

  • Time period restriction

    HI all,
    I'm working on a project with ICWebclient and i have to make a restriction in the contact history,so that the user can only have the Possibility to see the Data of the last 2 years. In the standard search,the user has the possibility to choose the time period via a calendar(pop-up)like he wants but now i have to fix the value so that he can only have a look at the Data within the last 2 years. For exple today it's 07/07/06 so he can not see see the data from a date older than 07/07/04.
    could u pleas tell me how i can implement it ?
    thanks in advance

    Create a program variant where you set default dates

  • PP-PI Exclude time period from scheduling

    I have a design question,
    I'd like to exclude a certain time-period from scheduling, how do I do this?
    Example:
    From 1st of January - 1st of february, I cannot plan any production for material A (I can plan production for other materials). For the rest of the year, I'd like to spread my production for material A equally. How do I design this?

    Hi,
      This can be done by locking the workcenters.
    1. For all your workcenters goto capacity tabpage and choose capacity header.
    2. choose intervals and shifts and choose intervals.
    3. Enter the period as valid from 01.09.2007 and  valid to 31.10.2007
    4. In the same line goto work days and choose 0 ie non working days( if mentioned as working days it will be overrided as non working days) and save.
    5. For this period eventhough you have reqmts while converting the planned orders
         you will get pop up message that no routing is selected.
    6.It is upto you decide whether this planned order can be converted with default values from operation ( ie from tcode opjg).
    7. You can exit
    8. And also you can delete out dated planned orders by using roll forward period.
    Hope you got some solution to your problem and reward if useful.
    Regards,
    nandha

  • How to change the default time?

    when you finish the action of dialing ,the CCM system recognize your finish after 10s .How to change the default time in Service Parameters ,which is the detail Parameters ?

    Please see the following link for information on configuring the interdigit timeout.
    http://www.cisco.com/en/US/products/sw/voicesw/ps556/products_tech_note09186a00800dab26.shtml
    Hope this helps. If so, please rate the post.
    Brandon

  • Report workload by calculating how many versions of SharePoint list items created in a certain time period

    I have a total of 66 SharePoint 2010 lists - yes, 66! - each lists contains between 1500 and 3200 list items.  My employees update these various list items throughout their workday.  Each update to a list item creates a new version of the list
    item.  On average each list item will have anywhere from 5 to 10 versions before it is done.  I need to create a report that tells me how many list items they've updated in a certain time frame.  I have come close but still cannot arrive at
    the data I'm looking for. 
    This is what I have so far:
    I've created a report using SQL Report Builder 2008 v3 where I've filtered it to show only items MODIFIED between, for example, Feb1 and Feb28.  Of those records, I want the report to tell me how many versions were created during that time
    frame.  The result is one list item with 5 total versions.  Versions 1.0, 2.0, & 3.0 were created on 12/12/14.  The last two versions, 4.0 and 5.0, were created on 2/24/15.  Therefore, the answer I'm looking for is 2 because they
    created 2 versions between Feb1 and Feb28.
    However I get the following results using these queries:
    If I do a =Sum(Fields!owshiddenversion.Value) in the expression field I get the total versions which is 5
    If I do a =Count(Fields!owshiddenversion.Value) in the expression field I get the instance which is 1
    Is there a way to count ONLY the number of versions created in a time period?  Is there another hidden field in SharePoint that I can use in the expression that will give me results I'm looking for?

    Hi Rafael70,
    Per my understanding that you have already get all the need fields and informaiton of the updated version of list items and now you want to calculate how many versions of SharePoint list items created in a certain time period, you can't get desired result
    using sum and count function, right?
    I have tried to tested on my local environment but because I am not clear what is value in the field "owshiddenversion", I assumed you have two datatype parameters (StartDate and EndDate) to help filter the report in a certain time period.
    Generally, if you have add the filter correctly, it will filter the correct number's updated version in this time period, I would like you to provide details information as below to help better analysis the requirements:
    Could you please provide sample data of the table.
    Please provide snapshot of the report structure you have currently designed.
    Please try to provide all the expression you have used.
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Closing characteristic after a time period

    Dear All,
    I am looking for a way to close an inspection charcateristic automatically after a certain time period.
    I have 3 characteristics for my inspection lot. The first should be closed 20 hours after generation of the inspection lot. The second 15 hours after that and the third 5 hours after that.
    Is there a way to do it?

    You can only make automatic UD for inspectoin lots if you meet the other requirements, which I doubt you do.  I.e. all required characterisitics have a status of 5 and all of those use a fixed scope.  You could make all your characterisitcs optional but that could lead to a whole bunch of non-processed lots.   I.e. if the wait period is met, the lots will be closed out.   This might be problems if some day the lab falls behind or is gone over a long planned outage.  It also runins the ability to indicate to techs the optional vs required characteristics!
    FF

  • How do you set the time period on IMAP email accounts (razr maxx)

    Hi Guys -
    Does anyone know how you can set the time period that the stock email will keep the already downloaded messages for IMAP email accounts?
    Mine never seems to show more than a couple of days worth at a time. I'd ideally like to be able to see at least 2 weeks worth of messages without needing to download them again!
    On other phones I've had there was a setting in the menu, but either I can't find it...or it's not there. I've found the setting for how OFTEN it checks the accounts, but not the setting I am seeking.
    Your help is appreciated!
    Best Wishes for the Holiday Season.
    -Rich

    Hey Rich.  Once in 'settings,' there should be a "days to sync' under the 'data usage' section.   You don't have that?

Maybe you are looking for

  • Using a UK-purchased MacBook in Canada

    Hi all, I am going on holiday to Canada in a few days time - will I be able to charge my UK-purchased MacBook overseas? Obviously I will need a plug adapter but i'm concerned about any possible differences between the UK/Canada's power network. Thank

  • Problem in determing the Component Item Category in Work Order

    HI ALL, When I enter the Component and quantity required for Work/Maintenance Order Operation and press “ENTER” button, it’s taking the item category as Non-Stock (N) item. When I checked in SPRO (PM > Maintenance and Service Orders > General data >

  • IMovie Selection Problems

    Hello, This is my second time posting and this one is far less complex than my previous question (I hope). I find that everytime I select a clip from my Event Library. And say I select the clip to be 12 seconds long, and I move it up into where my pr

  • Windows 2008 R2 DC Recovery Test BSOD on boot

    Hello everyone. first off i have a perfectly healthy production domain with 2 domain controllers and replication occurring between them, the only issue is there on the same site. i am in a test environment testing a scenario where both DC's are broke

  • How can a component generate both stylesheet and HTML code?

    Hi All, I've the following problem. My team is working on several "complex" components which provide a rich client-side behavior (via javascript and css). The components are in charge of generating the following: + Stylesheet (linked or inline) + Jav