I want to create a timeline for events which have occurred in my past life

IT would be better if I could run several at a time for example Work Life, Personal life, health events etc
I would like to tie documents, pictures etc to them
I would like to be able to present the timeline in either printed or projected form or both
it is to help explain a sequence of events over a ten year period
i do not mind paying but as this is not a commercial enterprise i do not want to pay to much

Try going to the App Store, and search on things like timeline, other teams that come to mind.  A quick look turned up several programs that track timelines, calendar timelines, for various prices.  The default Calendar program is not designed to do this.
You can use other programs, also, such as Keynote to create graphics of events.

Similar Messages

  • I want to create home page for my application with short URL

    I want to create home page for my application with short URL
    as when I want user to use my application user must go to URL like this
    http://127.0.0.1:7101/My-Project/faces/app/empModule/allEmployees/viewMyEmployees.jspxI want the user to use short URL , How can I use shorter URL not all this one.
    I want shorter URL for my application not to write full path .
    thanks in advance.
    Edited by: user611775 on Oct 31, 2010 10:21 PM

    Well,
    it's up to you. The first part (Mcit-Project-ViewController-context-root) is the context root which you define in the view controller project. 'faces' is the name the servlet filter reacts on. You can't omit it but shorten it in web.xml. The rest is your directory structure. I'm not sure how to shorten this other as to move the jspx files back into the web root folder.
    By the way an ADF faces app never uses the .jspx at the end of the url. If you specify '.jspx', you only render the page but don't start the work flow.
    Timo

  • Want to create program (XYZ) for scheduling anther program(ABC)

    Requirement :
    I have one report ABC and I want to create program XYZ for scheduling the report ABC (without executing the program ABC ).
    Output : Program XYZ
    1) schedule the report ABC
    2) Provide the output of ABC

    Seee if the below code help:
    REPORT Z_MQSCHD NO STANDARD PAGE HEADING LINE-SIZE 170 LINE-COUNT 58 .
    DATA: ZCOUNT            LIKE SY-TABIX,
          JOBNAME           LIKE TBTCJOB-JOBNAME,
          PARAMS            LIKE  PRI_PARAMS,
          JOBCOUNT          LIKE TBTCJOB-JOBCOUNT,
          AUTHCKNAM         LIKE  TBTCJOB-AUTHCKNAM,
          SDLSTRTTM         LIKE  TBTCJOB-SDLSTRTTM,
          SDLSTRTDT         LIKE  TBTCJOB-SDLSTRTDT,
          VARIANT           LIKE  RALDB-VARIANT,
          REPORT            LIKE  SY-REPID,
          ZTIME             LIKE SY-UZEIT,
          PREDJOB_CHECKSTAT LIKE TBTCSTRT-CHECKSTAT,
          PRED_JOBCOUNT     LIKE TBTCJOB-JOBCOUNT,
          PRED_JOBNAME      LIKE TBTCJOB-JOBNAME,
          RELEASED          LIKE  BTCH0000-CHAR1.
    *email variables
    DATA:  emailaddr(80)     TYPE c.
    data: objtxt           like solisti1   occurs 10 with header line.
    data: tab_lines        like sy-tabix.
    DATA: OBJECT_HD_CHANGE LIKE SOOD1.
    DATA: OBJECT_TYPE LIKE SOOD-OBJTP.
    DATA: OBJCONT LIKE SOLI OCCURS 0 WITH HEADER LINE.
    DATA: RECEIVERS LIKE SOOS1 OCCURS 0 WITH HEADER LINE.
    SELECTION-SCREEN: BEGIN OF BLOCK A1 WITH FRAME TITLE TEXT-001.
    PARAMETERS:
            NAME LIKE RS38M-PROGRAMM OBLIGATORY,
            VAR  LIKE RS38M-SELSET  OBLIGATORY,
            JOB  LIKE TBTCJOB-JOBNAME,
            FRQ1 LIKE SY-INDEX,
            FRQ2(2) TYPE C.
    SELECTION-SCREEN END OF BLOCK A1.
    SELECTION-SCREEN: BEGIN OF BLOCK A2 WITH FRAME TITLE TEXT-002.
    PARAMETERS: ZDATE LIKE SY-DATUM DEFAULT SY-DATUM OBLIGATORY.
    SELECT-OPTIONS:
            TIME1 FOR SY-UZEIT OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK A2.
    SELECTION-SCREEN: BEGIN OF BLOCK A3 WITH FRAME TITLE TEXT-003.
    PARAMETERS:  p_mail       AS CHECKBOX DEFAULT 'X'. "X = Mail report
    SELECT-OPTIONS: so_mlist FOR emailaddr.
    SELECTION-SCREEN END OF BLOCK A3.
    AT SELECTION-SCREEN ON FRQ2.
      IF FRQ2 NE 'H' AND FRQ2 NE 'M' AND FRQ2 NE 'S'.
        MESSAGE E001(Z1) WITH 'Time Unit must be H or M or S'.
      ENDIF.
    AT SELECTION-SCREEN ON ZDATE.
      IF ZDATE < SY-DATUM.
        MESSAGE E001(Z1) WITH 'Date must be greater than current date'.
      ENDIF.
    AT SELECTION-SCREEN ON TIME1.
      IF ZDATE = SY-DATUM AND TIME1-LOW < SY-UZEIT.
        MESSAGE E001(Z1) WITH 'Time must be greater than current time'.
      ENDIF.
    AT SELECTION-SCREEN OUTPUT.
      IF JOB IS INITIAL.
        JOB = NAME.
      ENDIF.
    $$* Start of selection
    START-OF-SELECTION.
      IF JOB IS INITIAL.
        JOB = NAME.
      ENDIF.
      clear params.
      call function 'GET_PRINT_PARAMETERS'
           EXPORTING
                mode           = 'CURRENT'
                no_dialog      = 'X'
           IMPORTING
                out_parameters = params.
      params-paart = 'X_PAPER'.
      ZTIME       = TIME1-LOW.
      JOBNAME      = JOB.
      VARIANT      = VAR.
      REPORT       = NAME.
      AUTHCKNAM    = SY-UNAME.
      PARAMS-PRIMM = SPACE.
      SDLSTRTDT    = ZDATE.
      CLEAR: ZCOUNT.
      WHILE ZTIME LE TIME1-HIGH.
        SDLSTRTTM = ZTIME.
        CALL FUNCTION 'JOB_OPEN'
             EXPORTING
                  JOBNAME  = JOB
             IMPORTING
                  JOBCOUNT = JOBCOUNT
             EXCEPTIONS
                  OTHERS   = 4.
        CALL FUNCTION 'JOB_SUBMIT'
             EXPORTING
                  AUTHCKNAM = AUTHCKNAM
                  JOBCOUNT  = JOBCOUNT
                  JOBNAME   = JOB
                  PRIPARAMS = PARAMS
                  REPORT    = REPORT
                  VARIANT   = VARIANT.
        CALL FUNCTION 'JOB_CLOSE'
             EXPORTING
                  SDLSTRTDT        = SDLSTRTDT
                  SDLSTRTTM        = SDLSTRTTM
                  JOBCOUNT         = JOBCOUNT
                  JOBNAME          = JOB
             IMPORTING
                  JOB_WAS_RELEASED = RELEASED.
        IF RELEASED = 'X'.
          WRITE: / 'Job', JOBNAME, '(' ,JOBCOUNT, ')' ,'will run at', ZTIME,
              'on', ZDATE, 'with program',NAME, 'and variant', VAR.
          IF NOT P_MAIL IS INITIAL.
            CLEAR OBJCONT.
            CONCATENATE
            'Job' JOBNAME '(' JOBCOUNT ')' 'will run at' ZTIME 'on' ZDATE
           'with program' NAME  'and variant'  VAR
            INTO OBJCONT SEPARATED BY SPACE.
            APPEND OBJCONT.
          ENDIF.
        ELSE.
          WRITE: /
         'Unable to release job', JOBNAME, '(' ,JOBCOUNT, ')' ,'at', ZTIME,
            'on', ZDATE, 'with program',NAME, 'and variant', VAR.
          IF NOT P_MAIL IS INITIAL.
            CLEAR OBJCONT.
            CONCATENATE
           'Unable to release job' JOBNAME  '('  JOBCOUNT ')'  'at'  ZTIME
           'on' ZDATE 'with program' NAME  'and variant'  VAR
            INTO OBJCONT SEPARATED BY SPACE.
            APPEND OBJCONT.
          ENDIF.
        ENDIF.
        CASE FRQ2.
          WHEN 'H'.
            ZTIME = ZTIME + ( 60 * 60 * FRQ1 ).
          WHEN 'M'.
            ZTIME = ZTIME + ( 60 * FRQ1 ).
          WHEN 'S'.
            ZTIME = ZTIME + FRQ1.
          WHEN OTHERS.
        ENDCASE.
      ENDWHILE.
      IF NOT P_MAIL IS INITIAL.
        CHECK NOT SO_MLIST IS INITIAL.
        PERFORM SENDEMAIL.
      ENDIF.
    *&      Form  SENDEMAIL
          text
    -->  p1        text
    <--  p2        text
    FORM SENDEMAIL.
      clear objcont.
      append objcont.
      append objcont.
      concatenate
      'This e-mail was sent from an automated system...' sy-sysid sy-mandt
         into objcont.
      append objcont.
      clear objcont.
      objcont = 'Do not reply to this message.'(013).
      append objcont.
      MOVE: SY-LANGU TO OBJECT_HD_CHANGE-OBJLA,
            'NOTIFICATION' TO OBJECT_HD_CHANGE-OBJNAM,
            'Report from job scheduler' TO OBJECT_HD_CHANGE-OBJDES.
      MOVE 'RAW' TO OBJECT_TYPE.
      describe table objtxt lines tab_lines.
      read table objtxt index tab_lines.
    *Now we will create the packing list entry for our text body.
      describe table objtxt lines tab_lines.
      read table objtxt index tab_lines.
      OBJECT_HD_CHANGE-OBJLEN  = tab_lines * 255.
    *in this next section we create our recipient list.
      LOOP AT so_mlist.
        clear RECEIVERS.
        move so_mlist-low to RECEIVERS-RECEXTNAM.
        MOVE 'U' TO RECEIVERS-RECESC.
        APPEND RECEIVERS.
        if not so_mlist-high is initial.
          move so_mlist-high TO RECEIVERS-RECEXTNAM.
          MOVE 'U' TO RECEIVERS-RECESC.
          APPEND RECEIVERS.
        endif.
      ENDLOOP.
      CALL FUNCTION 'SO_OBJECT_SEND'
           EXPORTING
                OBJECT_HD_CHANGE           = OBJECT_HD_CHANGE
                OBJECT_TYPE                = OBJECT_TYPE
           TABLES
                OBJCONT                    = OBJCONT
                RECEIVERS                  = RECEIVERS
           EXCEPTIONS
                ACTIVE_USER_NOT_EXIST      = 1
                COMMUNICATION_FAILURE      = 2
                COMPONENT_NOT_AVAILABLE    = 3
                FOLDER_NOT_EXIST           = 4
                FOLDER_NO_AUTHORIZATION    = 5
                FORWARDER_NOT_EXIST        = 6
                NOTE_NOT_EXIST             = 7
                OBJECT_NOT_EXIST           = 8
                OBJECT_NOT_SENT            = 9
                OBJECT_NO_AUTHORIZATION    = 10
                OBJECT_TYPE_NOT_EXIST      = 11
                OPERATION_NO_AUTHORIZATION = 12
                OWNER_NOT_EXIST            = 13
                PARAMETER_ERROR            = 14
                SUBSTITUTE_NOT_ACTIVE      = 15
                SUBSTITUTE_NOT_DEFINED     = 16
                SYSTEM_FAILURE             = 17
                TOO_MUCH_RECEIVERS         = 18
                USER_NOT_EXIST             = 19
                ORIGINATOR_NOT_EXIST       = 20
                X_ERROR                    = 21
                OTHERS                     = 22.
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " SENDEMAIL

  • I want to create an eBook for iPad , Mac and "iPhone".

    While I was beginning with creating an eBook with iBookAuthor, I didn't know that the target group iPhone user is missed.
    I want to create and publish an eBook, which is intended for iPad, Mac and iPhone users.
    Does somebody know, which software would be the best?

    Fattissimo wrote:
    I 've tested it, the program doesn't accept ePub files.
    Of course iTunes Producer is supposed to accept .epub files.  If yours are not working, I suggest you try to contact Apple via the means indicated at the bottom of the FAQ
    http://www.apple.com/itunes/working-itunes/sell-content/books/book-faq.html
    Also you could post your specific issue, with any error messages, in the forum for epub issues:
    Creating ePubs

  • Want to create F1 Help for radio button in my report

    Hi All,
          I want to create F1 Help for radio button in my report program. Which function module should i call in <b>at selection screen on help-request</b>
          Also do I need to define the texts somewhere or I can pass it directly to the function module.

    Try DYN_FIELD_F1_HELP,
    ~Suresh
    that is only for Dic fields..
    Pl take alook at this<a href="http://help.sap.com/saphelp_erp2005vp/helpdata/en/79/34a243d9b511d1950e0000e8353423/frameset.htm">SAP Help</a>
    ~Suresh
    Message was edited by: Suresh Datti

  • I want to create a SWF for my small web site. How do I do this? Do I need to purchase "Flash Builder"?

    I want to create a SWF for my small web site. How do I do this? Do I need to purchase "Flash Builder"?

    Hi Developer_46038, 
    if for example all the properties and object are stated as list, i think there is a tool that overcome cross list.
    http://listrollup.codeplex.com/
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/13a51be5-4007-46e8-bbb2-5e04320dfebd/cross-list-webpart?forum=sharepointcustomizationlegacy
    you can also using dataview webpart to show the cross lists:
    http://office.microsoft.com/en-us/sharepoint-designer-help/create-a-data-view-HA010094804.aspx
    http://office.microsoft.com/en-us/sharepoint-designer-help/connect-two-data-views-HA010169133.aspx
    3rd party: http://community.bamboosolutions.com/blogs/bambooteamblog/archive/2009/03/11/relational-database-capabilities-for-sharepoint-lists-cross-list-web-part.aspx
    but i am not quite sure how crystal report will do, if you can make the crystal report as also list, i think its possible, 
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/8247edf5-dee8-49d8-b7ee-9e49bfd97b9b/crystal-report-in-sharepoint-2010-webpart?forum=sharepointdevelopmentprevious
    Regards,
    Aries
    Microsoft Online Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • I want to create a vb form in which when i pressed a button then a specific song must be played.

    i want to create a vb form in which when i pressed a button then a
    specific song must be played. will u plx help me to do this..what i mean is that when i pressed that button a audio msut be played. will anyone help

    i want to create a vb form in which when i pressed a button then a specific
    song must be played. will u plx help me to do this..what i mean is that when i pressed that button a audio msut be played. will anyone help
    My.Computer.Audio.Play("C:\Users\John\Desktop\Something.Wav",
    AudioPlayMode.Background) or My.Computer.Audio.Play(My.Resources.SomeWavFileinyourresources,
    AudioPlayMode.Background) will play .Wav files only. And it will play them directly from resources without having to write them to disk to play them first.
    The
    Windows Media Player Control (can be created dynamically and not displayed) or the
    Media Player Class or a third party control that you can download called
    VLC Media Player can all play audio files based on the Codecs they use or have installed. Which would be .Wav, .MP3 and some others as well as you can download third party Codecs that can be provided to your system possibly for the Media Player class to
    use but as plugins I believe for Windows Media Player and VLC Media Player I believe for playing other types of audio and video file formats that they do not directly support with their installed codecs. Although all of these require that a file is available
    from disk or thumbdrive or CD Rom to play and can not directly play resources therefore resources must be written to disk in order to work.
    Microsoft Visual Basic language forum search results for "WindowsMediaPlayer"
    Microsoft Visual Basic language forum search results for "MediaPlayer"
    La vida loca

  • HT2534 i want to create an appleid and i dont have credit card. the instruction that you discribe at the top is not working in itune 11.1.3 and iphone 5s. what should i do

    i want to create an appleid and i dont have credit card. the instruction that you discribe at the top is not working in itune 11.1.3 and iphone 5s. what should i do

    We are fellow users here on these forums, you're not talking to iTunes Support nor Apple.
    You need to follow, exactly, the instructions on that HT2534 page when creating an account (the instructions won't work with existing accounts) - I've just tried it and I got the 'none' option.
    e.g. on my computer's iTunes I logged out of my existing account, found a free app in the store and clicked on its free 'price' :
    I then clicked on 'create Apple id' on the popup :
    Agreed to the terms, filled in my details, and got the 'none' option on the payments screen :

  • For R/3 to CRM Scenario ,creating ABAP Proxy for CRM which is in Target

    In R/3 to CRM scenario it is ok creating ABAP Proxy for CRM which is Target system.if it is possible it is Client Proxy.it is correct or not

    Hi,
    Client Proxy. When you need to create Proxy for your Sender system then the proxy is generated on the client side and the Class created in Proxy generation is called in a report/FM etc.
    Server proxy. The server proxy is created when you are sending the data from SAP XI to the receiving system.
    The generation of proxy in both the cases happens on the sender or the receiver system.
    Regards
    Vijaya

  • HT5625 I want to use an old password that I have used in the past can I do that?

    I want to use an old passowrd that I have used in the past. I am 70 years old and I can't remember all the passwords I need for all the different apps, programs, etc. some need caps some need numbers. I want to use a simple password and keep it no matter what.

    Hi, that can be dangerous these days.
    Doesn't Keychain store these assorted Passwords for you?
    I haven't used it, but many rave about this App...
    https://agilebits.com/onepassword

  • HELP! I've created a template for event badges and have been instructed by the client to insert the (200 ) names and relevant companies into it...Is there a script that can do this in illustrator? Should I be using Indesign?

    An events client I'm working for have asked me to create a template for badges. Rather than ask the printers to insert the names and companies of the individuals present at the event though, they want me to create all of the pdf files for (200+) people!
    I have an excel sheet of the people that will be present. My question is: is there a way to automate this? to define editable areas in a template and run some sort of batch processing script?
    Thanks!

    This would be a perfect job for Data Merge in InDesign. You can place your AI design into InDesign (minus the text fields), and then easily create a merge.

  • Want to create a dvd in encore, i have created dvd2-mpeg file and have timeline premiere?

    hello guys
    i hope you can help
    i have adobe premiere cs6 and i have created a dvd2-mpeg file which i want to burn to dvd, its about 7 gb. i want to fit this on a single dvd or dual layer dvd if quality is a problem
    i have been told encore can encode the files in the right format etc
    please can you advise me on the steps i need to do so i can create a dvd disk please?
    i have a macbook air which doesnt have a disk drive, so i will need the files to be copied on an external drive and burnt to a disk on another computer..

    Hello, and welcome to the forums.
    You'll need to put this onto a dual layer project, as single layer will only get you to 4.7GB (not quite as much as it seems, either, as DVD Gb are smaller than computer Gb are).
    You do not mention anything about menus or navigational aids on your DVD - are these required?
    Also, what form is your audio in please? MPEG audio is not a good idea, and for DVD use the files ideally need to be "Elementary streams", meaning separate video & audio files.
    A simple slutiom might be to go back to your premiere pro project, and take the original timeline - before you transcoded it to MPEG-2 - and send this to Encore using Dynamic Linking. This will launch Encore for you, and place your premiere timeline into an Encore project.
    There you can create your menus and set all your navigational stuff up.
    When completed, simply compile the project to a DVD image - this will create an ISO file that can be moved for burning.
    That's the short answer, but it can get a lot more complicated.
    For starters, your audio file will need to be in a DVD compliant type- that means either LPCM or Dolby Digital.
    LPCM is the best quality, but uses a lot more bits & reduces available space for your film so you need to decide how important the audio content is.
    Encore will allow you to set the audio default to LPCM, and will then try to get the best fit for your video file in "Automatic" mode.
    Once you can let me know the aswers above (are menus needed, what is your audio file) etc, I can walk you through the steps needed.

  • Calendar creating random alerts for events

    The last couple of weeks, iCloud Calendar and the Mac Calendar having been doing something very odd.  I have my college courses laid out in my Calendar and syncing between my iPhone, Mac, and iPad.  My default setting for this college calendar (and across my devices) was to alert me 15 minutes before each class started. 
    The last couple of weeks, however, the Calendar would alert me at my default time, but then it would alert me at the time the class was scheduled to start, and then at two random times after the class already started.  The other two created alerts usually happened around 5-15 minutes after the event already started.  After the second later time, the alerts would stop being created and stop appearing in my notifications.  I was even able to watch these alerts being created, and if I deleted the new alert, I would have to delete it a second time before it actually disappeared.  And this reminder went out across my 3 devices.
    Here's what I have tried. 
    Changed my password on iCloud/Apple ID
    I have removed the PList from Calendar app on my Mac, which changed nothing.
    Repaired Permissions with Disk Utility and Onyx, also did nothing (though Disk Utility at one point did detect an error in Calendar which it said it fixed). 
    I went to iCloud.com and deleted the entire College calendar from the Calendar app and then manually re-added my classes.  I noticed that on some the classes, it tried to create the random alerts immediately, but since I deleted those classes again and readded them and they stopped.  This temporarily worked.
    This last stepped worked for about a week before my college classes started doing this again.  Since I applied the iCloud "fix", only some of my college classes have begun creating random alerts again, but only on my Mac and not on my iOS devices.  Also, my birthdays imported from Facebook are now exhibiting this trait.  No other calendars, such as my work or appointment calendars, are doing this though, and I have tested them by creating new events in said calendars. I don't want to stop using Calendar for something like this.  Does anyone have any ideas?

    Update:  Now some of my other calendars are doing this too, like my work calendar, up to almost an hour after the actual event.  I have no idea what's going on. 

  • Want to create RFC FM for Getting data in CRM from R/3

    Hi,
    I have made the RFC connection in CRM system , now I want to make RFC FM for getting data from R/3 'MARD' table into CRM, If any one help me how to do this.
    From CRM system I will pass Plant & material no to FM and I need Storage location & Storage Bin from R/3 MARD table in CRM.
    Thanks
    Bobby

    Dear Bobby,
    You would create a FM in SE37 select 'Remote Enabled Module' radio-button in attributes tab of Function Builder.
    Select matnr werks LGORT LGPBE
               from MARD
               into ET_MARD
               where matnr = i_matnr
               and  werks = i_werks.
    Note:
    matnr is material number
    werks is plant
    LGORT is storage location
    LGPBE is storage bin
    Hope this will help.
    Regards,
    Naveen.

  • I want to create a formula for telephone numbers in the formula editor

    Is there a way to create a formula for telephone numbers in the "custom" editor in the inspector
    IE if I enter 2123456789 into a cell it automatically formats it to look like this (212) 345-6789

    You can create a new format by opening the Cells Inspector, then selecting "Custom" from the format menu:
    You can add the ### fields and click the menu on the left of the field:

Maybe you are looking for

  • How can you tell if a file is being used in your project or not?

    How can you tell if a file in your bin is being used in your project or not? My director dragged hundreds of reference files into my project and only used a few of them. I'd like to do some house cleaning and delete the ones that are not in use. This

  • Long shot...  Can an entry in Calendar add a new line in Numbers?

    I am a photographer.  I am setting up a very simple simple Job tracking spreadsheet.  Column A is Job number, column B is Client, column C is Date, etc...  One line per job type of thing. When I get a job I am often not at the computer so I enter it

  • Viewing different video types on websites with Safari

    I've been having this problem for a while and am finally looking to do something about it. I' pretty sure that I have Windows Media Player, Real Player, and Flash Player plug-ins installed on my Mac, but Safari never seems able to use them when certa

  • Xpath with unknown namespace prefix

    Given XML that looks like this    <nnn:XXX>      <mmm:YYY>value</mmm:YYY>    </nnn:XXX> And in the above the 'mmm' can vary but the 'YYY' doesn't. Can one construct an XPath expression that explicity returns the node-set for the inner element block u

  • PM Work center

    Hi All How to assign average activity charge rate for pm work center if HR module is not implenting and where it should be included. Thans for all Murthy