Error in DBMS_MVIEW.REFRESH

Hi All,
I am trying to refresh a materialized view 'APPS_TEST.LGC_SYSTEM_ITEM_MV'.
The command I gave is -
DMBS_MVIEW.REFRESH ('APPS_TEST.LGC_SYSTEM_ITEM_MV','f');
However I am getting following error -
ORA-00900:invalid SQL statement
Can anyone please let me know what is incorrect with this?
I am using SQL developer for this.
Regards,
Yash

Yash wrote:
Following code worked for me - begin
DBMS_MVIEW.REFRESH('APPS_TEST.LGC_SYSTEM_ITEM_MV','F');
end;
I do not know why.Because that is valid syntax for invoking a PL/SQL procedure.
You can do either
begin
  proc;
end;or
exec proc;This will give you an invalid sql statement error.
proc;Edited by: Jim Smith on Nov 20, 2012 10:34 PM

Similar Messages

  • ORA-06502 error during dbms_mview.refresh

    I created a Materialized view MV1 and refreshed using dbms_mview.refresh option and it worked.
    dbms_mview.refresh (list => 'MV1', method => 'F');
    My requirement is to refresh MV1 daily at 10.00 P.M. I created a procedure ( code attached below) to execute the dbms_mview.refresh and scheduled the procedure to run at 10.00 P.M.
    I am getting the following error in a regular basis not always.
    ORA-06502: PL/SQL: numeric or value error: raw variable length too long
    Kindly do the needfull.
    PACKAGE:
    CREATE OR REPLACE PACKAGE BODY PKG_COMMON
    AS
    LOG EXCEPTIONS
    PROCEDURE log (
    p_package IN ttfa_log.package_name%TYPE DEFAULT NULL,
    p_procedure IN ttfa_log.procedure_name%TYPE DEFAULT NULL,
    p_log_priority IN ttfa_log.log_priority%TYPE DEFAULT 'INFO',
    p_params IN ttfa_log.parameters%TYPE DEFAULT NULL,
    p_line_number IN ttfa_log.line_number%TYPE DEFAULT NULL,
    p_error_stack IN VARCHAR2 DEFAULT NULL,
    p_error_backtrace IN VARCHAR2 DEFAULT NULL
    IS
    l_step PLS_INTEGER := 0;
    l_log_date DATE;
    PRAGMA AUTONOMOUS_TRANSACTION;
    BEGIN
    l_step := 20;
    l_log_date := sysdate;
    l_step := 40;
    INSERT INTO ttfa_log
    ( log_id
    ,log_date
    ,log_priority
    ,username
    ,package_name
    ,procedure_name
    ,line_number
    ,error_code
    ,log_message
    ,backtrace_tmp
    ,parameters
    ,partition_key
    VALUES
    ( ttfa_log_id_seq.NEXTVAL
    ,l_log_date
    ,p_log_priority
    ,LOWER(USER)
    ,p_package
    ,p_procedure
    ,p_line_number
    ,SUBSTR( p_error_stack, 1, INSTR(p_error_stack,':') - 1 )
    ,substr(p_error_stack,1,4000)
    ,substr(p_error_backtrace,1,4000)
    ,p_params
    ,EXTRACT(MONTH FROM l_log_date)
    COMMIT;
    EXCEPTION
    WHEN OTHERS
    THEN
    RAISE_APPLICATION_ERROR(-20001, 'Error in pkg_ttfa_log.log ' ||chr(13) || 'Actual Error=>' ||DBMS_UTILITY.FORMAT_ERROR_STACK);
    END log;
    REFRESH MATERIALIZED VIEW
    PROCEDURE refresh_mi_mvs
    IS
    BEGIN
    -- Refresh Materialized View
    BEGIN
    dbms_mview.refresh (list => 'MV1', method => 'F');
    EXCEPTION
    WHEN OTHERS THEN
    log (
    p_package => 'PKG_COMMON'
    ,p_procedure => 'refresh_mvs'
    ,p_log_priority => 'ERROR'
    ,p_params => 'MV1'
    ,p_line_number => 40
    ,p_error_stack => DBMS_UTILITY.FORMAT_ERROR_STACK
    ,p_error_backtrace => DBMS_UTILITY.FORMAT_ERROR_BACKTRACE
    ROLLBACK;
    END;
    EXCEPTION
    WHEN OTHERS THEN
    log (
    p_package => 'PKG_COMMON'
    ,p_procedure => 'refresh_mi_mvs'
    ,p_log_priority => 'ERROR'
    ,p_params => 'Package Exception'
    ,p_line_number => 90
    ,p_error_stack => DBMS_UTILITY.FORMAT_ERROR_STACK
    ,p_error_backtrace => DBMS_UTILITY.FORMAT_ERROR_BACKTRACE
    ROLLBACK;
    END;
    END PKG_TTFA_COMMON;

    It impossible from what you have posted to know whether the issue is what you are passing to Oracle or what you have written yourself. Have your run a trace? If not that is the first step.
    And when you post next ... a version number would be very helpful.

  • ORA-12008: error in snapshot refresh path

    I am getting this error even i am specifying to use other rollback segment
    ALTER ROLLBACK SEGMENT R02 SHRINK;
    SET TRANSACTION USE ROLLBACK SEGMENT R02;
    alter materialized view PAY_REV_BREAKUPWITHWOFF NOLOGGING;
    BEGIN dbms_mview.refresh('PAY_REV_BREAKUPWITHWOFF') ; END;
    ERROR at line 1:
    ORA-12008: error in snapshot refresh path
    ORA-01562: failed to extend rollback segment number 1
    ORA-01628: max # extents (505) reached for rollback segment SYS_RBS
    ORA-06512: at "SYS.DBMS_SNAPSHOT", line 617
    ORA-06512: at "SYS.DBMS_SNAPSHOT", line 674
    ORA-06512: at "SYS.DBMS_SNAPSHOT", line 654
    ORA-06512: at line 1

    The reason why it's still using SYS_RBS seems to be that since you are refreshing a materialized view, it might be doing parallel DMLs. In this case the clause of specifying a particular rollback segment is ignored.
    In addition to the above, try taking the rollback segment offline by executing
    alter rollback segment SYS_RBS offline;
    and then drop it by running
    drop rollback segment SYS_RBS;
    Then create new one and see if it works.
    if the above mentioned doesn't work somehow...
    try to change the extents storage parameter by running
    alter rollback segment sys_rbs storage (MAXEXTENTS 1000);
    Can't be sure as i currently don't have access to my system
    Hope this helps
    Message was edited by:
    thrilller

  • ORACLE ERROR ORA-32314: REFRESH FAST unsupported after deletes/updates

    hi,
    I have a materialized view created with fast refresh on demand option. Now when i try to refresh it manually the next day, it gives me an error . I have both count(*) and count(1) inside the materialized view. There is update and delete transactions done on most of the tables. The refresh is set to be at 4 am though a refresh group . But it fails with the error shown below . Please help. thanks
    here is the script from toad
    DROP MATERIALIZED VIEW MYPORTAL.ACCOUNT_COST_CATEGORY_MV;
    CREATE MATERIALIZED VIEW MYPORTAL.ACCOUNT_COST_CATEGORY_MV
    TABLESPACE USERS
    PCTUSED    0
    PCTFREE    10
    INITRANS   2
    MAXTRANS   255
    STORAGE    (
                INITIAL          64K
                MINEXTENTS       1
                MAXEXTENTS       UNLIMITED
                PCTINCREASE      0
                BUFFER_POOL      DEFAULT
    NOCACHE
    LOGGING
    NOCOMPRESS
    NOPARALLEL
    BUILD IMMEDIATE
    USING INDEX
                TABLESPACE USERS
                PCTFREE    10
                INITRANS   2
                MAXTRANS   255
                STORAGE    (
                            INITIAL          64K
                            MINEXTENTS       1
                            MAXEXTENTS       UNLIMITED
                            PCTINCREASE      0
                            BUFFER_POOL      DEFAULT
    REFRESH FAST ON DEMAND
    WITH PRIMARY KEY
    AS
    /* Formatted on 2011/01/07 10:04 (Formatter Plus v4.8.8) */
    SELECT   ac.account_id,
             ac.account_manager mgr_id,
             ac.account_number,
             ac.account_name,
             bc.burden_center_name burden_center,
             p.surname_isi || ', ' || p.first_name account_manager,
             p.division_id,
             item.code_id,
             item.code_name cost_category_item,
             TO_NUMBER (TO_CHAR (ap.first_day, 'YYYY')) period_year,
             ap.first_day period,
             ap.fiscal_system_period_cal_yr_eq || ', ' || ap.fiscal_year period_asr,
             COUNT (*) total_row_count,
             COUNT (1) total_one_count,
             SUM (NVL (ad.current_expense, 0)) expense,
             SUM (NVL (ad.total_budget, 0)) budget,
             SUM (NVL (ad.cumltv_expense, 0)) cumltv_expense,
             SUM (NVL (ad.commitments, 0)) commitments,
             SUM (NVL (ad.budget_balance, 0)) budget_balance
        FROM accounts ac,
             burden_centers bc,
             personnel p,
             asr_headers ah,
             asr_details ad,
             codes item,
             codes costcat,
             all_periods ap,
             codes cost_element,
             accounting_base_group abg
       WHERE ac.account_manager = p.personnel_id
         AND ac.burden_center_id = bc.burden_center_id
         AND ac.account_id = ah.account_id
         AND ah.asr_header_id = ad.asr_header_id
         AND ah.period_asr =
                       ap.fiscal_system_period_cal_yr_eq || ', ' || ap.fiscal_year
         AND abg.cost_element_cat_item_id = item.code_id
         AND cost_element.code_id = abg.cost_element_id
         AND ad.object_code = cost_element.code_value
         AND item.code_parent_id = costcat.code_id
         AND (   costcat.code_name = 'Report 1'
              OR (costcat.code_name = 'Base' AND item.code_name = 'MTDC')
    GROUP BY ac.account_id,
             ac.account_manager,
             ac.account_number,
             ac.account_name,
             bc.burden_center_name,
             p.surname_isi || ', ' || p.first_name,
             p.division_id,
             item.code_id,
             item.code_name,
             TO_NUMBER (TO_CHAR (ap.first_day, 'YYYY')),
             ap.first_day,
             ap.fiscal_system_period_cal_yr_eq || ', ' || ap.fiscal_year;
    COMMENT ON MATERIALIZED VIEW MYPORTAL.ACCOUNT_COST_CATEGORY_MV IS 'snapshot table for snapshot MYPORTAL.ACCOUNT_COST_CATEGORY_MV';
    CREATE INDEX MYPORTAL.ACCOUNT_COST_CAT_MV_IDX ON MYPORTAL.ACCOUNT_COST_CATEGORY_MV
    (ACCOUNT_ID, CODE_ID, PERIOD)
    LOGGING
    TABLESPACE USERS
    PCTFREE    10
    INITRANS   2
    MAXTRANS   255
    STORAGE    (
                INITIAL          64K
                MINEXTENTS       1
                MAXEXTENTS       UNLIMITED
                PCTINCREASE      0
                BUFFER_POOL      DEFAULT
    NOPARALLEL;
    -- Note: Index I_SNAP$_ACCOUNT_COST_CATEG will be created automatically
    --       by Oracle with the associated materialized view.
    here is the error :
    10:10:04 SQL>  exec dbms_mview.refresh('account_cost_category_mv');
    BEGIN dbms_mview.refresh('account_cost_category_mv'); END;
    ERROR at line 1:
    ORA-32314: REFRESH FAST of "MYPORTAL"."ACCOUNT_COST_CATEGORY_MV" unsupported after deletes/updates
    ORA-06512: at "SYS.DBMS_SNAPSHOT", line 2254
    ORA-06512: at "SYS.DBMS_SNAPSHOT", line 2460
    ORA-06512: at "SYS.DBMS_SNAPSHOT", line 2429
    ORA-06512: at line 1
    10:10:14 SQL>

    Check out the error cause and action:
    ORA-32314: REFRESH FAST of "string"."string" unsupported after deletes/updates
    Cause:      One or more deletes or updates has been performed on one or more of the detail tables referenced by the specified materialized view. This materialized view does not support fast refresh after deletes or updates.
    Action:      Use REFRESH COMPLETE. Note: you can determine why your materialized view does not support fast refresh after deletes or updates using the DBMS_MVIEW.EXPLAIN_MVIEW() API.

  • Error from EAS - "refreshing security from Shared Services failed"

    Hi,
    I was using Native only security in HSS for Essbase 11.1.1.3 and EAS allowed me to Refresh security from Shared Services. (Essbase security was already externalized to HSS.)
    However, after I added "MS Active Directory", and provisioned a MSAD user to a native Planning group, EAS errors out with "refreshing security from Shared Services failed" .
    I checked Essbase security and that MSAD user is not added to Essbase.
    From Essbase Log I see:
    Essbase failed to get roles list for [ESB:Analytic Servers:servername:1] from Shared Services Server with Error [32:1062:Failed to connect to the user directory [ HSS'sMSADname].
    I then tried to remove MSAD from our H Shared Services and see if this problem goes away. However, MSAD still shows on the left panel menu in H Shared Services. How can I get rid of MSAD?
    Any suggestions?
    Edited by: user643332 on May 12, 2010 12:05 AM

    Hi,
    Are you sure you have removed it from shared services, you may have just disabled it.
    You must restart the shared services application server to apply any changes made.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Error in Cache Refresh(Unable to refresh cache contents)

    Hi All,
    When i am refreshing Cache from the browser using link CPACache/refresh?mode=full it says success.
    When i do from SXI_CACHE it gives an error.
       Error during last attempt to refresh cache
       Unable to refresh cache contents
    So when i run any schenario in message monitoring i get the following error-
    <i>SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Category>XIServer</SAP:Category>
      <SAP:Code area="XICACHE">UPDATE</SAP:Code>
      <SAP:P1 />
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText>http response does not contain a valid XML root tag</SAP:AdditionalText>
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>An error occurred when refreshing the XI runtime cache</SAP:Stack>
      <SAP:Retry>N</SAP:Retry>
      </SAP:Error></i>
    I checked the INTEGRATION_DIRECTORY_HMI connection...
    here the response which im getting is..
    <i> HEADER NAME                HEADER VALUE
    response_line               HTTP/1.0 200
    server_protocol             HTTP/1.0
    status_code                 200
    status_reason
    ragma                       no-cache
    ache-control                no-cache
    ontent-type                 text/html
    ontent-length               87
    HTTP BODY
    TITLE>Error</TITLE>#<BODY>#<H1>Error</H1>#FW-1 at nebula: Unknown WWW s
    rver.</BODY>##
    Time (ms)                                 17</i>
    I believe that is not the right response.
    Everything was working fine yesterday when all of a sudden this error cropped up from no where.
    Regards,
    Rahul

    Hi,
    This is the error it shows there..
    <b>ERROR ID</b>      <i>UPDATE</i>
    <i>http response does not contain a valid XML root tag</i>
    Regards,
    Rahul

  • IDOC Tables with Errors Post System Refresh

    Hi Everyone,
    Is there any Report  or other way through which one can get List of  IDOC Tables with Errors Post System Refresh.
    Thanks,
    Regards,
    - Ishan

    Hi,
    While selecting the Infopackage to run the INIT load, it is taking me to the ECC login screen. Once i enter my credentials, its showing a dump with the message:
    Short text of error message:
    No RFC authorization for user XXXXX ( RSA8 ).
    Long text of error message:
    Technical information about the message:
    Message class....... "RSAR"
    Number.............. 051
    Variable 1.......... "No RFC authorization for user XXXXX ( RSA8 )."
    Variable 2.......... " "
    Variable 3.......... " "
    Variable 4.......... " "
    Please advice.
    Regards
    sneha

  • Error in cache refresh

    Error in cache refresh
    Dear all expert
    I have created one BPM scenario after when execute that scenario then problem come in cache
    Before that scenario my Pi working fine now.
    I have delete communication channel of BPM scenario but still facing problem in cache .
    I have done following step for solving problem  
    I have delete HMI rfc and recreate it when I test that RFC connection every time it will ask password I have already set login name (PIISUSER) and password in login tab
    I have found some entry in queue I have delete it
    Please help me
    Thanks
    Amit Shivhare

    Thanks to All of you
    my problem solved
    Hare I have write down all step that I have done during solving problem
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/cs/junior/view/wlg/9857
    thanks
    Amit Shivhare

  • I am using apple configerator. I am unable to prepare or supervise 1 ipad. After preparing, I get an error that says "refresh completed but with an error, unable to verify supervision state" . I have erased all content and set up as a new ipad.

    I am using apple configerator. I am unable to prepare or supervise 1 ipad. After preparing, I get an error that says "refresh completed but with an error, unable to verify supervision state" . I have erased all content and set up as a new ipad and tried again with no success. Any help would be appreciated

    Hello jaybearden,
    Thanks for the question. After reviewing your post, it sounds like you are not able to restore the iOS device since you get an error 9. I would recommend that you read this article, it may be able to help the issue.
    Resolve iOS update and restore errors - Apple Support
    Check your security software
    Related errors: 2, 4, 6, 9, 1000, 1611, 9006. Sometimes security software can prevent your device from communicating with either the Apple update server or with your device.
    Check your security software and settings to make sure that they aren't preventing a connection to the Apple servers.
    Thanks for using Apple Support Communities.
    Have a nice day,
    Mario

  • SXI_CACHE Error:  Unable to refresh cache contents

    Hello everybody,
    in SXI_CACHE we get the error:
    "Unable to refresh cache contents"
    "Error during last attempt to refresh cache"
    and on double clicking we get the message:
    Error Id: Communication
    if_http_client receive http_communication_failure.
    Any suggestions.
    We can't afford to restart the machines every time.
    Regards Mario

    Mario,
    Please refer to the Trouble SHooting section of this guide,
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/1a69ea11-0d01-0010-fa80-b47a79301290
    Also, check the HTTP Connection INTEGRATION_DIRECTORY_HMI and try a test connection of this. It should return  HTTP Code : 500
    Regards
    Bhavesh

  • An error occurred when refreshing the XI runtime cache

    i did what is written in note 764176 but to no avail.
    t-code sxi_cache shows
    unable to refresh cache contents
    error during chache refresh.
    when double clicking this error
    error category is blank.
    error id is update.
    can anyone help me with this please.

    Hi Sas ya,
    you can check this link.
    problem with xi cache
    or try this
    Check the RFC Destination
    INTEGRATION_DIRECTORY_HMI
    After deleting this destination an create it again
    everything work fine. This step is very errornous. Take care not to hit the enter key when specifying the user
    and password.
    Do exactly the same step as describe in the Installation
    guide. The hint that it will not works is when you test
    the connection and the system prompt you for user and
    password again even if you have specified this data
    already. In this case you do it wrong. Delete the RFC-
    Destination an create it again and again until the test will not prompt you for user and password again!
    In the xi "installation guide" you can find section:
    "Creating RFC Destinations in the ABAP Environment"
    rfc:INTEGRATION_DIRECTORY_HMI
    take a look at tab:
    Tab: Security/Logon
    and text:
    Save your entry now, before you switch to next tab, otherwise your entries may be lost.
    if you're sure that is was done in a proper way (click by click) no need for change but only if you're sure:)
    Select Basic Authentication Confirm both the popup and the warning.
    • As logon data enter the client of your SAP XI system and the user XIISUSER with the valid password
    Save your entry now, before you switch to next tab, otherwise your entries may be lost. Press Enter to go to the next screen.
    Or You can follow the links to solve your problem.
    Re: SXI_CACHE fails to refresh
    Re: SXI_CACHE in ABAP with ERROR
    Hope this helps.
    Regards,
    Vijay

  • Error -2147218798 when refreshing Essbase

    Hi,I try to refresh a outline in a Planning application and I have this error message :"Cannot refresh cubes while other users are logged on" I then disconnected every user, stopped and started the application but i does not change anything...What do you think of this ?Thank youPierre

    It is probably a lock on the Planning Db rather than a user in Essbase still logged on. Run the unlockdb utility on your planning server under Planning\utils. It will unlock the planning relation database. You should be able to run the refresh then.Let me know how you get on.RegardsChris

  • Still Error 2927 when refreshing Windows 2012 R1 Host

     I have SCVMM R2 and the latest rollups.  This issue is only occureing on a Windows 2012 (R1) server.  I do not see these issues on Windows 2008 R2 or Windows 2012 R2.  
    I have looked at other forum posts with no luck such as:  https://social.technet.microsoft.com/Forums/systemcenter/en-US/ccff7b77-6fc5-4c4b-bf71-a08a5076a3fd/action?threadDisplayName=error-2927-when-refreshing-host-cluster
    I also have cranked up the MaxConcurrentOperationsPerUser to no avail.
    After I restart WinRM and SCVMM Agent, it is ok for a little while then the errors and "This service has exceeded its maximum of 100 concurrent operations per user allowed for plugin "WMI Provider" error begin again.
    Any other ideas?
    Thanks,
    Jason

    Hi Jason,
    According to the similar thread you have mentioned ,  and you have run the following command but still doesn't work ?
    winrm set winrm/config/Service @{MaxConcurrentOperationsPerUser="400"}
    Could you please run command below with administrator privilege to list the current settings of winrm :
    winrm get winrm/config 
    (By the way , did you restart the server recently ? )
    Best Regards,
    Elton Ji
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Error 12700 when refreshing a VM properties

    I'm in process of rebuilding our entire virtualization infrastructure and creation a new Hyper-V cluster. Currently our virtualization servers run Windows Server 2012 DC. The new OS should be Windows Server 2012 R2 DC. In addition, I'm trying to implement
    a full-fledged SC VMM 2012 R2 management solution. The physical servers in question are Cisco USC 200 M3 blades with network adapters supporting several interesting technologies like VM-FEX (a proprietary Cisco solution related to the SR-IOV technology).
    In particular, all the VMs on the existing hosts use VM-FEX virtual adapters to connect to the network. Unfortunately, this technology is not supported on Windows Server 2012 R2 (thanks to Cisco developers), so moving the VMs to updated hosts requires preliminary
    replacement of the old virtual NICs with new ones that don't use this technology.
    I've created a new Win2012R2/Hyper-V cluster (presently containing only one node) and connected it to my VMM server. I live-migrated several VMs from an old host to the new one using the Hyper-V Management Console (VMM refused to do it). I've discovered
    that after migration VMM doesn't show their NICs in the VM hardware list (this part of VM inventory is completely empty as if there is no NICs at all). Any attempt to refresh configuration of those migrated VMs fails with the following error message:
    Error (12700)
    VMM cannot complete the host operation on the XXX server because of the error: The operation failed.
    Unknown error (0x800b)
    Recommended Action
    Resolve the host issue and then try the operation again.
    In the same time an attempt to refresh another VM running on this host which was created using the Failover Cluster Management GUI is always successful. The host server and Hyper-V cluster are also refreshed with no errors. So this problem is related
    to the VMs, not to the host.
    VMs running on the old server are extremely important, so I can't risk them having any problems in the future. Any ideas how to resolve this problem?
    Evgeniy Lotosh
    MSCE: Server infractructire, MCSE: Messaging

    Well, I've discovered a way to solve this issue.
    The VMs in question were live-migrated to the new virtualization host and immediately after that made highly available by creating a corresponding cluster resource. Removing their cluster resources (but keeping the VM themselves running) got rid of the error
    during VM refresh. However, their NICs were still missing in the VMs properties in the VMM console. They appeared after I
    shut down those VMs and refreshed them again in the VMM console.
    Seems that it's somehow related to the live migration process. It might be, for example, a bug in Hyper-C tools which lose the old vNIC in the VM on the old host and can't switch to the new one (on the new host) on the run. Or it's just a bug in
    VMM. So the correct procedure for live-migrating VMs from between hosts
    must include a VM properties refresh immediately after it has been transferred to the new host and
    before it's made a cluster resource.
    Evgeniy Lotosh
    MSCE: Server infractructire, MCSE: Messaging

  • Error occured while refreshing webi report in bi system

    Dear Experts ,
    please look into my problem
    While refreshing WebI report in BIDEV system, we are getting the following error. The problem occurs only while refreshing the report.
    ERROR: a database error occured. the database error text is unable to connect to sap bw server incomplete logon data.. (wis10901)
    Regards

    HI ayur
    In the universe connection if the username and password is hardcoded then make sure those username and passwords are correct.
    else
    Make sure you are in the right BOX, for example if Universe is pointed to Prod, and you execute the report associated with that universe  in the Dev, then  that error will show up. So in universe connection find out to what BOX(dev, test, prod) it is pointed to and login to webI in the same BOX as universe pointed to and execute the report.
    It should work, if not please let us know.

Maybe you are looking for

  • #Error & #Syntax when we are using merged dimension in BO4.1 SP3

    Dear All, We are using BO4.1 SP3 and Bex query as datasource. When we are trying to take merged dimensions in Report block its giving #Syntax Error. When we are defining variable with merged dimension, its giving #Error message and the merged dimensi

  • IPhone Security: How secure is the iPhone?

    We just purchased iPhones for our family. However, I have a question regarding cyber security on these devices. Specifically, we have the phones set up to access our MobileMe accounts, and thus the MobileMe password is part of our iPhones. This leads

  • Hp assistant update

    HP Pavilion dv6-6020st my notebook hp assistant update to 7.0.39.15 version but i cant find cool sense i search in forum foun it cool sense 2.1 and then dont setup to the error    and this now my fan working very nois

  • Indirect role assignment- PO Release strategy  roles

    Hello,           I am in the midst of creating PO release strategy roles for implementation and trying to figure out if indirect role assignment / position based assignment would be a good idea for these roles. The reason- there are 35 release codes.

  • [UML] Reverse Engineer Package

    Hi, Is it possible to point JDeveloper at a Package, and request a UML diagram to be constructed from the Source Code contained within that package ? (i.e. Automatically add all Classes in the package to the Diagram and generate the linkages ? ) Than