Cannot submit data using Smart View 11.1.2

Hi all

I have a 11.1.2 job planning environment windows 2008 (x 64) and I installed just the Smart View through the workspace. I am able to connect to planning and ad hoc analysis Essbase DataForms. But I am not able to present data. Every time I come into some number and say present, it gives off that cells with #MISSING. It's as if we're doing an update. This is the case in the Planning and Essbase.

Suggestions, if there is something I have missed? It cannot be a bug because it's one of the most basic things that Smart View must do.

See you soon,.
Abhishek

No, can't submit sample-based either. Looks like a compatibility issue with Office 2002. In the Support Matrix, 2003 and 2007 only one is mentioned.

See you soon,.
Abhishek

Tags: Business Intelligence

Similar Questions

  • Error when using Smart View install link in the workspace

    Hi all

    We recently definitely use Smart View 11.1.2.5 instead of 11.1.2.1.

    So role the file to our users, we must update the link in the workspace.  I did it, copy the new .exe and file version.xml to our server that hosts the workspace, in the path of file Oracle/Middleware/EPMSystem11R1/common/epmstatic/wspace/SmartView.  I then removed the old files.  Now when I connect to HFM and go to the link, after a period of a few minutes, I get the error "Cannot find a version of the runtime to run this application."

    I tried to restart all of the services, a dead-end.

    No one knows what to do to fix this error?

    Thank you in advance.

    Brian

    Reply to my own post.

    This is a known defect in Smart View 11.1.2.5.  HFM Workspace do not recognize as valid an installation link.

    Thank you.

  • We can connect to two cubes using smart view of even excellent tab?


    just curious to know that we can connect to two cubes using smart view on same excel tab?

    Yes, but only from 11.1.2.1.102, I think.

  • RESTful service cannot insert data using PL/SQL.

    Hi all
    Spin: stand-alone 2.01 AL on OEL 4.8 in box a. VM
    Database Oracle 10.2.0.4 with Apex 4.2.0.00.27 on OEL4.8 in the VM B box.

    Measure of oracle.example.hr performed without problem Restful services.

    Cannot insert data using AL 2.0.1 but works on 1.1.4 AL.
    who uses the following table (under scheme: scott):
     
    create table json_demo ( title varchar2(20), description varchar2(1000) ); 
    grant all on json_demo to apex_public_user; 
    and procedure (scott diagram) below:
    CREATE OR REPLACE
    PROCEDURE post(
        p_url     IN VARCHAR2,
        p_message IN VARCHAR2,
        p_response OUT VARCHAR2)
    IS
      l_end_loop BOOLEAN := false;
      l_http_req utl_http.req;
      l_http_resp utl_http.resp;
      l_buffer CLOB;
      l_data       VARCHAR2(20000);  
      C_USER_AGENT CONSTANT VARCHAR2(4000) := 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)';
    BEGIN
      -- source: http://awads.net/wp/2005/11/30/http-post-from-inside-oracle/
      -- Ask UTL_HTTP not to raise an exception for 4xx and 5xx status codes,
      -- rather than just returning the text of the error page.
      utl_http.set_response_error_check(false);
      -- Begin the post request
      l_http_req := utl_http.begin_request (p_url, 'POST', utl_http.HTTP_VERSION_1_1);
      -- Set the HTTP request headers
      utl_http.set_header(l_http_req, 'User-Agent', C_USER_AGENT);
      utl_http.set_header(l_http_req, 'content-type', 'application/json;charset=UTF-8');
      utl_http.set_header(l_http_req, 'content-length', LENGTH(p_message));
      -- Write the data to the body of the HTTP request
      utl_http.write_text(l_http_req, p_message);
      -- Process the request and get the response.
      l_http_resp := utl_http.get_response (l_http_req);
      dbms_output.put_line ('status code: ' || l_http_resp.status_code);
      dbms_output.put_line ('reason phrase: ' || l_http_resp.reason_phrase);
      LOOP
        EXIT
      WHEN l_end_loop;
        BEGIN
          utl_http.read_line(l_http_resp, l_buffer, true);
          IF(l_buffer IS NOT NULL AND (LENGTH(l_buffer)>0)) THEN
            l_data    := l_data||l_buffer;
          END IF;
        EXCEPTION
        WHEN utl_http.end_of_body THEN
          l_end_loop := true;
        END;
      END LOOP;
      dbms_output.put_line(l_data);
      p_response:= l_data;
      -- Look for client-side error and report it.
      IF (l_http_resp.status_code >= 400) AND (l_http_resp.status_code <= 499) THEN
        dbms_output.put_line('Check the URL.');
        utl_http.end_response(l_http_resp);
        -- Look for server-side error and report it.
      elsif (l_http_resp.status_code >= 500) AND (l_http_resp.status_code <= 599) THEN
        dbms_output.put_line('Check if the Web site is up.');
        utl_http.end_response(l_http_resp);
        RETURN;
      END IF;
      utl_http.end_response (l_http_resp);
    EXCEPTION
    WHEN OTHERS THEN
      dbms_output.put_line (sqlerrm);
      raise;
    END;
    and execution in sqldeveloper 3.2.20.09 when it connects directly to box B as scott:
     
    SET serveroutput ON
    DECLARE
      l_url      VARCHAR2(200)   :='http://MY_IP:8585/apex/demo';
      l_json     VARCHAR2(20000) := '{"title":"thetitle","description":"thedescription"}';
      l_response VARCHAR2(30000);
    BEGIN
      post( p_url => l_url, p_message =>l_json, p_response => l_response);
    END;
    leading to:
     
    anonymous block completed 
    status code: 200
    reason phrase: OK 
    with data inserted. 
    Installation using 2.0.1
       Workspace : wsdemo
     RESTful Service Module:  demo/
              URI Template:      test
                    Method:  POST
               Source Type:  PL/SQL
    and execution in sqldeveloper 3.2.20.09 when it connects directly to box B as scott:
     
    SET serveroutput ON
    DECLARE
      l_url      VARCHAR2(200)   :='http://MY_IP:8585//apex/wsdemo/demo/test';
      l_json     VARCHAR2(20000) := '{"title":"thetitle","description":"thedescription"}';
      l_response VARCHAR2(30000);
    BEGIN
      post( p_url => l_url, p_message =>l_json, p_response => l_response);
    END;
    leading to:
     
    status code: 500 
    reason phrase: Internal Server Error 
    
    Listener's log: 
    Request Path passes syntax validation
    Mapping request to database pool: PoolMap [_poolName=apex, _regex=null, _workspaceIdentifier=WSDEMO, _failed=false, _lastUpdate=1364313600000, _template=/wsdemo/, _type=BASE_PATH]
    Applied database connection info
    Attempting to process with PL/SQL Gateway
    Not processed as PL/SQL Gateway request
    Attempting to process as a RESTful Service
    demo/test matches: demo/test score: 0
    Choosing: oracle.dbtools.rt.resource.templates.jdbc.JDBCResourceTemplateDispatcher as current candidate with score: Score [handle=JDBCURITemplate [scopeId=null, templateId=2648625079503782|2797815111031405, uriTemplate=demo/test], score=0, scope=SecurityConfig [constraint=none, realm=NONE, logonConfig=LogonConfig [logonForm=null, logonFailed=null]], originsAllowed=[], corsEnabled=true]
    Determining if request can be dispatched as a Tenanted RESTful Service
    Request path has one path segment, continuing processing
    Tenant Principal already established, cannot dispatch
    Chose oracle.dbtools.rt.resource.templates.jdbc.JDBCResourceTemplateDispatcher as the final candidate with score: Score [handle=JDBCURITemplate [scopeId=null, templateId=2648625079503782|2797815111031405, uriTemplate=demo/test], score=0, scope=SecurityConfig [constraint=none, realm=NONE, logonConfig=LogonConfig [logonForm=null, logonFailed=null]], originsAllowed=[], corsEnabled=true] for: POST demo/test
    demo/test is a public resource
    Using generator: oracle.dbtools.rt.plsql.AnonymousBlockGenerator
    Performing JDBC request as: SCOTT
    Mar 28, 2013 1:29:28 PM oracle.dbtools.common.jdbc.JDBCCallImpl execute
    INFO: Error occurred during execution of: [CALL, begin
     insert into scott.json_demo values(/*in:title*/?,/*in:description*/?);
    end;, [title, in, class oracle.dbtools.common.stmt.UnknownParameterType], [description, in, class oracle.dbtools.common.stmt.UnknownParameterType]]with values: [thetitle, thedescription]
    Mar 28, 2013 1:29:28 PM oracle.dbtools.common.jdbc.JDBCCallImpl execute
    INFO: ORA-06550: line 1, column 6:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
    
       begin case declare exit for goto if loop mod null pragma
       raise return select update while with <an identifier>
       <a double-quoted delimited-identifier> <a bind variable> <<
       close current delete fetch lock insert open rollback
       savepoint set sql execute commit forall merge pipe
    The symbol "" was ignored.
    ORA-06550: line 2, column 74:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
    
       begin case declare end exception exit for goto if loop mod
       null pragma raise return select update while with
       <an identifier> <a double-quoted delimited-id
    
    java.sql.SQLException: ORA-06550: line 1, column 6:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
    
       begin case declare exit for goto if loop mod null pragma
       raise return select update while with <an identifier>
       <a double-quoted delimited-identifier> <a bind variable> <<
       close current delete fetch lock insert open rollback
       savepoint set sql execute commit forall merge pipe
    The symbol "" was ignored.
    ORA-06550: line 2, column 74:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
    
       begin case declare end exception exit for goto if loop mod
       null pragma raise return select update while with
       <an identifier> <a double-quoted delimited-id
    
            at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:447)
            at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:396)
            at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:879)
            at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:505)
            at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:223)
            at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:531)
            at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:205)
            at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableStatement.java:1043)
            at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1336)
            at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3612)
            at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3713)
            at oracle.jdbc.driver.OracleCallableStatement.execute(OracleCallableStatement.java:4755)
            at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1378)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at oracle.ucp.jdbc.proxy.StatementProxyFactory.invoke(StatementProxyFactory.java:242)
            at oracle.ucp.jdbc.proxy.PreparedStatementProxyFactory.invoke(PreparedStatementProxyFactory.java:124)
            at oracle.ucp.jdbc.proxy.CallableStatementProxyFactory.invoke(CallableStatementProxyFactory.java:101)
            at $Proxy46.execute(Unknown Source)
            at oracle.dbtools.common.jdbc.JDBCCallImpl.execute(JDBCCallImpl.java:44)
            at oracle.dbtools.rt.plsql.AnonymousBlockGenerator.generate(AnonymousBlockGenerator.java:176)
            at oracle.dbtools.rt.resource.templates.v2.ResourceTemplatesDispatcher$HttpResourceGenerator.response(ResourceTemplatesDispatcher.java:309)
            at oracle.dbtools.rt.web.RequestDispatchers.dispatch(RequestDispatchers.java:88)
            at oracle.dbtools.rt.web.HttpEndpointBase.restfulServices(HttpEndpointBase.java:412)
            at oracle.dbtools.rt.web.HttpEndpointBase.service(HttpEndpointBase.java:162)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
            at com.sun.grizzly.http.servlet.ServletAdapter$FilterChainImpl.doFilter(ServletAdapter.java:1059)
            at com.sun.grizzly.http.servlet.ServletAdapter$FilterChainImpl.invokeFilterChain(ServletAdapter.java:999)
            at com.sun.grizzly.http.servlet.ServletAdapter.doService(ServletAdapter.java:434)
            at oracle.dbtools.standalone.SecureServletAdapter.doService(SecureServletAdapter.java:65)
            at com.sun.grizzly.http.servlet.ServletAdapter.service(ServletAdapter.java:379)
            at com.sun.grizzly.tcp.http11.GrizzlyAdapter.service(GrizzlyAdapter.java:179)
            at com.sun.grizzly.tcp.http11.GrizzlyAdapterChain.service(GrizzlyAdapterChain.java:196)
            at com.sun.grizzly.tcp.http11.GrizzlyAdapter.service(GrizzlyAdapter.java:179)
            at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:849)
            at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:746)
            at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:1045)
            at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:228)
            at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:137)
            at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:104)
            at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:90)
            at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:79)
            at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:54)
            at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:59)
            at com.sun.grizzly.ContextTask.run(ContextTask.java:71)
            at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:532)
            at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:513)
            at java.lang.Thread.run(Thread.java:662)
    Error during evaluation of resource template: ORA-06550: line 1, column 6:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
    
       begin case declare exit for goto if loop mod null pragma
       raise return select update while with <an identifier>
       <a double-quoted delimited-identifier> <a bind variable> <<
       close current delete fetch lock insert open rollback
       savepoint set sql execute commit forall merge pipe
    The symbol "" was ignored.
    ORA-06550: line 2, column 74:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
    
       begin case declare end exception exit for goto if loop mod
       null pragma raise return select update while with
       <an identifier> <a double-quoted delimited-id
    Please notify.
    Concerning
    Zack

    Zack.L wrote:
    Hi Andy,.

    Sorry, I forgot to post the Source that is used by the AL1.1.4 and the AL2.0.1.

    Source

    begin
    insert into scott.json_demo values(:title,:description);
    end;
    

    It is a failure during insertion?
    Yes, he failed in the insert using AL2.0.1.

    If the above statement produces the following error message:

    The symbol "" was ignored.
    ORA-06550: line 2, column 74:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
    
    begin case declare end exception exit for goto if loop mod
    null pragma raise return select update while with
     
    

    That gives me to think that a character is not printable (notice how there is anything between the quotation marks - "") worked his way in your PL/SQL Manager. Note how the error is reported to correspond to a column 74 on line 2, line 2 of the block above has 58 characters, so a pure assumption somehow, there is extra space on line 2, which confuses the PL/SQL compiler, I suggest retype PL/SQL Manager manually and see if that solves the problem.

  • Sorting data in Smart View

    Hello

    I use 11.1.2.1. I created smart slices on a cube ASO where the requirement ranging and sorting of data. For example, I pick up the revenue of the cube figures and all dimensions are in line or POV. The measures are in the column. Range of revenue of $0 - $1000. I want to sort the range by the amount of revenues (ascending or descending) and I also want to see how much my business fits into a certain range (for example, between $500 - $600). These are all necessary to analyze the data from the different point of view.

    Please let me know how I can do it.

    Thank you.

    I have not tried, but I guess that you can also use the query designer and replace the MDX generated by an Order clause) or run an MDX erpression from a macro. You can also use toppercent and bottompercent if you want just the percentage of top members X

  • Cannot submit data form with Chrome or Safari

    Can complete is no longer the hold mail in USPS use Chrome or Safari. He let me use the calendar to select the start and end dates. Also unable to connect in Budget car rental - looks that my data are not filed. I rebooted iMac 10.11.5 and uninstalled and reinstalled Chrome. I deleted cookies and history. Recently, I had a lot of Flash "stopped working" and refills - I also think with 'Shockwave '? I have Avast Mac Security.

    Uninstall Avast. His tendency to interfere with the operation of the computer while offering little or no benefit.

    Avast

    Uninstall avast

  • Anyone using Smart View 9.3.1 with Hyperion Version 11.1.2?

    We have improved our environment, planning, Essbase, Shared Services EAS Hyperion 9.3.1 and 11.1.2 financial information however, is it possible to always use SmartView 9.3.1 to connect to the new version of essbase and workspace. We use the connection essbase for ad hoc reporting and the connection of the workspace to run the reports that must be run on several excellent tabs (can not export from the workspace to several tabs).

    I wanted to check first before you try, because I have not found anything which has addressed this particular issue on the forums.

    I don't think that you checked the answer as being correct.

    HTH-
    Jasmine.

  • Prevent the "submit data" of SmartView

    Hello

    Given that several forms of Hyperion Planning in my application are run automatically record the Business Rules, I prevent users to submit data via Smart View.
    Is there a way to disable the "Submit information" button in all the ribbons of SmartView?
    Is it possible to make it in a selective way and disable just for part of the users?
    How?


    Thank you very much
    Yoram

    No, it is not possible to disable the Submit data in SmartView. The SmartView aims to provide the same functionality that they will be available through the web of planning. If users are generally allowed to use both as they are in both cases only allowed to enter data at intersections, they have access to.

    HTH-
    Jasmine.

  • Ask Timedout error when sending data from planning thorugh Smart view

    Hello

    We receive Request Timed out error when trying to send data to the planning application by using Smart view.

    "Unable to connect to the provider because: the request has timed out." Contact your administrator to increase netRetryCount and netRetryInterval. "Is someone can you please tell me where I can increase the time-out settings? Can someone give me the link to the document that detailed the steps to do this.

    Go to the knowledge base and search for document ID 744559.1

    Cause
    By design, Internet Explorer imposes a time-out for the server limit return data. Internet Explorer does not indefinitely wait for the server to come back with data when the server has a problem.

    Smart View communicates via HTTP to which Internet Explorer DLLs are used. Smart Display users who run large queries or have a slow network connection might encounter the error, "the request has timed out. Contact the administrator to increase NetRetryCount and NetRetryInterval. »

    This error message may be misleading because this error also occurs if Internet timeout settings Explorer does not respond to large farms. By default, Internet Explorer has a value of KeepAliveTimeout to a minute and another factor limiting (ServerInfoTimeout) of two minutes.

    Solution
    Please see the following two Microsoft articles for more information:

    http://support.Microsoft.com/kb/813827
    http://support.Microsoft.com/kb/181050

    The following steps must be made with the help of your systems management group. It is recommended that a backup of the registry is performed before making any changes.

    On the client computer, add/update the following registry keys:

    1. open the registry, Start-> Run-> Regedit.

    2. Locate the following section:

    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings].

    3. create the new DWORD key with decimal values:

    ReceiveTimeout = 480000

    KeepAliveTimeout = 180000

    ServerInfoTimeout = 180000

    In this example, the ReceiveTimeout setting is 8 minutes. KeepAliveTimeout and ServerInfoTimeout settings are 3 minutes. These values are set to demand longer running more.

    4 restart the machine for the new settings to take effect.

  • Smart View for MS Word

    In MS Word I pull data from smart view (using the values get functions) data was appeared correctly but it does not display in thousands here I attached the file and marked in the red circle... How can I set the thousands...Untitled.png

    You change the formatting:

    right click on the value, and then selecting Toggle field codes

    It should be in a format something like that {= HsGetvalue ("", "#POV SIZE") |} SmartView12343242342 | {General |}

    in this code, "Général" is the applied formatting, change it to your desired format by the thousands formatting {= HsGetvalue ("", "#POV SIZE") |} SmartView12343242342 | 0, 0. {00 |} for example will give you thousands, commas, with 2 decimal places.

    hope this helps, let me know if you get stuck.

    Edit:

    Once you modify the code, right click again, disable the field code and update smart display to view the results.

    Edit2:

    If you don't want the separation by commas or decimal places 0, just use

    If you want the comma and no use decimal 0.0,

    If you don't want any comma decimal use 0,.00

    It's the same syntax of formatting that Excel uses.

  • Smart View decimal

    I created the report in analytics (connected in English) which consists of the fields of a chain and a single measure (which is formatted by using the thousands separator):

    MEASURE CHAIN

    -----------------------------------

    First 1 000 223

    Second 2 002 322

    When I connect Analytics using a different language (Croatian) the same report appears in the form:

    MEASURE CHAIN

    ------------------------------------

    First 1.000.223

    Second 2.002.322

    This is as expected because in Croatia point is used as the thousands separator and the comma as separator decimal (European system).

    But when I export the report using Smart view to Excel, the data is exported in the first way (having first formatting)

    Since my excel is set to recognize the comma as decimal separator and a period as separator of thousands, the data I export Analytics is unusable. (Keep in mind, that I have even other data excel already formatted in "European way")

    Is there a solution for this problem?

    Do I have to make some corrections in analytics in Excel or in the parameters of SmartView?

    Thanks in advance for the help.

    I solved it by installing the new version of SmartVIew 11.1.2.5.

    It was an older version of the SV.

  • Smart View removes non-members of the model after Ad - Hoc analysis

    Hi all

    I have a spreadsheet that I recovered using Smart View 11.1.1.3 against Essbase 11.1.1.3.

    When I update this spreadsheet against using Smart View 11.1.2.5.215 11.1.2.3.500 Essbase spreadsheet seems to be remove the cells whose content is not a member in the database.


    Rest of the worksheet correctly refreshes and I receive the correct data in the worksheet by using the last smart view, but I need to have the content which is withdrawn.


    Anyone has any idea what is causing this question to ask?



    Thank you

    This has been resolved by an Oracle Doc ID 1571254.1

  • Smart View - refresh all ignorant hidden tabs

    I am using a Smart View model that built a colleague, which contains a number of tabs hidden with actual tire and visible data with the release of summaries. When I try to use Refresh to update the data, it seems to ignore the hidden tabs and only try to refresh the most visible. If I show all data labels and refresh again, it works for this tab, but still ignores all other hidden.

    Anyone know if there is a setting in Excel or Smart View I need to adjust or anything else that could be the cause?

    Me and my colleague who created / used the model using Smart View 11.1.1.3.00 (Build 190) and Excel 2003.

    Thanks in advance.

    Hello

    No setting I have ever been. You could do with a button and VBA for loop on the leaves and refresh those you want.

    Kind regards
    Robb Salzmann

  • Problem in the form of color with Smart View 11.1.1.2

    Hi all

    We use Smart View 11.1.1.2 with Office 2007. Is the problem we are facing, we are not able to retain the formatting of color for Coloumn titles, title of the report when we realize any Option grid as
    Zoom In, Zoom out, just keep, only keep...

    Using the Excel Format option we will be able to preserve the color of formatting only with Option.But Refresh if we did another grid option, then we are not able to retain the color formatting.

    Using the Capture Format option, we are able to keep the color formatting only for data cells not Coloumn securities, report...

    Can one suggest how to fix or work around this problem...

    Kind regards
    Suresh.

    Refer to KB:SmartView Excel formatting is lost after Zoom In, Pivot, undo or redo operations even if "Preserve Excel formatting" is selected. [1096328.1 ID]

    cause: this is an expected behavior in SmartView. During the presentation of the grid is modified, the formatting will not be kept, as SmartView treats as a new grid.

  • Problem starting Smart View

    Hello

    I have a problem with Smart View, which disappears into the launch of Office.

    Can you help me solve this problem?

    Thanks in advance

    I use Smart View 11.1.2.5.000

    and office 2013

    Have you read and tried the following Oracle support doc - Smartview tab disappears from Excel (Doc ID 1991963.1)

    See you soon

    John

Maybe you are looking for