How to set 2 standard calendars

Hi all,
is it possible to set 2 calendars as standard calendars? I want to create an event who then occures in my private and in a shared calendar. Is this possible?
Regards Cassandra

I Have the same problem... Just changed over to daylight savings last night

Similar Messages

  • How can a non-standard calendar week be defined?

    I have a requirement to determine the calendar week when the week is non-standard week.
    The standard calendar week is Sunday - Saturday.
    Our week is defined as Saturday - Friday. We need to detrmine the calendar week of the year based on a Saturday - Friday Calendar week.
    How can I calculate the calendar week year based on this definition?
    You assistance is appreciated.
    Den

    You can use transaction SCAL to change or create a new calendar!
    Regards,
    Cris

  • How to set naming standard that sets max number of words in column name?

    Hi all,
    Is it possible to set naming standard that sets max number of words in colum (or table) name?
    I was looking video (1:08min)
    http://download.oracle.com/otn_hosted_doc/sqldev/UserDefinedDesignRules/UserDefinedDesignRules.html
    And here you can see how rule is triggered.
    "...Name has 2 words; Max permitted - 1".
    Thanks a lot

    Hi,
    you need to create glossary and set it in naming standards for your design.
    This document is still valid - http://www.oracle.com/technetwork/developer-tools/datamodeler/datamodelernamingstandards-167685.pdf
    Naming standard settings are located :
    - DM 3.x - "Preferences>Data Modeler>Naming Standard"
    - DM 4.0 - Design dialog>Settings>Naming Standard
    If you want only check on number of words then glossary can be empty and you can set "Incomplete modifiers" option in that glossary.
    Philip

  • How to set up iOS calendar app with shared Google Calendar data

    At work (in our small office) I've been given access to the shared Google Calendar that has our work schedule. It was set up using this page (click on Share an existing calendar):
    https://support.google.com/calendar/answer/37082
    The question I have is how to set it up to work with iOS calendar app on my iPhone?

    "currently there is no shared group calendar support."
    Well, not really. You hinted at it with: "set up a group wiki."
    Go into Workgroup Manager and set up an Open Directory group. Add people to it.
    Each client must then go into iCal --> Preferences --> Accounts and add an account. The name and password entered must be the same as that added to the group, Kerberos must be unchecked, and the account URL will be like (fill in the blanks properly):
    http://<your domain name here>:8008/principals/groups/<your group name here>/
    Now each properly logged in user of that group can make changes to the shared group calendar, without any "hacks" like making dummy users and delegation.
    However, I am getting a notifier: "Request Error: Accesss to <event name> in <your group name here> in account <your group name here> is not permitted." But that seems to be a lie, since multiple members of the group can make changes and others can see the changes.
    Oh yea, make sure you have a functioning DNS with valid reverse lookup.
    Message was edited by: Bytesmiths

  • How to set naming standards for SQL Developer

    I am using SQL Developer version 3.0.04.
    In the newly integrated and very useful Data Modeler, we can set preferences for the naming standards to be applied when creating logical and relational model objects ( primary keys, foreign keys, et cetera). I would like to know if there is a way to set naming standards for the relational objects we create in SQL Developer on existing tables ( ( primary keys, foreign keys, et cetera).
    Any help in setting such preferences would be appreciated.

    Hi,
    If you want to set up a diagram for an existing database, you can use File/Data Modeler/Import/Data Dictionary to import its definitions.
    Alternatively you can open a Data Modeler Browser (using View/Data Modeler/Browser), expand the node for Design "Untitled_1",
    expand the node for Relational Models, and select Show from the Right-click drop-down menu for "Relational_1" to create a Relational Model diagram.
    You can then drag Tables from SQL Developer's Connections tree onto the diagram.
    Once you have a Relational Model you can reverse engineer it to an Entity-Relationship model using the << button in the button bar
    (or by selecting "Engineer to Logical Model" from the drop-down menu for the Relational Model).
    Note that there is now a separate forum for SQL Developer Data Modeler topics: SQL Developer Data Modeler
    David

  • How to set up group calendar

    Hi - I have set up a server on my mac pro. I have everything configured between the server and the clients, and the calendars are able to invite / respond to calendar events from others. What I am wondering about, however, is how to create a common shared group calendar where everyone sees everything that everyone does on the group calendar. I.e. not just events 'shared' or invited to...
    Thanks,
    Gareth

    "currently there is no shared group calendar support."
    Well, not really. You hinted at it with: "set up a group wiki."
    Go into Workgroup Manager and set up an Open Directory group. Add people to it.
    Each client must then go into iCal --> Preferences --> Accounts and add an account. The name and password entered must be the same as that added to the group, Kerberos must be unchecked, and the account URL will be like (fill in the blanks properly):
    http://<your domain name here>:8008/principals/groups/<your group name here>/
    Now each properly logged in user of that group can make changes to the shared group calendar, without any "hacks" like making dummy users and delegation.
    However, I am getting a notifier: "Request Error: Accesss to <event name> in <your group name here> in account <your group name here> is not permitted." But that seems to be a lie, since multiple members of the group can make changes and others can see the changes.
    Oh yea, make sure you have a functioning DNS with valid reverse lookup.
    Message was edited by: Bytesmiths

  • How to set up standard variant in ABAP report

    Hi,
    I would like to create a standard variant for running ABAP report so that users don't have to select the variant each time.
    I know we can specify the variant name as a standard variant on changing query by SQ01 but is there any way to give the function in ABAP report?
    Does anybody know how to code or set up to do that?
    Thank you very much in advance.
    Best regards,
    Miki
    Edited by: Miki Komatsu on May 20, 2011 9:46 AM

    Use the   RS_VARIANT_CONTENTS FM
    CALL FUNCTION 'RS_VARIANT_CONTENTS'
        EXPORTING
          report                      = sy-repid
          variant                     = 'PRUEBA' "Your Variant
    *     MOVE_OR_WRITE               = 'W'
    *     NO_IMPORT                   = ' '
         EXECUTE_DIRECT              = 'X'
    *   IMPORTING
    *     SP                          =
        tables
    *     L_PARAMS                    =
    *     L_PARAMS_NONV               =
    *     L_SELOP                     =
    *     L_SELOP_NONV                =
          valutab                     = VALUE_TAB
    *     OBJECTS                     =
    *     FREE_SELECTIONS_DESC        =
    *     FREE_SELECTIONS_VALUE       =
       EXCEPTIONS
         VARIANT_NON_EXISTENT        = 1
         VARIANT_OBSOLETE            = 2
         OTHERS                      = 3  .
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    The variant Reports are in VARI Table

  • How to set time in calendar?

    Hi all,
    is possible set time in a calendar component in WVP with JSF1.2?
    i.e '10-12-2007 12:30'.
    any free component that do this?
    thank's in advance!

    No, I store ok and retrieve from DB.
    But in DB I have a datetime field in Mysql and I need to store the data in this way DATE 01-10-07 and time 10:15 pm.
    I need a component to do this. I don't believe that nobody had this situation.
    I need like the swing component JCALENDAR http://www.toedter.com/en/jcalendar/
    in JCAlendar you can set a dateformatpattern like dd/MM/yyyy HH:mm
    how is possible to do this, I think that 2 textfields, one to hours other to minutes is a poor solution.
    Thank's

  • G50-80 How to set up standard F1 - F12?

    I just got a new laptop G50-80.  In default, when I singly press F1, it is mute. If I want to use F1, I have to press Fn + F1. So how to change it? I just want to ress F1-F12 to use the standard functions and press Fn key plus F1-F12 to use the special features.
    Solved!
    Go to Solution.

    Dear Onefordaily
    Welcome in Lenovo community
    Shut down the computer.
    Press the Novo button and then select BIOS Setup.
    In the BIOS setup utility, open the Configuration menu, and change the setting of HotKey Mode from Enabled to Disabled.
    Open the Exit menu, and select Exit Saving Changes.
    Note: When hotkey mode is disabled, press the Fn key and the appropriate hotkey to access the corresponding hotkey function.
    Thanks
    Alaa
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • How to set non-standard SFTP Port

    I'm using Contribute 3.0, and there doesn't seem to be a way
    to set the port number when using SFTP. Every other program that
    I've used to connect to our SFTP server lets me change the port
    from the standard 22 to the arbitrary number our IT guys have
    chosen.
    Is there any way to do this in version 3.0? Will I be able to
    set the port if I upgrade to CS3?

    Have you tried something like this:
    ftp.mysite.com:81
    Maybe this is a nice document for your tech guys:
    http://help.adobe.com/en_US/Contribute/4.1_CPS/ContributeCS3Help-Deploying.pdf

  • How to set a shared calendar 'read only' for SOME users in ML server

    I am setting up Mountain Lion Server and wish to set up a series of calendars to be used by a studio of approx 20 people - two calendars will show the kind of thing I'm trying to achieve.
    Calendar A shows appointments and meetings - it can be viewd and edited by all
    Calendar B shows who is taking leave and when - it can be viewed by all, but edited by only a small group of people
    What is the best way to set this up? On The earlier version of the server we had set up calendars on the server and delegated - this is not possible on Mountain Lion Server.

    I don't think you can do this strictly by personalization since you need to use SPEL, unless the attribute you will be using for the display to control readonly is already present in the VO. Basically you need to check a value, say Supplier, and have another attribute say readOnly, tthat is set to TRUE if the supplier equals your desired supplier and FALSE for all other suppliers.
    Regards,
    LC

  • How to set material standard price to zero

    Hi,
    I am facing a problem relating to standard price of material. The material price control indicator is S. The standard price of that material is 300/-. I need to change 300/- to zero. How can i do that?
    Pl. advise. I will assign the points for the answer.
    Bye

    Is this a purchased part?
    does the material have a cost estimate?
    The price control is "S" ??

  • How to set 2 factory calendar in 1 plant?

    Now I setup 1 factory calendar and assign to plant and it contains 5 workday (Monday-Friday) per week.
    In the future , For 1 plant we want to separate into 2 production lines and the workday are different. What should I do?
    Sample of different workday
    Production 1 , workday are 1-15 of each month
    Production 2 , workday are Monday-Friday
    Look forward to hear any suggestion.

    Dear DB49
    Thanks for you recommendation,Could you please tell me which parameter I have to set in OPU5?
    Now I set parameter as below detail but it still have problem about basic date in planed order.
    Parameter in OPU5
    Detail Scheduling -> SelID:Detailed = 01
    Scheduling = Checked
    Generate capacity reqs. = Checked
    Scheduling level   = Via Detailed Scheduling
    Adjust dates = Adjust basic dates,adjust dep. reqmts to operation date
    For capacity scheduling = Always basic dates, dep.reqmts to operation dates
    Scheduling type = Backwards
    Reduction type = All operation in the order will be reduced
    Maximum reduction level = Do not reduce
    Example
    I set 3 working days on factory calendar (Monday,Tuesday,Wednesday)
    PIR   -> requirement date 18.10.2010
    Total Operation time = 5 Days (from tcode c203)
    When run MPS (MD40/MD41) with scheduling = Lead Time Scheduling and Capacity Planning
    Planned order
                          Basic Dates                                  Production Dates
    Finish              18.10.2010                                  20.10.2010
    Start                05.10.2010                                  05.10.2010
    Why basic finish dates is not equal 20.10.2010?
    Best regards,
    Jariya

  • How to set naming standards templates

    I'm currently working with oracle sddm 4.0.0.833 and i'd like to change settings for objects like identifiant : emp_pk instead of employee_pk.
    In Sue Harper's book sqldeveloper 2.1, there's a menu naming standard. I cannot find it in my version!
    jm

    Hi,
    First find the node in the Browser for your Design (it's the node above "Logical Model") and then display its Properties dialog.
    In its left-hand panel, expand the Settings node.  Then expand the Naming Standard node, and you can select the Templates node to display the Template options.
    David

  • How to set TV Standard as PAL in CS5?

    Hi there,
    I've been using AE CS4, and when I "Make Movie", I get these basic video settings:
    However, in CS5, I only get these settings:
    Where can I find the TV standard (PAL), Frame Rate and Field Order and Pixel Aspect Ratio settings in CS5?
    Any help will be much appreciated! Thanks! (:

    Where can I find the TV standard (PAL), Frame Rate and Field Order and Pixel Aspect Ratio settings in CS5?
    They are gone. The encoder will use your comp and output module settings and if they are correct, the encoder will function correctly. Many such redundancies have been removed in CS5 to streamline workflows.
    Mylenium

Maybe you are looking for

  • Safari SnowLeopard no longer shows in desktop and applications!

    I have no idea how it disappeared off the face off my computers earth. Tried downloading all versions... No luck what so ever!!!! How do I get the same type of Safari for my MacBook without paying the price! I have a warranty and everything.. Please

  • Compressor 4.1 ! Missing File

    Hi all.  So I have a project finished in FCPX - I have no errors or missing file messages.  When I send it to Compressor, the opening logo and ending logo show up but the entire video between them is not.  I am getting the ! Missing File red screen.

  • "Error 0001: Fatal Internal Error" in System Generator

    Hi, I get the following error when I try to import data using the model explorer in Simulink. --------------------------------- Version Log ---------------------------------- Version                                 Path System Generator 10.1.1134    

  • How to find books in my itouch?

    I download a few books from the Itunes store, and  I have an ibook in my touch as well. But the books just don't appear in my itouch, I can't find my books in the ibook shelf or anywhere in my itouch. what do I do?

  • Connect with a source Data

    Hi all I want to create an App that it looks like as Contoso App, which allows to collect data from a source, and show it in Excel app. I've saw videos and material about how to show info in Excel. Thanks in advance. Regards