Details of appeal record

Hello guys,.

I ran the following command xcommand CallHistory Get to extract my SX80 CDR, but I noticed that the duration time is in days.
I need to know if there is another way to extract the COR that allows me to know the exactly the duration of the call to hh.

Thanks in advance.

Kind regards.

Hello

If you're doing a xcommand CallHistory is DetailLevel: Full it will show you the start and end which you could derive the duration of the call.

Thank you

Sebastian

Tags: Cisco Support

Similar Questions

  • Detail of movi record customer call

    Dear all,

    We would like to collect the history of calls and the duration of the customer movi.

    Using the report function CDR of the user, the total duration of the tms report and County in some time. Someone knows how to get a more detailed report including the information of call by call.

    However, we are doesn't have to seek details of call report that has more than 3 months. Is it possible to retain the report detail of appeal for a longer period of time?

    Best regards.

    Benjamin

    Check your statistical parameters of TMS; Administrative Tools\Configuration\Statistics setting - you can specify how many days you want there.

    As for more detailed records, take a look at the extension of the TMS Analytics, he could do it for you.

    /Jens

    Please note the answers and score the questions as "answered" as appropriate.

  • In which table, card credit/order details will be recorded in the solid database?

    Hi people,

    In which table, card credit/order details will be recorded in the solid database?

    Hello

    Details of the command in DCSPP_ORDER and payment details to DCSPP_PAY_GROUP

    Kind regards

    Vincent

  • Overview and details of the records in the same mixing ratio

    Hello, on the bottom I need to mix the results in the summary table and the records in the table of details in the same report.

    To create the scenario:
    CREATE TABLE ALPHA
    (
    ALPHA_ID     NUMBER,
    ALPHA_NR     NUMBER,
    ALPHA_TOTCT     NUMBER,
    ALPHA_FUND     NUMBER
    
    );
    
    ALTER TABLE ALPHA ADD (
         CONSTRAINT ALPHA_PK PRIMARY KEY (ALPHA_ID));
    ALTER TABLE ALPHA ADD (
         CONSTRAINT ALPHA_NR_UNI UNIQUE (ALPHA_NR));
    
    
    INSERT INTO ALPHA(ALPHA_ID, ALPHA_NR)
    VALUES( 1, 7 );
    INSERT INTO ALPHA(ALPHA_ID, ALPHA_NR)
    VALUES( 2, 11 );
    INSERT INTO ALPHA(ALPHA_ID, ALPHA_NR)
    VALUES( 3, 15 );
    INSERT INTO ALPHA(ALPHA_ID, ALPHA_NR)
    VALUES( 4, 17 );
    
    CREATE TABLE HIST
    (
    HIST_ID     NUMBER,
    HIST_NR NUMBER,
    HIST_ALPHA_NR NUMBER,
    HIST_CT          NUMBER,
    HIST_VAL     NUMBER,
    HIST_DATE     DATE
    
    );
    
    ALTER TABLE HIST ADD (
         CONSTRAINT HIST_PK PRIMARY KEY (HIST_ID));
    ALTER TABLE HIST ADD (
         CONSTRAINT HIST_NR_UNI UNIQUE (HIST_NR));
    ALTER TABLE HIST ADD (
         CONSTRAINT HIST_ALPHA_NR_FK FOREIGN KEY (HIST_ALPHA_NR) REFERENCES ALPHA ( ALPHA_NR ) );
    
    TRUNCATE TABLE HIST;
    
    INSERT INTO HIST( HIST_ID ,HIST_NR ,HIST_ALPHA_NR ,HIST_CT ,HIST_VAL ,HIST_DATE )
    VALUES ( 1 ,1    ,7 ,1 ,10 , TO_DATE('01.02.2009' , 'dd.mm.yyyy' ) );
    INSERT INTO HIST( HIST_ID ,HIST_NR ,HIST_ALPHA_NR ,HIST_CT ,HIST_VAL ,HIST_DATE )
    VALUES ( 2 ,6    ,7 ,1 ,10 , TO_DATE('01.05.2009' , 'dd.mm.yyyy' ) );
    INSERT INTO HIST( HIST_ID ,HIST_NR ,HIST_ALPHA_NR ,HIST_CT ,HIST_VAL ,HIST_DATE )
    VALUES ( 3 ,3    ,7 ,3 ,30 , TO_DATE('01.02.2010' , 'dd.mm.yyyy' ) );
    
    
    INSERT INTO HIST( HIST_ID ,HIST_NR ,HIST_ALPHA_NR ,HIST_CT ,HIST_VAL ,HIST_DATE )
    VALUES ( 4 ,4    ,11 ,1 ,10 , TO_DATE('01.03.2009' , 'dd.mm.yyyy' ) );
    INSERT INTO HIST( HIST_ID ,HIST_NR ,HIST_ALPHA_NR ,HIST_CT ,HIST_VAL ,HIST_DATE )
    VALUES ( 5 ,5    ,11 ,-2 ,-20 , TO_DATE('01.06.2010' , 'dd.mm.yyyy' ) );
    INSERT INTO HIST( HIST_ID ,HIST_NR ,HIST_ALPHA_NR ,HIST_CT ,HIST_VAL ,HIST_DATE )
    VALUES ( 6 ,8    ,11 ,1 ,10 , TO_DATE('01.02.2011' , 'dd.mm.yyyy' ) );
    
    INSERT INTO HIST( HIST_ID ,HIST_NR ,HIST_ALPHA_NR ,HIST_CT ,HIST_VAL ,HIST_DATE )
    VALUES ( 7 ,2    ,15 ,2 ,20 , TO_DATE('01.03.2009' , 'dd.mm.yyyy' ) );
    INSERT INTO HIST( HIST_ID ,HIST_NR ,HIST_ALPHA_NR ,HIST_CT ,HIST_VAL ,HIST_DATE )
    VALUES ( 8 ,7    ,15 ,5 ,50 , TO_DATE('01.06.2010' , 'dd.mm.yyyy' ) );
    INSERT INTO HIST( HIST_ID ,HIST_NR ,HIST_ALPHA_NR ,HIST_CT ,HIST_VAL ,HIST_DATE )
    VALUES ( 9 ,9    ,15 ,-4 ,-40 , TO_DATE('01.02.2011' , 'dd.mm.yyyy' ) );
    
    INSERT INTO HIST( HIST_ID ,HIST_NR ,HIST_ALPHA_NR ,HIST_CT ,HIST_VAL ,HIST_DATE )
    VALUES ( 10 ,10    ,17 ,1 ,10 , TO_DATE('01.03.2011' , 'dd.mm.yyyy' ) );
    To update the summary table, I used a view
    CREATE OR REPLACE VIEW HIST_AGG ( HIST_ALPHA_NR,  TOT_CT  , TOT_VAL )
    AS
    SELECT HIST_ALPHA_NR
    ,SUM ( NVL(HIST_CT, 0 ) ) TOT_CT
    ,SUM( NVL(HIST_VAL, 0) )  TOT_VAL
    
    FROM HIST
    GROUP BY HIST_ALPHA_NR;
    
    
    DECLARE
    
    CURSOR cur
    IS
    SELECT
    HIST_ALPHA_NR
    ,TOT_CT
    ,TOT_VAL
    FROM HIST_AGG
    ;
    
    BEGIN
    FOR rec IN cur
    LOOP
    
         UPDATE ALPHA
         SET ALPHA_TOTCT = rec.TOT_CT
         , ALPHA_FUND  = rec.TOT_VAL
         WHERE ALPHA_NR = rec.HIST_ALPHA_NR;
    
    END LOOP;
    
    END;
    First report should the line overview Alpha tracked table of all the detail records of
    HIST table and for each alpha_nr. At the end of report total overview
    alpha of the table.
    "SUMMARY";"ALPHA_NR";"ALPHA_TOTCT";"ALPHA_FUND";
    ;;;;
    ;7;5;50;
    ;7;1;10;01.02.2009
    ;7;1;10;01.05.2009
    ;7;3;30;
    ;11;0;0;
    ;11;1;10;01.03.2009
    ;11;-2;-20;01.06.2010
    ;11;1;10;01.02.2011
    ;15;3;30;
    ;15;2;20;01.03.2009
    ;15;5;50;01.06.2010
    ;15;-4;-40;01.02.2011
    ;17;1;10;
    ;17;1;10;01.03.2011
    "TOTAL_ALPHA_NR";4;9;90;
    Second report should display the overview by period (year), but the timeline
    for example the year 2009 begins from the year 2010. At the end of each year a summary for
    the current state.
    "YEAR";"ALPHA_NR";"ALPHA_TOTCT";"ALPHA_FUND"
    ;;;
    2009;7;0;0
    ;11;0;0
    ;15;0;0
    ;17;0;0
    "Total 2009";4;0;0
    2010;7;2;20
    ;11;1;10
    ;15;2;20
    ;17;0;0
    "Total 2010";4;5;50
    2011;7;5;50
    ;11;-1;-10
    ;15;7;70
    ;17;0;0
    "Total 2011";4;11;110
    2012;7;5;50
    ;11;0;0
    ;15;3;30
    ;17;1;10
    "Total 2012";4;9;90

    Hello

    wucis wrote:
    I now use this selection

    ...
    FROM       hist        h
    ,       alpha        a
    WHERE       h.hist_alpha_nr (+)     = a.alpha_nr
    AND       a.active          = 'Y'
    AND a.alpha_nr >=  NVL ( NULL  , 1 )
    AND a.alpha_nr <=  NVL ( NULL  , 10000 )
    AND a.alpha_date >= NVL ( TO_DATE( '02.01.2008'  , 'dd.mm.yyyy' ) , '01.01.2000' )
    --AND h.hist_date  >= NVL ( TO_DATE( NULL  , 'dd.mm.yyyy' ) , '01.01.2000' )
    --AND h.hist_date <= NVL ( TO_DATE( NULL  , 'dd.mm.yyyy' ) , '02.02.2222')
    ...
    

    The problem is now, if I limit the query about the h.hist_date, the lines disappear when there is no entry in HIST for this ALPHA_NR,
    in particular the line with alpha_nr = 12 disappears.

    When you use the old notation join, outer join, whenever a column of a table is marked with the + sign, then all the conditions in the WHERE clause that references the same table need a sign +. Otherwise, the effect is identical to an inner join.
    Using the old syntax, you must say something like:

    ...
    FROM       hist        h
    ,       alpha        a
    WHERE       h.hist_alpha_nr (+)     = a.alpha_nr
    AND       a.active          = 'Y'
    AND        a.alpha_nr          >=  1
    AND        a.alpha_nr           <=  10000
    AND        a.alpha_date           >=  TO_DATE ('01.01.2000', 'dd.mm.yyyy')
    AND        h.hist_date (+)     >=  TO_DATE ('01.01.2000', 'dd.mm.yyyy')
    AND       h.hist_date (+)     <=  TO_DATE ('02.02.2222', 'dd.mm.yyyy')
    ...
    

    Notice the + sign in the last 2 lines, after the columns in this table of reference h. I find the ANSI join syntax much more clear in this case.

    How you use NVL makes no sense. NVL (NULL, x) returns x, no matter what x is.
    What you trying to do? Perhaps you meant

    AND        NVL (a.alpha_nr, 1)          >=  1
    
  • I have a problem with the consultation of the file details in the records.

    I have a folder full of files that I copied from one Windows 7 computer to another.  On my old machine, I am able to see all metadata in the details pane at the bottom of the Windows Explorer window, but I don't see anything on the other except the name of the file and the element Type.

    When I go to 'see details' (I hate), I can see the data in the appropriate columns (IOW, him are indeed checked on the)
    Dialog box choose details'), but not in the details pane.   The same information appears as a ToolTip when I pass it via a file name.

    The pane isn't squinched downwards, there is plenty of room, but there is nothing is not displayed.     What is the secret to get this working?

    Athena,

    I'd like to run this fixit-

    http://support.Microsoft.com/mats/windows_file_and_folder_diag/

    We know if that helps.

  • How to compare the content of two files so I can delete duplicate records

    I'm trying to clean up several subfolders with duplicates without looking at the details of each record.  Is it possible in Windows XP to compare the content of two files whether they are an exact replica.

    Hi rav42010,

    Follow the steps in the article.

    Description of the tool in Windows XP disk cleanup

    http://support.Microsoft.com/kb/310312

    You can also use third-party app to perform the task using your favorite search engine.

    Note: Using third-party software, including hardware drivers can cause serious problems that may prevent your computer from starting properly. Microsoft cannot guarantee that problems resulting from the use of third-party software can be solved. Software using third party is at your own risk.

  • Is there a way to customize all folders at once with the same details?

    I have several folders with several subfolders.  The default details that show for items in the files must be changed, but to make each file individually is taxation.

    Is there a way to customize all folders at the same time with the same details?  Thank you.

    Original title: "customize the details of the record.

    H,

    Thanks for the sharing of information, happy in the knowledge that you have addressed the issue. Your efforts to solve this problem is appreciated. Please do not hesitate to answer, in the case where you are facing in the future other problems with Windows.

  • Replace a copy of Windows 7 without C.O.A or disc. a copy of Windows 7 with a drive and the appeal docket.

    Hello

    I just bought a computer with a copy on win 7-64 bit but no disk or the appeal record

    I have a commercial version with two discs 32 & 64-bit, the appeal record which is not used and not activated.

    I want to install my copy so I can reinstall if necessary.

    I want to do it WITHOUT a format due to other gear that is on the disk hard drive which I want to keep - Win Office with no. disc either.

    I'll be able to do this.

    The Win Office software is a 'install x number of copies on computers with a single disk' type of product.

    It should be simple, but I thought I'd ask anyway.

    Also, perhaps, there is a way of advertising just the tender without having to install the drive, I'm not sure.

    Cheers Chris

    Hello

    I just bought a computer with a copy on win 7-64 bit but no disk or the appeal record

    I have a commercial version with two discs 32 & 64-bit, the appeal record which is not used and not activated.

    I want to install my copy so I can reinstall if necessary.

    I want to do it WITHOUT a format due to other gear that is on the disk hard drive which I want to keep - Win Office with no. disc either.

    You can only do this if your personal copy is the same edition installed on the computer, if not, you will need to either do an Express of the edition currently installed upgrading if the edition installed is less than the edition that you have or that you consider doing a custom installation.

    How to make an Express Upgrade:

    Click Start, type Anytime Upgrade, click on the option to enter a key, enter the key of Windows 7 edition when asked, click Next, wait while checking the key, accept the license agreement, click on upgrade, wait while the software upgrades, (it may take 10 minutes or more depending on the if updates are required) your computer restarts automatically, after the reboot, Windows 7 will notify its update of the computer, the computer will restart once more automatically and will be completed the upgrade, a window will appear notifying the upgrade was successful and your computer is ready to use, click Close, you should be upgraded to Windows 7 your files, programs and settings retained.

    (Please note that Anytime Upgrade only upgraded to a higher edition (Starter > Home Basic > Home Premium > Professional > ultimate).) You can not downgrade.

    If it's the same edition, simply change the product key:

    Press Windows key + R

    Type: slui.exe 3

    Press enter

    Enter your product key, and then click next to activate via the Internet.

    I'll be able to do this.

    The Win Office software is a 'install x number of copies on computers with a single disk' type of product.

    It should be simple, but I thought I'd ask anyway.

    Also, perhaps, there is a way of advertising just the tender without having to install the drive, I'm not sure.

    If the machine is already preinstalled with a copy of Windows 7 and its active, what really is the problem?

    Why is it necessary to have the certificate of authenticity in hand? If the machine doesn't work and does what it's supposed to as expected and you can install your applications and use them, then you need not to worry about the COA.

    The certificate of authenticity that normally found in the compartments of battery or memory of your laptop or at the bottom of the laptop chassis. If this is a desktop computer, you can look at the side or at the top.

    If the COA sticker is damaged, you must use the recovery partition to reinstall Windows 7, it will be exempt from the need to use the product key to activate your installation of Windows 7.

    Option 2:

    If your recovery partition is not available or damaged, you must contact the manufacturer of your computer, and request that a defined recovery disk you can use to reinstall Windows 7. They could practice a small shipping and handling. This will exempt the need to also use the product key.

    New computers coming often pre-installed with Windows 7 have what is called a recovery partition. This is used to reinstall an operating system in the case of a system failure. To access it, you need to start when you start your computer by pressing a function key. This can be either F1, F2, F9, F10, F11, F12 key DEL or tab. See the manual that came with your PC for instructions on how to reinstall Windows.

    This is how the recovery partition is accessible to most popular brands...

    For Dell, press F8 on the keyboard until the Advanced Boot Options menu appears on the screen.

    For HP, press F11 directly after switching on the device

    For LG, press F11 directly after switching on the device

    For Toshiba, press and hold "0" BEFORE and during the power upward

    For Acer, press and hold ALT + F10, as soon as you see the logo

    For Asus, press F9, as soon as you see the Asus logo.

    For Samsung, press F4 to the power upward...

    For Fujitsu, press the F8 key directly after the power

    Advent, restart your computer. Then, press F10 repeatedly until the message "Starting system recovery"

    Sony VAIO, reboot and press "F8" or "F10" repeatedly until the screen "Advanced Boot Options".

    Cheers Chris

  • How to add the link change in the detail view of the interactive report?

    Hello

    I use APEX 5.0 on 11g XE.

    I have an interactive report displaying multiple records with a column of link which is one of to an edition for the registration page. All the standard stuff 'wizard generated. I have also created a layout of the detail view. It all works very well.

    However. I want IR to show detail discovers all the time and hide all Toolbar IR. How can I show the link change in the detail for each record view?

    Y at - it an easy way to do this by adding a column reference (something like: #LINKCOLUMN #?) or do I need to create it manually with an < a href... > tag. I guess that this method would require me to generate a checksum with apex_util.prepare_url?

    Nick

    Nick4 wrote:

    Good point. I agree, however, I want to keep it as an interactive report that I must keep my options open as showing the data... every customer is different, I can change my mind.

    Other options are available for this. Compilation options to be exact... create IR and parts of standard report and determine who gets deployed by setting the build on the export options.

    I was hoping there was an easy way to display the IR link column in the detail view, but looks like I need to create one manually in the HTML "for each line" in the detail view section.

    It works, but no checksum complains...

    EDIT

    So have added as a column in the query:

    APEX_UTIL. URL PREPARE_URL('f?p=&APP_ID.:14:&session.::no::P14_CONTACT_ID:#CONTACT_ID#:', NULL, 'SESSION')

    and this for the HTML:

    But the URL is always wrong... #CONTACT_ID # always ends after the checksum...?

    You are mixing HTML/model and SQL syntax. #CONTACT_ID # does not substitute for CONTACT_ID value in the query. The column value should be included in the URL before calculating the checksum:

    ...
    apex_util.prepare_url('f?p=' || :app_id || ':14:' || :app_session || '::NO::P14_CONTACT_ID:' || contact_id, NULL, 'SESSION') url
    ...
    

    Note that substitution integrated always strings need to be referenced as bind variables in SQL to avoid unnecessary analysis.

  • The new Records real-time display

    I developed a CRM that is based on this post to a database of prospects.  The CRM index page performs a select query and displays a filtered recordset based on the SQL code.  This index page is updated every 30 seconds by an update of the Meta tag.  But I think there must be a more robust and efficient method.  Ideally, I would like to have a popup is displayed each time that the new record messages when clicked would reveal the details of the record.  And if such a robust method exists, which could better the overall updating of the data other than a Meta Refresh?  Any direction you can advise would be appreciated.
    .

    Some of which can easily be done with JavaScript and a function that makes calls to ColdFusion AJAX to check new records, on a timer (30 seconds).  You can use WebSockets which offers the display in real time, but according to the rate of data change, which might be overkill.

    For example, look at how this site or Google followed new messages using AJAX. If you are connected to these forums, your avatar at the top of the screen may have a white number in an orange circle to the left of the avatar - stating that you have new messages or updates waiting for your attention.  If you have no messages or elements, the circle disappears.  While new messages or items arrive in your Inbox, reappears in the circle and the number will change.  This is done via AJAX requests that ask the service Inbox on a given time interval. In your application, you will need to decide what is the appropriate interval (or make a user setting which gives them options such as 30 seconds, 1 minute, 5 minutes, etc.).

    All this is done without refreshing the entire page (what does refresh Meta Tag).

  • Aggregated in short records

    Hi guys

    What are aggregated records in short

    Give me some little exaple

    Hello!

    Aggregation in short helps the developers to do two things:

    (1) while browsing the results can be "rolled" (synonym of Record aggregation) based on a value of property or the shared dimension.
    (2) when the user requests the details page by clicking on the link for a specific item, a global record query is performed to return records of this type of element.

    Example:
    You have a list of results. Based on analytical or shared property, documents in this list can be "rolled up". Otherwise, you'll have a results of the 12 lists instead of 4 in the example below.

    Product type = sweater
    Results: 1) sweater (3 products)
    (2) B sweater (5 products)
    (3) C sweater (2 products)
    (4) D sweater (2 products)

    In a page of details, all aggregated records may be requested.
    Example: Product Details
    (1) a sweater
    Color: Blue
    Price: $9,99
    (2) a sweater
    Color: Brown
    Price $9.99
    (3) a sweater
    Color: Green
    Price: $9,99
    Flags: $5,99

    Best regards
    Heiko

  • How to call a form with splashing around by clicking on a record with a time where

    Hi all

    How to call a form with splashing around by clicking on a record with a time where clause. I mean when I dip, click current record I want to call another form with the details of the
    record with onetime where clause. Can someone help me in this regard.

    Now, I'll call you a form with parameter with where Jadi but this should be avoided.


    Thanks in advance

    Arif

    Maybe this helps http://andreas.weiden.orcl.over-blog.de/article-28180655.html

  • Reduce a record slide

    Hello

    I'm having a time hard to believe Adobe Captivate 5.5 lacks the feature to reduce a slide of the recording of a few seconds, but I can't for the life of understand me how do. Let me share a few details:

    I recorded a record slide using the following parameters:

    Capture.PNG

    The slide is a total of 442,2 seconds of time, and I want to set up to 437 seconds of time. Here is the chronology of the slide that you can see what it looks like:

    Capture.PNG

    Anyone know how I can do this?

    Thank you!

    Jordan

    When you select the TMF his prop. Panel has a FMR edit the part where you cut

  • Load the page with a selected record

    I have a PHP page that is linked to a database of mySql with 2 recordets.  The first presents a simple list of records then a link to the presentation of the details of these records in a table below.  Everything works fine but the loading of the page details table is, of course, an empty shell until the user clicks on the link url in the list which loads the record in the table.

    I'd like the page to load with a recording of the sample inside so that it looks better - preferably a record at random, but if not, the first in the list.  What is the easiest way to achieve this?

    Ah ok, so it seems that the first Recordset is filtered on a certain setting? You view several records in the first Recordset in a region of repatriation? And the second table shows the details of a single record, but there should be a folder in the first Recordset. Hmmmm.  The first thing that comes to mind, is to set a variable and fill it with the ID value of the first record since the first Recordset. Then use this variable as a default in the second set. I am not sure of is this: when you fill out the variable, it will either use the first record in the game or the Recordset returns actually several records with different values for each ID, it can raise an error.

    I don't usually use the result of a recordset to filter a second, but I did - but it was only when the first Recordset returns only a single record.

  • Bean - erase Images on a Multi image recording block

    Hello
    I use beans HandleImage (Yves Junior) on a block record multi, which is also the retail block. Everything works fine except when master record is changed, and the detail block is disabled the bean is not erased automatcially and images are left behind (indicating when the new record master has less lines to detail the previous record and you get child previous images left behind)

    I was wondering what the trick was to erase the images? I know that the command I need to use is:

    Set_Custom_Property (p_bean, p_row, 'CLEAR', ");

    But what is the best way to erase all the lines?

    Steve

    Have you tried:

    Set_Custom_Property( p_bean, ALL_ROWS, 'CLEAR', '' );
    

    François

    Published by: Francois Degrelle on October 15, 2010 17:15

Maybe you are looking for