RDA Runs daily from 11am - 11pm for every one hour

Dear All,
One Job runs daily from 11am - 11pm, for every one hour  its a RDA, to know the data about the sales on every hour of that day, every morning and the night i m doing manually scheduling and stopping the process, is there any process which the process can automatically run between 11am - 11pm daily for every one hour with out any manual effort, kindly suggest me if there is any process type.
Thank you
Regards,
Krishna

hi krishna,
in sm37 go to the ur job and select that and goto job in menu bar and say copy and give proper name and then select the copied job and agian goto job in menu and click then it takes to the next screen where you can select start condition and give timings and periodicity and save the job..
hope it helps
Bhaskar

Similar Messages

  • How can i schedule concurrent program for every one hour from back end

    Hi ,
    I want to schedule concurrent program for every one hour from back end .
    Example
    1) xyz is the concurrent program that should run for every one hour with a parameter 111 and the SAME concurrent program that
    should run every 2 hours with a different parameter like 222.
    I mean Conc prog should run for different parametrs with a different scheduling..
    Please guide me to solve the issue.
    Thanks in advance...
    Regards
    Narender B

    Hi ,
    I have used following code for scheduling the concurrent program from backend.
    declare
    l_request_id NUMBER;
    l_return_code boolean := FALSE;
    BEGIN
    fnd_global.apps_initialize(62991,54477,20003);
    l_return_code := FND_REQUEST.SET_OPTIONS ('YES');
    l_return_code :=fnd_request.set_repeat_options('16:36:00','','DAYS','START','','Y');
    l_request_id:=fnd_request.submit_request(application => 'xbol',
    program => 'NAPP_START_GENERATE_CHART_DATA',
    description => 'Processing chart ',
    start_time => SYSDATE,
    sub_request => FALSE,
    argument1 =>4000130957231588,
    argument2 => null
    COMMIT;
    dbms_output.put_line('Program has been submited and request id is '||l_request_id);
    END;
    Here the issue was concurrent program is completing with a warning like
    Resubmission of request 75588551 has been cancelled.
    FND_RESUB_PRIVATE.PROCESS_INCREMENT EXCEPTION: ORA-01403: no data found
    Resubmission of request 75588551 has been cancelled.
    FND_RESUB_PRIVATE.PROCESS_INCREMENT EXCEPTION: ORA-01403: no data found
    so i could not find the solution for this issue,please anybody guide me to solve this issue.
    Regards
    Narender B

  • I want to schedule a dbms_job to run for every one hour

    Hi Guys,
    I want to schedule a dbms_job(in oracle 10g) to run for every one hour. Can any one provide some idea on this.
    KLR

    Thanks for your reply, but I am getting the error below
    'ORA-06550: line 1, column 112:
    PLS-00103: Encountered the symbol "END" when expecting one of the following:
    := . ( @ % ;
    The symbol ";" was substituted for "END" to continue.
    ORA-06512: at "SYS.DBMS_JOB", line 82
    ORA-06512: at "SYS.DBMS_JOB", line 139
    ORA-06512: at line 7'
    can you please check this error and let me know how can I execute one package for every one hour and how to see whether the job is running every one hour or not.
    Thanks in advance.
    KLR.

  • XML Error Message for Every one hour in SXMB_MONI

    Hi All,
    I am getting XML error Message for every one hour in PI when I check in SXMB_MONI I can see this.
    Details Below
    Sender Componant : PI
    Sender Interface : SAPCCMS
    Reciever Interface/Reciever Componant : Both are empty.
    PI Version 7.1
    Can anybody help in this.
    Dayakar

    Hi!
    I was just searching this about this problem and found a post that might interest you.
    [urn:SAPCCMS;
    cheers

  • Report for every 1 hour

    I wanted to take out a report for every one hour, the count, i used trunc(x_date,'hh24') to take the report, but the problem is, for few hours there wont be any count, so i have to substitute with zero there, any ideas ?,

    Hi,
    If you want to make sure all hours appear in the result set, even if they don't appear in the table, then outer-join to a table (or, in the example below, a sub-query) where you know they do exist.
    For example, if your table_x has columns entry_dt and amt, and you want results for every hour of the day, you can do somehting like this:
    WITH     all_hours     AS
         SELECT     TO_CHAR ( SYSDATE + (LEVEL / 24)
                   , 'HH24'
                   )     AS hr
         FROM     dual
         CONNECT BY     LEVEL     <= 24
    SELECT       a.hr
    ,       COUNT (entry_dt)     AS cnt
    ,       NVL ( AVG (amt)
               , 0
               )               AS avg_amt
    FROM           all_hours  a
    LEFT OUTER JOIN      table_x    x      ON   a.hr = TO_CHAR (entry_dt, 'HH24')
    GROUP BY  a.hr
    ORDER BY  a.hr
    ;COUNT never returns NULL, so you don't have to use NVL with COUNT.
    For other aggregate functions (such as AVG) you do need to use NVL to get 0 instead of NULL.
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only), and the results you want from that data.
    Explain, using specific examples, how you get those results from that data.
    Always say what version of Oracle you're using.

  • For every 2 hours run

    Hi,
    I am runing program for every 2 hours,
    suppose,if no data found, job log dispays message " no data found".
    or if job retrive data after job cancel.how will you do?
    due to some reasons.
    if next time runs also that job next two hous data not job cancel (data).
    how will we execute the job ?
    give any code or suggestions.

    Dear Gurus
    No start after function is not working to prevent the job running after specified period (eg .6.pm).According to ABAPer that is time period the job will try to excute if there is a delay due to Que in Job excution.
    Please guide is there any other way to schedule the job only between specific time
    Thanks a lot
    narayana

  • Write a procedure to check the count is less than 1300 for every 3 hours

    Good Morning all,
    I want to write a procedure to check the count is less than 1300 for every 3 hours
    Query:*
    Select count(*) from sample where trx_date=sysdate;
    I want to run this query every 3 hours daily
    If the count is less than 1300 every 3 hours, we should sent a reminder mail like 'Data not copy'.
    Please help me how to write a procedure.

    hi there
    first
    --define the SMTP_OUT_SERVER parameter in your init.ora initialization file
    --ALTER SYSTEM SET smtp_out_server='my.domain.com' SCOPE=SPFILE;
    after that create a procedure
    CREATE OR REPLACE procedure SCOTT.hrsmail
    is
    v_count number;
    begin
    Select count(*)  into v_count from emp;
    if v_count < 1300
    then
      UTL_MAIL.send(sender    => '[email protected]',
                      recipients => '[email protected]',
                      cc         => '[email protected]',
                      bcc        => '[email protected]',
                      subject    => 'Testing the UTL_MAIL Package',
                      message    => 'If you get this, UTL_MAIL package
    else
    null;   --what you want to do here
    end if ;
    end;
    /we should create a job which run after every 3 hrs and send a reminder mail like 'Data not copy'.
    BEGIN
      SYS.DBMS_JOB.REMOVE(373);
    COMMIT;
    END;
    DECLARE
      X NUMBER;
    BEGIN
      SYS.DBMS_JOB.SUBMIT
      ( job       => X
       ,what      => 'begin hrsmail; end;'
       ,next_date => to_date('14/02/2011 18:39:29','dd/mm/yyyy hh24:mi:ss')
       ,interval  => 'SYSDATE+3/24 '
       ,no_parse  => FALSE
      SYS.DBMS_OUTPUT.PUT_LINE('Job Number is: ' || to_char(x));
    COMMIT;
    END;
    /hope this will help you
    Regards
    Hitesh
    Edited by: Hitesh Nirkhey on Feb 14, 2011 3:34 PM

  • Macbook Pro freezing every one hour

    Hello guys,
    I did post this a couple of days ago, but since I got not a single answer, I'm kindly posting again too see if I get more luck this time, so, I hope any of you can help me with my problem, and thanks in advance:
    I have a macbook pro, OS X 10.7.5, 2,3 GHz, two years old. Around a week ago, it started to systematically hang up. It happens as follows: It goes irresponsive, independentely from which applications I'm using at the moment. It does it gradually, so at the beginning I can still move the pointer, but as soon as I try to go to force quite, the spinning wheels appears, and soon it's all frozen, so I don't have any other option than restarting with the physical button.
    Funnily, this happens every one hour. I went through other posts in the support community, and firstly, I was directed to check Terminal, finding out, right before the reboots, several messages which said that a thinning of the SSD unit was necessary, since there was less than 20% of the space free. I have cleaned up the unit, having now 34,7 GB out of 127,18 GB free (27%). I thought I had solve the problem, but no, it keeps on freezing the same. The messages do not appear anymore tho.
    I checked the unit with Disk Utility, and a repair was recommended. I did a repair, by restarting and holding Ctrl+D, after which Disk Utility says the unit is alright. But it still freezes.
    I reinstalled OS X 10.7.5, but that didn't help either.
    The Console now shows these messages before the freezing happens:
    24/09/13 18:06:08,527 com.apple.Dock.agent: 2013-09-24 18:06:08.526 DashboardClient[484:403] error [1001] setting colorSpace to Color LCD colorspace
    24/09/13 18:06:18,000 kernel: hfs: cat_lookup_siblinglinks: getkey for 114690004 failed 2
    24/09/13 18:06:52,559 installd: PackageKit: ----- Begin install -----
    24/09/13 18:06:58,217 xpchelper: could not open dyld map file: (null)
    24/09/13 18:07:01,957 sudo:     root : TTY=unknown ; PWD=/private/tmp/PKInstallSandbox.94nENK/Scripts/com.apple.pkg.JavaSecurity.n0m xH5 ; USER=apple ; COMMAND=/bin/launchctl unload /System/Library/LaunchDaemons/com.apple.mrt.plist
    24/09/13 18:07:02,262 installd: Installed "Java for OS X 2013-004" (1.0)
    24/09/13 18:07:02,271 installd: PackageKit: ----- End install -----
    24/09/13 18:07:02,000 kernel: CODE SIGNING: cs_invalid_page(0x103ddf000): p=531[MRT] clearing CS_VALID
    24/09/13 18:09:22,376 Download Java Components: Java Install finished
    24/09/13 18:09:22,376 Download Java Components: Relaunching after install: file://localhost/Library/Application%20Support/Adobe/CS5ServiceManager/CS5Servi ceManager.app/
    24/09/13 18:10:55,000 bootlog: BOOT_TIME 1380039055 0
    Thanks for the help!

    Hi,
    as un update, I am posting the last ten messages on Console for the last time I had to reboot it, since the one in the original post is already days old:
    27/09/13 13:53:05,452 com.apple.cmio.VDCAssistant: /SourceCache/AppleGVA/AppleGVA-3.1.9/Sources/Slices/Driver/AVD_loader.cpp: failed to get a service for display 3
    27/09/13 13:53:05,452 com.apple.cmio.VDCAssistant: error initializing gpu library
    27/09/13 13:53:06,482 com.apple.launchd.peruser.501: (com.apple.rcd[275]) Exited: Killed: 9
    27/09/13 13:53:06,495 com.apple.launchd.peruser.501: (com.apple.talagent[225]) Exited: Killed: 9
    27/09/13 13:53:06,535 com.apple.launchd.peruser.501: ([0x0-0x18018].com.apple.iTunesHelper[277]) Exited: Killed: 9
    27/09/13 13:53:06,538 com.apple.launchd.peruser.501: ([0x0-0x30030].com.apple.AppleSpell[308]) Exited: Killed: 9
    27/09/13 13:53:06,592 loginwindow: DEAD_PROCESS: 70 console
    27/09/13 13:53:07,053 shutdown: reboot by apple:
    27/09/13 13:53:07,054 shutdown: SHUTDOWN_TIME: 1380282787 53340
    27/09/13 13:53:07,068 UserEventAgent: CaptiveNetworkSupport:UserAgentDied:139 User Agent @port=43271 Died
    Thanks

  • My iphone 4 cuts calls in every one hour

    my phone hangs up automatically in every one hour.. any solutions??

    Hi Attic3932,
    Thanks for visiting Apple Support Communities.
    I recommend the troubleshooting steps in this article if calls are ending unexpectedly:
    iPhone: Troubleshooting issues making or receiving calls
    https://support.apple.com/kb/TS3406
    Best Regards,
    Jeremy

  • Export updated data every one hour

    I need to export the updated data every one hour.
    As far as I know the SBO objects support only updated date.
    Please let me know if you have any ideas/solutions to solve this issue.
    Thanks in advance,
    Noam.

    Hi Alon!
    do you know something about BO_SP_TransactionNotification?
    You can read more right there: https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/businessone/code-samples/using the sbo_sp_transactionnotification stored procedure.htm (BIGG thanx to <b>James Kofalt</b>)
    all you need is to write some T-SQL-lines to handle update-events.. Given article will tell you everything.
    Hope it'll solve your problem!

  • 11.5.10 Step by Step - Run istore from local machine for customization

    Hello,
    Does anyone have step by step instructions on using JDeveloper to run iStore JSPs on local machine with the end goal to customize JSPs? We have 11.5.10. I am using JDeveloper 9.0.3.5. Have tried following steps per lot of metalink notes but none seem to be working. Need to know exactly:
    - what Jdeveloper version to use for 11.5.10?
    - Where to download this version from?
    - Is it even possible to run iStore from local Windows machine using JDeveloper?
    - What is the main iStore page that should be run the 1st time?
    - Any expert available in USA for a 2 week paid assignment to help our team setup Jdeveloper for customization? And give intro lessons?
    Much Help...
    Thanks

    1. The Jdeveloper you use with 11.5.10 will depend on which ATG patch level you are at (see metalink note 416708.1)
    2. It will be in a metalink patch (see metalink note 4167708.1)
    3. I don't believe you can run it locally on a windows machine.
    4. Can't remember it off the top of my head but I will look back in my notes, I'm no longer working at the client site who has iStore.
    5. I know of 3 or 4 experts that I have worked with in Canada on JDeveloper/iStore/Configurator, I don't know anyone in the US but there has got to be a bunch out there looking for work.
    Edited by: mcharchu on Jul 17, 2009 9:20 PM

  • Narration is coming from the computer for every operation performed.

    All of the sudden I am getting narration from the audio on every operation performed. I also have noticed things are being highlighted by a black thin lined rectangle. In addition in my apple menu Restart, Shutdown, and Logout all have been duplicated. Is this all related? How do I turn off the narration?
    Any help will be much appreciated!
    Thanks
    Steve
    Imac G4   Mac OS X (10.4.3)  

    Open up your SYSTEM PREFERENCES and select UNIVERSAL ACCESS. Turn off VOICEOVER .
    Shane
    "There's no need to fear, UNDERDOG is recording your VO!"

  • How to run a job (program in it) every 48 hours

    Dear All,
    Can you please tell me how to run a job every 48 hours. I am not able to find suitable job option.
    Thanks and regards,
    Atanu

    Hi,
    1. Go to SM36 give the job name i.e. ZABC_MYJOB
    2. Click on Steps (Upper left corner - 2nd Button) and assign the ABAP report name .i.e. RSUSR002, Check and Save.
    3. Click on Start Condition (Upper left corner - Ist Button), click Date/Time and specify the Start Date and Time.
    4. Select "Periodic Job" and click on Period values now click on Other Period
    5. Now input 1 in the Minute Box. , and check and save.
    6. Again Check and Save. and Again Check and Save.
    7. Now save the job.
    This job will run after every 1 minut
    (OR) try the below steps.
    you can setup your job in order to start after an event.
    After that you can get the event triggered from the Operating System:
    - log into you Operating System with the SIDadm user id (at the Operating System level) and go to directory /usr/sap/SID/SYS/exe/run
    - Run the SAPEVT executable as follows :
    sapevt YOUR_EVENT -t pf=/usr/sap/SID/SYS/profile/DEV_DVEBMGS00_server001 nr=01
    This will raise the event, and cause the job scheduled within SAP to execute.
    In this way you can use the O.S. (u201Ccrontabu201D for example) functionalities in order to schedule your job between 9am to 6pm.
    Regards
    Shweta

  • IE sents 2 emails for every one email

    Hello,
    Iam struck with this problems since days....I have to find a solution for it...I have a email program that sends HTML content mails. When i send mails from Firefox mentioning the TO,CC,BCC there are no multiple mails. But when i open the same email program in IE and send mails ,it sends 2 mails for every mail i send. I do not see anything wrong in my code. It works fine in FireFox but not in IE. Whyyyy?????
    Can anybody tell why this problem occurs. Has anyone faced a similar problem.
    Pls reply
    praveena

    Download jnetkits from
    http://www.wisesoft.biz/jnet/index.html.
    There has no such problem

  • Workflow sending 20 email notifications every one hour for the same event

    Hi Experts,
    We had an issue on a clientu2019s prod system that the workflow triggered the same event 20 times in one hour. Later, a client has resolved the issue by removing the information from the workflow administration and reentering it back again. The workflow administration contains email settings, web settings, workflow roles, and active workflow maintenance. Although, the issue has been resolved but a client still needs to know how that happened. I would like to get some helpful opinions on how this happened because I am very new to the workflow. I would really appreciate your opinions.
    Thank you
    Don P.

    Hi Sue,
    Thank you for your response. I am not sure if the event has been triggered erroneously. The client told us that it didn't happen in the dev system when he tested it, but it only happen in the prod system. This project went live a little bit over a year ago without any issues, but it just happened the first on 6/22.
    The event is about to notify the user to review a new incident report (EHS), and it's same event id for all 20 email notifications. We will a client to look into their system about how this event raised?, what does the event log reveal? and if he uses the event queue. Again, thanks for your response.
    -Don P.

Maybe you are looking for

  • Nsurlsessiond wants to connect to Amazon S3

    Hi forum. My Little Snitch tells me that nsurlsessiond wants to connect to Amazon S3. From what I know (which is not too much), nsurlsessiond has got something to do with iCloud. And Amazon S3 is some kind of cloud storage at Amazon. What does this m

  • Erroe while opening the "Finanacial Reporting Studio"

    Hi there. Iam getting the error while opening the "Financial Reporting Studio'. The Error is "Runtime Error '429'. ActiveX component can't create object" Is there any clue to get rid of these. But I can open SQR reporting Studio and Interactive Repor

  • XMP metadata: latitude and longitude

    I have tried to pull in latitude/longitude data on a photo. Most of the XMP fields are not populated. I am wondering if the XML is correct within FCS... It could be my issue though. I used my iPhone to test. iPhoto is able to read the coordinates as

  • URLs not showing up in Navigation Bar

    I've upgraded to Firefox 4 a few weeks ago and just recently the Navigation bar started to not work properly. I can type in a URL and it will work but whenever I click on a link the new URL does not show up in the nav bard. When I right click an imag

  • Leasing/financial (3.party)integration to APPS

    Has anyone experience with integration from 3. party leasing/financial applications to Oracles E-Business Suite? The 3. party applications should include calculations/simulations such as: Principal, interests, annuity calculations etc. Please contact