Creating a service program in inventory results in 'no data found error'

Hi,
i tried creating a service program as was given in the sep 2001 issue of the crm newsletter. While saving the item it results in the following error:
FRM-40735 ON-INSERT trigger raised unhandled exception ORA-01653
ORA-01403 No data Found
What could be the possible cause for the occurrence of this error?
Thanks & Regards,
Nithya

You're doing a lot of unnecessary conversion of dates into character strings and back into dates again.
Keep it simple and just use dates as-is:
SQL> select * from T_REC_PER;
                 VAL START_PERIOD         END_PERIOD
                   5 15-OCT-2008 00:00:00 30-OCT-2008 00:00:00
                   6 31-OCT-2008 00:00:00 06-NOV-2008 00:00:00
                   8 07-NOV-2008 00:00:00 12-NOV-2008 00:00:00
SQL> declare
  2     ls_per   date := to_date('17-OCT-2008','DD-MON-YYYY');
  3     ln_val   number;
  4  begin
  5     select t.val
  6     into   ln_val
  7     from   T_REC_PER t
  8     where  ls_per between t.start_period and t.end_period;
  9     dbms_output.put_line(ln_val);
10  end;
11  /
5
PL/SQL procedure successfully completed.
SQL> declare
  2     ls_per   date := to_date('09-NOV-2008','DD-MON-YYYY');
  3     ln_val   number;
  4  begin
  5     select t.val
  6     into   ln_val
  7     from   T_REC_PER t
  8     where  ls_per between t.start_period and t.end_period;
  9     dbms_output.put_line(ln_val);
10  end;
11  /
8
PL/SQL procedure successfully completed.

Similar Messages

  • Creating Web service for PL/SQL Procedure with Complex Data Types

    I need to created web service for PL/SQL Procedure with Complex Data types like table of records as parameters, how do we map the pl/sql table type parameters with web service, how to go about these?

    Hello,
    When you are creating a service from a Stored Procedure, the OracleAS WS tools will create necessary Java and PL wrapper code to handle the complex types (table of record) properly and make them compatible with XML format for SOAP messages.
    So what you should do is to use JDeveloper or WSA command line, to create a service from your store procedure and you will see that most of the work will be done for you.
    You can find more information in the:
    - Developing Web Services that Expose Database Resources
    chapter of the Web Service Developer's guide.
    Regards
    Tugdual Grall

  • Apex_collection.update_member results in no data found found

    I'm trying to build a simple scheduling grid using a collection to show who is available on what day of the week. This is the table:
    CREATE TABLE WORK (
    USER_ID NUMBER(9) NOT NULL,
    MON VARCHAR2(1),
    TUE VARCHAR2(1),
    WED VARCHAR2(1),
    THU VARCHAR2(1),
    FRI VARCHAR2(1),
    CONSTRAINT WORK_FROM_HOME_PK PRIMARY KEY (USER_ID));
    My create collection script is:
    if apex_collection.collection_exists(p_collection_name=>'WFH') = TRUE then
    apex_collection.delete_collection(p_collection_name=>'WFH');
    end if;
    apex_collection.create_collection_from_query(
    p_collection_name=>'WFH',
    p_query=>'SELECT user_id,
    mon,
    tue,
    wed,
    thu,
    fri
    FROM work');
    As I try to sort this out, I have two reports on the page. One is for the schedule/collection processing, & the other simply shows the collection so I can verify changes:
    SELECT seq_id, c001 emp_id, c002 mon, c003 tue, c004 wed, c005 thu, c006 fri -- my working query
    FROM apex_collections
    WHERE collection_name = 'WFH'
    select * from apex_collections -- this shows the entire collection
    where collection_name = 'WFH'
    I have 2 buttons & processes to add new rows & undo changes, & a button for updates. (I'm not trying to update the underlying table yet, just update the collection.) The add & undo seem to work fine. When I try to update the collection, I get a "no data found" error. The update collection process is:
    BEGIN
    FOR i IN 1..apex_application.g_f01.count LOOP
    apex_collection.update_member(
    p_collection_name => 'WFH',
    p_seq => apex_application.g_f01(i),
    p_c001 => apex_application.g_f02(i),
    p_c002 => apex_application.g_f03(i),
    p_c003 => apex_application.g_f04(i),
    p_c004 => apex_application.g_f05(i),
    p_c005 => apex_application.g_f06(i),
    p_c006 => apex_application.g_f07(i));
    END LOOP;
    END;
    I suspect there is a problem with the way I'm trying to reference the sequence, but have yet to figure it out.
    Suggestions?

    As you can see below, the sequence & emp_id are not getting assigned the f01 or f02. That starts with the updatabl fileds on the report.
    <td class="t1Body" colspan="2"><div id="report_3645482605396131456_catch"><table cellpadding="0" border="0" cellspacing="0" summary="" id="report_R3645482605396131456"><tr><td></td></tr>
    <tr>
    <td><table cellpadding="0" border="0" cellspacing="0" summary="" class="t1standard">
    <tr ><th id="SEQ_ID" class="t1header">Seq Id</th><th id="EMP_ID" class="t1header">Emp Id</th><th id="MON" class="t1header">Mon</th><th id="TUE" class="t1header">Tue</th><th id="WED" class="t1header">Wed</th><th id="THU" class="t1header">Thu</th><th id="FRI" class="t1header">Fri</th></tr>
    <tr onmouseover="row_mouse_over3645482605396131456(this, 1)" onmouseout="row_mouse_out3645482605396131456(this, 1)">
    <td headers="SEQ_ID" class="t1data">1</td>
    <td headers="EMP_ID" class="t1data">157</td>
    <td headers="MON" class="t1data"><label for="f01_0001" class="hideMe508">MON</label><input type="text" name="f01" size="3" maxlength="2000" value="" id="f01_0001" /></td>
    <td headers="TUE" class="t1data"><label for="f02_0001" class="hideMe508">TUE</label><input type="text" name="f02" size="3" maxlength="2000" value="Y" id="f02_0001" /></td>
    <td headers="WED" class="t1data"><label for="f03_0001" class="hideMe508">WED</label><input type="text" name="f03" size="3" maxlength="2000" value="" id="f03_0001" /></td>
    <td headers="THU" class="t1data"><label for="f04_0001" class="hideMe508">THU</label><input type="text" name="f04" size="3" maxlength="2000" value="" id="f04_0001" /></td>
    <td headers="FRI" class="t1data"><label for="f05_0001" class="hideMe508">FRI</label><input type="text" name="f05" size="3" maxlength="2000" value="Y" id="f05_0001" /><input type="hidden" name="fcs" value="58AA1A6F02752BF76429EF06E2F1934D" /></td>
    </tr><tr onmouseover="row_mouse_over3645482605396131456(this, 2)" onmouseout="row_mouse_out3645482605396131456(this, 2)">
    <td headers="SEQ_ID" class="t1data">2</td>
    <td headers="EMP_ID" class="t1data">152</td>
    <td headers="MON" class="t1data"><label for="f01_0002" class="hideMe508">MON</label><input type="text" name="f01" size="3" maxlength="2000" value="Y" id="f01_0002" /></td>
    <td headers="TUE" class="t1data"><label for="f02_0002" class="hideMe508">TUE</label><input type="text" name="f02" size="3" maxlength="2000" value="" id="f02_0002" /></td>
    <td headers="WED" class="t1data"><label for="f03_0002" class="hideMe508">WED</label><input type="text" name="f03" size="3" maxlength="2000" value="" id="f03_0002" /></td>
    <td headers="THU" class="t1data"><label for="f04_0002" class="hideMe508">THU</label><input type="text" name="f04" size="3" maxlength="2000" value="Y" id="f04_0002" /></td>
    <td headers="FRI" class="t1data"><label for="f05_0002" class="hideMe508">FRI</label><input type="text" name="f05" size="3" maxlength="2000" value="" id="f05_0002" /><input type="hidden" name="fcs" value="E267918580DC33BACF54431F3E928ED6" /></td>
    </tr><tr onmouseover="row_mouse_over3645482605396131456(this, 3)" onmouseout="row_mouse_out3645482605396131456(this, 3)">
    <td headers="SEQ_ID" class="t1data">3</td>
    <td headers="EMP_ID" class="t1data">153</td>
    <td headers="MON" class="t1data"><label for="f01_0003" class="hideMe508">MON</label><input type="text" name="f01" size="3" maxlength="2000" value="" id="f01_0003" /></td>
    <td headers="TUE" class="t1data"><label for="f02_0003" class="hideMe508">TUE</label><input type="text" name="f02" size="3" maxlength="2000" value="" id="f02_0003" /></td>
    <td headers="WED" class="t1data"><label for="f03_0003" class="hideMe508">WED</label><input type="text" name="f03" size="3" maxlength="2000" value="Y" id="f03_0003" /></td>
    <td headers="THU" class="t1data"><label for="f04_0003" class="hideMe508">THU</label><input type="text" name="f04" size="3" maxlength="2000" value="" id="f04_0003" /></td>
    <td headers="FRI" class="t1data"><label for="f05_0003" class="hideMe508">FRI</label><input type="text" name="f05" size="3" maxlength="2000" value="" id="f05_0003" /><input type="hidden" name="fcs" value="F3012D3BBA78B492A5FC7D47D4D88395" /></td>
    </tr><tr onmouseover="row_mouse_over3645482605396131456(this, 4)" onmouseout="row_mouse_out3645482605396131456(this, 4)">
    <td headers="SEQ_ID" class="t1data">4</td>
    <td headers="EMP_ID" class="t1data"> - </td>
    <td headers="MON" class="t1data"><label for="f01_0004" class="hideMe508">MON</label><input type="text" name="f01" size="3" maxlength="2000" value="" id="f01_0004" /></td>
    <td headers="TUE" class="t1data"><label for="f02_0004" class="hideMe508">TUE</label><input type="text" name="f02" size="3" maxlength="2000" value="" id="f02_0004" /></td>
    <td headers="WED" class="t1data"><label for="f03_0004" class="hideMe508">WED</label><input type="text" name="f03" size="3" maxlength="2000" value="" id="f03_0004" /></td>
    <td headers="THU" class="t1data"><label for="f04_0004" class="hideMe508">THU</label><input type="text" name="f04" size="3" maxlength="2000" value="" id="f04_0004" /></td>
    <td headers="FRI" class="t1data"><label for="f05_0004" class="hideMe508">FRI</label><input type="text" name="f05" size="3" maxlength="2000" value="" id="f05_0004" /><input type="hidden" name="fcs" value="A884FA378C851786DDFE3A33709CB23C" /></td>
    </tr></table><div class="t1CVS"></div></td>
    </tr>

  • [svn:osmf:] 14601: Fix bug where parsing of stream that gets passed to NetStream.play doesn' t take urlIncludesFMSApplicationInstance into account, resulting in stream not found error.

    Revision: 14601
    Revision: 14601
    Author:   [email protected]
    Date:     2010-03-05 09:47:28 -0800 (Fri, 05 Mar 2010)
    Log Message:
    Fix bug where parsing of stream that gets passed to NetStream.play doesn't take urlIncludesFMSApplicationInstance into account, resulting in stream not found error.
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/net/NetStreamPlayTrait.as
        osmf/trunk/framework/OSMF/org/osmf/net/NetStreamUtils.as
        osmf/trunk/framework/OSMF/org/osmf/net/dvr/DVRCastNetConnectionFactory.as
        osmf/trunk/framework/OSMFTest/org/osmf/net/TestNetStreamUtils.as

    I had a while ago similar problem with USB memory stick. At the end, I don't know why, just formatting it using WinXP helped me.
    S-
    Last edited by StenM (2011-07-22 17:56:32)

  • Create a DAQ program and display results on with waveform and spreadsheet

    I need help creating a DAQ program that will read digital and analog channels and display on a continuous waveform, and then display readings on a spreadsheet

    You definitely want to start with the example programs. There are many of them which ship with LabVIEW and even more on NI's Example Programs Library (http://www.ni.com/devzone/libraries/default.htm). Also, if you are wanting to use an Excel spreadsheet, I would suggest getting the Report Generation Toolkit for Microsoft Office. It simplifies your coding immensely and will save you a lot of time.
    J.R. Allen

  • Sbdadm create-lu results in sbdadm: data file error

    Hello,
    I am trying to create a new thin-provisioning LUN by issueing the following:
    sbdadm --disk-size 100M /export/data.lun
    This yields this error message: sbdadm: data file error
    I have tried that on two other Solaris Express 11 installations and I seem to cannot get it to work. I have been able to import my previous COMSTAR config and I am able to access my existing iSCSI targets just fine, but I cannot create a new one.
    I actually haven't tried to run sbdadm against a real device or a zvol though.
    Anybody has experienced this?
    Thanks,
    Stephan

    I've never really used the sbdadm command, but your example seems to be missing a command keyword, such as 'create-lu', or similiar.
    sbdadm create-lu --disk-size 100M /export/data.lun
    .. or did you just forgot 'create-lu' in your post?
    .7/M.

  • Sorting Interactive Report results in no data found message

    Hi,
    I've got an interactive report which returns results based on the :REQUEST bind variable - I've got a navigation list at the side where all the items link to the current page with different Request values. The IR works fine until I try to sort any of the columns by clicking the header and choosing ascending / descending, at which point it returns no data found.
    It starts working again if I change the last line to OR :REQUEST IS NOT NULL but this breaks the functionality of the report, I want to return only the selected statuses, or all if no request variable is present. I'm guessing that sorting sets :REQUEST to something temporarily and breaks it. My query is below, any ideas?
    SELECT   id,
             job_number,
             appt_start,
             domain,
             pwa,
             status,
             tstamp_created
      FROM   fail_jobs
      WHERE  (status = 'NEW' AND userid_created != 'SYSTEM' AND :REQUEST = 'ARD')
         OR  (status = 'ATR' AND :REQUEST = 'ATR')
         OR  (status IN ('ERR','REV') AND :REQUEST = 'REV')
         OR  (status = 'COM' AND :REQUEST = 'COM')
         OR  (status IN ('PCD','PCA') AND :REQUEST = 'PCD')
         OR  :REQUEST IS NULLThanks

    There are known issues with Interactive Reports referencing :REQUEST value, probably due to some inner logic that also handles it simultaneously - potentially causing malfunction or deadlocks.
    One workaround I've learned is to create a computation to assign :REQUEST to a temporary item (a PXX_REQUEST, for instance) and reference it in the query, instead of :REQUEST. This has worked fine for me in my experience.
    Let me know if that helps - pls sign the thread as 'Useful' or 'Correct' if so, hence more people can benefit.
    tks,
    Kleber

  • HELP!! Create source system failed in BW ( ORA-01403: no data found)

    Hi,
    I cannot create Oracle DB as a source system in my BW (7.01).
    In system log, I got the following information.
    ============================
    Database error 1403 at CON
    > ORA-01403: no data found
    ============================
    How can I fix this issue?
    It's kind of urgent.
    Thanks!
    Regards,
    Steven
    Edited by: Wen Steven on Sep 30, 2011 6:09 PM

    Hi Steven,
    Please check the below thread
    SQL/Buffer trace RC=1403
    Regards,
    Venkatesh

  • 4.5.1 Service Pack 13 install results in getBuildTime() not found

    Problem during start-up:
    java.lang.UnsatisfiedLinkError: getBuildTime
    I've installed WLS 4.5.1 with service pack 13 running JDK
    1.1.8.05. I now have the following problem when I try run startWebLogic:
    [Loaded java/awt/FlowLayout.class 
         from /opt/java/lib/classes.zip]
    [Loaded java/awt/LayoutManager.class
         from /opt/java/lib/classes.zip]
    [Loaded java/lang/reflect/Field.class
         from /opt/java/lib/classes.zip]
    [Loaded java/util/EmptyStackException.class
         from /opt/java/lib/classes.zip]
    [Loaded java/lang/VerifyError.class 
         from /opt/java/lib/classes.zip]
    java.lang.UnsatisfiedLinkError: getBuildTime
    at weblogic.socket.PosixSocketMuxer.<init>(Compiled Code)
    at weblogic.socket.SocketMuxer.makeTheMuxer
    (SocketMuxer.java:178)
    at weblogic.socket.SocketMuxer.getMuxer(SocketMuxer.java:140)
    at weblogic.t3.srvr.ListenThread
    I've looked around, but have not been able to find this anywhere
    in the installation directories of WLS.
    Has anyone else had this problem? Can you please help me?
    Where is the symbol supposed to be?
    I'm running on HP-UX 11.0 with nativeIO.enabled=true.
    Thank you!!

    Yep!!, seems like this is a regression in SP13
    Contact [email protected] if you want immediate attention.
    Kumar
    Pilar Aguilera wrote:
    Problem during start-up:
    java.lang.UnsatisfiedLinkError: getBuildTime
    I've installed WLS 4.5.1 with service pack 13 running JDK
    1.1.8.05. I now have the following problem when I try run startWebLogic:
    [Loaded java/awt/FlowLayout.class 
    from /opt/java/lib/classes.zip]
    [Loaded java/awt/LayoutManager.class
    from /opt/java/lib/classes.zip]
    [Loaded java/lang/reflect/Field.class
    from /opt/java/lib/classes.zip]
    [Loaded java/util/EmptyStackException.class
    from /opt/java/lib/classes.zip]
    [Loaded java/lang/VerifyError.class 
    from /opt/java/lib/classes.zip]
    java.lang.UnsatisfiedLinkError: getBuildTime
    at weblogic.socket.PosixSocketMuxer.<init>(Compiled Code)
    at weblogic.socket.SocketMuxer.makeTheMuxer
    (SocketMuxer.java:178)
    at weblogic.socket.SocketMuxer.getMuxer(SocketMuxer.java:140)
    at weblogic.t3.srvr.ListenThread
    I've looked around, but have not been able to find this anywhere
    in the installation directories of WLS.
    Has anyone else had this problem? Can you please help me?
    Where is the symbol supposed to be?
    I'm running on HP-UX 11.0 with nativeIO.enabled=true.
    Thank you!!

  • No data found error while creating po using interface

    Hi all,
    I am a beginner in Oracle applications. I am trying to create a PO and line using interface tables.
    I am getting the below error when I run my concurrent program:
    I do see my records in my staging tables and in PO HEADERS INTERFACE and
    PO LINES INTERFACE table and there are no errors in the my sql loader programs.
    However there is an error in Import Standard Purchase Orders program:
    The below is the error from log:
    ora nodata found in package PO.PLSQL.PO_PDOI_PVT
    user defined exception in package PO.PLSQL.PO_PDOI_CONCURRENT
    There is no record in fng log messages table with the AUDSID provided in the log file!
    I am not sure what to do.
    Any suggestions?
    Thanks.

    Hi.
    Can you please advise the value for column "PROCESS_CODE" in the PO_HEADERS_INTERFACE table? Did you check the Purchasing Interface Errors report also for any errors?
    Additionally, it will help if you can copy/paste the insert code for the interface tables ....
    A good detailed explanation of the Purchase Order interface is in the following document:
    http://docs.oracle.com/cd/A85683_01/acrobat/115mfgoim.pdf
    See if that helps.
    Cheers
    JD

  • [wrt350n v2] FTP storage filename problems (results in file not found error)

    When a file is copied to the USB storage drive which contains high range Latin1 characters (e.g. ë or ü) that file is correctly listed but it can not be downloaded, renamed or deleted.
    The client receives a 451 error: File does not exist.
    I was hoping anyone had a solution for this, other than connecting the drive to my PC.
    Many thanks!
    Router: WRT350N
    Firmware Version: V2.00.17(03)
    Drive filesystem: FAT (formatted by router)
    Message Edited by lmolenaar on 03-18-2008 07:22 AM

    I know that is where my error is, but why and where is
    the script calling it up way?You wrote it right? check out the sendAU() method, there is line
    String newFileName = file.getParent() + "\\" + au.getLaunchParams();

  • Report export (CSV) results in page not found error

    Hello,
    I'm having this strange error which i cannot seem to figure out. I have enabled report export through CSV in a report (report attributes). When i click the link in the report i get a page not found error (http 404). At first i thought it was a problem with the http-server. But as other applications (on different databases) don't have this problem i'm thinking it has to do with this apex-instance. Till 2 days ago it did work on this instance too.
    I'm really out of ideas, so if anyone can push me in the right direction i would really appreciate!
    Apex 3.2
    DB 10.2.0.4
    Thanks,
    Patrick

    Does this compare to the same as the url for your page?
    Has your server changed?
    Have you changed the dad file recently?
    have you checked the Apache access/error logs right after the 404 error is encountered ?
    Gus..

  • Error while creating Repository Service in informatica

    Hi Guys,
    When i try to create repository service informatica8.1.1.I'm getting the below error
    driverconnect.exe has encountered a problem and needs to close.We are sorry for the inconvenience.

    since your error message is not completely represented over here,my guess is you are not providing the exact repository name as what you mentioned during the installation.please chek the repository name that you provided
    for example : during installation the defualt repository name might been 'PowerCenter' and you might be entering some other repository name while connecting i.e 'Oracle_BI_DW_Base' .
    check this and let me known.

  • Unable to create a Service Connection Point

    Hi -
    I set up a new SharePoint 2013 environment.  Everything installed successfully.  When I launch Central Admin, it doesn't accept my logon ID/password.  I found the following in the application event logs.    I assume our AD guys will
    need to set up a new SCP as pointed out here:   http://technet.microsoft.com/en-us/library/ff730261.aspx
    I just don't recall having to ever do this before in any of the dozen or environments that I had set up.   
    Unable to create a Service Connection Point in the current Active Directory domain. Verify that the SharePoint container exists in the current domain and that you have rights to write to it.
     Microsoft.SharePoint.SPException: The object LDAP://CN=Microsoft SharePoint Products,CN=System,DC=cprt,DC=adt,DC=net doesn't exist in the directory.
       at Microsoft.SharePoint.Administration.SPServiceConnectionPoint.Ensure(String serviceBindingInformation)
       at Microsoft.SharePoint.PostSetupConfiguration.CentralAdministrationSiteTask.ProvisionAdminVs()
    By the way, when I tried to run PowerShell to create the Admin Content DB, I got this error, even though the install account has sysadmin privileges on all databases: 
    New-SPConfigurationDatabase : Cannot connect to database master at SQL server
    at SP2013Server -AdministrationContentDatabaseName. The database might not
    exist, or the current user does not have permission to connect to it.
    At line:1 char:1
    + New-SPConfigurationDatabase -DatabaseName SharePoint_Config -DatabaseServer
    VMRS ...
    I just went ahead and then ran the Product Config Wizard and it set up everything fine.  Some folks were able to resolve by running config wizard twice? 
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/6ae61eb1-9405-4421-9bc7-a0037f4ec29b/sp1-upgrade-failure-service-connection-point?forum=sharepointadminprevious

    Hi,
    According to your post, my understanding is that you were unable to create a Service Connection Point.
    To resolve the “Unable to create a Service Connection Point in the current Active Directory domain”
    error, you need to make sure you have permission to write to this container.
    “You have to grant permission to write to this container to any user accounts or domain accounts that could run the SharePoint Products
    Configuration Wizard. If the account does not have permission to write to this container, the following warning will appear in the log file for the SharePoint Products Configuration Wizard:  Unable to create a Service Connection Point in the current Active
    Directory domain. Verify that the SharePoint container exists in the current domain and that you have rights to write to it.”
    http://technet.microsoft.com/en-us/library/ff730261.aspx
    The “New-SPConfigurationDatabase : Cannot connect to database master at SQL server”
    error is a common issue and has various resolutions.
    More often than not it is a firewall issue on the SQL server so check that OR it's that SQL server has not been enabled for remote connections.
    I would recommend you follow all the steps and options in
    Cannot connect to database master at SQL server
     and
    SharePoint Install – Cannot connect to database master.
    More information:
    Configuring Service Connection Points for SharePoint 2013:
    http://onpointwithsharepoint.blogspot.in/2013/06/configuring-service-connection-points.html
    Thanks,
    Linda Li
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • Error "Unable to Load URL" in Dashboard Design 4.1 SP2 while create web service connection

    Hello Experts,
    I am using SAP BO Dashboard Design 4.1 SP2.
    I have create one web Intelligence report and from it i create web services url using of publish data feature.
    when I use this url to create Web service(Qaaws) connection in dashboard It is showing me error " Unable to Load URL "
    URL is working fine in browser in server system where i install SAP BO 4.2 but it is not working in my system where i installed dashboard design.
    Please suggest how do i make connection using of this URL in dashboard.
    Do i miss something or doing wrong ? then guide me.
    Thanks and Regards,
    Dhaval Dave

    Hi Dave,
    Please check the below link,
    How to create Xcelsius Dashboard based of BI Web Service ( BIWS )
    Using Webservice in Dashboard
    Webservices in Dashboard - Issue
    Also change your original link here and try to load
    (sample link)
    From:
    http://BOE:8080/dswsbobje/qaawsservice/bisw?def=1&cuid=xxxxxxxxxx
    To:
    http://BOE:8080/dswsbobje/qaawsservice/bisw?wsdl=1&cuid=xxxxxxxxxx
    or else can you post your url here.
    Hope this helps.
    --SumanT

Maybe you are looking for