Excel Workbook in Background Processing

Hello,
I have more than 10 queries in an Excel Workbook, all of them are using the same variable and this variable is filled by Exit. The only thing that user need, is Refresh all queries.
The time of the query execution is very long, so, we want to schedule this Workbook.
Is it possible?
Thanks,
Marcelo

You can use Information Broadcaster to schedule the  workbooks to run in the background and email to users.
Another option is to use the Reporting Agent to fill the Olap Cache for the individual queries used in the workbook, since the queries are cached when the users access the workbooks execution will be fast.
Thanks.

Similar Messages

  • How to Create Excel File in Background processing with different colors

    HI All
    I am trying to create Excel file in background & send it to user through e-mail, this i could acheive using fucntion module SO_DOCUMENT_SEND_API1, but here my requirement is i want to put different colors to columns of excel & this should happen in Background processing,
    Initially i completed above requirement by using HTML type of document with attachment type 'ALI'  & formatted output using write statement & used colors, after that i took this o/p using save_list function module & then table compress...etc.
    but i don't know how to achieve same if we need o/p in excel as size of object of excel file is less than that of HTML
    I am thankfull to everybody who will help me.
    Regards
    Lokesh

    Lokesh,
    Iam also trying to populate my text file with colors as an attachment . If you know this please let me know.

  • Data of alv report in  excel file in background processing using open datas

    Hi Experts,
    I have developed report for purchase register . if i execute this report in background process i am not able to get the downloaded file in excel and output is also not coming properly, columns are going to overlap.
    i used open dataset  read dataset and close dataset but still problem is not solved. so if anyone have code with this and also which will have concatenate statement in the code send it.
    Regards,
    Rahul

    Hi Rahul,
    Ur code shud be like below:
    DATA : l_filename2 TYPE string,
                v_extn.
        SPLIT p_filename AT '.xls' INTO l_filename2  v_extn.
        CONCATENATE l_filename2  'downloaded'  INTO l_filename2  SEPARATED BY '_'.
        CONCATENATE l_filename2  'txt'   INTO l_filename2 SEPARATED BY '.'.
        OPEN DATASET l_filename2 IN TEXT MODE FOR OUTPUT ENCODING DEFAULT.
        IF sy-subrc <> 0.
          MESSAGE e499(sy) WITH text-e02.
        ENDIF.
        LOOP AT it_order_number INTO wa_order_number.
          TRANSFER wa_order_number TO l_filename2.
        ENDLOOP.
        CLOSE DATASET l_filename2.
    Now, go to tcode AL11 and check it in the Application server itself.
    Hope this helps,
    Regards,
    Arnab.

  • EXCEL WORKBOOK ON APPLICATION SERVER IN BACKGROUND

    Dear Experts,
    I have to download a file as excel workbook in background on application server.
    I have used open / close data set using  that I am able to download .CSV and Tab Delimated file(with extension as .xls) but not excel workbook.
    Regards and Thanks,
    Vikas

    Hi Vikas,
        what i understood is , u hav a excel file on presentation server (desktop)  and want to upload it to the appln server. if so do the following :
    step one :  save the excel file with all the data u wanted in it.
    step two : save as  the excel file  in tab delimited format.
    step three : save as the tab delimited file in ansi    .txt format.
    Now cg3z to upload the text file (.txt) in appln server .
    open the file as below:
    DATA: begin of itab,
               col1  type <>,
               col2  type <>,
              end of itab.
    DATA : wa_itab   like itab.
    DATA: wa(100)       TYPE c,
               xeof(1)        TYPE c.
    PARAMETERS: p_file(30) TYPE c DEFAULT 'appln server path .txt' LOWER CASE
                                             OBLIGATORY,
    OPEN DATASET  <p_file> FOR INPUT IN TEXT MODE
                           ENCODING DEFAULT.
      IF sy-subrc NE 0.
        WRITE  : ' error opening the file "
        EXIT.
      ELSE.
        DO.
          READ DATASET p_file INTO wa.
          IF sy-subrc NE 0.
            xeof = 'X'.
            EXIT.
          ENDIF.
          IF sy-subrc EQ 0.
            PERFORM split_data.
          ELSE.
            EXIT.
          ENDIF.
        ENDDO.
        CLOSE DATASET p_file .
    FORM split_data .
      SPLIT wa AT  cl_abap_char_utilities=>horizontal_tab
                                          INTO  wa_itab-col1  wa_itab-col2  wa_itab-col3.
      APPEND wa_itab TO gi_itab.
    ENDFORM.                    " SPLIT_DATA

  • Background process

    Hi Experts,
                    I have  developed  report for purchase register . if i execute this report in background process i am not able to get the downloaded file in excel and output is also not coming properly, columns are going to overlap.
                    i used the functional  module SAP_CONVERT_TO_XLS_FORMAT, but it is coming without data i.e excel file is blank.So tell me How to download excel file  in background process
    directly? If u have reference code send me.
    Regards,
    Balu.K

    Hi Bala,
    Below is the sample code...
    PARAMETERS: p_file TYPE fileextern DEFAULT '/sapout/xyz'.
    File on Application Server
      OPEN DATASET p_file FOR OUTPUT IN TEXT MODE.
    Transfer the content.
      LOOP AT gt_output INTO gs_output.
        TRANSFER gs_output TO p_file LENGTH 1000.
      ENDLOOP.
      CLOSE DATASET p_file.
    Hope it will help.
    About SPAD, follow the below steps.
    Goto SPAD-> Full Administartion-> Device Types-> Format Types->
    Check for the format X_65_1024/4.
    This is the maximum allowed size format with 65 lines and 1024 charcters.
    If its there you can use it.
    Or create a new format with 65 lines(20000 lines are allowed without page breaks) and 1024 columns(maximum allowed) Z_65_1024.
    Then copy the standard Device type to ZSAPWIN and attach the new format Z_65_1024.
    Then copy the Output device LOCL to ZLOCL and assign device type ZSAPWIN.
    Then while sheduling jobs in background you can use ZLOCL with the new fromat Z_65_1024.
    BR/Manas

  • Data refresh in background for an Excel workbook published on a SharePoint 2013 site

    Hi,
    I've created a site to publish some Excel workbooks on a SharePoint 2013 farm with Excel Services.
    I'd like to run in background the data refresh against the cube connected to Excel, so when the end user will open the workbook he already will see the updated data without any waiting times.
    How can I solve this issue, please?
    Keep attention: I don't talk about PowerPivot for SharePoint.
    Thanks

    did you try to use the
    unattended service account for authentication to external data, in order to refresh the excel data?
    Check this technet: http://technet.microsoft.com/en-us/library/hh525344.aspx
    more options over here:
    http://technet.microsoft.com/en-us/library/ff191191.aspx
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • Background processing- download multiple itabs into one excel with tabs

    Hello,
    I want to run a report as a background job and download the outputs in excel file into different tabs.
    Problem is OLE does not run in background mode.
    Are there any other alternatives for that?
    I searched the forum and did not get any useful answer for background procesing. All the topics use for foreground processing.
    (Old query for reference:- )
    [background processing] multiple work sheets in single attachment file
    Thanks.

    Hi,
    Even i had the same issue before, what i did is, i written a program which will run in the background and stores the data in application server file, and also it sends the email to user saying that 'the data is soted in application server, to veiw please run the ZXXXX transaction code to view,
    The second transaction code is having the OLE code which will download the data into an excel sheets with more than 1 tab.
    Thanks
    Sudheer

  • Create and Format an Excel File as a Background Process(Application Server)

    Hi all,
    I have a requirement to Output a formatted(Bold fonts, Merged Cells etc.) Excel File.
    It is to be run as background process. So ideally, the file will be produced in the ApplicationServer and will already contain the formatting. If I am to use ole2 functions such as
    *--Opening the existing document
       call method of gs_wbooks 'Open' = gs_wbook
       exporting #1 = file_path.
    Is this possible? can file_path point to the file created in the ApplicationServer?
    Any answers, suggestions or workarounds would be greatly appreciated.
    Thanks in Advance

    no.
    that works only in dialog
    A.

  • Trying to close an excel workbook with client_ole2 leaves an excel process

    Hello ,
    I 'm trying to import data from forms (10g) to an excel workbook and i use client_ole2.
    Everything seems to work fine except the last part of my code. The excel application is closing but it leaves a process open ( Windows Task Manager).The procedure I'm using
    is the following
    PROCEDURE fill_excel
    IS
    v_ole_excel client_ole2.obj_type;
    v_ole_workbooks client_ole2.obj_type;
    v_ole_workbook client_ole2.obj_type;
    v_ole_worksheets client_ole2.obj_type;
    v_ole_worksheet client_ole2.obj_type;
    cell client_ole2.obj_type;
    v_file_name VARCHAR2 (2000) := 'C:\F101.xls';
    obj_hnd client_ole2.obj_type;
    v_ole_range client_ole2.obj_type;
    arglist client_ole2.list_type;
    v_date_from DATE;
    v_date_to_xr DATE;
    v_date_to_chr VARCHAR2(20);
    v_date_to DATE;
    BEGIN
         -- INITIALIZATION OF DATES
         GET_XRISI('GEL',v_date_from,v_date_to_xr);
         select iso_lib.Get_ISO_CONFIG_Value('DATEE')
         into v_date_to_chr
         from dual;
         v_date_to:=to_date(v_date_to_chr,'DD/MM/YYYY');
    -- OPEN EXCEL
    v_ole_excel := client_ole2.create_obj ('Excel.Application');
    client_ole2.set_property (v_ole_excel, 'visible', 0);
    -- OPEN WORKBOOKS - WORKBOOK
    v_ole_workbooks := client_ole2.get_obj_property (v_ole_excel, 'Workbooks');
    arglist := client_ole2.create_arglist;
    client_ole2.add_arg (arglist, v_file_name);
    v_ole_workbook :=client_ole2.invoke_obj (v_ole_workbooks, 'open', arglist);
    client_ole2.destroy_arglist (arglist);
    --OPEN WORKSHEETS - WORKSHEET (1)
    v_ole_worksheets := client_ole2.get_obj_property (v_ole_workbook, 'Worksheets');
    arglist := client_ole2.create_arglist;
    client_ole2.add_arg (arglist, 1);
    v_ole_worksheet :=client_ole2.get_obj_property (v_ole_worksheets, 'Item', arglist);
    client_OLE2.invoke(v_ole_worksheet,'activate');
    client_ole2.destroy_arglist (arglist);
    fill_cell (v_ole_worksheet, 'H6', value);
    -- OPEN WORKSHEET (2)
    arglist := client_ole2.create_arglist;
    client_ole2.add_arg (arglist, 2);
    v_ole_worksheet :=client_ole2.get_obj_property (v_ole_worksheets, 'Item', arglist);
    client_OLE2.invoke(v_ole_worksheet,'activate');
    client_ole2.destroy_arglist (arglist);
    FILL_CELL(v_ole_worksheet,'AY2',value);      
    -- save document as c:\F101_xxxx.xls
    arglist := client_ole2.create_arglist;
    client_ole2.add_arg (arglist, 'c:\F101_'||REPLACE(v_date_to_chr,'/' ,NULL)||'.xls');
    client_ole2.invoke (v_ole_workbook, 'SaveAs', arglist);
    client_ole2.destroy_arglist (arglist);
    -- close C:\F101.xls
    arglist := client_ole2.create_arglist;
    client_ole2.add_arg (arglist, v_file_name);
    client_ole2.invoke (v_ole_workbook, 'Close', arglist);
    client_ole2.destroy_arglist (arglist);
    -- exit Excel
    client_ole2.invoke (v_ole_excel, 'Quit');
    --To release all the memory object
    client_ole2.RELEASE_OBJ (v_ole_worksheet);
    client_ole2.RELEASE_OBJ (v_ole_workbook);
    client_ole2.RELEASE_OBJ (v_ole_workbooks);
    client_ole2.RELEASE_OBJ (v_ole_excel);
    END;
    Any suggestions will be appreciated...
    Thanks Marina

    The slowness you are experiencing is largely owing to the fact that the WebUtil package is running on the middle tier -- but the Jacob bean is running on the client. Loading a spreadsheet requires a lot of network I/O. To speed things up, implement your operation within a custom Java bean, in such a way that communication between the tiers is minimized. For example, write a Java class that receives all the data in one call, and understands how to write it to an Excel document. Deploy this class as a Java bean, and call it from your form as needed using FBEAN.INVOKE( ).
    The catch: passing data through PL/SQL imposes the 32K-character limit for VARCHAR2. If you cannot be certain that the data to be written can be expressed as a string of this size, you must consider introducing compression, passing the data over multiple calls, or possibly both.
    I've been working with this, using Java's GZIP libraries for compression, and Apache Axis' BASE64 function for binary-to-String conversion. Since I'm passing a complex data structure, I use open-source XStream to serialize this structure to XML, GZIP the XML string, Base64-encode and pass it along. Sounds awkward and cumbersome, but has worked fairly well so far.
    The XML step may not be needed for simple tabular data, but because GZIP minimizes the cost of wrapping every value in tags, the incredible convenience offered by XStream makes it worth at least trying. (One call to marshall, one call to unmarshall.)
    Sorry, but this is all I have time to write, at the moment -- hopefully it at least gives you an idea regarding the problem and possible solutions.
    Regards,
    Eric Adamson
    Lansing, Michigan

  • Executing BW Workbooks from EP as background process

    Hi all!
    I need to execute BEX workbooks from Enterprise Portal with automatically predefined values of variables. Iu2019d like to do this in two ways: normal (ordinary way) and as background process (result: xls. file). Can you help me?

    Hi Alzatula,
    You can do this in information broadcasting.
    You can configur broadcast settings for workbooks.
    The prerequisite is you need a precalculation server.
    Check on sdn, how to register a precalculation server.
    You can execute it in foreground or you can schedule it in background.
    Check this link, it may help you to set up the broadcast setting.
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/00172934-f3c1-2b10-728a-c42a0fc28c61
    Check this how to as well
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/d09dea78-b61a-2b10-c7ad-acd94d64079a
    Information broacasting can be called through BEx broadcaster in EP.
    Hope it helps,
    Regards,
    Sunmit.

  • Getting error while submitting data to excel workbook through excel services in InfoPath 2010

    Hi,
    I have a requirement where in have to fetch the calculated values from the excel workbook through InfoPath 2010 form.
    When I am submitting cell value to excel workbook using SetCellA1 by executing following action:
    "Submit using data connection: dataconnection"
    I am unable to submit form. It is giving "there has been an error while processing the form" in the front end. I checked the event viewer and it displayed following exception:
    There was a form postback error. (User: xxxx, Form Name: yyyyyyyy, IP: , Request:
    http://asadadsas Request Form Template.xsn&SaveLocation=/somelocation, Form ID: urn:schemas-microsoft-com:office:infopath:formname:-myXSD-2010-09-20T15-02-34, Type: KeyNotFoundException, Exception Message: The given key was
    not present in the dictionary.)
    I was successfully able to submit the form using InfoPath client but it is giving error in the browser.
    Is there any way or configuration that I should do to resolve this issue.
    Any suggesttion would be of great help.
    Thanks,
    Sharepoint Consultant from NY, USA

    I have exactly the same problem. The form is supposed to be submitted to the SOAP Web service (http://servername/_vti_bin/ExcelService.asmx) using the SetCellA1 operation, works fine in InfoPath Filler, but when I try to submit it in the browser, I get this
    error:
    There was a form postback error. (User: WINGTIP\Administrator, Form Name: NewEventForms, IP: , Request: http://intranet.wingtip.com/et/_layouts/FormServer.aspx?XsnLocation=http://intranet.wingtip.com/et/NewEventForms/Forms/template.xsn&SaveLocation=http://intranet.wingtip.com/et/NewEventForms&Source=http://intranet.wingtip.com/et/NewEventForms/Forms/AllItems.aspx&DefaultItemOpen=1,
    Form ID: urn:schemas-microsoft-com:office:infopath:NewEventForms:-myXSD-2011-12-29T18-18-45, Type: KeyNotFoundException, Exception Message: The given key was not present in the dictionary.)
    followed by
    Unhandled exception when rendering form on postback System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.    
     at System.ThrowHelper.ThrowKeyNotFoundException()    
     at System.Collections.Generic.Dictionary`2.get_Item(TKey key)    
     at Microsoft.Office.InfoPath.Server.SolutionLifetime.DatabaseHelper.GetSchemaXml(String namespaceUri, Solution solution, String dataObjectName, SchemaNavigator& schema, XPathNavigator& originalSchema, XmlNamespaceManager& namespaceManager)
     at Microsoft.Office.InfoPath.Server.SolutionLifetime.PartFragmentHelper.IsDataSetNode(Solution solution, XPathNavigator node)    
     at Microsoft.Office.InfoPath.Server.SolutionLifetime.PartFragmentHelper.ApplyPartFragmentGather(DataAdapter adapter, XPathNavigator sourceDOM, DataObjects dataObjects, XPathNavigator targetDOM, PartFragment[] partFragments, Boolean[]& areDataSets)
     at Microsoft.Office.InfoPath.Server.SolutionLifetime.DataAdapterWebServiceSubmit.Execute(Document document, Uri soapAction, Uri serviceUrl, XPathNavigator querySubDOM, XPathNavigator resultsSubDOM, XPathNavigator errorsSubDOM, Int64 timeout, DataAdapterCredentials
    credentials, Boolean useDcl, Boolean useProxy, Boolean useSelf)    
     at Microsoft.Office.InfoPath.Server.DocumentLifetime.DataAdapterWebServiceSubmit.ExecuteInternal(XPathNavigator queryFields, XPathNavigator resultFields, XPathNavigator errors)    
     at Microsoft.Office.InfoPath.Server.SolutionLifetime.RuleAction.EvaluateExpression(Document document, XPathNavigator currentTarget)    
     at Microsoft.Office.InfoPath.Server.SolutionLifetime.RulesRuleSet.EvaluateExpression(Document document, XPathNavigator targetNavigator)    
     at Microsoft.Office.InfoPath.Server.DocumentLifetime.Document.ExecuteDefaultSubmitAction()    
     at Microsoft.Office.InfoPath.Server.SolutionLifetime.ButtonSubmit.Click(Document document, XPathNavigator container)    
     at Microsoft.Office.InfoPath.Server.DocumentLifetime.EventClick.Play(Document document, BindingServices bindingServices, EventLogProcessor eventLogProcessor)    
     at Microsoft.Office.InfoPath.Server.DocumentLifetime.EventLogProcessor.ExecuteLog(Int32 expectedEventLogID)    
     at Microsoft.Office.InfoPath.Server.DocumentLifetime.Document.<>c__DisplayClass13.<PlayEventLog>b__11()    
     at Microsoft.Office.Server.Diagnostics.FirstChanceHandler.ExceptionFilter(Boolean fRethrowException, TryBlock tryBlock, FilterBlock filter, CatchBlock catchBlock, FinallyBlock finallyBlock)
    What might be wrong? Are there any InfoPath configurations that need to be done? And, do I need to save the connection to the Excel Service Service Application to a connection file?
    Thanks,
             Boris

  • ERROR while uploading the data into ztable with background processing

    Hi gurus,
    i am trying to upload the data from excel file to internal table 
    its working fine ..
    but........
    if i try to upload the data with background processing , in sm37 it is saying "error during the upload of clipboard contents".
    Regards,
    Sri

    Hi,
    FM GUI_UPLOAD doesnt work in background, use dataset to upload it from application server.
    refer below code
    *--Local Variables
      DATA : l_file  TYPE string,
             l_line  TYPE string,
             l_index TYPE sy-tabix.
    *--Clear
      CLEAR : l_file.
      l_file = p_ipfile.
    *--Read the data from application server file.
      OPEN DATASET l_file FOR INPUT IN TEXT MODE ENCODING DEFAULT.
      IF sy-subrc NE 0.
    *--Error in opening file
        MESSAGE i368(00) WITH text-005.
      ENDIF.
    *--Get all the records from the specified location.
      DO.
        READ DATASET l_file INTO l_line.
        IF sy-subrc NE 0.
          EXIT.
        ELSE.
          SPLIT l_line AT cl_abap_char_utilities=>horizontal_tab
                          INTO st_ipfile-vbeln
                               st_ipfile-posnr
                               st_ipfile-edatu
                               st_ipfile-wmeng.
          APPEND st_ipfile TO it_ipfile.
        ENDIF.
      ENDDO.
    Regards,
    Prashant

  • How can I make Numbers respect the row and column locks in an Excel workbook opened in Numbers???

    I have a Windows server app that generates Excel workbooks to be emailed to political campaign volunteers to be loaded into Numbers on an iPad, edited, then emailed back to be posted to the server database.  There are two problems encountered:
    1.  The Excel workbook has the first row (column headings) and first column (route identifier) of cells locked, so that they will not scroll off the screen, but Numbers doesn't respect the locks, so when the user scrolls horizontally or vertically, the column headings and/or the route identifier scroll off the screen.
    2.  The Excel workbook has pop-up "tool-tip" type comments in certain column headings in order to provide the user with the acceptable entries for those columns, but Numbers does not respect those.  When the user touches any of the commented column heading cells, a context menu appears instead of the comment.
    What must I do in the Excel workbook sheets, or what settings can be made in Numbers to correct the above?

    I imported a Numbers '09 file into Numbers on the iPad.  All comments were removed during import. Frozen header row and column were retained.
    Thank you for your responses I must ask, however, when you refer to "importing" the Excel file, are you referring to a two step process whereby the Excel file is first converted by some other process into Numbers format, then opened in the Numbers application - which is what I have to do in my PC application to generate the Excel file, and reverse that process to convert the Excel back into my database format - or are you simply referring to opening the file in Numbers as "importing" it?  And please excuse any ignorance, as I'm not at all familiar with Apple's terminologies.  In fact, I don't own an iPad myself, but rather I have to depend on one of my clients to do the testing for me.
    I imported an XLSX file into Numbers on the iPad.  The file used "freeze panes" to "freeze" the first column and row. Only warning on import was that it changed fonts. It imported without the first row and column frozen and with no comments. Nothing I can do about the missing comments but it was a simple matter to turn the first column & row into headers and freeze them.
    Unfortunately this would not be an efficient  solution, since the end users are, for the most part, elderly political campaign volunteers who are fairly computer illiterate.  These workbooks are actually canvassing lists - known as walklists.  Their purpose is for the volunteers to interview voters, record the results of the interviews, and post the results to a database, which provides the campaigns with valuable strategizing capabilities.  Also, these workbooks have multiple pages - as many as 10 or more.  and from what I infer from the above, the setting changes would have to be made on each page.
    My whole intent in developing this iPad/Tablet methodology was to significantly reduce volunteer's work - which is a recruitment benefit - and eliminate paper.  While the latter would be accomplished, the former would not, and in fact would tend to increase it.  It's necessary to keep the first row - column headings - and the first column - the route identifier - from scrolling off the page, so that the volunteer won't have to keep scrolling up and down and right and left to know what the data are.
    Conclusion: Comments are not supported on the iPad version of Numbers.  Frozen headers are not imported from Excel but can be recreated easily.
    I was previously directed to the Apple website  http://www.apple.com/ipad/from-the-app-store/apps-by-apple/numbers.html which extols the wonders of the Numbers application.  About halfway down the page there's a section regarding, "Sliders steppers and pop-ups".  The web page states that pop-ups can be set up but, being a marketing site, gives no indication whatsoever as to how it's done.  I was hoping someone could tell my if there's any way to carry them over from an Excel file.

  • Not Able to Save As Microsoft Excel Workbook in Acrobat Standard X

    I keep getting the error message "Save As failed to process this document. No file was created.", when trying to Save As Spreadsheet > Microsoft Excel Workbook. What can I do to correct this error?

    I had the same problem with both Acrobat Pro CS6 and CC on a Mac OS 10.8.5. I was trying File > Save As Other > More Options > Rich Text Format. I would get the same error. I tried saving as a Word document to no avail. Web searches yielded no insight.
    Here's how I got it to work: Tools > Content Editing > Export File To... > Rch Text Format
    I think it's a bug if you can't save it under one menu but you can under another. I hope this works for you.

  • I am uploading an Excel Workbook (xlsx format) to convert to a pdf and it has taken over an hour and it is still not uploading. I have even tried to restart it and that did not work.

    I'm trying to upload an Excel Workbook (in xlsx format) to have it converted to a PDF file and that little circle has been spinning forever. I tried to restart the process but it did the same thing. So I tried to open up each individual worksheet of the workbook and save them individually. I "think" I got that to work, but when I go to the combine tab, I see the four pages that I have selected with spinning "thinking" circles on all of them. Please help. I have a client waiting for this proposal and I don't know what to do!
    LisaWoz

    Hi Lisa Wozniak,
    Are you on a slow Network Connection? I would recommend you to Clear the browser Cache and History and  then try again or try using a different browser on a different Network Connection.
    Let me know if it works or not.
    Regards,
    Rahul Tyagi

Maybe you are looking for

  • Can I use a VZW iphone4 as an ipod, with no VZW service?

    The 411:  My son is 14 and is not ready for having a $30/month data plan under contract. However, he is ready (we want to give him) and new iPod Touch to replace the aged one I gave him a few years ago. I found a near new VZW iPhone 4 for the same pr

  • Feature not appearing in site collection features list using powershell

    I created a custom web part solution which adds a custom web part to the web part gallery - simple. I did this on my dev server and used Visual Studio's deploy button to deploy it, and it all worked. The solution was added to the Solution Store, my f

  • Process of transferring the confguration documentation to Solution Manager

    Hi Team / Experts, Could any one pleae let me know  What is the "process of transferring the confguration documentation to Solution Manager"  as we got some requirement to implement & configure Solution Manager for one our Client. However,i would nee

  • Facebook photo order

    Since upgrading to Photos I have discovered that when I upload multiple photos to a Facebook album they are out of order.  Not only that, but when I try to rearrange them in Facebook, it will not allow any of them to be moved around.  This is the cas

  • Re installing Photoshop Elements 6

    I purchased photoshop Elements 6 several years ago for my MacBook and it worked fine for over a year.  Then it suddenly stopped working.  I uninstalled it probably the wrong way and tried to reinstall.  It will not install now and instead just freeze