Trigger Jobs simultanously

Hello Experts,
I have a program (that generates a Job) that triggers about 7 reports according to a specific sequence (stored in a specific table). After getting this sequence i'm calling SUBMIT for each report... It gives something like :
CALL FUNCTION 'JOB_OPEN'.
LOOP AT SEQUENCE_TABLE.
SUBMIT SEQUENCE_TABLE-REPORT_NAME. "(from report 1 to 7) Some reprts are also generating a Job
ENDLOOP
CALL FUNCTION 'JOB_CLOSE'.
Using that solution i'm waiting for each report to be submited before triggering the next one...Now i'm looking for a solution that triggers the whole sequence at same time (Submit the reports simultanously) ?
Can you help me on this ?
THANKS
Best Regards,
Soufiane

Hi,
This may help:
http://help.sap.com/saphelp_nw04/helpdata/en/c4/3a7f1f505211d189550000e829fbbd/content.htm
http://help.sap.com/saphelp_nw04/helpdata/en/fa/096e92543b11d1898e0000e8322d00/content.htm

Similar Messages

  • BI : Trigger Job

    Hi Experts,
    I need to create a job which wil trigger at Last monday of fiscal month.
    I found FM which will do that work. I want to know is there any table in BI from where i can derive the date of last monday and trigger the job. Kindly advise.
    thanks & regards,
    M.S

    Hi MS,
    you can trigger the Job or process chain in BW from your source system.
    There is a good blog which tells how to do that. Let me know if you've any doubts
    /people/surendrakumarreddy.koduru/blog/2009/03/18/how-to-trigger-the-process-chains-in-bw-from-ecc

  • How to schedule my "trigger" job.

    Hi,
    Actually i do have a script which actually trace.who are all the users/schema(SLDBA) have involved into the particular database.
    the scipt(trigger) as follows:
    TRIGGER LOGON_SLDBA AFTER LOGON ON SLDBA.SCHEMA
    BEGIN
    insert into logon_SLDBA
    select sysdate, ora_login_user, machine, program, osuser
    FROM SYS.DUAL,
    SYS.V_$SESSION
    WHERE SYS_CONTEXT('USERENV','SESSIONID' ) = audsid(+
    AND machine <> 'sis-slrs02.sl.ad';
    END;
    So the above "logon trigger" will writes their user information..
    So actually my requirement is
    I need to schedule the above "logon trigger" script automatically run for the time 11.00 AM daily,and it should send an message to some of user receipents.
    Is any script/scheduler available for my task.............
    For information
    I do not have an much PLSQL knowledge.
    Looking for Helpful answers....
    Thanks in Advance
    Edited by: mafaiz on May 27, 2011 12:28 PM

    Dear,
    TRIGGER LOGON_SLDBA AFTER LOGON ON SLDBA.SCHEMA
    BEGIN
    insert into logon_SLDBA
    select sysdate, ora_login_user, machine, program, osuser
    FROM SYS.DUAL,
    SYS.V_$SESSION
    WHERE SYS_CONTEXT('USERENV','SESSIONID' ) = audsid(+
    AND machine 'sis-slrs02.sl.ad';
    END;
    /May be I did not understand you correctly, but how could you activate a trigger automatically without a log-on your data base?
    Anyway, you have the dbms_scheduler If you want to schedule a given stored procedure or package
    http://www.oracle-base.com/articles/10g/Scheduler10g.php
    But bear in mind that what you are asking is somewhat strange
    Hope this helps
    Mohamed Houri

  • Trigger job using an event

    Hi
    Could anyone tell me the steps involved in triggering a job in R/3 using an event.It would be very helpful if somebody could enumerate the steps.
    Points will be awarded.
    Regards
    Ankit

    Follow these steps:
    Step1: Create event from transaction SM62.
    Step2: Create a program that triggers this event by calling the FM u2018BP_EVENT_RAISEu2019.
    Step3: Configure the background job from transaction SM36.
    For details pl. see my blog in this given link.
    http://www.****************/Tutorials/ABAP/BackgroundJob/OnEvent.htm
    Regards,
    Joy.

  • Other ways to trigger jobs

    Hi all
    I was wondering if there is any way that i can turn a job ON and OFF through JavaScript in the web page of a production line monitor page...
    Best regards
    Tks in advance

    Hello Pedro!
    everything going well! and you?
    thanks for your answer!
    i was now just wondering and testing how i could implement it.
    i already tested those links and they work like a charm however it is necessary to run the link. When we run the link, does it have to open a new page, or is there a way to run the link without going out of the line monitor screen?
    Best Regards

  • Trigger a job based on a job that will be created during runtime

    I searched sdn and I did not find any threads addressing my issue(Trigger JOB B after a JOB A which will not be available untill runtime).
    My Req:
    I have a where in, a JOB 'A' will trigger to execute a BDC session in program A using a SUBMIT ...RETURN statement.
    I will have to trigger a different job 'B' using program B, the moment the 1st job runs completed.
    I thought this would be possible, by handling the events and trigger the FM in program A after the SUBMIT statement. But the problem is SUBMIT statement would just create the job and return the control back to the program A and immediately call the FM to raise the EVENT. In this case, my job B will trigger and even complete before JOB A could complete successfully.
    I tried using AFTER JOB option in SM36 instead of AFTER EVENT. The problem with this option is, JOB A will be available ONLY during runtime and hence cannot schedule program B with the option AFTER JOB.
    Any thoughts are highly appreciated.
    Thanks for your help.
    Best Regards,
    Kiran

    Hi Thomas,
    I programmed the way you mentioned and this triggers both the jobs at the same time.
    DATA: number  TYPE tbtcjob-jobcount,
          jobname LIKE tbtcjob-jobname.
    jobname  = 'JOB1'.
    CALL FUNCTION 'JOB_OPEN'
      EXPORTING
        jobname          = jobname
      IMPORTING
        jobcount         = number
      EXCEPTIONS
        cant_create_job  = 1
        invalid_job_data = 2
        jobname_missing  = 3
        OTHERS           = 4.
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ELSE.
      SUBMIT zhbn_life_premium_summary_rpt
      VIA JOB    jobname
          NUMBER number
          AND    RETURN.
      IF sy-subrc EQ 0.
        CLEAR: jobname.
        jobname = 'JOB2'.
        CALL FUNCTION 'JOB_OPEN'
          EXPORTING
            jobname          = jobname
          IMPORTING
            jobcount         = number
          EXCEPTIONS
            cant_create_job  = 1
            invalid_job_data = 2
            jobname_missing  = 3
            OTHERS           = 4.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ELSE.
          SUBMIT zhbn_life_premium_summary_rpt
          VIA JOB    jobname
              NUMBER number
              AND    RETURN.
          IF sy-subrc EQ 0.
            WRITE: 'job 2 success'.
            jobname = 'JOB2'.
            CALL FUNCTION 'JOB_CLOSE'
              EXPORTING
                jobcount             = number
                jobname              = jobname
                strtimmed            = 'X'
              EXCEPTIONS
                cant_start_immediate = 1
                invalid_startdate    = 2
                jobname_missing      = 3
                job_close_failed     = 4
                job_nosteps          = 5
                job_notex            = 6
                lock_failed          = 7
                invalid_target       = 8
                OTHERS               = 9.
            IF sy-subrc <> 0.
              MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                      WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
            ENDIF.
          ENDIF.
        ENDIF.
      ENDIF.
      jobname = 'JOB1'.
      CALL FUNCTION 'JOB_CLOSE'
        EXPORTING
          jobcount             = number
          jobname              = jobname
          strtimmed            = 'X'
        EXCEPTIONS
          cant_start_immediate = 1
          invalid_startdate    = 2
          jobname_missing      = 3
          job_close_failed     = 4
          job_nosteps          = 5
          job_notex            = 6
          lock_failed          = 7
          invalid_target       = 8
          OTHERS               = 9.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDIF.
    Am I missing anything?
    Thanks
    Kiran

  • How to Trigger CAF web services from java Job schedulers?

    Hi Experts,
    I am in need of calling CAF based web services from custom Job scheduler.
    Could you please provide your idea and input if anyway we can call such web service by java api in custom jobs development?
    Thing is that we have CAF BO which hold around 1 million record (master data) and based on approval scenario (developed in WDJ apps) we will have to move this record to another business object for further manipulation?
    Hence due to huge number of record in BO, I would like to automate this activity by calling Jobs from WDJ apps and then Job will trigger the CAF web service which would create record into the BO object.
    Please share your idea and let me if it can be achievable by java apis to trigger Jobs by WDJ apps & webservice by jobs?
    Thanks & Regards,
    Pankaj

    Hi Experts,
    I am in need of calling CAF based web services from custom Job scheduler.
    Could you please provide your idea and input if anyway we can call such web service by java api in custom jobs development?
    Thing is that we have CAF BO which hold around 1 million record (master data) and based on approval scenario (developed in WDJ apps) we will have to move this record to another business object for further manipulation?
    Hence due to huge number of record in BO, I would like to automate this activity by calling Jobs from WDJ apps and then Job will trigger the CAF web service which would create record into the BO object.
    Please share your idea and let me if it can be achievable by java apis to trigger Jobs by WDJ apps & webservice by jobs?
    Thanks & Regards,
    Pankaj

  • Trigger sheduled job

    Hi all,
    I need to trigger or release sheduled job when particular file is present in folder.
    I mean for example..
    I have sheduled a job ZFCP0001A01...I want to trigger job if ZFCP.TXT file is present in particular folder. If file is not present, then dont trigger job.
    Does anyone has program which i can shedule everyday to trigger above job if file present.
    Many Thanks
    Shiva

    Hi shiva,
    It is possible.
    Just create one event for job that you are going to monitor..i.e file placing in a folder.
    then by using SM36/SM37 u can schedule your job ZFCP0001A01 based on Job Start condition after event in SM37.  you need to configure it.
    Pls check with your basis people to create that event.
    Reward points if my reply helps u
    ~Lakshmiraj~

  • Regarding creation of multiple jobs calling same program

    Hai anand,
    To improve the performance of the report, i think i want to make a try of your new strategy.
    Could you pls give me oultine code of how to create each job for each P_monat by calling
    same program multiple times.
    by the by i have two points to confirm with this.
    1-if we call same program at a time using different job wont it gets data confused with data manipulation
      inside the internal table?
    2-you want me to call each job simultaneously or one after another?
    ambichan.

    hey guys,
    Thanks for your reply.
    As my next step tried to do like this. but leads to short dump. could you pls guide me in submit decleration.
    SELECT-OPTIONS: S_BUKRS FOR T001-BUKRS MEMORY ID BUK OBLIGATORY .
    PARAMETERS: P_GJAHR LIKE BSIS-GJAHR OBLIGATORY,   " FISCAL YEAR
                P_MONAT LIKE BSIS-MONAT OBLIGATORY,  " Current period
                P_BUKRS LIKE T001-BUKRS OBLIGATORY.   " COMPANY CODE
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(33) TEXT-002 FOR FIELD P_TOTAL.
    PARAMETERS: P_TOTAL AS CHECKBOX .
    SELECTION-SCREEN END OF LINE.
    Start-of-selection.
    jobname = 'ZUSRTEST'.
    call function 'GET_PRINT_PARAMETERS'
      exporting
        no_dialog = 'X'
      importing
       valid = l_valid
       out_parameter = ls_params.
    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 ne 0.
    endif.
    lets assume that my prod system has 6 background work process.
    Here if i input p_monat is 6months then 6 jobs will be created right
    and job p_monat will be as index for jobs job1,job2 job3..job6 etc.
    *job p_monat will be my job names right.
    *I am trying to pass parameter also from main program to calling program
    *but it leads to shortdump error why.
    could you pls help me if my way of declaration in submit can be done or not.
    wk_monat = 01.
    do wk_monat times.
    <b>submit zfipr_vat_report_p1 with s_bukrs = s_bukrs
                               with p_gjahr = p_gjahr
                               with p_monat = wk_monat
                               with p_bukrs = p_bukrs
                               with p_total = p_total
                            via job p_monat
                            number jobcount
             to sap-spool without spool dynpro
               spool parameters ls_params and return.</b>
    wk_monat = wk_monat + 1.
    if wk_monat = p_monat.
    exit.
    endif.
    enddo.
    sdate = sy-datum.
    stime = sy-uzeit + 30.
    CALL FUNCTION 'JOB_CLOSE'
         EXPORTING
            EVENT_PERIODIC              = ' '
              JOBCOUNT                    = jobcount
              JOBNAME                     = jobname
             STRTIMMED                   = 'X'
    Note:
    Also when i execute the main program in background i could not see jobs declared in SM37. i was expecting jobnames job1,job2 till job 6.
    ambichan.

  • Schedule 4 jobs for conversion scan

    We upgrade 46C to ECC6+EHP4.
    When run "Table w/o language info",  We are told by SAP there will be 4 jobs for this scan.
    Anyway I can only see one job to be defined, i.e. it does NOT pop up the second, 3rd, 4th job
    to be defined.
    Could you please tell me why?
    Thanks

    Hi,
    please have a look at the Unicode conversion Guide:
    Excerpt (begin):
    Select  Schedule Worker Jobs from the toolbar, and then set the time and date for the worker job.
    You can run multiple jobs simultaneously, but you must add a suffix to the second and all subsequent jobs.
    Excerpt (end):
    Hence you have to change the job name (add a suffix) if you want to run several jobs.
    Best regards,
    Nils Buerckel

  • HR triggers job in CUP

    Hello there,
    I have an issue with my HR trigger jobs they are always in busy state as result i  am unable to capture  the Triggers in CUP
    we are GRC CUP 5.3 SP9
    can anyone share their experience please  ?
    Thanks
    MK

    Our Trigger jobs run smoothly most of the time.  However, sometimes, the JAVA system that we have GRC on will go down or restart itself.  When this happens, our trigger jobs are most likely in a Busy state since they run so often (every 60 and 80 seconds).  Once we click on the busy icon, they start up again.  We have made it a requirement that our GRC admin checks the trigger jobs at least once daily (normally every morning) to make sure the jobs aren't "stuck" in busy mode.  When we have more time, we plan to investigate further to find out why the java stack is restarting so often.  Right now we are just recording how often this happens.
    Hope this helps.
    Peggy

  • Setting multiple jobs simultaneousely..........

    i want some info how to set multiple jobs simultaneously.
    i have one pgm which is taking much time in prod.
    infact that pgm updates one table and picks from that table and sends to FTP file.
    i have splitted those table updates into 4 parts , i mean i have taken 4 pgms to do this.
    am splitting the table values into 4 parts and updating from these 4 pgms.
    now i am calling the 4 pgms in background using submit.
    now can reduce the half-of the time.
    fine with this but i want to still reduce the time.
    i want to  schedule these 4 pgms simultaneously in background so that all the values will update at a time and can reduce the time

    this is what i have been doing. thank in advance
    JOBNAME = 'TEST_FLEX_1'.
    CALL FUNCTION 'JOB_OPEN'
      EXPORTING
      DELANFREP              = ' '
      JOBGROUP               = ' '
        JOBNAME                = JOBNAME
       SDLSTRTDT              =  SY-DATUM
      SDLSTRTTM              = NO_TIME
      JOBCLASS               = 'C'
    IMPORTING
       JOBCOUNT               = JOBNUMBER
    EXCEPTIONS
       CANT_CREATE_JOB        = 01
       INVALID_JOB_DATA       = 02
       JOBNAME_MISSING        = 03
       OTHERS                 = 99          .
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    IF SY-SUBRC = 0 .
    SUBMIT ZTESTPGM1 AND RETURN
                     USER SY-UNAME
                     VIA  JOB JOBNAME NUMBER JOBNUMBER
                     WITH selection-table seltab.
    SUBMIT ZTESTPGM_2 AND RETURN
                     USER SY-UNAME
                     VIA  JOB JOBNAME NUMBER JOBNUMBER
                     WITH selection-table seltab.
    SUBMIT ZTESTPGM_3 AND RETURN
                     USER SY-UNAME
                     VIA  JOB JOBNAME NUMBER JOBNUMBER
                     WITH selection-table seltab.
    SUBMIT ZTESTPGM_4 AND RETURN
                     USER SY-UNAME
                     VIA  JOB JOBNAME NUMBER JOBNUMBER
                     WITH selection-table seltab.
    ENDIF.
    CALL FUNCTION 'JOB_CLOSE'
      EXPORTING
      AT_OPMODE                         = ' '
      AT_OPMODE_PERIODIC                = ' '
      CALENDAR_ID                       = ' '
      EVENT_ID                          = ' '
      EVENT_PARAM                       = ' '
      EVENT_PERIODIC                    = ' '
        JOBCOUNT                          = JOBNUMBER
        JOBNAME                           = JOBNAME
      LASTSTRTDT                        = NO_DATE
      LASTSTRTTM                        = NO_TIME
      PRDDAYS                           = 0
      PRDHOURS                          = 0
      PRDMINS                           = 0
      PRDMONTHS                         = 0
      PRDWEEKS                          = 0
      PREDJOB_CHECKSTAT                 = ' '
      PRED_JOBCOUNT                     = ' '
      PRED_JOBNAME                      = ' '
      SDLSTRTDT                         = NO_DATE
      SDLSTRTTM                         = NO_TIME
      STARTDATE_RESTRICTION             = BTC_PROCESS_ALWAYS
       STRTIMMED                         = 'X'
      TARGETSYSTEM                      = ' '
      START_ON_WORKDAY_NOT_BEFORE       = SY-DATUM
      START_ON_WORKDAY_NR               = 0
      WORKDAY_COUNT_DIRECTION           = 0
      RECIPIENT_OBJ                     =
      TARGETSERVER                      = ' '
      DONT_RELEASE                      = ' '
      DIRECT_START                      =
    IMPORTING
       JOB_WAS_RELEASED                  = JOB_RELEASED
    CHANGING
      RET                               =
    EXCEPTIONS
      CANT_START_IMMEDIATE              = 01
       INVALID_STARTDATE                 = 01
       JOBNAME_MISSING                   = 02
       JOB_CLOSE_FAILED                  = 03
       JOB_NOSTEPS                       = 04
       JOB_NOTEX                         = 05
       LOCK_FAILED                       = 06
       OTHERS                            = 99
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

  • CS4 Media Encoder batch jobs, and .avi ffdhshow

    I have two distinct, but slightly related questions to ask.
    First I should point out: I've used Premiere and After Effects for creative purposes before, but today I am using Adobe software for a more practical purpose: some engineering research work. Essentially, I have thousands of hours of video to process, I have all the firepower needed to perform it, I am currently limited by the ammount of time I am stuck clicking away at the computer.
    Essentially my job right now is to convert and concatonate 1 minute segments into larger cohesive files. I say convert because the supplied files are encoded as .avi with an obscure proprietary surveillance video format (Mavix, for those of you familiar, doubt it though, even a google search won't bring up anything). It's okay, I have the VFW installed and so far I've been doing fine (if not slowly) pre-converting to NTSC DV default with AME CS4 and then importing into VDub (handy because of it's automatic file appending feature) at which point I compress with ffdshow (gave me the best performance considering quality, compression and processing perfromance). Vdub is also handy because I can take better advantage of multi-cores (8 per machine) by running Vdub jobs and AME jobs simultaneously. I am still amazed how mult-tasking on these machines gets me absolutly no performance hits.
    Why is it that I am using AME? It seems to be the only thing that can decode these Mavix files (I've tried them all). And only a direct convert through AME... if I open it up in premiere first, then export it, the video glitches.
    Question 1:
    Right now, the biggest challenge is batch converting videos. I can drag up to 70-75 videos (regardless of hardware) into AME before it starts rejecting files. I would like for it to pre-process thousands of them at a time automatically. Any ideas how the queue size can be increased or how I can properly batch convert thousands of files at a time? Checking back at a computer every 20 minutes for a week is a real waist of time when I could leave it sit over the weekend in a corner and do it's thing.
    Question 2:
    I wanted to reuse the concatenated files that Vdub spat out (.avi ffdshow H.264 -> no comments please, I have a good reason for doing this) for some other work. I just want to know if it is possible to get Premiere to work from these files directly or if I have to reconvert them to somethign else first. So far, importing them yields black video.

    Hi,
    I have absolutely no experience with this...but as to question number 2... I did a google search on ---avi ffdshow h264 cs4 ----and found this info
    As you probaby know a lot of people using premiere are adament about NOT loading codec packs, and in particular ffdshow and k-lite...but you probably know that or you might not have said " no comments please "....etc.
    That said, there is a part of the following stuff that says something about using cs4 with ffdshow with h264 enabled in the video and something enabled in the sound.. and then the reference to K-lite...but that k-lite post was using ( at that point ) a different editor I think...so take this with a grain of salt and maybe check the ffdshow enabled setting so you can see your video in PP...
    Good luck  ....and I hope your computer doesnt explode  or anything bad happens...which might mean a total reformat and reinstall etc...
    http://forum.videohelp.com/threads/302604-Creative-Vado-HD-AVI-%28H-264%29-Editing
    ·  I also own a Vado HD.
    May I know which editor is compatible with it?
    Quote
    · 13th Apr 2009 09:36 #7
    poisondeathray
    View Profile
    View Forum Posts
    Private Message
    Member
    Join Date: Sep 2007
    Location: Canada
    For simple edits, you can use vdub (see above)
    If you need a NLE, Vegas Pro 8 will work, if you have ffdshow (h.264 enabled) or x264vfw, but it won't see the audio. So you can open it in vdub and save the audio as wav then import into Vegas
    Premiere Pro CS4 will work, but you need ffdshow (h.264 enabled in the video configuration and MSADPCM enabled in the audio configuration)
    Cheers
    Quote
    · 10th May 2009 23:15 #8
    rogerconnery
    View Profile
    View Forum Posts
    Private Message
    Member
    Join Date: Sep 2006
    Location: United States
    Hi, I just bought a Creative Vado HD and I have 3 clips I just want to paste together.
    I downloaded Virtualdub, downloaded x264vfw, downloaded ffdshow (h.264 enabled) and installed all three. I still can't open any of the Vado HD clips into Virtualdub. I get an error message. Is there another step I am missing?
    Thanks in advance!
    Quote
    · 10th May 2009 23:21 #9
    poisondeathray
    View Profile
    View Forum Posts
    Private Message
    Member
    Join Date: Sep 2007
    Location: Canada
    do you have this version installed?
    http://sourceforge.net/projects/x264vfw/
    if that doesn't work for you , enable h.264 in the ffdshow vfw decoder interface (yellow icon, not red icon), because vdub relies on vfw , not directshow    ( ROBODOG2 NOTE ----GRAPHIC BELONGS HERE.....SEE BELOW )
    Quote
    · 11th May 2009 12:16 #10
    rogerconnery
    View Profile
    View Forum Posts
    Private Message
    Member
    Join Date: Sep 2006
    Location: United States
    @poisondeathray - yes that helped! thank you!!!
    Now that I am able to "edit" my Creative Vado HD videos in Virtualdub, I notice something very strange. Each video clip is approx 30 seconds long. The total combined/merged clips should be approx 2:30 long. However, windows media player (as well as right clicking for properties) says the video is WAY longer than it should be (like 11 min long)!!!
    Anyone else notice this? Is this a virtualdub mistake or human error on my part?
    Quote
    · 11th May 2009 12:49 #11
    poisondeathray
    View Profile
    View Forum Posts
    Private Message
    Member
    Join Date: Sep 2007
    Location: Canada
    Did you do any editing or just append the clips? If you edited portions did you cut on keyframes?
    Did you set "direct stream copy" for video & audio?
    What do other media players (e.g. vlc, kmplayer, smplayer) and mediainfo say about the joined clip ?
    Quote
    · 26th Jul 2009 15:54 #12
    cybereality
    View Profile
    View Forum Posts
    Private Message
    Member
    Join Date: Jul 2009
    Location: United States
    Has anyone found a solution to this issue yet? I can't believe Creative would release a product like this with almost no 3rd-party support. I really wanted to get this camera, but this is a deal-breaker. I managed to get a few raw files from the Vado HD to test. They work fine just for playing in WMP, but I cannot edit the videos in any program I tried. Adobe Premiere CS4 doesn't work. You see the audio but no video. If you try to do basically anything it crashes. Sony Vegas 9 doesn't work either. Same deal, audio with no video. Same issue in VirtualDub. I have ffdshow installed and H.264 is enabled (libavcodec). Do I have any other options here?
    Quote
    · 26th Jul 2009 17:34 #13
    Xpenguin17
    View Profile
    View Forum Posts
    Private Message
    Member
    Join Date: Jul 2009
    Location: United States
    Download and install K-Lite mega codec pack. The ffdshow configuration will be pretty streamlined so you likely won't have to screw around with it after the install.
    Quote
    · 26th Jul 2009 22:56 #14
    cybereality
    View Profile
    View Forum Posts
    Private Message
    Member
    Join Date: Jul 2009
    Location: United States
    Thanks Xpenguin17. I installed the K-lite mega pack and now I can import the Vado HD raw avi files into Premiere. So far everything looks good. Thanks a lot.

  • How to send mail after job abort

    Hi,
    how can I send an email when a job is aborted? Or is there a system event if a job aborts?
    Thanks for your help
    Lutz

    You might want to look into ABAP.  Basically a generic job that would get called, to send email, whenever a certain job "aborts", but then you'd also need a wrapper job for detecting the bad return code. help.sap.com has some info on that (using events to trigger jobs), like this:
    http://help.sap.com/saphelp_47x200/helpdata/en/fa/096f33543b11d1898e0000e8322d00/frameset.htm
    or this (the full-control method)
    http://help.sap.com/saphelp_47x200/helpdata/en/fa/096f33543b11d1898e0000e8322d00/frameset.htm
    CCMS can also monitor job status too, as the other poster said,
    http://help.sap.com/saphelp_47x200/helpdata/en/fa/096f33543b11d1898e0000e8322d00/frameset.htm
    however it's very limited.  Especially if you want to use logic for the alerts (ie only certain jobs should alert upon failure, certain times of day, recipients, etc).  It's all possible with CCMS, I've seen it done before using scripts that read CCMS external alerting but it's probably easier just adding event triggers to your critical jobs.

  • Running Jobs in Parallely

    Hi All,
    We have to run 300 Jobs in parallel(All jobs start same time). Please advise the best approach to do this. Do I have to use multiple instances in Sql server ? to run all jobs at same time.
    Thanks in Advance.....

    Hi BHVS,
    Once a job is assigned to a thread, there is a limit on the number of threads used per agent subsystem. A Knowledge Base article for SQL Server 2000 that describes the thread count per subsystem in the registry can be found at
    support.microsoft.com/kb/306457.
    In SQL Server 2005 and later, these values are stored in the syssubsystem table in the msdb database. SQL Server Agent queries these values by executing the sp_enum_sqlagent_subsystems stored procedure. Once a job is assigned to a thread, the subsystem being
    used by each job step is important because of the maximum number of threads allowed per subsystem. If the maximum number of threads per subsystem has been reached, the thread running the current job will pause for five seconds, then try again. This behavior
    should be the same for both SQL Server 2000 and later versions.
    To further improve the situation, we could stagger the start times of the jobs by a minute or so. We could set things up such that 50 jobs would start at minute zero, 50 more at minute one, 50 more at minute two, and so on. Then you would only be attempting
    to start 50 jobs every minute instead of 300 jobs simultaneously every six minutes.
    References:
    https://technet.microsoft.com/en-us/magazine/2006.10.sqlqa.aspx
    http://blogs.msdn.com/b/karthick_pk/archive/2011/02/01/sql-agent-maxworkerthreads-and-agent-subsystem.aspx
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

Maybe you are looking for

  • A/c entries

    hi, pl let me know a/c posting entries in case of 1 goods receipt -101 2 goods issue 641 & 643 in case on intra company & inter compant sto

  • Orphan table header at bottom of page when page breaks a table across multiple pages

    Hi all, I think similar questions have been asked before but I have not found an answer. Here's the scenario: I have several dynamic tables in a dynamic form.  The layout is flowed, and everything can grow and shrink as needed.  That all works. Howev

  • IPhone loses edge signal when waking from sleep, E is still present

    For some reason, when I put my phone into sleep mode and then wake it a short time later, I lose my edge signal. Checking email or looking online results in the "cannot find server" error, yet the edge "E" in the top left corner is still there. This

  • HT204088 Someone's trying to scam me on here. I need help (details below)

    I just received email notification that an attempt was made to make a purchase here on I-Tunes using my pre-pay VISA card. However, I did not make that attempt. Someone has used my VISA card number without permission. What do I do, aside from calling

  • Cannot convert : into another character...

    Hi All, I am trying to import a txt file into a table using below PL/SQL code: DECLARE v_blob_data BLOB; v_blob_len NUMBER; v_position NUMBER; v_raw_chunk RAW(10000); v_char CHAR(1); c_chunk_len NUMBER := 1; v_line VARCHAR2 (32767) := NULL; v_data_ar