Open Adobe Print Form from ALV Int. Rprt using the XSTRING already present

Hello Friends,
I have a typicall issue that how to open a Adobe Print Form when a user double clicks in the ALV Report. Here when the user double clicks in the ALV Interactive Report using the unique ID I am getting the Adobe Form from a FTP location in the Form of XSTRING, now using the ABAP ADOBE PRINT FORM not using WebDynpro Application, I need to process this XSTRING and show up the Adobe Print Form.
OR
Is there a way to send the XSTRING to the Output Device or Printer to Display the PDF Form.
Friends please help me in solving this issue.
Thanks and Regards
Pradeep Goli
Edited by: Pradeep Goli on Mar 19, 2009 1:49 PM
Edited by: Pradeep Goli on Mar 19, 2009 2:51 PM

Hi Pradeep Goli,
it is possible to show PDF in SAP GUI.
Michal
REPORT  ZTEST_DISPLAY_PDF.
* You must create dynpro 500 with custom control named HTML.
* In this custom control will be displayed PDF.
DATA: g_pdf              TYPE xstring,
      pdf_my_container   TYPE REF TO cl_gui_custom_container,
      pdf_html_control   TYPE REF TO cl_gui_html_viewer.
START-OF-SELECTION.
PERFORM create_and_display.
FORM create_and_display.
*** Your code fo filling g_pdf
CALL SCREEN '500'.
ENDFORM.
* PDF preview in HTML control
module html_control output.
  perform pbo_html_control.
endmodule.
module html_control input.
  perform pai_html_control.
endmodule.
* PAI
FORM pai_html_control.
  SET SCREEN '0'.
ENDFORM.
* Showing of PDF
FORM pbo_html_control.
  DATA: l_pdf_alignment TYPE i,
        l_count         TYPE i,
        l_noprint       TYPE fpboolean,
        l_noarc         TYPE fpboolean,
        l_noprintarc    TYPE fpboolean.
*  CLEAR: fcode.
  SET PF-STATUS 'VIEW_PDF'.
* container
  IF pdf_my_container IS INITIAL.
    CREATE OBJECT pdf_my_container
      EXPORTING
        container_name = 'HTML'
      EXCEPTIONS
        OTHERS         = 1.
    IF sy-subrc <> 0.
      MESSAGE e150(FPRUNX).
      RETURN.
    ENDIF.
  ENDIF.
* html control
  IF pdf_html_control IS INITIAL.
    CREATE OBJECT pdf_html_control
      EXPORTING
        parent = pdf_my_container
      EXCEPTIONS
        OTHERS = 1.
    IF sy-subrc <> 0.
      MESSAGE e150(FPRUNX).
      RETURN.
    ENDIF.
*   alignment
    l_pdf_alignment = pdf_html_control->align_at_left  +
                    pdf_html_control->align_at_right +
                    pdf_html_control->align_at_top   +
                    pdf_html_control->align_at_bottom.
    CALL METHOD pdf_html_control->set_alignment
      EXPORTING
        alignment = l_pdf_alignment
      EXCEPTIONS
        OTHERS    = 1.
    IF sy-subrc <> 0.
      MESSAGE e150(FPRUNX).
      RETURN.
    ENDIF.
  ENDIF.
  PERFORM pdf_show USING g_pdf.
ENDFORM.
FORM pdf_show USING p_pdf_data TYPE xstring.
  STATICS: ls_url           TYPE i.
  TYPES: lt_pdf_table(1000) TYPE x.
  DATA:  l_myurl(80)        TYPE c,
         l_url(80)          TYPE c,
         l_pdf_data         TYPE STANDARD TABLE OF lt_pdf_table,
         l_pdf_size         TYPE i,
         l_pdf_line         TYPE lt_pdf_table,
         l_offset           TYPE i,
         l_len              TYPE i.
  l_pdf_size = XSTRLEN( p_pdf_data ).
  l_len = l_pdf_size.
  WHILE l_len >= 1000.
    l_pdf_line = p_pdf_data+l_offset(1000).
    APPEND l_pdf_line TO l_pdf_data.
    ADD 1000 TO l_offset.
    SUBTRACT 1000 FROM l_len.
  ENDWHILE.
  IF l_len > 0.
    l_pdf_line = p_pdf_data+l_offset(l_len).
    APPEND l_pdf_line TO l_pdf_data.
  ENDIF.
  ADD 1 TO ls_url.
  l_myurl(8) = ls_url.
  CONCATENATE l_myurl '.pdf' INTO l_myurl.
  SHIFT l_myurl LEFT DELETING LEADING space.
  CALL METHOD pdf_html_control->load_data
    EXPORTING
      url          = l_myurl
      size         = l_pdf_size
      type         = 'application'                          "#EC NOTEXT
      subtype      = 'pdf'                                  "#EC NOTEXT
    IMPORTING
      assigned_url = l_url
    CHANGING
      data_table   = l_pdf_data
    EXCEPTIONS
      OTHERS       = 1.
  IF sy-subrc <> 0.
    MESSAGE e152(FPRUNX).
    RETURN.
  ENDIF.
* show data
  CALL METHOD pdf_html_control->show_data
    EXPORTING
      url    = l_url
    EXCEPTIONS
      OTHERS = 1.
  IF sy-subrc <> 0.
    MESSAGE e152(FPRUNX).
    RETURN.
  ENDIF.
ENDFORM.

Similar Messages

  • "Access Denied" pop up error while opening adobe online form in IE8.

    "Access Denied" pop up error while opening adobe online form in IE8. I use crosslink to connect to client network and then open IE with App Tunnel. Tried to re-install Acrobat reader multiple times but issue still persist. Even tried to change the PDF properties (Edit-> Preference- General/Internet/Security Enhanced)

    Hello Adobe technical Team,
    I am struggling to fix the issue. Tried a lot of combinations to manipulate PDF preference, browser setting but failed to fix the issue. Can someone please look into the details and advise? Thanks in advance for any help.input.

  • Part II: Adobe Print Forms with Web Dynpro for ABAP. -Practice issue

    Hi,
    I am practicing Thomas jung Tutorial on Adobe forms [Part II: Adobe Print Forms with Web Dynpro for ABAP|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/media/uuid/a3e2f018-0b01-0010-c7a8-89deb6e63e97].
    I am trying to complete this and looks like this tutorial in not complete.Anybody can help me in completing this until we get a preview of adobe form?
    FYI.. Ic ompleted evevrything in tutorial and I am waiting to complete and test.
    Rgds
    Vara

    Thomas,
    Here is where I am stuck.
    Wrote this code in ONACTIONSEARCH.I am getting my entries in internal table ISFLIGHT.
    but unable to bind it to adobe form and show in the form.
    *  SELECT statement
        clear isflight. refresh isflight.
        select * into corresponding fields of table isflight from sflight
        where carrid =  ls_data_selections.
    * navigate from <CONTEXT> to <ADOBE_DATA> via lead selection
      lo_nd_adobe_data = wd_context->get_child_node( name = wd_this->wdctx_adobe_data ).
    * navigate from <ADOBE_DATA> to <SFLIGHT> via lead selection
      lo_nd_sflight = lo_nd_adobe_data->get_child_node( name = wd_this->wdctx_sflight ).
      lo_nd_sflight->bind_table( new_items = isflight set_initial_elements = abap_true ).
    Error is Access via 'NULL' object reference not possible.
    FYI.. I just dragged and dropped 2 elements from DATA to Adobe form.what are the other changes do i need to do in form gui elements so that it shows the internal table contents?
    this would really help me..
    Rgds
    vara
    Edited by: Vara K on Jan 21, 2009 5:51 PM

  • To open Adobe Interactive Form in New Window

    Hi Folks
    I want to open Adobe interactive form in new window not in popup. This form should contain data passed from parent view.
    Please help
    - Mandeep Virk

    Hi,
    Can you explain your requriement clearly.
    You have two views ParentView and PDFView. Two views embedded in Window1.
    By default ParentView will be displayed.
    Now you are navigating from ParentView to PDFView. Then ParentView will be replaced by PDFView in Window1.
    So here what is ur requriement. Why do you want an seperate Window here.
    If you want to open the PDFView in a popup. Just create another Window2. Ember PDFView in Window2. Now from ParentView opent Window2 as a model/external popup.
    Open View or Window in a external window (popup)
    Regards,
    Charan

  • SOAP Runtime Exception: CSoapExceptionTransport when activ adobe Print Form

    Hi
    I am trying to activate an Adobe Print Form, but I am getting the error "SOAP Framework error: SOAP Runtime Exception: CSoapExceptionTransport: HTTP send failed with exception communication_failure(100.101)".
    I have searched the forum and can see several thread stating that this is a ADS Configuration/Basis error, but when we try to execute the test report it works just fine, so I am guessing the ADS is working quite fine, or ?
    Any help / hints to fix this error will be very appreciated
    Regards
    Morten Nielsen

    A year back I have experienced the same behaviour of my forms which were very large (30 pages at design time). After some time (number of changes I guess) they stopped working. I had to start all over from the last backup (that was few days ago once, what is a lot of work lost).
    Why I would now do is:
    1) copy your form and try to activate the copy
    2) create a new form with the same interface, create some dummy layout with one field and try to activate
    3) do you have any older version of this form? Or you´ve created it just now and this is the first activation? if you have an older one, try that one
    Otto

  • Installing ADOBE Print Forms

    Hello All,
    We have just completed technical upgrade of our SAP 4.7 system to ECC6.0 system. We want to use Adobe forms? We are having only ABAP Stack . We know that ADS needs Java Stack... Please help me out with the below questions.
    1 .Implementing the Adobe Print Forms in the current lanscape by activating the Java Stack.
    Q1. Implications of activating the Java stack only for Adobe Print Forms in the current lanscape for existing business functions.
    Q2. Best option among installing ADD-IN (or) Stand Alone.
    Q3. Is there any other special requirements to take into account when using this forms application?
    2. Is it the best option to go for third party tool.
    3.Thirdly: I assume that the graphical application (Gui add-on) is only required for
    those who will be developing the forms and not for all users. Is that assumption
    correct?
    Please help me out with ur inputs.
    Thanks in advance.

    If you are considering adding a Java stack to your current ECC6.0 environment as an Add-in then you must consider:
    a) Performance - If ADS is going to be heavily used do you have enough resources available ? Will it impact your current ERP systems ? The Java AS alone will consume a lot of resources.
    b) Complexity - Do you regularly restore your systems to test environments ? ...can your backups and restores deal with the added complexity of a Java AS Add-in ?
    From personal experience it's preferable to have at least 2 standalone ADS systems, 1 for DEV/TST and 1 for PROD.
    You can find a guide and more information on the subject [here|http://help.sap.com/saphelp_nw70/helpdata/en/37/504b8cbc2848a494facfdc09a359b1/frameset.htm].
    Nelis

  • How to enable frontend printing using Adobe Print Forms

    Otto Gold at the forum "SAP Interactive Forms by Adobe" gave me the tip that Sandra Rossi in this forum might help me out. Here is the link to my original thread How to enable frontend printing using Adobe Print Forms
    My question was:
    Hi Experts!
    Did anyone of you manage to enable frontend printing using Adobe Print Forms? In order to save administration effort we use frontend printing in our ERP system. We just changed some SMARTFORMS to the new Adobe Forms technology. Now we learned that direct frontend printing does not work with these forms.
    Any help will be very much appreciated.
    Kind Regards,
    Gerald

    I think you'll be disappointed by a rather negative answer but I'll try to explain everything I know (or think I know) the best I can
    The simplest solution is to do a preview, and print from Adobe Reader! (as I could see on one project, users have to display one more dialog than usually to print) It's the best workaround according to me.
    How Adobe form printing works:
    When you print an Adobe form from SAP, a printer language (PCL, PS, ZPL, PDF) is retrieved from TSP0B table according to the device type, ADS (Adobe Document Services, installed in the SAP java stack) is then contacted to generate the form: a file corresponding to the printer language is generated and sent back to SAP (there are also 2 other little files but it's of none interest here). SAP stores it as a file (named SPOOL...) in the global directory (DIR_GLOBAL when you use AL11 transaction).
    When you ask SAP to print it, it sends the file as is to the printer.
    Note: when you ask SAP to display the spool, SAP sends a request to ADS which will send back a PDF (binary stream which is not stored on disk, just displayed on frontend).
    How frontend printing works:
    If you want to print a normal spool via frontend, SAP doesn't know the language of the printer you will choose. SAP sends the spool in a format named SAPWIN to a frontend program named SAPLPD, it converts the SAPWIN format into GDI, a Windows format that is understood by all printer drivers, and it is sent to the printer driver (you have selected) which converts the GDI format into the printer language.
    Any workaround?
    First possibility would be that ADS converts the PDF into SAPWIN format (by creating an Adobe .XDC file at the ADS side). SAP says it's not possible in Note 685571 - Printing PDF-based forms. As I understand, SAPWIN is a very simple language compared to PCL for example, so it is very difficult to convert a PDF to SAPWIN without losing much information. There's a SAP note about the SAPWIN language if you want to check.
    Second possibility is to print directly the PDF through Adobe Reader: you get the PDF from ADS, download it to the frontend (easy), and execute directly Adobe Reader print function. Unfortunately, I don't know if it's possible. Moreover, we should enhance the standard SAP print dialog...
    Third possibility is the one I recommended at the beginning of this post

  • Adobe print form margin problem

    Hello,
    I am trying to print a Adobe print form on Kyocera printer(Using HPLJ4 device type).
    I want to print content from 0.5 CMs, but if i give no margin in the design,Output is being Cropped.Print preview is okay.
    Can any one help me?
    Thanks,
    Guru Prasad

    Hello,
    I think you can try with different device type like POSTSCPT or SAPWIN,
    During the print it use different character widths when you use different device types to
    output the same form, HPLJ4 is PCL-5 and the largest.
    You can refer to notes 90437 and 183948 for more information.
    Best Regards,
    Wen Peng

  • Adobe Print form problem

    Hello,
    I have a funny problem. Well, this is the first Adobe Print form development in my current project.
    We have configured ADS and am able to create my Adobe form. I tried testing my form directly and it shows me my form in PRINT PREVIEW properly.
    I tried creating the PRINT PROGRAM as shown below. For my suprise, I dont find the PRINT PREVIEW window itself. Niether the OUTPUT.Can anyone help me in correcting my mistake. I hope someone must have had this kind of similar problem before.
    <i>* Get the Generated function module name
    CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
      EXPORTING
        i_name                     = 'Z_TEST_APPLICATION_FORM'
      IMPORTING
        e_funcname                 = l_funcname
        E_INTERFACE_TYPE           =
    IF sy-subrc <> 0.
      WRITE : 'Exit at FP_FUNCTION_MODULE_NAME'.
      EXIT.
    ENDIF.
    Set the form processing attributes
    l_outputparams-device = 'PRINTER'.    "Set the output Device to PRINTER
    l_outputparams-getpdf = 'X'.          "Launch Print Preview
    l_outputparams-preview = 'X'.
    l_outputparams-immexit = 'X'.
    l_outputparams-NODIALOG = ' '.
    *l_outputparams-dest = 'LOCA'.
    Start the form processing
    CALL FUNCTION 'FP_JOB_OPEN'
      CHANGING
        ie_outputparams       = l_outputparams
        EXCEPTIONS
          CANCEL                = 1
          USAGE_ERROR           = 2
          SYSTEM_ERROR          = 3
          INTERNAL_ERROR        = 4
          OTHERS                = 5
    IF sy-subrc <> 0.
      WRITE : 'Exit at FP_JOB_OPEN'.
      EXIT.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    l_docparams-LANGU = 'E'.
    *l_docparams-fillable = 'X'.
    Call our Deferment Application form
    CALL FUNCTION l_funcname
      EXPORTING
        /1bcdwb/docparams = l_docparams
        p9230    = p9230
        ndgp     = l_ndgp
        ldate    = l_ldate
        lsubty   = l_lsubty
        stext    = l_stext
        nric     = l_nric
        ttext    = l_ttext
        rankname = l_rankname
        ndgrant  = l_ndgrant.
    IF sy-subrc <> 0.
      WRITE : 'Exit at l_funcname'.
      EXIT.
    endif.
    Close the Form Processing.
    CALL FUNCTION 'FP_JOB_CLOSE'
      IMPORTING
        E_RESULT             =
      EXCEPTIONS
        USAGE_ERROR          = 1
        SYSTEM_ERROR         = 2
        INTERNAL_ERROR       = 3
        OTHERS               = 4
    IF sy-subrc <> 0.
      WRITE : 'Exit at FP_JOB_CLOSE'.
      EXIT.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    WRITE : 'Sucessful'.</i>
    Expecting a fast response. Thanks in advance.
    Regards
    <i><b>Raja Sekhar</b></i>

    Hi Raj,
    Its really nice to hear from you. getPDf is used for getting the pdf document to process in the code.
    Say, i require to attach the PDF and send the form through mail. In that case, I flag this parameter and get the values in the result import parameter of the FM.
    Hope this will give you some idea. You may refer Jeff Gebo's webinar or Vani krishnamoorthy's papers available in SDN, which illustrates, how you can attach a PDF and ssend the mail..
    Hey, btw, i am posting a new thread regarding drop downs. Please reply to it [:D]
    Regards,
    Anto.

  • How to display an Adobe Print form using FM's FP_JOB_* in WebDynpro

    Hi Experts,
    I have requirement to display an Adobe Interactive form on clicking of an UI element on the Webdynpro screen. I am using FM's FP_FUNCTION_MODULE_NAME, FP_JOB_OPEN and FP_JOB_CLOSE from report and it works fine. How to use this Fm's in Webdynpro to display that PDF.
    Thanks in advance,
    Pradeep Reddy

    Hello,
    thtis is not how it works. You don´t use this coding to display the form in WD. In fact WD is handling the form itself. If that is a print form, you just need to place the Interactive form element on your WD screen, specify the template source (the form template) and do the coding in WD init. And there is no problem if the form is SFP based.
    If this one is an interactive one, you need to set enable to true and do NOT use SFP based template. Also use the right form elements according to your layout type (ACF, ZCI), for ZCI insert the WD script.
    I can provide some more details if there will be any other problem/ detail.
    Regards, Otto

  • How to open document to PDF from ALV

    Hi ,
      how to open document to PDF from ALV on clicking (hot spot)
    urgent
    thanks,

    something like this:
    line_fieldcat-fieldname = 'vbeln'.
    line_fieldcat-ref_tabname = 'I_vbeln'.
    line_fieldcat-hotspot = 'X'. " Shows the field as ahotspot.
    line_fieldcat-seltext_m = 'Notification '.
    APPEND line_fieldcat TO i_fieldcat.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    i_callback_program = ws_repid
    i_callback_user_command = 'MY_USER_COMMAND'
    and rest of parameters,
    FORM MY_USER_COMMAND USING ucomm LIKE sy-ucomm
    selfield TYPE slis_selfield.
    IF ucomm = '(Function code of action, say click, or enter'
    CASE selfield-fieldname.
    WHEN 'QMNUM'. "Notification
    IF i_tab-qmnum NE space.
       CALL FUNCTION 'WS_EXECUTE'
          EXPORTING
            commandline = '/F /IM "ACRORD32.EXE"'
            program     = 'TASKKILL'.
    ENDIF.

  • How do you open adobe reader docs from a cd-rom

    How do I open Adobe PDF doc from a cd-rom

    Yes, I recently bought a book with a cd-rom with it that has documents on the cd that I can copy and use for my students and use as assessments. When I load the cd-rom, it opens up in adobe acrobat reader window and it has on the upper right hand side TOOLS COMMENT SIGN . The doc's are highlighted in blue but I cant click on them because it either gives me this selection only; Seltct Tool, Marquee Zoom, Hand Tool. It will not allow me to just left click and print doc. Top menu has File, Edit, View, Window, Help and the usual zoom 100% or 150% . and the print icon is visable but it will prunt the the page not the specific document I want. It has convert files to PDF on line and convert files to Microsoft word online, sign in doc, So what is it that need to open the documents and just print?

  • Internal table in adobe print forms

    hi there,
    in my WDA-application i use adobe print forms for output.
    i use a table for displaying an internal abap-table.
    in the formular-hierarchy it looks like this:
    table2
    --> line1
      --> cell1
      --> cell2
      --> cell3
    my problem is that i am a complete newbie in scripting in print forms.
    here is what i want to do:
    if cell1 = 'X' then the text in cell2 has to be bold or underlined.
    Can someone provide me with a code-example either in javascript or formclac???
    thx
    David

    thx for answering.
    first i tried the following code:
    data.T1.Tabelle2::ready:form - (JavaScript, Client) -
    this.Zeile1.Zelle2.font.weight = "bold";
    this.Zeile1.Zelle2.font.underline = "1";
    the result is, that cell2 is bold and underlined but only the first row of the table. i want all cell2 in all rows bold and underlined.
    then i tried this:
    data.T1.Tabelle2::ready:form - (JavaScript, Client) -
    if(this.Zeile1.Zelle1.rawValue == "01"
    this.Zeile1.Zelle2.font.weight = "bold";
    this.Zeile1.Zelle2.font.underline = "1";
    nothing happens and i dont understand why. The visible value in Zelle1 is "01"!

  • Adobe print forms - Intergration with Webdynpro ABAP

    Hi
    We are working on SAP Adobe print forms with Webdynpro ABAP. We are getting the PDF form's Hexadecimal content as a part of the FPFORMOUTPUT parameter when we execute the FM of the Form.
    I tried to assign that to a context variable and assigned that to the PDFSource of the form and tried to generate the PDF. But is is showing a black page.
    Can you please suggest a way if any to get this done.
    Regards,
    Srikanth.

    You can use the print form directly. I mean the same way as you would use the WD/ online form. Provide the form name, the data source and stuff and the form should work. If that would be an interactive one, you would not be able to change any values if the form is based on DDIC dictionary, but since you want to use the printform, this is not your concern.
    Regards Otto

  • How to open Adobe Reader file from another native IOS application?

    There is an existing thread, but I want to re-open it because I think this is an important feature that we need badly.  I was wondering if there is any plan to add this feature so we can open PDFs directly into Adobe from the web / other apps.
    How to open Adobe Reader file from another native IOS application?
    Basically, we just want to use a custom URL scheme to open a specific document in the App.  Currently, this only opens the app but does not load the file.
    APB

    Not to hijack the conversation but I can explain why this would be useful for both the above case and another.
    What I believe Pavel is talking about is setting up a "URL Scheme" for the Adobe Acrobat iOS application so that you can easily open a PDF specifically in Adobe Acrobat iOS from other native applications and even from web applications opened within Safari. This is particularly useful if your application requires some of the specific features in Adobe Reader iOS to grant them the best experience possible and you want to encourage this.
    Another case: If you're using Adobe Livecycle's document security modules (that encrypts PDF files so that Adobe Acrobat must "phone home" to decrypt and view the document), these PDF's can only be viewed inside the Adobe Acrobat application and appear as blank in most other PDF readers. Having a URL scheme allows your application utilising this functionality to have a 1 click step to view the PDF rather than the current non-user friendly process:
    - Within Safari, touch the PDF link (appears as blank in the default Safari PDF reader, which in itself is confusing)
      - Touch "Open in..."
      - Touch "Adobe Acrobat"
    We have an immediate need for this functionality for the example above. I can resubmit it in a separate post if necessary.

Maybe you are looking for

  • Equium A60 screen blackout but an image is still visible

    Purchased this laptop as it was supposed to be reliable. After 18 VERY basic use the screen started to black intermittently until 3 months ago it failed completely; I now use an external flat screen(had that for 4 years! no problem). Now I have notic

  • Iphoto library missing and cannot recreate thumbnail

    I cant find iphoto library under the picture folder and so I tried to recreate/repair thumbnails. However, alt+command during the launch of iphoto do not bring up any window for the recreate/repair function .  A friend suggested that I reinstall ipho

  • Error in refurbishment process order iw81

    Dear friends When I save the refurbishment order it is giving me error as functional location required I am surprised since the refurbishment order does not contain any FL how it is giving error can you help me Regards Chandrashekhar

  • External Suppliers Cant Print an Equestionnaire

    With 6.1, users who have an eQuestionnaire up in IE8 or IE9, cannot print the whole EQ using the IE print command. It only prints what is visible in the browser window pane. 6.0 didnt do this. The only option they have is to zoom the page down so it

  • Remote Monitoring CCX 8

    Hi All, I tried to configure remote monitoring in CUCCX, but I could not because I have enhanced license. When I Opened the Supervisor desktop I found a button for voice monitoring, but I could not use it. My question is: can I use voice monitoring w