UCCX 8.5 - Get ReasonCode description for report

Hi,
Is there a way to generate Reason Code historical report including Reason Code description? I have found this post but unfortunetly is for UCCX 7.0 : https://supportforums.cisco.com/thread/272043
Regards
Please remember to rate useful posts clicking on the stars below.
Favor calificar todos las respuestas útiles dando click en las estrellas de mas abajo.
LinkedIn Profile: do.linkedin.com/in/leosalcie       

Hi Leo,
You can get all the reason code ID and Description via the below query. and this is for UCCX8.5
select * from EEMReasonCodeDescription
Regards
Sandeep

Similar Messages

  • How to get field description for custom field just like orgeh in SQ01 Repor

    Good Day Friends,
    I want to share one of my issue with you.Hope you will resolve it easily .
    I have enhaced standard infotype 0001 to maintain JOB CODE field, i also have maintained the
    JOB CODE, JOB CODE DESCRIPTION in one custom table  ( ZHR_JOBDISC ) .
    I have given farigen key relation between this custom table ( ZHR_JOBDISC ) and PA0001. i also have created one search help and assigned to the Field JOB CODE.
    But when i am trying to write the query in SQ01 . i am unable to fetch description.
    if you observe the standard fields position (PLANS), Organisational Unit (ORGEH).while writing query if you right click on PLANS will show the description of position, similarly  if you right click on ORGEH it will show the description org unit.
    but i am unable to get the description of my custom field.
    Please give clarification where i am doing wrong ?

    Good day Ravindra,
    Please, could you consider as reference notes 367585, 332842 and 491403.
    This is well described in the documentation for the interface of IF_TEXT_IDENTIFIER.
    Transaction SE24, enter IF_TEXT_IDENTIFIER, Display' function and check
    the 'Interface documentation'. Please choose "HR Class" upon executing for Text Recognition.
    Additionally check the following website:
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/d9/9958e0c50a11d396f80000
    e82de14a/frameset.htm
    Hope this information helps.
    Kind regards,
    Graziela

  • Getting Printer Destype for Report Printing

    Hi all
    I am using 9ids.
    On server side it works fine
         set_report_object_property(rep_id,REPORT_DESTYPE,PRINTER);
         set_report_object_property(rep_id,REPORT_DESNAME,'\\Admin1\NPR');
    Now i want from client side where report server is not loaded but printers are installed on client machines.
    I want from form to get that client printer and report output on client printer
    some ideas.

    Hi,
    actually three things need to be true for Reports Server to be able to print on a local printer.
    1. The local printer must be a network printer
    2. The network printer must be configured on the server that runs the Reports Service
    3. The Reports Services provess must run under a user that has network access privileges. This can be achieved by starting the HTTP server (e.g. OC4J in Oracle9iDS) while being logged in as such a user.
    You can use Java in Forms to get a list of printers configured on the client, but I haven't looked at this long enough to tell if there is a chance to determine whether or not a printer is a network printer.
    I think that downloading teh Reports as a PDF document in teh Browser and then using teh Acrobat Reader print option is a good alterantive (if not for mass printing)
    Fran

  • Whats the best way to get a description for a code

    Hi,
    What is the best way to find description for a code, when both of them resides in different table.I have to do this like 3 times for different codes.The code and description lies in differnt table.
    Can i use select statement.. if yes, what operator should i use?
    Thanks

    Hi,
    to do a lookup you may either use the Key Lookup Operator (it makes it easier to define default return values if the lookup fails) or a Joiner (to probably outer join your lookup table).
    If you have many lookups you can do them in one joiner instead of having a key lookup operator for every one of them to reduce the total number of operators in your mapping.
    Regards,
    Carsten.

  • How to get a printout  for report

    hi friends,
    here is urgent requirement for me.
    i have report.
    if i have a print pushbutton in the output , when i click on it automatically i should get the report output from the printer.
    is there any function module for that.
    can u help me plz,
    thanks in advance.

    Hi,
    You can use statement SUBMIT rep TO SAP-SPOOL to print the report list. So for your requirement you can use the SUBMIT statement in AT USER-COMMAND event 
    Example:
    DATA: PARAMS LIKE PRI_PARAMS,
          DAYS(1)  TYPE N VALUE 2,
          COUNT(3) TYPE N VALUE 1,
          VALID    TYPE C.
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
      EXPORTING DESTINATION           = 'LT50'
                COPIES                = COUNT
                LIST_NAME             = 'TEST'
                LIST_TEXT             = 'SUBMIT ... TO SAP-SPOOL'
                IMMEDIATELY           = 'X'
                RELEASE               = 'X'
                NEW_LIST_ID           = 'X'
                EXPIRATION            = DAYS
                LINE_SIZE             = 79
                LINE_COUNT            = 23
                LAYOUT                = 'X_PAPER'
                SAP_COVER_PAGE        = 'X'
                COVER_PAGE            = 'X'
                RECEIVER              = 'SAP*'
                DEPARTMENT            = 'System'
                NO_DIALOG             = ' '
      IMPORTING OUT_PARAMETERS        = PARAMS
                VALID                 = VALID.
    IF VALID <> SPACE.
      SUBMIT RSTEST00 TO SAP-SPOOL
        SPOOL PARAMETERS PARAMS
        WITHOUT SPOOL DYNPRO.
    ENDIF.
    Regards,
    Archana.

  • Not getting Line Description in Account Analysis Report

    Hi Friends,
    There is requirement to get line description for account analysis report...
    Source - Cost Management
    Category - Receiving
    Event Type - Receipt into Receiving
    I have done required setup(Application Accounting Definition) to get the line description .I am getting line description for Debit transaction but for the same source and event type i am not getting line description for credit transactions..
    Is there any way to get line description for Credit transaction.
    Please suggest...

    Please friend...share knowledge on this...

  • How to set description for a DB table?

    It is possible to get a description for a table, using databaseMetaData.getTables() , and then reading the REMARKS field,
    but how to change that description? I would assume, it should be possible, when one creates a new table, using SQL: CREATE TABLE ... But as I see it is not.
    So, is it possible at all in Java?
    Thanks in advance,
    andru

    Well, I found that it is possible with different DB. For example, MySql allows adding coments while creating a table:
    CREATE TABLE tbl_name [table_options]
    where:
    table_options:
         COMMENT = "string"
    I am not sure whether this is standard SQL; somehow I doubt it'll work on Access tables.
    Going to try it out.

  • Description for field process_type in table crmc_proc_type

    Hi All,
    In which table can i get the description for the field process_type in table crmc_proc_type.I need to fetch the description.
    Thanks in advance

    hi anindya,
    the description of transaction type you can get it from table CRMC_PROC_TYPE_T
    just query to this table by the transaction type
    hopes it helps
    cheers

  • ZTERM - Getting the Description (TEXT1) and the days for payment (ZTAG1)

    In my current report, I need to get the TEXT1 for the ZTERM in T052U.
    If I cann't get TEXT1 from T052U, I use FI_TEXT_ZTERM to get it from IMG.
    However, sometimes the TEXT1 from IMG comes out as "Payable immediately due net".
    Do I need to get the figure for due net, say due net 14 or 30, from table T052, with
    ZTAG1 containing the "Days from baseline Date for payment"?
    Is there a better method for getting the TEXT1 (description) for the ZTERM, when it
    is not available in T052U, since from IMG, I keep getting very similar values for almost
    all ZTERMS?
    Thanks,
    John

    That seems to be true.
    After checking, The function Group FHL2 (program SAPLFHL2) contains the text symbols 004 & 005, which form "Payable immediately due net".
    As such, what I'll do is analyze the ending due net, and if such occurs, i'll add the
    ZTAG1 info to the end.
    Thank you for the help.

  • I have albums in my iMAC with description for each photo that I can show up on slide show so that I know the place that is in the photo. If I synchronize my photos to iPOD, I am unable to get the Descriptions also copied. How do I ensure this?

    I have two questions:
    1) I have multiple logins in my iMAC. How do I move photos/albums from one login to another?
    2) I have created albums with "Description" for each photos, so that, in a slide show, any one can see what is being shown on the photo. When I sync albums to my iPOD, the "Descriptions" are not getting copied. How do I ensure that the "Descriptions" also get copied so that it can be a real back-up?
    Thanks

    Back up your iPhoto library, Depress and hold the option (alt) and command keys and launch iPhoto - rebuild your iPhoto thumbnails - this may take several tries
    Also what version of iPhoto? What recently changed?
    LN

  • I want standard report to get material MATNR for Which PO isn't created

    hi
    i want standard report to get material no for which Purchase Order is not created.
    only those Material no for Which PO is not generated.
    thanks.

    Hi,
    go to me23n transaction and in the top extreme left click the
    Purchase order  tab it will show you a drop down list where you will have a option called other purch. order click this and enter the purchase order for which you want to know the exsistence of that purchase order.
    if Purchase order is present it will show the order otherwise it will through you an error message.
    hope this helps.

  • Anyone get a huge "Problem Report for iDVD" with hundreds of lines of information?

    Anyone get a huge "Problem Report for iDVD" with hundreds of lines of information? This happens right before the DVD would be finished burning but instead crashes and leaves the long report your have to scroll down several times to read. I had to take several screen captures of the screen to get the WHOLE report. Here is two:
    (If there is another thread on this - just answer the question or refer me to it. I'm past due on a big project. Don't have time to read all 21,000 discussions in the iDVD thread. Be kind. Thanks )

    Some things to try first:
    1. Disconnect any and all 3rd party devices that didn't ship with your mac directly from apple (both FW and USB included). 
    2. Restart your mac without any 3rd party devices attached whatsoever. That includes ext. hard drives, blue tooth devices, and any third party memory product/s. Basically, anything that doesn't come directly from apple has to go (at least while troubleshooting).
    3. Need you to dispose of the plist for iDvd also. Go to you Home folder, the one that looks like a house > Library > Preferences > com.apple.iDvd.plist and drag and drop this file/s to the trash. Make sure to first quit iDvd prior to disposing of this pref. file/s.
    4. Run apple's disc utility and repair permissions. Applicantions > Utilities > Disc Utility > Repair Permissions.
    5. Restart your mac yet again, and try iDvd one more time.
    6. If it's still at issue then please open iDvd from a separate user account and try your project one more time. If you don't know how to create a separate user account then just come on back and one of will show you how.
    Good luck.
    Message was edited by: SDMacuser

  • How to get Transaction code for SAP standard report painter in FI

    Hi All -
       Please let me know, How to get the transaction code for Standard SAP report painter / report writer in FI module.
    These report painters are created thru GR51...
    Thanks,
    Kannan

    Please refer to [Creating Transaction Code For Report Painter Reports|http://www.google.com/url?sa=t&source=web&ct=res&cd=1&ved=0CAgQFjAA&url=http%3A%2F%2Fdap-consulting.com%2Fyahoo_site_admin%2Fassets%2Fdocs%2FReport_Painter_Reports.47142031.pdf&ei=MiWYS5ilCYeOlAfn4pCGDQ&usg=AFQjCNEZ0YO6vJ97K24MbU_NI5ROTb5vJA&sig2=Ke-svnqddqrz8RMcTuEnaw].

  • Where can we get the data for pre calculated reports

    Hi,
    i want to see the data for pre calculated reports (Reporting agent)
    where can we get the data for pre calculated reports
    Thanks & Regards,
    Shaliny. M

    Dear,
    This feature of precalculating reports is to enhance the report performance. You will need to schedule this periodically, so that the report is fetched and cached. This allows faster retrieval of report data. Plz. understand that, this scheduling needs to run after every data load in the corresponding cube, so that, the latest data is cached, else the report data will be obsolete.
    Thanks

  • Getting VFS manager for client J2E_iom_D failed: Activity report (get open

    Getting VFS manager for client J2E_iom_D failed: Activity report (get open activities for current repository and user) failed: Internal Server Error
    I cannot sync with dtr and moreover the tracks which i deleted still shows up in DTR folder and i am not bale to delete it.
    Please help....
    George

    NetWeaver Sneak ...  SP 16:  table PVC_ACTVERSVIEW missing i got answer from this.
    Had to redeploy sda and it solved all probs .it was the prob with WAS...

Maybe you are looking for

  • Print report from c# code

    hi all. how can i send a report, (stored on the reporting server) to print? i know i can render it, but i want to print it , is it possible?

  • Periodic Importing of data from SQL Server into Oracle Database

    I would like to know how I can use the SQL Developer tool to import data from a SQL Server database across the internet into an Oracle Database on a periodic basis? I understand there is a Migration Workbench, but it seems to be only a one off activi

  • Primary key failure with merge into...should not happen

    I get primary key constraint fail on this MERGE INTO sql. Why? Shouldn't the merge into take care of this? ORA-00001: unique constraint (NCSL.SYS_C001568) violated MERGE INTO SessionTbl2 thistbl USING   (SELECT 'b2cdd2f30b786c329ad2f8d04d0e79e9' sess

  • Keyboard doesn't pop up during messaging on iphone 6

    My phone is completely up to date, and has just begin having this problem:  While messaging, the keyboard will not pop up.  I have to get all the way out of messaging, kill the app, then sometimes it will work again.  Other times, I have to turn phon

  • Where can i download Photoshop CS5

    I know photoshop CS 6 is out. But my company doesn't have CS6, It has CS5 but they lost the disks or never had any or something, Maybe they used the downloads when they where available, But they have serials for CS5 and I can't buy CS6 ! I've been lo