SAPUI5 Export to Excel in Server side

Hi Experts,
I have a requirement to export SAPUI5 table to excel.
I tried different client side download and most of them failed in IE browser
Export sap.ui.table.Table as CSV
http://jsfiddle.net/hybrid13i/JXrwM/
Can anyone able to guide me to implement it in server side?
In my UI5 application I am having JSON data.
one way is :
I will create a "form" and will set the content in that form. And will submit that form.
$("#myForm").submit();  
Now I have to route this to my java server class for converting it to excel. In that point I am struggling.
Can anyone help me?
Regards,
Jacob

Hi,
Check if this blog Displaying backend data both as SAPUI5 Table and an Excel File helps you.
Regards,
Chandra

Similar Messages

  • Any method to Import & Export to Excel from Client Side

    Hi,
    Is there any method to Import and Export to Excel from the Client side. I have one procedure to export to Excel , but the excel file will be opened in the Application Server only, even if it executed from the client side. Also this procedure will not work if OLE2 chnaged CLIENT_OLE2. I am writing my procedure, Is there any idea to get it in the client side.
    PROCEDURE pr_Forms_to_Excel(p_block_name IN VARCHAR2 DEFAULT NAME_IN('system.current_block')) IS
    -- Declare the OLE objects
    application OLE2.OBJ_TYPE;
    workbooks OLE2.OBJ_TYPE;
    workbook OLE2.OBJ_TYPE;
    worksheets OLE2.OBJ_TYPE;
    worksheet OLE2.OBJ_TYPE;
    cell OLE2.OBJ_TYPE;
    range OLE2.OBJ_TYPE;
    range_col OLE2.OBJ_TYPE;
    -- Declare handles to OLE argument lists
    args OLE2.LIST_TYPE;
    -- Declare form and block items
    form_name VARCHAR2(100);
    f_block VARCHAR2(100);
    l_block VARCHAR2(100);
    f_item VARCHAR2(100);
    l_item VARCHAR2(100);
    cur_block VARCHAR2(100) := NAME_IN('system.current_block');
    cur_item VARCHAR2(100) := NAME_IN('system.current_item');
    cur_record VARCHAR2(100) := NAME_IN('system.cursor_record');
    item_name VARCHAR2(100);
    baslik VARCHAR2(100);
    row_n NUMBER;
    col_n NUMBER;
    filename VARCHAR2(100);
    ExcelFontId OLE2.list_type;
    BEGIN
    -- Start Excel
    application:=OLE2.CREATE_OBJ('Excel.Application');
    OLE2.SET_PROPERTY(application, 'Visible', 'True');
    -- Return object handle to the Workbooks collection
    workbooks:=OLE2.GET_OBJ_PROPERTY(application, 'Workbooks');
    -- Add a new Workbook object to the Workbooks collection
    workbook:=OLE2.GET_OBJ_PROPERTY(workbooks,'Add');
    -- Return object handle to the Worksheets collection for the Workbook
    worksheets:=OLE2.GET_OBJ_PROPERTY(workbook, 'Worksheets');
    -- Get the first Worksheet in the Worksheets collection
    -- worksheet:=OLE2.GET_OBJ_PROPERTY(worksheets,'Add');
    args:=OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 1);
    worksheet:=OLE2.GET_OBJ_PROPERTY(worksheets,'Item',args);
    OLE2.DESTROY_ARGLIST(args);
    -- Return object handle to cell A1 on the new Worksheet
    go_block(p_block_name);
    baslik := get_block_property(p_block_name,FIRST_ITEM);
    f_item := p_block_name||'.'||get_block_property(p_block_name,FIRST_ITEM);
    l_item := p_block_name||'.'||get_block_property(p_block_name,LAST_ITEM);
    first_record;
    LOOP
    item_name := f_item;
    row_n := NAME_IN('SYSTEM.CURSOR_RECORD');
    col_n := 1;
    LOOP
    IF get_item_property(item_name,ITEM_TYPE)<>'BUTTON' AND
    get_item_property(item_name,VISIBLE)='TRUE'
    THEN
    -- Set first row with the item names
    IF row_n=1 THEN
    ------updated by faisal-to give Bold font-----
    --FOR k IN 1 .. 3 LOOP
         args := OLE2.create_arglist;
         OLE2.add_arg(args, 1);
         OLE2.add_arg(args, col_n);
         cell := OLE2.get_obj_property(worksheet, 'Cells', args);
         OLE2.destroy_arglist(args);
         --cell_value := OLE2.get_char_property(cell, 'Value');
         ExcelFontId := OLE2.get_obj_property(Cell, 'Font');
         OLE2.set_property(ExcelFontId, 'Bold', 'True');
    --END LOOP;
    baslik:=NVL(get_item_property(item_name,PROMPT_TEXT),baslik);
    args:=OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, row_n);
    OLE2.ADD_ARG(args, col_n);
    cell:=OLE2.GET_OBJ_PROPERTY(worksheet, 'Cells', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.SET_PROPERTY(cell, 'Value', baslik);
    OLE2.RELEASE_OBJ(cell);
    END IF;
    -- Set other rows with the item values
    args:=OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, row_n+1);
    OLE2.ADD_ARG(args, col_n);
    cell:=OLE2.GET_OBJ_PROPERTY(worksheet, 'Cells', args);
    OLE2.DESTROY_ARGLIST(args);
    IF get_item_property(item_name,DATATYPE)<>'NUMBER' THEN
    OLE2.SET_PROPERTY(cell, 'NumberFormat', '@');
    END IF;
    OLE2.SET_PROPERTY(cell, 'Value', name_in(item_name));
    OLE2.RELEASE_OBJ(cell);
    END IF;
    IF item_name = l_item THEN
    exit;
    END IF;
    baslik := get_item_property(item_name,NEXTITEM);
    item_name := p_block_name||'.'||get_item_property(item_name,NEXTITEM);
    col_n := col_n + 1;
    END LOOP;
    EXIT WHEN NAME_IN('system.last_record') = 'TRUE';
    NEXT_RECORD;
    END LOOP;
    -- Autofit columns
    range := OLE2.GET_OBJ_PROPERTY( worksheet,'UsedRange');
    range_col := OLE2.GET_OBJ_PROPERTY( range,'Columns');
    OLE2.INVOKE( range_col,'AutoFit' );
    OLE2.RELEASE_OBJ( range );
    OLE2.RELEASE_OBJ( range_col );
    -- Get filename and path
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG( args, p_block_name );
    OLE2.ADD_ARG( args,'Excel Workbooks (*.xls, *.xls');
    filename := OLE2.INVOKE_CHAR( application,'GetSaveAsFilename',args );
    OLE2.DESTROY_ARGLIST( args );
    -- Save as worksheet
    IF NVL(filename,'0')<>'0' THEN
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG( args,filename );
    OLE2.INVOKE( worksheet,'SaveAs',args );
    OLE2.DESTROY_ARGLIST( args );
    END IF;
    -- Close workbook
    --OLE2.INVOKE( workbook ,'Close');
    -- Release the OLE objects
    OLE2.RELEASE_OBJ(worksheet);
    OLE2.RELEASE_OBJ(worksheets);
    OLE2.RELEASE_OBJ(workbook);
    OLE2.RELEASE_OBJ(workbooks);
    --OLE2.INVOKE(application, 'Quit');
    OLE2.RELEASE_OBJ(application);
    -- Focus to the original location
    go_block(cur_block);
    go_record(cur_record);
    go_item(cur_block||'.'||cur_item);
    END;
    Thanks in advance.
    Rizly Faisal

    Alternatively you could use OLE2 to do the bulk of the importing and exporting and then use the webutil file transfer functions to move the file to the client and then simply open the file there...That might be more efficient in terms of performance as well.
    Regards
    Grant

  • What is the best way to read, process, and write an Excel File Server side...SQL Server Agent Job

    So I was using dynamic Excel commands to open and save as using...
    Microsoft.Office.Interop.Excel.Application
    and
     workbook.SaveAs(StringDestinationFile, XlFileFormat.xlExcel8, Type.Missing, Type.Missing, Type.Missing, Type.Missing, XlSaveAsAccessMode.xlExclusive, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing);
    which worked all fine and dandy client side. Then when I attempted to create a SQL Server Agent Job, this failed as a result of SQL Server side not being able to execute dynamic Excel commands.
    So do I need to therefore try and do this function via Microsoft.ACE.OLEDB.12.0 commands? And where can I find the commands and syntax to open and save as? I have to Open a .xlsx file, save it as a .xls file, and then open this newly created .xls file and
    then save it as a .csv file.
    Thanks for your review and am hopeful for a reply.
    ITBobbyP85

    I think you might be over complicating things.
    You can use SSIS with Excel Source/Destination connections to read in, or output to an excel sheet/file.

  • Discoverer Plus4i - Exporting to Excel - Your server is running low

    We are currently running Discoverer Plus 4i.
    We have a couple of large reports that we want to export to Excel.
    We retrieve the report and then carry out the 'Export to Excel' action. The export starts to run but during the 'sort' phase we are getting the error "Your server is running low on virtual memory".
    The largest report is currently retrieving about 64K rows but will grow by at least another 20K.
    I appreciate we could restrict the retrieval through parameters but we were wondering if anyone had encountered this before and if there are any solutions out there.

    Hi,
    Any chance any of your items are created using custom functions/packages that return varchar's? If so, check you max char fetched (admin edition - properties tab, each item in folder(s) used by the report). The columns created by custom functions/packages will probably be 4000 characters. Excel doesn't like this. This also slows down your report. Wrap your custom function call in a substr and reduce to the correct size. This might fix your problem.
    If you don't use custom functions/packages in this report, oh well, just a thought.
    Regards,
    Nancy

  • Project Server 2010 export to Excel 2007 fails

    I keep getting the following error when I try to export Resource Availability to Excel.  I am using Project Server 2010, Excel 2007, IE8, Windows 7.  I have PS set as a intranet site with low security set.  Coworkers with the same setup are
    not having this issue.  I have tried exporting to Excel with Excel open, Excel closed, on a hardwire network connection, on wireless network connection, on my corporate VPN and not on my corporate VPN. 
    Microsoft Office Excel cannot access the file "URL here" for the possible reasons:
    -The file name or path does not exist.
    -The file is being used by another program
    -The workbook you are trying to save has the same name as a currently open worklbook.
    Please provide suggestions on what to try differently to make the export work.  I have tried downloaded other version of IE and have the same issue.

    Hi Julia,
    since nobody jumped in, I'll give a try!
    Have you tried to reinstall Excel or at least repair it?
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • How can I disable excel addin on the Server side?

    Hi, is there any way to disable excel addin on the server side?
    We want to disable it so that no one can modify or read data in the cube in the production environment, even if he or she had installed the add in. Instead, we provide the Planning data forms as the only interface for end-users to read and write. we do this because the add in is very easy to install and users can read and write data in the cube at their will.
    As we designed to keep the security filters simple, it is not a good idea to controll data access through security filters.
    so, what i'm asking is how to disable excel addin on the server side?
    Thank you for replying.
    Edited by: user4592285 on 2012-10-18 上午6:48

    Hi,
    As Gurus suggested, you will have to restrict viewing of data through dimension level security.
    Give access of members to users, only which are relevant to users so that they can't view other user's data/members.
    Like give access of members belonging to HR dept only to HR users and give access of Finance dept related members to finance users only.
    Hence HR users will view only HR relevant data and won't be able to view (read or write) finance related data and vice-sa-versa.
    Hope this helps
    Regards
    -SM
    Edited by: 918547 on Oct 18, 2012 8:40 PM

  • Export to Excel Error in SQL Server 2014 Report Builder/Viewer

    Hi,
    I am using the 2014 version of ReportViewer in a WinForm to display an RDL report.
    The report was originally created in Report Builder 2.0 (SQL 2008 R2), but has since been edited in Report Builder 3.0 (SQL 2014).
    The report loads and displays OK, and even exports to Word and PDF. But when exporting to Excel and then opening the Excel document, the following error occurs:
    "We found a problem with some content in <filename>. Do you want us to try and recover as much as we can? If you trust the source of this workbook, click Yes."
    If you click Yes, then a second message appears:
    "Removed Part: /xl/styles.xml part.  (Styles)
    Repaired Records: Cell information from /xl/worksheets/sheet1.xml part"
    The Excel document then opens, and the data is there, but there is no formatting (no border columns, colours, bolds etc.)
    The three interesting things are:
    - When exported from SQL 2008 R2 Report Builder 3.0, which exports to .xsl instead of .xslx, it works
    - A brand new report created in 2014 Report Builder 3.0 exports to .xslx great
    - In Report Builder 2014, I stripped everything back and removed all rows and columns so the original table in the report only has one empty row and column it the export still errors - it is only by removing the original table and creating a brand new table
    that export works OK
    It appears to be a problem with the tablix, but ideally we don't want to have to recreate our reports from scratch to fix this issue.
    Has anyone come across an issue like this before, and know of any potential resolutions to it?
    Thank you.

    Hello,
    Based on your description, you render a report originally created in Report Builder 2.0 (SQL 2008 R2) and export the report to excel with format of Excel 2007-2010.
    Edit the report in Report Builder will not upgrader the report. In that case the report still with SSRS 2008 R2 RDL schema. Please try to upgrade the report by open the report in Report Designer in SQL Server Data Tools (SSDT) and then try again.
    If you don’t want to upgrade the report, please try to export the report
    with Excel 2003 rendering extension and check if the issue persists.
    The SQL Server 2014 and SQL Server 2012 Reporting Services Excel rendering extension renders a report to the native format of Microsoft Excel 2007-2010 with .xlsx as file extension. Only the Excel rendering extension is available by default.
    You must update the Reporting Services configuration files to make the Excel 2003 rendering extension available.
    For example, changing the value of Visible to
    true in the following line in the RSReportServer.config:
    <Extension Name="EXCEL" Type="Microsoft.ReportingServices.Rendering.ExcelRenderer.ExcelRenderer,Microsoft.ReportingServices.ExcelRendering"
    Visible="true"/>
    Reference:Upgrade Reports
    Exporting to Microsoft Excel (Report Builder and SSRS)
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • Error while exporting data from sql server to excel

    Hi,
    I am trying to export data from sql server to excel.
    The query that I used is s follows
    INSERT INTO OPENROWSET( 'Microsoft.Jet.OLEDB.4.0', 'Excel 8.0;Database=C:\Folder1\abc.xls','select * from [Sheet1$A1:IV65000]')
    select 
    column1,column2.... from Table1
    I get the following error message while doing so..
    String or binary data would be truncated.
    The statement has been terminated.
    One of the column's holds data more than 225 characters.
    What is the way to correct this, i want the whole data of the colum in the excel sheet.

    I haven't had great luck with the INSERT INTO OPENROWSET method.  Can you try one of the many samples from one of these 3 links?
    http://www.excel-sql-server.com/excel-sql-server-import-export-using-vba.htm#Excel%20Data%20Export%20to%20SQL%20Server%20Test%20Code 
    http://www.mssqltips.com/sqlservertip/1540/insert-update-or-delete-data-in-sql-server-from-excel/
    https://www.simple-talk.com/sql/database-administration/getting-data-between-excel-and-sql-server-using-odbc--/
    Knowledge is the only thing that I can give you, and still retain, and we are both better off for it.

  • Sql server reporting services + export to excel + embedded images

    Hi all,
    i got a problem when exporting to excel in ssrs 2008.
    i use embedded image in the report. but when i export the report to excel, image is being exported but its width is being changed to size 0 .
    but when i click on it and expand it explicitly in excel it is being expanded .
    how to make the image by default to its actual width?
    how to fix this problem ?

    Hi sudeep Puvvadi,
    Based on the information posted, I have a test with SQL Server Reporting Services 2008 (SSRS2008) and Microsoft
    Excel 2010 by the following steps:
    From the Toolbox window, drag the image to the top edge of the design surface.
    In the image Properties dialog box, select Embedded from the Select The Image Source drop-down list.
    Click import, and select a BMP file from my local computer.
    Right-click the image, select Image Properties. In Size category, select Original size.
    Export the report to excel.
    When opening the excel file, the image displays with original size rightly. So I suggest you to add an image with
    the same steps above, then checking whether the image shows correctly. If it still cannot work fine for you, could you please give me a feedback and tell me related settings, so that I can reproduce the scenario exactly and provide further assistance?
    Thanks,
    Lola Wang
    Please remember to mark the replies as answers if they help.

  • SQL Server 2014 Reporting Services export to Excel

    Hello,
    We recently upgraded to SQL Server 2014 from 2008 R2.
    In SSRS With the new version of SQL Server we are having an issue with the Cell Border Expression logic when exporting to Excel.
    This Cell is a Grouped By Column on the Staff ID
    Here is the expression for the Cell Border
    BorderStyle:
              =IIF(Fields!StaffParttime.Value = "Y", "Solid","None")
    The report renders correctly however when exporting the report the Border is not correct in the spreadsheet.
    Example:  Cell 1 Parttime = "N" there is no border, Cell 2 Parttime = "Y" there is a border, Cell 3 Parttime = "N" there is a border
    Cell 3 should not have a border, also the subsequent sheets all have borders when they should not.  Once the border is set it does not change.
    Has anyone had this same/similar problem and if so what was your resolution?
    Thanks

    Hi Jrod T,
    Based on your description, you are experiencing an issue with the Cell Border Expression logic when exporting the report to Excel, you can’t see the expression added for the Border Style (=IIF(Fields!StaffParttime.Value = "Y", "Solid","None")
    ) work fine in the recently upgraded SQL Server 2014, right?
    I have tested it on my local environment in both the early version and the later version and reproduced the issue in SQL Server 2014.
    The issue due to in the earlier versions of Reporting Services (2005), there was limited support for translating expressions in RDL to Microsoft Excel formulas. But in the newly version, when you export a report to Excel, RDL expressions will not translated
    to Excel formulas, So in the version 2014 the expression will not work.
    Below links of articles are for your reference about more details:
    http://msdn.microsoft.com/en-us/library/ms143380%28v=sql.100%29.aspx
    https://connect.microsoft.com/SQLServer/feedback/details/684666/excel-formulas-not-supported-in-reporting-services-export
    http://msdn.microsoft.com/en-us/library/dd255234.aspx
    Regards
    Vicky Liu

  • Export to excel in a webdynpro java app to store a excel file on the server

    Hi Experts,
    We have a requirement wherein we need to implement the export to excel functionality in a webdynpro java application.
    The excel file created in this way should be stored in the server location.
    I've implmented the export to excel functionality before but the file used to get stored on to my local desktop. But this time, I want the file to get stored on some portal server location.
    Can anyone guide me with the steps for the same?
    It would be really great if you can tell me what to change in my code for this new functionality as I've already implemented this functionality to store the file on my local desktop before.
    Regards,
    Anurag

    Not Required anymore.

  • Export to Excel Problem - Page server Error

    Post Author: Preethig
    CA Forum: Exporting
    Crystal Reports were designed using the Seagate Crystal Reports Developer Version 8.5.3.975.The reports does designed are published in the Seagate Crystal Enterprise 8.0.2.6725  across the web.
    When we try to the export these reports to excel from the Crystal report viewer of the Crystal Enterprise it throws up an error" The export format 'U2FXLS:5' is not supported. &#91;on Page Server : <webserver>.pageserver&#93;."
    The webserver as the Following ConfigurationWindows Terminal Edition - Windows 2000Service Pack 4.Seagate Crystal Enterprise 8.0.2.6725
    The Client system on which the "Export to Excel" is performed has the following Configuration.Windows XP Professional Operating SystemService Pack - SP2.Excel 2002 (10.2614.2625).
    We have tried uninstalling the Crystal Enterprise 8.0.We have also checked for the u2fxls.dll and Crxf_xls.dll in the C:/ <% system Root%> /Crystal.
    Kindly help us to figure out the problem. It has been working fine for quite long and flawed only recently.
    Thank You in advance.
    Thanks and regards,
    Preethi

    Post Author: Preethig
    CA Forum: Exporting
    Cyril,
         Thank You For your tip. But the problem of export To excel could be solved after I renamed the Crxf_xls.dll in the  <%System root%> /Crystal folder which allowed the dll U2fxls.dll to Excel export work just as fine as explained in the Knowledge Base of Bussiness Object.
    Thank you
    With Regards,
    Preethi

  • 500 Internal server error on Export to Excel

    Hello All,
    I have implemented Export to Excel using this tutorial:
    http://wiki.sdn.sap.com/wiki/display/Snippets/WebDynproJava-ExportingTableDataUsingOn-DemandStreams-SAPNW+7.0
    However, after deploying the application, it simply throws 500 internal server error. I have followed each step carefully but I guess something is missing or I am doing it wrongly. How should I go about resovling this issue? I have been trying to fix this since yesterday and yet no success.
    As it is failing right after the deployment that means doInit() method of my view is not able to execute the method mentioned below:
    wdThis.wdGetExportExcelCompInterface().initialize(wdContext.nodeVn_OutputTable(), getColumnInfos());
    I have defined getColumnInfos() method in the view but not sure why it is failing? Any thoughts on this? Has anyone implemented this? If not, please direct me to some simple export to excel code snippet or document. I have been struggling to implement simple Export to Excel on table. (I am not using RFC. The data is coming from KM APIs)
    Ameya

    Dear Ameya,
    For Comunication between DC's, you should use the other DC's as Used Webdypro Component. If you are using with different scenario with webdynpro reference, then please have a look at below document might help to resolve your issue.
    http://help.sap.com/saphelp_nw70/helpdata/en/42/9ddf20bb211d72e10000000a1553f6/content.htm
    Adding a WebDynpro DC as used Component to a portal app
    Using Development Components in WebDynpro components - runtime failures
    Best Regards
    Arun Jaiswal

  • Export to Excel without Attachments in SharePoint Server 2010 Libraries

    Hi All.
    In SharePoint Server 2010 Libraries, when i use "Export to Excel" button from ribbon, all item's attached files link also appear in excel worksheet file.
    What can i do to prevent this?

    It might be a couple which you can easily delete
    By design, you can only export items and if you plan to export attachment or attachment url's. See some ref links here:
    http://kbochevski.blogspot.in/2012/01/export-splist-with-attachments-openxml.html
    http://blog.furuknap.net/exporting-sharepoint-lists-to-excel-including-attachments
    If this helped you resolve your issue, please mark it Answered. You can reach me through http://itfreesupport.com/

  • Export to excel error - NOT windows 2003 server

    hello everyone, I'm facing this kind of prblem: exporting to excel gives an error. no error when exporting in pdf or rtf. I read a number of threads on the matter: a hotfix was released to solve the problem on windows2003 server, which is not the case here. The used system is winxp sp3. I've also read that goig back to a sp2 might solve the problem, but that's certainly not an option. Anybody has any idea?
    using:
    windows xp sp3
    .net framework 2
    crystal report XI (not embedded)
    visual c# 2005
    thanks in advance

    With .NET 2005, you have to move on to CR XI r2 (11.5). No sense continuing with CR 11.0. As you already have CR 11.0, you can download CR XI r2 for free from here:
    https://smpdl.sap-ag.de/~sapidp/012002523100006008462008E/crxir2.zip
    Uninstall CR 11.0 before installing CR 11.5. Use your CR 11.0 keycode when installing CR 11.5.
    Once you have CR 11.5 installed, check the version. I want you to be at 11.5.1838 (I am not sure of the exact SP that is in the download). If you are at a lower version, apply SP 6 from here:
    https://smpdl.sap-ag.de/~sapidp/012002523100015859952009E/crxir2win_sp6.exe
    The references in you r.NET project should be 11.5.3700.0. See how things go in your app once you are at CR 11.5.
    As an FYI.; Sp 6 runtime;
    msm:
    https://smpdl.sap-ag.de/~sapidp/012002523100000634042010E/crxir2sp6_net_mm.zip
    msi:
    https://smpdl.sap-ag.de/~sapidp/012002523100000633302010E/crxir2sp6_net_si.zip
    Ludek

Maybe you are looking for

  • MacBook Pro iSight not working after 10.6.5

    After upgrading to 10.6.5 the iSight on my older MBP Core Duo no longer works. It shows up as detected in the System Profiler, but when I try to access the camera through Skype, iChat, FaceTime, and PhotoBook all I get is a black screen and the green

  • Library find feature not working correctly?

    Greetings, My library contains images with filenames such as: CRW_1893.CRW, CRW_1894.CRW, CRW_1895.CRW, IMG_2059.JPG, IMG_2075.JPG. If I use the Find feature, search by Filename, specify Containing, and key in 1893 in the search field - an image will

  • Problem changing ALL the colours for Visual Composer

    Hi All, <b>To set the scene:</b> I have SP13 installed. I have created a Visual Composer model, selected the option "Enabling styling of flex controls in portal themes", and deployed it. Then gone into the Portal > System Admin > Portal Display > The

  • IPad and iCloud syncing

    I accidentally erased the notes on my iPad by turning iCloud off and on. How do I retrieve them?

  • MissingResourceExc. IE 5.2

    Hello. Maybe someone can help me. I'm trying to run an applet in Internet Explorer 5.2 on Mac OS X which is able to run in Safari on Mac OS, IE 5.5. on Windows and Mozilla on Red Hat. IE 5.2 is throwing an exception.. java.util.MissingResourceExcepti