Limit call by time range to particular country

Dear All,
Anyone can give me idea how to set up time range on particular countries ? For instant i have 2 dialpeer with have the same destination country like USA
and i want set time from 7:00 PM to 11:00 AM match on dial-peer100 voip and 11:01 AM to 6:59 PM match on dial-peer 200 voip.
Best Regards,
Danet

I never tested a similar scenario but I think that you can use "kron" command to shutdown a specific dial-peer.
This is an example to shutdown an interface:
event manager applet INTDOWN
event none
action 10.0 cli command "enable"
action 20.0 cli command "conf t"
action 30.0 cli command "interface FastEthernet0/0"
action 40.0 cli command "shutdown"
action 50.0 syslog msg "Interface Down!"
kron occurrence KRON1 at 22:25 oneshot
policy-list KRONLIST
kron policy-list KRONLIST
cli event manager run INTDOWN
You can find more informations on cisco command reference guides.
Good luck.

Similar Messages

  • Agent detail report shows calls outside the time range

    Hi all,
    I have an UCCX 7.0 SR5 call center. My problem is that the agent detail report is showing calls outside the defined time range on the historical reporting client.
    Those calls start slightly after the end time difined in the HR client.
    Is there any explanation for this behaviour?
    Best Regards,

    Hello Hatem,
    I think that might be expected. In the Agent Detail Report the call start time is the time the call rang at the agent's extension and not necessarily the actual time the call started. So the report will show the call was really received within the time range but it rang the agent slightly after that time.
    HTH
    Pablo

  • IPad Mini-- any way to limit time spent on particular aps, but have unlimited time on educational aps for kids?

    My twin 8 year olds just got the iPad Minis for Christmas.  Is there a way to limit how much time they spend on a particular game/ap, but have unlimited time on the educational aps?   Everything I've read thus far states that I can't.

    Under the Settings < General < Accessiblity < Guided Access, allows you to lock down an app so they cannot get out of it. With this you can lock down the educational apps for as long as you like.  You need to set a password.

  • I recently thought I lost my iPhone and I erased it but now that I found it. I cannot get the this iPhone message is lost please call ********* I am out of the country my laptop is at home. I cannot access I tune. How do I fix this. I have an iPhone 4s

    I recently thought I lost my iPhone and I erased it but now that I found it. I cannot get the this iPhone message is lost please call ********* I am out of the country my laptop is at home. I cannot access I tune. How do I fix this. I need to get it back on so I can face time with my family. The phone says 3G but it keeps saying on list mode. I signed on icloud and removed it from the account and nothing. Please help!

    If you removed the device from your iCloud account rather than using the "Stop Lost Mode" option, then you will most certainly need to restore the iPhone, and that will require a computer running iTunes.
    http://support.apple.com/kb/HT1414
    Regards.

  • Finalize() method being called multiple times for same object?

    I got a dilly of a pickle here.
    Looks like according to the Tomcat output log file that the finalize method of class User is being called MANY more times than is being constructed.
    Here is the User class:
    package com.db.multi;
    import java.io.*;
    import com.db.ui.*;
    import java.util.*;
    * @author DBriscoe
    public class User implements Serializable {
        private String userName = null;
        private int score = 0;
        private SocketImage img = null;
        private boolean gflag = false;
        private Calendar timeStamp = Calendar.getInstance();
        private static int counter = 0;
        /** Creates a new instance of User */
        public User() { counter++;     
        public User(String userName) {
            this.userName = userName;
            counter++;
        public void setGflag(boolean gflag) {
            this.gflag = gflag;
        public boolean getGflag() {
            return gflag;
        public void setScore(int score) {
            this.score = score;
        public int getScore() {
            return score;
        public void setUserName(String userName) {
            this.userName = userName;
        public String getUserName() {
            return userName;
        public void setImage(SocketImage img) {
            this.img = img;
        public SocketImage getImage() {
            return img;
        public void setTimeStamp(Calendar c) {
            this.timeStamp = c;
        public Calendar getTimeStamp() {
            return this.timeStamp;
        public boolean equals(Object obj) {
            try {
                if (obj instanceof User) {
                    User comp = (User)obj;
                    return comp.getUserName().equals(userName);
                } else {
                    return false;
            } catch (NullPointerException npe) {
                return false;
        public void finalize() {
            if (userName != null && !userName.startsWith("OUTOFDATE"))
                System.out.println("User " + userName + " destroyed. " + counter);
        }As you can see...
    Every time a User object is created, a static counter variable is incremented and then when an object is destroyed it appends the current value of that static member to the Tomcat log file (via System.out.println being executed on server side).
    Below is the log file from an example run in my webapp.
    Dustin
    User Queue Empty, Adding User: com.db.multi.User@1a5af9f
    User Dustin destroyed. 0
    User Dustin destroyed. 0
    User Dustin destroyed. 0
    User Dustin destroyed. 0
    User Dustin destroyed. 0
    USER QUEUE: false
    INSIDE METHOD: false
    AFTER METHOD: false
    User Dustin destroyed. 1
    User Dustin destroyed. 1
    User Dustin destroyed. 1
    User Dustin destroyed. 1
    USER QUEUE: false
    INSIDE METHOD: false
    AFTER METHOD: false
    User Dustin destroyed. 2
    User Dustin destroyed. 2
    User Dustin destroyed. 2
    User Dustin destroyed. 2
    User Dustin destroyed. 2
    User Dustin destroyed. 2
    User Dustin destroyed. 2
    User Dustin destroyed. 2
    USER QUEUE: false
    INSIDE METHOD: false
    AFTER METHOD: false
    User Dustin destroyed. 3
    User Dustin destroyed. 3
    User Dustin destroyed. 3
    User Dustin destroyed. 3
    User Dustin destroyed. 3
    User Dustin destroyed. 3
    User Dustin destroyed. 3
    User Dustin destroyed. 3
    User Dustin destroyed. 3
    USER QUEUE: false
    INSIDE METHOD: false
    AFTER METHOD: false
    User Dustin destroyed. 4
    User Dustin destroyed. 4
    User Dustin destroyed. 4
    User Dustin destroyed. 4
    User Dustin destroyed. 4
    User Dustin destroyed. 4
    User Dustin destroyed. 4
    User Dustin destroyed. 4
    User Dustin destroyed. 4
    USER QUEUE: false
    INSIDE METHOD: false
    AFTER METHOD: false
    User Dustin destroyed. 5
    User Dustin destroyed. 5
    User Dustin destroyed. 5
    User Dustin destroyed. 5
    User Dustin destroyed. 5
    User Dustin destroyed. 5
    User Dustin destroyed. 5
    User Dustin destroyed. 5
    User Dustin destroyed. 5
    USER QUEUE: false
    INSIDE METHOD: false
    AFTER METHOD: false
    User Dustin destroyed. 6
    User Dustin destroyed. 6
    User Dustin destroyed. 6
    User Dustin destroyed. 6
    User Dustin destroyed. 6
    User Dustin destroyed. 6
    User Dustin destroyed. 6
    User Dustin destroyed. 6
    User Dustin destroyed. 6
    User Dustin destroyed. 6
    Joe
    USER QUEUE: false
    INSIDE METHOD: false
    AFTER METHOD: false
    User Dustin pulled from Queue, Game created: Joe
    User Already Placed: Dustin with Joe
    User Dustin destroyed. 7
    User Dustin destroyed. 7
    User Dustin destroyed. 7
    User Dustin destroyed. 7
    User Dustin destroyed. 7
    User Dustin destroyed. 7
    User Dustin destroyed. 7
    User Dustin destroyed. 7
    User Dustin destroyed. 7
    User Dustin destroyed. 7
    INSIDE METHOD: false
    INSIDE METHOD: false
    USER QUEUE: true
    INSIDE METHOD: false
    INSIDE METHOD: false
    User Dustin destroyed. 9
    User Joe destroyed. 9
    User Dustin destroyed. 9
    User Dustin destroyed. 9
    User Dustin destroyed. 9
    User Dustin destroyed. 9
    INSIDE METHOD: true
    INSIDE METHOD: false
    USER QUEUE: true
    INSIDE METHOD: false
    INSIDE METHOD: false
    INSIDE METHOD: true
    INSIDE METHOD: false
    USER QUEUE: true
    INSIDE METHOD: false
    INSIDE METHOD: false
    It really does seem to me like finalize is being called multiple times for the same object.
    That number should incremement for every instantiated User, and finalize can only be called once for each User object.
    I thought this was impossible?
    Any help is appreciated!

    Thanks...
    I am already thinking of ideas to limit the number of threads.
    Unfortunately there are two threads of execution in the servlet handler, one handles requests and the other parses the collection of User objects to check for out of date timestamps, and then eliminates them if they are out of date.
    The collection parsing thread is currently a javax.swing.Timer thread (Bad design I know...) so I believe that I can routinely check for timestamps in another way and fix that problem.
    Just found out too that Tomcat was throwing me a ConcurrentModificationException as well, which may help explain the slew of mysterious behavior from my servlet!
    The Timer thread has to go. I got to think of a better way to routinely weed out User objects from the collection.
    Or perhaps, maybe I can attempt to make it thread safe???
    Eg. make my User collection volatile?
    Any opinions on the best approach are well appreciated.

  • How to find the Response time for a particular Transaction

    Hello Experts,
            Am implementing a BAdI to achieve some customer enhancement for XD01 Transaction . I need to confirm to customer that after the implementation and before implementation what is the response time of the system
    Response time BEFORE BAdI Implementation
    Response time AFTER BAdI Implementation
    Where can i get this.
    Help me in this regard
    Best Regards
    SRiNi

    Hello,
    Within STAD, enter the time range that the user was executing the transaction within as well as the user name. The time field indicates the time when the transaction would have ended. STAD adds some extra time on using your time interval. Depending on how long the transaction ran, you can set the length you want it to display. This means that if it is set to 10, STAD will display statistical records from transactions that ended within that 10 minute period.
    The selection screen also gives you a few options for display mode.
    - Show all statistic records, sorted by star
    This shows you all of the transaction steps, but they are not grouped in any way.
    -Show all records, grouped by business transaction
    This shows the transaction steps grouped by transaction ID (shown in the record as Trans. ID). The times are not cumulative. They are the times for each individual step.
    -Show Business Transaction Tots
    This shows the transaction steps grouped by transaction ID. However, instead of just listing them you can drill from the top level down. The top level will show you the overall response time, and as you drill down, you can get to the overall response time.
    Note that you also need to add the user into the selection criteria. Everything else you can leave alone in this case.
    Once you have the records displayed, you can double click them to get a detailed record. This will show you the following:
    - Breakdown of response time (wait for work process, processing time, load time, generating time, roll time, DB time, enqueue time). This makes STAD a great place to start for performance analysis as you will then know whether you will need to look at SQL, processing, or any other component of response time first.
    - Stats on the data selected within the execution
    - Memory utilization of the transaction
    - RFCs executed (including the calling time and remote execution time - very useful with performance analysis of interfaces)
    - Much more.
    As this chain of comments has previously indicated, you are best off using STAD if you want an accurate indication of response time. The ST12 (combines SE30 ABAP trace and ST05 SQL trace) trace times are less accurate that the values you get from ST12. I am not discounting the value of ST12 by any means. This is a very powerful tool to help you tune your transactions.
    I hope this information is helpful!
    Kind regards,
    Geoff Irwin
    Senior Support Consultant
    SAP Active Global Support

  • Restrict user SELECT query time on a particular VIEW

    Hi - I am trying to restrict user SELECT statemnet time on a particular view.There is a user called ABC and he is accessing many objects in database.All SELECT statments are fine execept when he query a particular VIEW.That view SELECT causing performance problem.So I am trying to restrict the SELECT query time on a VIEW.
    Can you please help me to achive this task through some SQL command like ALTER USER etc...
    Thanks for your help.

    user2538196 wrote:
    Hi - I am trying to restrict user SELECT statemnet time on a particular view.There is a user called ABC and he is accessing many objects in database.All SELECT statments are fine execept when he query a particular VIEW.That view SELECT causing performance problem.So I am trying to restrict the SELECT query time on a VIEW.
    Can you please help me to achive this task through some SQL command like ALTER USER etc...
    Thanks for your help.It sounds like you are really trying to solve a performance problem with the view. I agree with Justin that the solution to restrict access to the view dynamically sounds unwieldy.
    Consider tuning the view, or perhaps the query using the view. Post the view and see if anyone can help you tune it.

  • Can I edit the daily time range?

    I Cal allows me to set the start day for each week    Sunday or Monday
    Is there a way to limit(or condense) the range of time shown on the daily calendar?
    Especially on an iPhone appointments may not show up, not because they are are late or early in the day
    but worse, because when my daily calendar opens it starts off at midnight, thus hiding much of the afternoon and evening calendar
    Of course I can scroll down, but  if I am just checking to see what is on my schedule, I can easily miss these later events
    I would like to be able to condense all appointmens into a single line for those earlier than say 7 am and those after8 pm
    In that way I would immediately see my active daily meetings,and be alerted to those outside the range.

    No, this is not a feature of iOS Calendar app.  To suggest this to Apple, post here:
    Apple - iPhone - Feedback

  • Using a different TIME range that is different from the default TIME dim

    Hi all - this is my first post - so please be gentle!
    I am busy writing an EVDRE report on an application for which I need to use a different time range than what is currently the overall time dimension for all our other applications.
    Currently the overall time dimension is set for MAR to FEB (Financial year). I now need to do a report for - OCT to SEP reflecting the YTD values?
    The report also calls for having variable A compared against variable B over the extent of this period (OCT to SEP -> YTD). So in essence I will not be displaying any PERIODIC values but rather just the YTD values.
    How can I do this without having to resort to a manual entry of each month's TIME dimension details and still ensure the report dynamically changes when I do an EXPAND?
    I am using BPC 5.1 SP3 on Microsoft Office 2003.
    Kind regards
    Pieter

    Well, without seeing the report and the setup, my suggestion is to leverage the EVTIM function.  If your columns are static, but the user selects a period for the report, you should be able to set-up the function to build the 2 sets of 3 months.  The EVTIM function simply references another time value, and adds up or down at a specific level as a member for use in the column (or that is where I would use it).
    Does that make sense?

  • Get time Zone based on Country code

    Hi All,
    I am looking for getting the time and date of a particular country based on country code in XI. For ex. if IN comes in payload then get IST (Date and time). Can we do that in UDF?
    Thanks & Regards,
    Venu V

    > I am looking for getting the time and date of a particular country based on country code in XI.
    How should that work? Have you thought about Russia? USA?
    Check java class Calendar and TimeZone:
    http://java.sun.com/j2se/1.5.0/docs/api/java/util/Calendar.html
    http://java.sun.com/j2se/1.5.0/docs/api/java/util/TimeZone.html

  • Collapsing rows - date/time ranges

    Hi,
    I need to collapse date/time ranges (1 range per row) into the smallest continuous block for a particular item, instance (date/time).
    For example,
    CREATE TABLE "BLOCK_TEST"
       "ID" NUMBER,
       "START_BLK" DATE,
       "STOP_BLK" DATE
    alter session set nls_date_format = "YYYY-MM-DD HH24:MI";
    INSERT INTO BLOCK_TEST ("ID","START_BLK","STOP_BLK") VALUES (1, TO_DATE('2006-07-03 01:00'), TO_DATE('2006-07-03 01:30'));
    INSERT INTO BLOCK_TEST ("ID","START_BLK","STOP_BLK") VALUES (1, TO_DATE('2006-07-03 01:30'), TO_DATE('2006-07-03 02:00'));
    INSERT INTO BLOCK_TEST ("ID","START_BLK","STOP_BLK") VALUES (1, TO_DATE('2006-07-03 02:00'), TO_DATE('2006-07-03 02:30'));
    INSERT INTO BLOCK_TEST ("ID","START_BLK","STOP_BLK") VALUES (1, TO_DATE('2006-07-03 02:30'), TO_DATE('2006-07-03 03:00'));
    INSERT INTO BLOCK_TEST ("ID","START_BLK","STOP_BLK") VALUES (1, TO_DATE('2006-07-03 03:30'), TO_DATE('2006-07-03 04:00'));
    INSERT INTO BLOCK_TEST ("ID","START_BLK","STOP_BLK") VALUES (1, TO_DATE('2006-07-03 04:00'), TO_DATE('2006-07-03 04:30'));
    INSERT INTO BLOCK_TEST ("ID","START_BLK","STOP_BLK") VALUES (2, TO_DATE('2006-07-03 02:00'), TO_DATE('2006-07-03 02:30'));
    INSERT INTO BLOCK_TEST ("ID","START_BLK","STOP_BLK") VALUES (2, TO_DATE('2006-07-03 02:30'), TO_DATE('2006-07-03 03:00'));
    INSERT INTO BLOCK_TEST ("ID","START_BLK","STOP_BLK") VALUES (2, TO_DATE('2006-07-03 03:00'), TO_DATE('2006-07-03 03:30'));
    select * from block_test order by id, start_blk;
    ID      START_BLK               STOP_BLK
    1     2006-07-03 01:00     2006-07-03 01:30
    1     2006-07-03 01:30     2006-07-03 02:00
    1     2006-07-03 02:00     2006-07-03 02:30
    1     2006-07-03 02:30     2006-07-03 03:00
    1     2006-07-03 03:30     2006-07-03 04:00
    1     2006-07-03 04:00     2006-07-03 04:30
    2     2006-07-03 02:00     2006-07-03 02:30
    2     2006-07-03 02:30     2006-07-03 03:00
    2     2006-07-03 03:00     2006-07-03 03:30If ID = 1 and my instance is 2006-07-03 01:45, I need to obtain 2006-07-03 01:00 as the start of the block and 2006-07-03 03:00 as the end - notice the gap from 3:00 to 3:30 so the end would not be 4:30.
    I can do this in a procedure but I was wondering if this could be done with just SQL?
    Any hints, suggestions or opinions would be welcome.
    Thanks,
    dfg
    EDIT: After re-reading this, need to clarify that I don't need to actually change or update the rows, just query to get the start and end of the block in question...
    Message was edited by:
    Indy

    There might be better ways but the following worked for me
    SQL> select
      2        first_value(start_blk) over (partition by id ORDER BY lvl desc),
      3        first_value(stop_blk) over (partition by id ORDER BY lvl desc)
      4  from (select level lvl, id, connect_by_root start_blk start_blk, stop_blk
      5        from (select id , start_blk, stop_blk
      6              from   block_test
      7              where  id=1
      8             )
      9        connect by prior stop_blk=start_blk
    10        order by level desc
    11       )
    12  where to_date('2006-07-03 01:45', 'YYYY-MM-DD HH24:MI') between start_blk and stop_blk
    13  and rownum < 2
    14  ;
    FIRST_VALUE(STAR FIRST_VALUE(STOP
    2006-07-03 01:00 2006-07-03 03:00
    SQL> select
      2        first_value(start_blk) over (partition by id ORDER BY lvl desc),
      3        first_value(stop_blk) over (partition by id ORDER BY lvl desc)
      4  from (select level lvl, id, connect_by_root start_blk start_blk, stop_blk
      5        from (select id , start_blk, stop_blk
      6              from   block_test
      7              where  id=1
      8             )
      9        connect by prior stop_blk=start_blk
    10        order by level desc
    11       )
    12  where to_date('2006-07-03 03:15', 'YYYY-MM-DD HH24:MI') between start_blk and stop_blk
    13  and rownum < 2
    14  ;
    no rows selected
    SQL> select
      2        first_value(start_blk) over (partition by id ORDER BY lvl desc),
      3        first_value(stop_blk) over (partition by id ORDER BY lvl desc)
      4  from (select level lvl, id, connect_by_root start_blk start_blk, stop_blk
      5        from (select id , start_blk, stop_blk
      6              from   block_test
      7              where  id=1
      8             )
      9        connect by prior stop_blk=start_blk
    10        order by level desc
    11       )
    12  where to_date('2006-07-03 03:45', 'YYYY-MM-DD HH24:MI') between start_blk and stop_blk
    13  and rownum < 2
    14  ;
    FIRST_VALUE(STAR FIRST_VALUE(STOP
    2006-07-03 03:30 2006-07-03 04:30
    SQL>

  • AWT vs Max Call Wait time

    I am looking a Call Type Historical report for a particular call type an dhalf hr interval it is showingh me AWT as 3:43:20 and the max call wait time is 12 mins.
    Does AWT indicate that caller was in the queue for 3 hrs and 43 min while max call wait time is 12 mins,. Can someone clarify this ?

    Hi Hemal,
    While looking into the Webview Reference Guide, it tells that this value is Sum of Answer Wait Time for all the tasks answered in this Half Hour interval.
    It is for all the tasks anwered in this interval
    Regards,
    Senthil

  • Script to find concurrent job that ran long within a time range

    Oracle Apps:12.1.1
    DB:11.1.0.7
    OS:Linux RedHat 86x64
    All,
    Could anyone please share the Script to find concurrent job that ran long in a particular day say between 3pm - 4pm in an hour's time range specifically.
    Thanks for your time!
    Regards,

    try
    SELECT request_id,     
           to_char(actual_start_date, 'dd-MON-yy hh24:mi:ss') begin_dt,
           to_char(actual_completion_date, 'dd-MON-yy hh24:mi:ss') end_dt,
           substr(to_number(((actual_completion_date - actual_start_date) * 24) * 60),
                  1,
                  5) time_in_min,
           program      
      FROM fnd_conc_req_summary_v a
    WHERE (
           actual_start_date >  to_date('30-11-2011 08:00', 'dd-mm-yyyy hh24:mi')
              and
           actual_start_date <  to_date('30-11-2011 08:00', 'dd-mm-yyyy hh24:mi'))
           )

  • Implementation of Time-based QOS/CAR, using "time-range" command

    We would like to configure a Time-based QOS/CAR Policy to allow our ISP Customer to have more Burst BW during Weekends then weekdays. In our setup, we color all Burst traffic of all Customers with precedence 1 and then allocate some amount of BW to this shared Pool for precedence 1. So, using Cisco's Technology of "time-range", we have done following config to achieve the said objective. But we are not able to achieve the automatic activation of weekday CAR despite the fact that weekend acces-list/Car gets automatically get deactivated when week-end is over and weekday access-group i.e. 197 gets activated (gets activated but no match in access-group & CAR, can see using show access-list & sh interface rate-limit | include access-group 199 command)
    Would appreciate yr valuable input to achieve the desired task.
    Configuration :
    Interface HSSI 2/0/0
    rate-limit output access-group 199 6000000 32000 32000 conform-action transmit exceed-action drop
    rate-limit output access-group 197 5000000 32000 32000 conform-action transmit exceed-action drop
    Global Coonfig :
    access-list 197 permit ip any any precedence priority time-range WEEKDAYS
    access-list 199 permit ip any any precedence priority time-range WEEK-END
    time-range WEEK-END
    periodic weekend 00:00 to 23:59
    time-range WEEKDAYS
    periodic weekdays 00:00 to 23:59
    Note : Customer's Burst Pkts have already been colored with precedence bit 1 i.e priority in CAR statement which are above of these two CAR statements(these CAR statements come in last).

    Hi,
       I have used the below command.
    run
    allocate auxiliary channel ch1 type disk;
    allocate auxiliary channel ch2 type disk;
    set newname for database to '/u08/app/oracle/oradata/new/%b';
    duplicate database to  "new" 
    UNTIL TIME "TO_DATE('08-JAN-2014 15:22:31','DD-MON-YYYY HH24:MI:SS')"
    BACKUP LOCATION '/backup01'
    LOGFILE
    GROUP 1 ('/u08/app/oracle/oradata/new/log01a.dbf','/u08/app/oracle/oradata/new/log01b.dbf') SIZE 100M REUSE,
    GROUP 2 ('/u08/app/oracle/oradata/new/log02a.dbf','/u08/app/oracle/oradata/new/log02b.dbf') SIZE 100M REUSE,
    GROUP 3 ('/u08/app/oracle/oradata/new/log03a.dbf','/u08/app/oracle/oradata/new/log03b.dbf') SIZE 100M REUSE;
    Thanks
    SR

  • Time range Functions

    Dear Gurus ,
    I have a time and i want to check it if is in a time range that i give .
    For example i want to test if the time  06:02:21 is inside the range  07:00:00 and 15:00:00
    Is there any function ?
    I do it with code but i can't get the right results.
    LOOP AT PERNR_HOURS WHERE VIRWC = ITAB-VIRWC.
          IF ITAB_TIME-ERTIM  > PERNR_HOURS-IN AND
             ITAB_TIME-ERTIM  < PERNR_HOURS-OUT.
            ADD 1 TO MAN_COUNTER.
          ENDIF.
        ENDLOOP.
    Thanks in advance ....

    i just did it with FM ...
    lOOK ..
        CALL FUNCTION 'CACS_DATE_GET_TIMESTAMP'
    EXPORTING
       I_DATE            = '02.09.2009'
       I_TIME            = '23:00:20'
    IMPORTING
       E_TIMESTAMP       = timestamp_in.
           CALL FUNCTION 'CACS_DATE_GET_TIMESTAMP'
    EXPORTING
       I_DATE            = '03.09.2009'
       I_TIME            = '07:00:00'
    IMPORTING
       E_TIMESTAMP       = timestamp_out.           .
           CALL FUNCTION 'CACS_DATE_GET_TIMESTAMP'
    EXPORTING
       I_DATE            = '03.09.2009'
       I_TIME            = '04:36:08'
    IMPORTING
       E_TIMESTAMP       = timestamp_chk.
    if timestamp_chk between timestamp_in and timestamp_out .
       break dpadio121ras.
    endif.

Maybe you are looking for

  • My webcam is no longer recognized by my PC

    Last night I attempted to use my webcam on my HP Pavillion dv7 Notebook PC as usual and it did not turn on. I've looked through all of the forums and I attempted to find it in the device manager as well as scan for hardware changes but nothing turned

  • Opening confusion of PDF files in Safari 7.0.4

    Whenever I attempt to open a PDF file using Adobe Reader in the latest Safari version 7.0.4... I am receiving the following warning that I must "launch Adobe Reader and accept the End User License Agreement, then Quit and relaunch the browser.  I hav

  • Error : (F5 263) The difference is too large for clearing in  EBS in t code FF_53wq

    hi Could anyone please help in this case, if FEBP can be used to clear the open items automatically. Also, the interpretation algorithm used in global config is '001- standard algorithm'. Please suggest if automatic clearing of subledger can be achie

  • Dynex Mini Memory Card

    Hi, I'm not sure if this is the right place to post this, but I just bought a Dynex Mini Memory Card reader from Best Buy and and the package says that it will work on Mac OS 10.1 or higher. When I plug it in it shows up on my desktop and I can expor

  • 10g XE - 404 error when I click on Home Object Browser (in IE)

    Greetings I use 10g XE with my xp/sp3 system, with IE7 (initially IE8RC1-also problematic). The problem is that if I click on Home>Object Browser I always get a "HTTP 404 Not Found"/The "Webpage cannot be found" error message I've followed the instru