Hyperion Planner - Cell Document Links

Hi
I am trying to add a document link to a cell within a web form in Hyperion Planner. The document I wish to link to is simply on a shared server / local drive. Therefore the file path looks like:
T:\FINANCE\My Document.doc
However, an error message is produced saying that it "Entered value is not a valid URL for an attachment". If you put http:// in front of the above path it accepts it.
I assume there is a rule in place to check that the link has http:// at the start.
Is there a way to switch this validation off or adjust it? Or a way to get around this?
Thank you
Martin

Thanks John.
However, in a web broswer you could type "T:\FINANCE\My Document.doc" and it would open the document. Therefore there is no requirement for the link to start with "http://" which seems to be the rule in place.
Is there no way to get around this?
Uploading documents to the work space is not really an ideal solution as it duplicates document storage.
Thanks

Similar Messages

  • Show 'Text' Document contents  instead of using Document Links

    I have a requirement from my customer that requires comments to be stored and display both on the planning layout and display instantly in query.
    I am aware that documents which type other than text is stored in BIN form, so my first approach is just to assume to work with document with type 'TEXT'.
    I am aware this can be partly achieved by using the document links, but are there ways to get round of using document "links"? We want to show <b>instantly</b> the content of the document when the layout is opened and when BW query with the right combinations of characteristic values are displayed.

    Yes, for bex, it works only in workbook.
    Check F.Group: SKWF_CONTENT. There are many FM for documents which you can use.
    Here are the VBA Code part for calling RFC FM :
    Public Function BW_DOCUMENT_READ()
      Application.ScreenUpdating = False
    ' Declaration
      Dim FuncCtrl As Object
      Dim ABAP_FUNC As Object
      Dim ABAP_TAB_E_DOCUMENT_PROPERTY As Object
      Dim ABAP_TAB_E_DOCUMENT_CONTENT As Object
      Dim Row As Object
    ' Class Declaration
      Set FuncCtrl = CreateObject("SAP.Functions")
    ' Transfer SapConnection
      FuncCtrl.Connection = SapConnection
    ' Setting ABAP Functions and parameters
    '   Func Name
        Set ABAP_FUNC = FuncCtrl.Add(ABAP_FUNC_NAME)
    '   Func Export Params
        ABAP_FUNC.Exports(ABAP_FUNC_EX_PARAM1) = SAP_QUERY_DESCP
        ABAP_FUNC.Exports(ABAP_FUNC_EX_PARAM2) = SapConnection.Language
    '   Excute Function
        CALL_ABAP_FUNC = ABAP_FUNC.Call
    '   Check Function Call return
        If ABAP_FUNC.Exception <> "" Or Not CALL_ABAP_FUNC Then
           Call COLLECT_MESSAGE(Msgtxt001 & ABAP_FUNC.Exception)
           'MsgBox Msgtxt001 & ABAP_FUNC.Exception
        Else
        ' Func Import Params
          BW_BEX_SUBTOTAL_TEXT = ABAP_FUNC.Imports(ABAP_FUNC_IM_PARAM1)
          BW_BEX_TOTAL_TEXT = ABAP_FUNC.Imports(ABAP_FUNC_IM_PARAM2)
          BW_DOC_URL_PREFIX = ABAP_FUNC.Imports(ABAP_FUNC_IM_PARAM3)
        ' Doc Content
          X_pos = 1
          ' Create Header for Doc content
            Call WRITE_DOC_TABLES(SHEET_NAME_DOC_CONT, X_pos, 1, "Document Nr.")
            Call WRITE_DOC_TABLES(SHEET_NAME_DOC_CONT, X_pos, 2, "Document Line Nr.")
            Call WRITE_DOC_TABLES(SHEET_NAME_DOC_CONT, X_pos, 3, "Document Content")
          ' Fill Doc content
            For Each Row In ABAP_FUNC.Tables(ABAP_FUNC_TABLE2).Rows
              X_pos = X_pos + 1
              Call WRITE_DOC_TABLES(SHEET_NAME_DOC_CONT, X_pos, 1, Row("DOCNR"))
              Call WRITE_DOC_TABLES(SHEET_NAME_DOC_CONT, X_pos, 2, Row("LINENR"))
              Call WRITE_DOC_TABLES(SHEET_NAME_DOC_CONT, X_pos, 3, Row("LINE"))
            Next
        ' Doc Properties
          X_pos = 1
          ' Create Header for Doc content
            Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 1, "Document Nr.")
            Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 2, "Property Name")
            Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 3, "Property Value")
            Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 4, "Language")
            Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 5, "Text Short")
            Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 6, "Text Long")
          ' Fill Doc Property
            For Each Row In ABAP_FUNC.Tables(ABAP_FUNC_TABLE1).Rows
              X_pos = X_pos + 1
              Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 1, Row("DOCNR"))
              Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 2, Row("NAME"))
              Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 3, Row("Value"))
              Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 4, Row("LANGU"))
              Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 5, Row("TXTSH"))
              Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 6, Row("TXTLG"))
             Next
        ' Infoobjects Text
          X_pos = 1
          ' Create Header
            Call WRITE_DOC_TABLES(SHEET_NAME_IOBJ_TEXT, X_pos, 1, "Infoobject Name")
            Call WRITE_DOC_TABLES(SHEET_NAME_IOBJ_TEXT, X_pos, 2, "Language")
            Call WRITE_DOC_TABLES(SHEET_NAME_IOBJ_TEXT, X_pos, 3, "Text Short")
            Call WRITE_DOC_TABLES(SHEET_NAME_IOBJ_TEXT, X_pos, 4, "Text Long")
          ' Fill Texts
            For Each Row In ABAP_FUNC.Tables(ABAP_FUNC_TABLE3).Rows
              X_pos = X_pos + 1
              Call WRITE_DOC_TABLES(SHEET_NAME_IOBJ_TEXT, X_pos, 1, Row("IOBJNM"))
              Call WRITE_DOC_TABLES(SHEET_NAME_IOBJ_TEXT, X_pos, 2, Row("LANGU"))
              Call WRITE_DOC_TABLES(SHEET_NAME_IOBJ_TEXT, X_pos, 3, Row("TXTSH"))
              Call WRITE_DOC_TABLES(SHEET_NAME_IOBJ_TEXT, X_pos, 4, Row("TXTLG"))
            Next
        End If
        Application.Worksheets(SHEET_NAME_DOC_CONT).Select
        Range("A2").Select: Selection.End(xlDown).Select
        MAX_NR_DOC = Selection.Value
        Cells.Select: Cells.EntireColumn.AutoFit
        Application.Worksheets(SHEET_NAME_DOC_PROP).Select
        Cells.Select: Cells.EntireColumn.AutoFit
        Application.Worksheets(SHEET_NAME_IOBJ_TEXT).Select
        Cells.Select: Cells.EntireColumn.AutoFit
    End Function
    Private Function WRITE_DOC_TABLES(SHEET_NAME, I_X, I_Y, I_TEXT)
      Application.ScreenUpdating = False
      Set DOC_POS = Application.Worksheets(SHEET_NAME)
      DOC_POS.Cells(I_X, I_Y).NumberFormat = "@"
      DOC_POS.Cells(I_X, I_Y).Value = I_TEXT
    End Function
    For the BW Web, you can searh in how to paper from Tobias Kaufmann. Or search for Doc: "WEB API REFERENCE". In that Doc, search for the topic: 'WEB DESIGN API FOR TABLES'. There you will get all info needed, about how to enhance BW Web application designer.
    There is no possibility for me to attach that doc here. sorry, you have to search it by your self, or send me your email.
    Hope it helps.
    Best Regards,
    Suan Liono

  • Cell Document in Reporting Studio

    i saw from the user manaul that there is Cell Document in Hyperion Reporting Studio, can anyone give me some example of how it works. my assumption is that if you want to attach your comments/graphs to the end of the report, you can attach their harddrive path through Cell Document when you create a report,then when the report is run, it's content and comments/graphs will come as one in PDF view. However in the manual there is little information about Cell Document, so i need your help on this.
    thank you
    ------ Wei Jin

    Hi ,
    Yes its required for some situations.
    But you must have two structures in column and row then only u can use this option.
    You have to use this some scenarios for example you are displaying time periods like Q1, Q2, Q3 & Q4 and Total in rows and amount values , percentage in column.
    In this situation in order to show the total u can sum Q1Q2Q3+Q4 values but percentage u cannot some, so u have to use cell defination where u can calculate percentage using restricted key fig you can select and show this by using cell defination.
    Assign points pls.........
    Best Regards,
    SG

  • Add new document link not working in upgraded sharepoint 2013?

    Hello there,
    Upgraded SharePoint team sites from 2010 to 2013. add new document link not working for shared document in upgraded sharepoint 2013?. it is specially not working on machine where Office web apps set up with this sharePoint server and it
    is working fine with environment  Office web apps not configured with Sharepoint.
    Looking resoluion /suggestion, thanks in advance.
    Regards,
    Sushil

    Hi  Sushil,
    According to your description, my understanding is that the add new document link was not working on machine where Office web apps set up with this SharePoint server after you upgraded SharePoint team sites
    from 2010 to 2013.
    For your issue, it can be caused by integrating Office Web Apps with upgraded SharePoint Site.
    Firstly please make sure claims-based authentication is used by the SharePoint web application that is used to create the new document. Only web applications that use claims-based authentication can open
    files in Office Web Apps. To determine the authentication provider for a web application, follow these steps:
    1.In SharePoint 2013 Central Administration, click Manage web applications.
    2.Select the web application that you want to check, and click Authentication Providers on the ribbon.
    The authentication provider must be displayed as Claims Based Authentication for Office Web Apps to work correctly with the web application. To resolve this issue, you can delete the web application and recreate
    it using claims-based authentication, or you can change the authentication method of the web application.
    Secondly, make sure the WOPI zones match on the SharePoint 2013 and the Office Web Apps Server farm.
    To do this, run the following command on the SharePoint Server:
    Get-SPWopiZone
    The result will be one of the following:.
    internal-https
    internal-http
    external-https
    external-http
    Next, run the following command on the SharePoint Server.
    Get-SPWOPIBinding
    In the output, look for WopiZone: zone. If the results from Get-SPWopiZone don’t match the zone that is returned by Get-SPWOPIBinding, run the Set-SPWOPIZone -Zone cmdlet on the SharePoint Server to change
    the WOPI zone to match the result from Get-SPWOPIBinding.
    If not work, you can try to disconnect SharePoint 2013 from Office Web Apps Server and re-configure Office Web Apps for SharePoint 2013.
    For more information, please refer to the article:
    http://technet.microsoft.com/en-us/library/ff431687(v=office.15).aspx
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Open Document Link on PO Approval WF

    In the PO Approval Workflow, if you have the proper responsibility, an "open document" link is displayed that, when clicked, takes the user to a screen entitled "Notifications to Releases".
    This function is available to our Purchasing Super User responsibility but is not available for the Purchasing Approver responsibility. I'm trying to change that.
    Using help, I determined that the form associated with "Notifications to Releases" is POXPOERL. That form is assocated with the following functions and menus:
    FORM_NAME     FUNCTION_NAME     MENU_NAME
    POXPOERL     PO_POXPOERL     CHV_CHVSSWKB_FUNCTIONS     
    POXPOERL     PO_POXPOERL     PO_POXSTNOT_FUNCTIONS     
    POXPOERL     PO_POXPOERL     PO_POXPOVPO_FUNCTIONS
    POXPOERL     PO_POXPOERL     PO_PURCHASE_ORDERS_GUI
    POXPOERL     PO_POXPOERL     POS_INTERNAL_HP_MENU
    POXPOERL     PO_POXPPOERL_VIEW     PO_POXSTNOT_FUNCTIONS     
    POXPOERL     PO_POXPPOERL_VIEW     PO_REQUESTOR_GUI
    POXPOERL     PO_POXPPOERL_VIEW     PO_POXPOERL_FUNCTIONS
    POXPOERL     PO_POXPPOERL_VIEW     PO_POXBWVRP_FUNCTIONS     
    I've tried, under Functional Developer, to add several of these to the menu for Purchasing Approver. When they show up on the menu and I click them, I get a message stating: "You are not setup as a buyer. To access this form you need to be a buyer."
    All I want is for people to be able to see and use the "Open Form Command". Am I going about this the wrong way?

    I was probably not clear enough in my original question.
    We want people who are approvers - but not necessarily buyers - to be able to open the form from the link. I'm not set up as a buyer, but I have the Purchasing Superuser responsibility and I can open the form.
    I guess, bottom line... some more information on how to make links to eBiz forms work from WF would be helpful. I've not found much in the Oracle-supplied documentation that we have; I've read what's in the Developer's Guide and the Admin guide. Can anyone suggest a web link or two that might shed more light on the process?

  • How to get "Open Document " link

    Dear  Friends,
    I have customized a Requisition Notification based on PL/SQL documents and work flow concepts.
    I have created no.of requisitions to test. Each requisition have 3 persons involved say A ,B , C
    One for submitting ,other two for approval .
    After person B approves., it will go to C. till now  Everything working fine ,
    But In person C's notification list ,  the link called "Open Document " is missing to open the submitted requisition.
    Do I NEED TO SET UP ANY THING .
    How to resolve this .Any idea .Plz share.
    Let me know for any clarification.
    Thanks
    Aravinda.

    Dear friends
    It's solved.
    Just add Purchasing responsibilty to that user to whom  that "open document link " is not visible in the notification.
    Thanks
    Aravinda.

  • How to get the custom integrator in Manage Document Links

    Hi All,
    My requirement is "Creating Word Documents Using Web ADI", I am following the document
    Oracle® Human Resources Management Systems
    Configuring, Reporting, and System Administration Guide
    Release 12.1
    Part No. E13509-02
    From page no. 194.In that section, No.8. Use the Manage Layout Document Links page to create a link between the
    integrator and layout and the Word template.
    See: Creating Links between Template Letters and Layouts, page 2-33
    2-33>>
    Select Manage Document Links from the Web ADI menu.
    But when I click on the "Manage Document Links", I couldn't see my custom integrator to associate my word document with my integrator.
    I could see only the standard integrators.
    How to get my custom integrator in "Manage Document Links". I could see my custom integrator in define layout but not in this page.
    Thanks.
    With Regards,
    Kali.

    Hussein,
    Thanks for your reply.
    I followed the
    Note 360105.1 -Understanding and Using Web ADI in Oracle HRMS, and the section "Letters",
    I could follow all the steps, except the following,
    The reason is, when I click on Manage Documents Links, I am not getting my newly created integrator.
    If I link a standard integrator "HR People Details" to my document, that is opening properly.
    But I am not able to link my document with my integrator(which is based on my view).
    c.  Now link the template letter to the Letter Integrator and Layout.
    If not already done so, Add the function WebADI Manage Document Links to your Web ADI menu, and give it a prompt of Link Document.
    Select Link Document option , and Web ADI Mail Merge page displays. Choose your Letter Integrator. Link it to the Layout, and a list of template documents uploaded to the database is displayed. Select the template letter to be linked with the layout.
    Thanks.
    With Regards,
    Kali.

  • BO 4.1+ IE9 document link in webi?

    Hello All,
    We are using BO 4.1 & IE8 previously. Recently we upgraded the version of IE8 to IE9. When I open Master - Detail Reports, the tool is not behaving properly and its not opening up the detail report when clicked from master report. Is there any possibility to do any settings to work with IE9 for document link in webi 4.1? Thanks in advance.
    Regards,
    Anila.

    Hi Sathish,
    Thanks for your help. I have changed it in the preferences--WebI--modify--to web. I worked and created the report using document link on IE8. But very recently client has upgraded the version of IE. So because of which the master-detail is not working properly. Are there any settings to be changed in order to work with IE9??
    Thanks & Regards,
    Anila.

  • I have a new Mac Pro.  I want to use my old Mac Pro as a storage drive for photos and old documents, linked to my new Mac Pro.  How do I set up the old computer?

    I have a new Mac Pro.  I want to use my old Mac Pro as a storage drive for photos and old documents, linked to my new Mac Pro.  How do I set up the old computer?  Both computers have OS X10.9.3.  Currently they are connected by a Firewire 800 cable.

    You certainly could keep the old Mac Pro in Firewire mode (hold down the T key on its keyboard as you boot) to show its drives on the new MP. This is basically as fast as putting the drives into a Firewire enclosure.
    Or you could boot it normally and share its files over the network using the Sharing panel of System Preferences. If you turn on both File and Screen Sharing, you don't even need to have a monitor attached - you can do all administration using screen sharing. However, this method requires that you open all files over the network, which will be slower than the direct-connect method above, and may also not work with all applications.
    Matt

  • Not able to see document when I click Generate Document link in SSHR

    Hi,
    I have created a 'Generate Document' link on 'Change Hours' page of SSHR.
    But When I click on that link,I am seeing a blank screen and could not get the document.
    Please help me in this tio resolve the issue.
    Thanks,
    Srinivas

    Dear Srinivas,
    Since I am not able to understand the specifics of the SSHR Page, its slightly difficult to suggest something. If you can share the technical details of the page, it might be easier to make a guess. Btw, in case this is standard page behaviour, Oracle Metalink might be a place to look out for resolution.
    Regards
    Sumit

  • Why do I not get the checkout option for a pdf type document when clicking on the document link in the SharePoint workflow task?

    We are trying to use workflows to review and edit pdf files in sharepoint 2010. We are having a couple of issues and am hoping someone has the answer.....
    1)  When myself and coworkers click on the pdf document in the library, we get the check out option as expected.  However when we click on the document
    link in a workflow task (on the sharepoint site), the pdf opens as a temporary file and we do not get the check out option.  Why does this happen????? 
    2)  The same thing happens when we click on the document link in the workflow task email;   HOWEVER,  one of our co-workers does get the
    check out option when clicking on the link in the email task.  Why would she get the checkout option using the email and not when clicking on the link in the task list on the sharepoint site ????  We have compared our internet settings and adobe
    settings to ours and found no differences.
    We are using Sharepoint 2010, Windows 7, IE8, Adobe Reader X or XI.  Some of us have Adobe Pro X and have the same issues.

    Hi,
    According to your post, my understanding is that you could not get the checkout option for a pdf type document when clicking on the document link in the SharePoint workflow task.
    I try to reproduce the issue, however, no matter when I click the pdf type document in the library or click on the pdf document link in the workflow task email, it download the pdf doucment and then I can open it.
    It will be better if you can descript how you
    get the check out option as expected when you click on the pdf document in the library.
    Then I upload a
    word type document to the library, no matter when I click the word type document in the library or click on the word document link in the workflow task email, I can open the word document directly and get the check out option as expected.
    I recommend to use the other type docuemts to check whether the check out option works.
    Thank you for your understanding.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Document Link Item Icon not visible at query execution

    Dear Colleagues!
    How can I acheive to have the comment-icon visible when I open a query with comments in BI Portal, as a default?
    I have set som settings for the properties of the Query in Query Designer. As it is now I have marked for Document Links, Master Data and Info Provider Data, under presentation of the query as a whole.
    Still, when I execute, I can not see any icons. But if I enter settings in the web, and mark for Document Settings for data, the icons appear.
    I do not want the customer to have to do this settings each time they ececute a query from the portal. Rather I want the Document Link Icon to be visible by default. How can I get my settings in the query designer to be counting in fromt of the settings in the template?
    Regards Silje

    I figured this one out myself. There is a setting in Web Application Designer, directly on the query in question. In properties for the query I tick of "Document Links Visible".
    Regards Silje

  • Can't log into BOE system using SAP Authentication when using Document Link

    Hi all.
    We are setting up our dev SBOP 4.0 SP2 system and are working on getting everything configured to our requirements.
    What I am currently struggling with is the Document Link functionality.
    If you browse to a document (WEBI or Crystal) in the folder view in the BI Launchpad and right click and select Document View, the system presents a static link to the report. The problem is, when I execute that link in another browser window, the system prompts me with the default login screen that consists of the User Name and Password which utilizes the Enterprise authentication by default. Our login authentication is set to SAP everywhere else.
    I've already set the parameters for BILaunchpad.properties to allow us to log into the BOE server using our user IDs and that works without a problem. I've also configured the OpenDocument.properties file as well. Neither of these two files seem to have any impact on the screen I'm seeing when I try to use the Document Link. (And yes, I've restarted the tomcat server each time I've made a change to the config files.)
    I'm running out of ideas - have any of you encountered this issue before and do you have any suggestions?
    Thanks.
    -Brian

    Hi,
    i saw this also a couple of times that the changes to the "custom" folder wont take affect.
    Try the following:
    1. Stop the Tomcat
    2. Rename the properties file in the custom folder
    3. take a backup of the properties file from the config folder
    4. make the changes to the properties file in the config folder
    5. start tomcat
    Maybe this will solve the issue but if you deploy a new Fix Pack or Service Pack these Settings will get override.
    If this solved your problem i would recommend you open a Support Message with the SAP Support.
    Regards
    -Seb.

  • Word document links won't open in IE 9

    I got a user who cannot open up a word document link in sharepoint online that should display a word  dialog box basically in IE 9. When clicking, nothing happens even if pop up blocker is off, but he can access the word documents from the link in Firefox. 
    I also found out that I am able to open it up under my windows profile on that machine so it must be a corrupted windows profile.
    I reset IE
    Cleared cache
    Verified in registry in class roots that .html is set to htmlfile
    Anything I can do besides redoing the user's windows profile?
    Best regards,<br/> <br/> <strong>Joe C<br/> </strong>Partner Online Technical Community<br/> -----------------------------------------------------------------------------------------<br/> We hope you get value from
    our new forums platform! Tell us what you think:<br/> <a href="http://social.microsoft.com/Forums/en-US/partnerfdbk/threads"><span style="color:#0033cc">http://social.microsoft.com/Forums/en-US/partnerfdbk/threads<br/>
    </span></a>------------------------------------------------------------------------------------------<br/> This posting is provided &quot;AS IS&quot; with no warranties, and confers no rights <hr>

    Can you try Firefox Safe Mode to see if the problem goes away? You can restart in Firefox Safe Mode by either:
    * Clicking the menu button [[Image:New Fx Menu]], click Help [[Image:Help-29]] and selecting ''Restart with Add-ons Disabled'', or;
    * Holding the '''option''' key while starting Firefox.
    If the issue is not present in Firefox Safe Mode your problem is probably caused by an extension, theme, or hardware acceleration.
    Let us know how you get on.

  • Acrobat X external document linking problem

    Hello,
    I have been using Acrobat 6 standard for our user manuals for years and have recently started using Acrobat X.
    It seems that the external document linking has changed though.  I used to put all of our 3rd party literature (PDFs) in a separate folder (to keep it clean and neat) under our main manual PDF.  I would link to all those documents inside our user manual PDF.  Then when I later burned the PDF and the 3rd party literature to a CD, as long as I maintained the folder heirarchy, everything worked just fine.
    Under Acrobat X though this doesn't seem to be the case.  If I just burn it to a CD, then the all of the external links are broken.  I have been able to do this by adding Desinations names to the 3rd part literature but this is a lot more work and I don't want to modify all of the 3rd party docs.  In addition, some of them are read only and you cannot edit them.
    Does anyone know how to link to external documents in Acrobat X and then move them to a new location while maintaining the link without editing the external documents (some are read only).
    Thank you for any help you can give me.

    The Javascript code populates a field on the form and the If Then statement sets this value based on  the amount in another field.  I have changed all of the values in the If Then statement but the button is still using the old values.
    I have tried this on three different computers and it will not pick up the new values. 

Maybe you are looking for

  • DataDictionnary Table or View for InfoSources/Communication Structure

    Hi, I am looking for the assignment between (Source) Fields  and InfoObjects. this is equivalent to: I am looking for a Data Dictionnary-Table or -View which describes the InfoSource fields / or Communication Structure fields. Anybody got a hint ? Th

  • Is there an App that I can buy which will significantly improve the volume of my i-phone 4 whilst using i-tunes?

    Is there an App that I can buy which will significantly improve the volume of my i-phone 4 whilst using i-tunes?

  • Any way to reverse the recent 3.0 update?

    Is there any way to reverse the recent update? My contacts via MS exchange appear and disappear on a random basis making the iPhone effectively useless as a normal phone. Would far prefer the non-updated iPhone that actually works. Any suggestions fo

  • Where i was error

    When is am attempting to add more than 8 items the action is not loading. Here i show below, Action implement public class AddDesigAction extends Action {      String target = null;      public ActionForward execute(ActionMapping mapping,ActionForm f

  • CUIC Not Ready Reason Code Reporting Issue

    We have a single node UCCX 9.0.2 environment with co-resident CUIC used for historical reporting. When we run the Agent Not Ready Reason Code Summary Report it will only give statistics for the system generated reason codes (the 32XXX ones), even if