Nice Job Eric, Paul, and Ken!

Just wanted to say nice job to Apple Eric, LaFayette Ken, and not-Gonzahhhga Pual for their presentations and for the shout-outs on today's iTunes U webcast. The webcast went off without a hitch, in my opinion. Well, I -still- say that Eric's slide -- the one that shows the token string to send to the web services API -- is wrong ... it needs a "type" token to work ... unless I'm missing something. But hey, kudos all around ... you guys did a great job.
I have to say that I was the smart aleck that asked about getting a DTD (hah, "DTS!") for the web services API. I also asked about getting (XML) error messages back from web services. Nice to know that both could be coming soon!
MacBook Pro   Mac OS X (10.4.8)   I lied. I'm running Leopard

Thanks to the good folks at Duke University, it seems the webcast will be posted. At least that's what the moderator said at the end of the live webcast. Supposedly, we will be able to find a link here:
http://www.maclearningenvironments.org/portal/site/!gateway/page/!gateway-100
within the next few weeks or so. This is all I know (not much).
MacBook Pro   Mac OS X (10.4.8)   I lied. I'm running Leopard

Similar Messages

  • Nice job MSI !!!!!!

    I was having a problem last week with my monitor shutting down occasionally when I would boot up my PC. I made a post about it in the forums.
    Anyway, this latest BIOS release for the K7N2G
    and K7N2G-L fixed the problem. Just wanted to
    say nice job MSI. You guys Roxors!!!!!!!!!!! :D
    Rig now runs like a scalded ape.
    (BIOS version was 3.71, released 8-12-03.)
    CHEERS!

    Quote
    I was having a problem last week with my monitor shutting down occasionally when I would boot up my PC.
    hi
    could you describe it in more detail?
    my old monitor.
    to old to have any sleep modes or similar started to act weird.
    the screen went black and then came back just like it does when you change resolution in windows.
    the power led also started to go on and off sometimes when it went black for longer time than 1 second.
    bye

  • Problems creating background job for program (job open, submit and close)

    Hi gurus,
    im trying to start a background job using the FM BP_START_DATE_EDITOR to show the start date to the job or if it's imediate. this FM it's working fine, after call it im opening a job, submiting it and call the job close FM and the job close FM creates me the job.
    The problem it's when i go to the sm37 to see the job status the job has been canceled, and the job log says that i have to give a start date to the job.
    What i dont understand it's either the job is imediate or i choose a date to start the job always gives me this error...
    Below goes my code,
    any ideas will be rewarded
      CLEAR: stdt_modify_type, stdt_output.
      CALL FUNCTION 'BP_START_DATE_EDITOR'
           EXPORTING
                stdt_dialog                    = 'Y'
                stdt_input                     = stdt_input
                stdt_opcode                    = 14
           IMPORTING
                stdt_modify_type               = stdt_modify_type
                stdt_output                    = stdt_output
           EXCEPTIONS
                fcal_id_not_defined            = 1
                incomplete_last_startdate      = 2
                incomplete_startdate           = 3
                invalid_dialog_type            = 4
                invalid_eventid                = 5
                invalid_opcode                 = 6
                invalid_opmode_name            = 7
                invalid_periodbehaviour        = 8
                invalid_predecessor_jobname    = 9
                last_startdate_in_the_past     = 10
                no_period_data_given           = 11
                no_startdate_given             = 12
                period_and_predjob_no_way      = 13
                period_too_small_for_limit     = 14
                predecessor_jobname_not_unique = 15
                startdate_interval_too_large   = 16
                startdate_in_the_past          = 17
                startdate_is_a_holiday         = 18
                startdate_out_of_fcal_range    = 19
                stdt_before_holiday_in_past    = 20
                unknown_fcal_error_occured     = 21
                no_workday_nr_given            = 22
                invalid_workday_countdir       = 23
                invalid_workday_nr             = 24
                notbefore_stdt_missing         = 25
                workday_starttime_missing      = 26
                no_eventid_given               = 27
                OTHERS                         = 28.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        MOVE 'X' TO gv_flag.
      ENDIF.
      DATA jobname LIKE tbtcjob-jobname.
      DATA jobcount LIKE tbtcjob-jobcount.
      DATA job_release LIKE  btch0000-char1.
      DATA job_imediate TYPE c.
      CLEAR: jobname, jobcount, job_release.
      CONCATENATE 'MAPAEXEC' sy-uname sy-datum
                   INTO jobname SEPARATED BY space.
      CALL FUNCTION 'JOB_OPEN'
           EXPORTING
                jobname          = jobname
           IMPORTING
                jobcount         = jobcount
           EXCEPTIONS
                cant_create_job  = 1
                invalid_job_data = 2
                jobname_missing  = 3
                OTHERS           = 4.
      IF sy-subrc <> 0.
        MESSAGE i003(zmapas).
        EXIT.
      ENDIF.
      SUBMIT z_mapa_execucao_orcamental
             VIA JOB jobname NUMBER jobcount
             WITH ano EQ ano
             WITH so_perio IN so_perio
             WITH so_date IN so_date
             WITH so_org EQ so_org
             WITH so_num IN so_num
             AND RETURN.
      IF stdt_output-startdttyp EQ 'I'.
        CLEAR job_imediate.
        job_imediate = 'X'.
      ENDIF.
      CALL FUNCTION 'JOB_CLOSE'
           EXPORTING
                calendar_id                 = stdt_output-calendarid
                event_id                    = stdt_output-eventid
                event_param                 = stdt_output-eventparm
                event_periodic              = stdt_output-periodic  "?
                jobcount                    = jobcount
                jobname                     = jobname
                laststrtdt                  = stdt_output-laststrtdt
                laststrttm                  = stdt_output-laststrttm
                prddays                     = stdt_output-prddays  "??
                prdhours                    = stdt_output-prdhours  "?
                prdmins                     = stdt_output-prdmins  "??
                prdmonths                   = stdt_output-prdmonths
                prdweeks                    = stdt_output-prdweeks  "?
                predjob_checkstat           = stdt_output-checkstat
                pred_jobcount               = stdt_output-predjobcnt
                pred_jobname                = stdt_output-predjob
                sdlstrtdt                   = stdt_output-sdlstrtdt
                sdlstrttm                   = stdt_output-sdlstrttm
                strtimmed                   = job_imediate
                targetsystem                = stdt_output-instname
                start_on_workday_not_before = stdt_output-notbefore
                start_on_workday_nr         = stdt_output-wdayno
                workday_count_direction     = stdt_output-wdaycdir
           IMPORTING
                job_was_released            = job_release
           EXCEPTIONS
                cant_start_immediate        = 1
                invalid_startdate           = 2
                jobname_missing             = 3
                job_close_failed            = 4
                job_nosteps                 = 5
                job_notex                   = 6
                lock_failed                 = 7
                OTHERS                      = 8.
      IF sy-subrc <> 0.
        MESSAGE i003(zmapas).
        EXIT.
      ELSE.
        MESSAGE i004(zmapas) WITH jobname.
      ENDIF.
    Thanks in advance,
    Best Regards
    João Martins

    Hello João.
    In debug mode, check the value of variables you passed to parameters sdlstrtdt and sdlstrttm.
    As aditional info, I usually achieve your goal without FM BP_START_DATE_EDITOR.
    Check this code:
    CALL FUNCTION 'JOB_OPEN'
          EXPORTING
               jobname          = w_jobname
          IMPORTING
               jobcount         = w_jobcount
          EXCEPTIONS
               cant_create_job  = 1
               invalid_job_data = 2
               jobname_missing  = 3
               OTHERS           = 4.
    CHECK sy-subrc = 0.
    CLEAR seltab_wa.
    MOVE: t_jobs-param TO seltab_wa-selname,
    t_processar-line+34 TO seltab_wa-low.
    APPEND seltab_wa TO seltab.
    seltab_wa-selname = 'P_LOJA'.
    seltab_wa-low = t_processar-ficheiro+7(4).
    APPEND seltab_wa TO seltab.
    *** Submete o programa para o JOB
    SUBMIT (t_jobs-repid)
      WITH  SELECTION-TABLE seltab
      USER sy-uname
       VIA JOB w_jobname NUMBER w_jobcount
       AND RETURN.
    *** Encerra o JOB
      l_hora = sy-uzeit.
      ADD 60 TO l_hora.
    CALL FUNCTION 'JOB_CLOSE'
       EXPORTING
          jobcount           = w_jobcount
          jobname           = w_jobname
          sdlstrtdt            = sy-datum
          sdlstrttm           = l_hora
          targetserver       = w_servidor
       IMPORTING
          job_was_released     = l_liberado
       EXCEPTIONS
          cant_start_immediate = 1
          invalid_startdate    = 2
          jobname_missing      = 3
          job_close_failed     = 4
          job_nosteps          = 5
          job_notex            = 6
          lock_failed          = 7
          OTHERS               = 8.
    Regards.
    Valter Oliveira.

  • My server has Two NICs ! I want to use one of the NIC for the internet and the other to a local Network .

    In my case ,  there is a server ( windows 2008  enterprise) . Instead of sharing the internet using the server .  i have done the following .
         i have 24 port switch which is connected with the modem (ISP Gave it to me).  My server then is connected with the switch .  the client pcs are also connected with the switch(d-link switch).
    my objective is to enable efficient way of file sharing from server for client pcs and also internet sharing at the same time for client pcs!
    my server has two NICs ! how to make the local network and internet work with out a fight!
    how could i achieve this ?  help me guys
    regards

     It really depends on exactly what the equipment from the ISP is. If it is a simple modem there is no point in connecting it to a switch. It needs to connect to a router.
      You can connect it to one NIC of the server and configure the server as a (NAT) router (with the other NIC connected to the switch).
      If either of the switches is actually a router you can use it as the NAT router and run the server on the LAN using one NIC. 
    Bill

  • Back ground job completion date and time

    Hi Experts,
    I am running one back ground job.I need that job completion date and time.
    where that values are stored.i need that table name where these values are storing.
    please let me know its urgent.
    Thanks in advance.
    Tharangini

    Hi,
    TBTCP-Background Job Step Overview
    For the date:TBTCP-SDLDATE
    Time:TBTCP-SDLTIME
    And TBTCO--Job Status Overview Table
    Regards,
    Shiva Kumar

  • Photos get auto-cropped and ken burns. stop it.

    Trying to do a stop motion. don't need the photos to movie. Cant get imovie to stop auto cropping and ken burns-ing the photos on import from iphoto. Would be fine, but i can't bulk adjust them either, tired of going through frame by frame and putting it back to fit. help.

    When you start a new project, or to change a project you are currently working on, go to FILE/PROJECT PROPERTIES, and you can change the default behaviour for initial photo placement from Ken Burns to either FIT or CROP. Crop will make the photo fit the frame exactly by cropping off the top abd bottom. FIT will make the entire photo fit by letterboxing.
    If you make your photos have the same aspect ratio as your project (either 16:9 or 4:3), then FIT and CROP produce the same result, and nothing is lost from the photo.
    The FILE/PROJECT PROPERTIES will only change photos that you add going forward.
    To change a bunch of photos that are already there, change one photo using the Rotate, Crop, Ken Burns Tool. Then, with the photo still selected, EDIT/COPY.
    Now, select all the photos you want to change by holding down the Command Key as you click, so you can select multiple photos.
    Now, click EDIT/PASTE ADJUSTMENTS.../CROP ADJUSTMENTS.

  • Jobs are failing and give dump "TSV_TNEW_BLOCKS_NO_ROLL_MEMORY"

    Hi ,
    Jobs are failing and giving dump "TSV_TNEW_BLOCKS_NO_ROLL_MEMORY " and TSV_TNEW_PAGE_ALLOC_FAILED.
    Here are the logs:
    ===================================================================
    15.04.2009 07:11:35 Job started                                                                                00           516          S
    15.04.2009 07:11:35 Step 001 started (program ZAPO_REALIGNMENT_MPOS_PA, variant AP_AP_REALG_S1, user ID aaa_bbb_apo)      00           550          S
    15.04.2009 07:12:52 ABAP/4 processor: TSV_TNEW_BLOCKS_NO_ROLL_MEMORY                                                      00           671          A
    15.04.2009 07:12:52 Job cancelled                                                                                00           518          A
    ===================================================================
    Job log overview for job:    BIREQU_4DHSSKZ38YF3KALR4ZBRCDNQT / 00382400
    Date       Time     Message text                                                                     Message class Message no. Message type
    15.04.2009 00:38:24 Job started                                                                           00           516          S
    15.04.2009 00:38:24 Step 001 started (program SBIE0001, variant &0000000024435, user ID aaa_bbb_APO)      00           550          S
    15.04.2009 00:38:24 Asynchronous transmission of info IDoc 2 in task 0001 (0 parallel tasks)              R3           413          S
    15.04.2009 00:38:24 DATASOURCE = 9AZAP_AM                                                                 R3           299          S
    15.04.2009 00:38:24 *************************************************************************             R8           048          S
    15.04.2009 00:38:24 *          Current Values for Selected Profile Parameters               *             R8           049          S
    15.04.2009 00:38:24 *************************************************************************             R8           048          S
    15.04.2009 00:38:24 * abap/heap_area_nondia......... 2000683008                              *            R8           050          S
    15.04.2009 00:38:24 * abap/heap_area_total.......... 2000683008                              *            R8           050          S
    15.04.2009 00:38:24 * abap/heaplimit................ 100894464                               *            R8           050          S
    15.04.2009 00:38:24 * zcsa/installed_languages...... ED                                      *            R8           050          S
    15.04.2009 00:38:24 * zcsa/system_language.......... E                                       *            R8           050          S
    15.04.2009 00:38:24 * ztta/max_memreq_MB............ 256                                     *            R8           050          S
    15.04.2009 00:38:24 * ztta/roll_area................ 100000000                               *            R8           050          S
    15.04.2009 00:38:24 * ztta/roll_extension........... 8000683008                              *            R8           050          S
    15.04.2009 00:38:24 *************************************************************************             R8           048          S
    15.04.2009 00:38:54 ABAP/4 processor: TSV_TNEW_PAGE_ALLOC_FAILED                                          00           671          A
    15.04.2009 00:38:54 Job cancelled                                                                         00           518          A
    =================================================================
    Please suggest

    Hi,
    Here are the details as follows:
    ORACLE
    10.2.0.2.0
    =====
    HP-UX
    9000/800
    ====
    Kernel release    700
    Compilation       HP-UX B.11
    Sup.Pkg lvl.      108
    ABAP Load         1563
    CUA load          29
    =============
    SCM 5.00
    SAP_BASIS     700     0011     SAPKB70011
    SAP_ABA     700     0011     SAPKA70011
    ST-PI     2005_1_700     0003     SAPKITLQI3
    PI_BASIS     2005_1_700     0011     SAPKIPYJ7B
    SAP_BW     700     0012     SAPKW70012
    LCAPPS     2005_700     0004     SAPKIBHD04
    SAP_AP     700     0008     SAPKNA7008
    EA-IPPE     400     0007     SAPKGPID07
    SCM     500     0008     SAPKY50008
    SCM_BASIS     500     0008     SAPK-50008INSCMBASIS
    QIE     200     0004     SAPK-20004INQIE
    BI_CONT     703     0005     SAPKIBIIP5
    ST-A/PI     01I_SCM500     0000          -
    VIRSANH     530_700     0005     SAPK-53305INVIRSANH
    ========================
    Thanks,
    VK

  • RSCOLL00 OS collector job is cancelled and getting TIME_OUT dump

    Hi...
    Am using ECC 5.0 , In our PRD system progaram name RSCOLL00 OS collector job and its getting TIME_OUT dump for the particular job.
    And i've seen that an error SQL error 3997 occuredin that job log.
    And this are the dump following search criteria
    "TIME_OUT" C
    "SAPLSALC" or "LSALCU16"
    "SALC_MT_READ"
    pls do the needful ASAP.
    thanks,
    Gopinath.

    Hi Gopinath,
    If your problem is still pending pls paste the complete dump message in this form so that we can give solution accordingly.
    If you problem has been solved then mentions here complete dump message and solution which is applied by you.
    Anil

  • I have added photos to a portfolio website I'm building and a lot of them look VERY grainy when you click on them. They are nice clean large files and can print bat high res way over 16" x 20" so whats happened to them in iWeb?

    I have added photos to a portfolio website I'm building and a lot of them look VERY grainy when you click on them. They are nice clean large files and can print bat high res way over 16" x 20" so whats happened to them in iWeb?

    When you are dealing with websites, image file size is a trade off between quality and download speed. There's not a lot of point to having high quality images if they take too long to download in the browser.
    Nowadays we also have to consider the device that the end user is viewing the images on. An image that is optimized for viewing on a large screen is total overkill and unsuitable for those using mobile devices.
    Really we should be supplying different versions of media files for different devices using @media rules in the stylesheet but this is rather outside of the scope of iWeb. If you use the built in image optimizer and the iWeb Photo template with slideshow, the application will optimize the images according to the way in which you set this function in preferences and the slideshow size will be automatically reduced for those viewing it on smaller screens.
    If you want to give your viewers the opportunity to view large, high quality images, you can supply them as a download.

  • I was working on mail and arrow with nice airplane sound disappeared and changed to the word sent how do i go back to arrow ?

    i was working on mail and arrow with nice airplane sound disappeared and changed to the word sent how do i go back to arrow ?

    Launch Mail.
    Start "New Message".
    Click "View" in the menu bar and then "Customize Tool Bar".
    Customize Toolbar sheet should drop down.
    At bottom left there is "Show" pop up box, click it and select "Icon and Text".
    Click "Done".

  • I have a Officejet 8500 A910n. When printing a pdf the print job just stops and will not print.

    Only certain files the print job just stops and will not print in Adobe Acrobat X.  All other applications work fine.

    Have you tried downloading and installing Adobe Acrobat XI?  http://www.adobe.com/products/reader.html
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • I am trying to apply for a job on line and I am receiving this message t has been determined that you are currently running a "Popup Blocker". In order to continue, please allow this site from within your "Popup Blocker" preferences. How do I fix this?

    Hello,
    I am trying to apply for a job on line and I am receiving the following message "
    t has been determined that you are currently running a "Popup Blocker". In order to continue, please allow this site from within your "Popup Blocker" preferences
    How do I correct this??
    Thanks!

    Open Safari preferences, click on the Security icon in the toolbar, uncheck the pop-up blocker option.

  • Deteriorating Paul and Kate voice quality, Captivate 5

    I am working  on a project which involves importing a power point presentation ( 60 slides  with own Paul and Kate audio files total size of presentation 50 MB), and when I  publish the project it works fine but half way through the Paul and Kate voice  quality starts to deteriorate and becomes a slur.
    Publish  setting used:
    I would appreciate  any help in fixing this problem

    Moving this discussion to the Captivate forum.

  • IMovie 6, DVDSP 4, and Ken Burns

    Hi,
    There seems to be an issue with DVDSP drop zones and Ken Burns effects rendered in iMovie 6 (or any other pan/zoom software like Photo to Movie). Dropping a pan/zoom-rendered movie into a menu drop zone looks horrid after building the project, then viewing the VIDEO_TS folder with DVD player. Same result after burning DVD.
    The drop zone video, as it pans and zooms, undulates in some areas while zooming, to the point of distraction. I cannot see this effect if the file is imported into an iDVD6 drop zone or opened in Quicktime 7. I have tried deinterlacing, blah, blah to no avail.
    ***? I paid $80 for iLife '06 and $500 for DVDSP and I get better results with iLife? This doesn't make any sense. Any advice appreciated.

    If you getting a moire (intereference) effect this is usually associated with things like checked shirts or lots of very small detail in the footage. It probably looks fine in iMovie as it is larger so you don't see the effect but when you make it smaller in the drop zone all the small detail "bunches" together and because then the effective resolution is smaller it has less pixels to play with. Also are the photos you are using for your Kens Burns montage scanned from magazines... this would also give a moire effect as the scanner has scanned the dots that the picture is made up of.
    I had a similar problem recently with a scene access menu created in After Effects. The scene in question had a great big venetian blind in the background. Looked fine as full sized footage but when reduced to a scene selection size it was "ringing" like crazy and looked horrible. The only way to get rid of it was to blur the footage slightly - as it was appearing small you didn't notice.
    If your pics are from magazines etc. then you can use your scanners descreening methods to largely eliminate any dot...
    Hope this helps
    Steve Kirkham
    PS. As Hal said welcome back Chris - and Hal is right this board does have a sense of camararderie with everyone trying to help out

  • Intel i217-LM NIC Causes Broadcast storm and High CPU

    Wanted to post this here to help others that may be experiencing issues with broadcasts.   
    If you have PC's with the Intel i217-LM NIC if you don't have the latest driver from Intel the NIC will cause an IPV6 broadcast storm when the computer goes into sleep/hibernate.  You have to have at least two PC's on your network in sleep/hibernate mode.  It causes the same affect as a network loop.  In my network it would cause the MDF CPU to go to 100% and basically shut the network down.  
    We have Lenovo M93 desktops that have this NIC and I know that there are other PC's that have his same NIC and experience the same problem.
    When the broadcast storm is happening you can issue the command 
    show interfaces | include is up|line|broadcast on your MDF switch to find which interfaces have high broadcasts.  You may have to trace it through your uplinks to your IDF's.  You can then shut those interfaces to stop the broadcast storm.
    Your long term solution will be to get the latest NIC driver from Intel and update your PC's.

    It's connected IPV4 but because of the faulty NIC driver it starts broadcasting IPV6 when in sleep/hibernate mode.
    https://supportforums.cisco.com/discussion/12291431/ipv6-broadcast-storm-caused-hp-eliteone-800-intel-i217-lm-nic-how-find-hosts
    https://forums.lenovo.com/t5/A-M-and-Edge-Series-ThinkCentre/M83-and-M93p-ipv6-storms-intel-i217-LM-NIC/td-p/1600686

Maybe you are looking for

  • Is there any transaction code for uploding logo in ALV reports.

    is there any transaction code for uploding logo in ALV reports.

  • Color picker tool not working after upgrading to Lightroom 6.0I

    I had Lightroom 4.4 and I upgraded to Lightroom 6.0.1. mine is a standalone version and not creative cloud version After upgrading, color picker tool is not working properly. I am unable to pick color from image

  • XML Gallery Not Showing Up!?

    Hello, first time here. I followed this tutorial: http://www.kirupa.com/developer/mx20...otogallery.htm I have finished everything, changed the xml to my images and caption etc, 1 problem, the pictures arent showing up. I just see a square box. I upl

  • Speakers doesn't work intermittently on iPhone5

    Dear Team, I have bought new Iphone5 two weeks back, suddenly I observed that speakers are not working when I tried using a game and then I tried switching it off and on, then I observed the speakers are working, this happened twice on my phone, plea

  • Speaker output for g5

    I have a question about the iMac G5 speaker output. When I connect my Bose stereo to my Imac using an analog stereo jack, the audio quality sounds garbled and not usable. Is the Imca only good for speakers with optical jacks only?