Error generating/activating WebService BW DataSource

Hello,
I created a BW DataSource using WebService in BI7 and I got the following errors when trying to activate it.
Error generating Web service /BIC/CQZBRSDAT00001000
Message no. RSDS301
Error when activating DataSource ZBRSDATA                      WEBSERVICE
Message no. RSO404
Could anyone please advise for any inputs/tips for the issue? I found below two threads but the OSS Note 913944 appreantly does not exist anymore (not sure if it is being removed, updated, etc).
Web service data source - error RSDS301
Problems with DataSource Web Service BI 7.0
Thanks & Regards,
Andy

Hello
We will move this thread to the [SAP NetWeaver BW|SAP Business Warehouse; forum as this is not a PI specific issue. You will have a better chance of getting a quality answer to your query on this forum.
Regards
XI/PI Moderator

Similar Messages

  • Error while activating webservice-consumer-proxy

    Hi,
    I'm trying to generate a webservice-consumer-proxy from a Salesforce.com-WSDL-File. When trying to activate the proxy I receive an error-message from class CX_ESD_EXCEPTION stating "Beim Aktivieren des Proxys ist ein Fehler aufgetreten." (in english: "Error occured when activating the proxy"). The WSDL-File is SOAP-Version 1.1, Document/Literal.
    Thank you very much in advance,
    Olli
    [SAP Consulting by mindsquare|http://mindsquare.de]

    I have a similar issue and it says that the reason is one of the exception classes in XML  in not derived from either cx_static_check or cx_dynamic_check.  
    Please let me know if anyone have ideas how to resolve this

  • Error while transporting webservice datasources

    Hi all,
    I have created webservice datasources to fetch EP data to BW. and now i am transporting that Datasources from DEV to QA. I have colllected datasources alone in one req. (source system i have created in QA manually and i mapped that with DEV)
    But while transporting i am getting the folllowing error,
    3S3T   Start of the after-import method RS_RSDS_AFTER_IMPORT for object type(s) RSDS (Activation Mode)  
    Error  Screen output without connection to user .                                                                               
    Error when activating DataSource ZANS_MASTER BI7001                                                                               
    Please through some light is there any predefined settings i need to do in QA system?.
    Thanks in advance,
    V.Sen

    Dear All,
    Thanks for your kind reply.
    There are no R/3 Datasources involved. Our BI Cockpit landscape is based upon only BI system. No data transfer to take place between R/3 and BI.
    Secondly, you mean to say that I need to replicate my Source system in Production and then proceed with the transporting of the requests from Dev to Prod.
    But I never did the same in Quality while transporting from Dev. Is it that it might have been done in Quality beforehand by someone ?
    Also, when the Datasources have not been transported to Production (resulting in error) then how can i replicate these datasources in Production ???
    Let me know if I have not understood correctly.
    Many thanks again for your efforts.
    /Shalabh

  • Error while activating the datasource [UD Connect]. getting error as '&'

    Hi Friends,
    I am trying to get the data from a SQL source through UD connect.
    I do the proposal and map all the info objects to the respective columns.
    When i acticate the data source i am getting the error as
    '&' and Error while Error when activating DataSource 'ZEFF_ENTRY                     UD_ECUBE'
    Please do tell why such errors occur and also the solution to handle such errors.
    Thanks in advance.
    Veena

    Hi,
    where you are getting error in ECC?. or in BW?. If it is already in use, then you need to clear all Queues and then try to activate it.
    Thanks
    Reddy

  • Error while activating the datasource during migration

    Hi Guys,
    When we were trying to migrate the datasources from 3.x to BI 7.0, we are encountering an error with the activation of the datasource. The datasource itself has been migrated but the ativation log gives and error
    Error in activating the datasourc----RSO404
    Has anyone encountered this issue? Your input is highly appreciated.
    Regards,
    Doniv

    Voodi,
    Thanks for the response but the note talks about deletion of the DTP causing the errors. Moreover we are already on SP 13. Any other ideas?
    Doniv

  • ERROR WHILE ACTIVATING THE DATASOURCE

    Hi Experts,
    I'M WORKING ON BW3.0B.I'M GETTING  ERROR WHILE ACTIVATING THE DATASOURCE
    1. EVENT WITH ERRORS EXTRACT IN DATA SOURC 2LIS_11_VAHDR

    Hi,
    where you are getting error in ECC?. or in BW?. If it is already in use, then you need to clear all Queues and then try to activate it.
    Thanks
    Reddy

  • Error while activating BC datasources

    Hi guys,
    I am getting this error while activating BC datasources...it is only with my login, rest of the users can work well.
    Error:
    DataSource 0BP_ACTITLE_TEXT; switch to package BUPA_CENTRAL_DATA_BW is off
    this happened with all DS in the BC, the problem occured because while activating initially my connection got disconnected and then this problem started.....
    how do i rectify this? any help would be highly appreciated.....

    make sure that the server from which ur data source gets the values are also logged on

  • Error while accessing webservice using generated stub

    I want to consume a webservice which supplies information about countries:
    http://www.oorsprong.org/websamples.countryinfo/CountryInfoService.wso?WSDL
    I have generated a Webservice stub using JDeveloper. It supplies me with the right interface, but when I use the stub to access the webservice, I encounter an error:
    java.lang.ClassCastException: oracle.xml.parser.v2.XMLText
         at oracle.jdeveloper.webservices.runtime.WrappedDocLiteralStub.fromElement(WrappedDocLiteralStub.java:614)
         at mypackage3.CountryInfoServiceStub2.CapitalCity(CountryInfoServiceStub2.java:72)
         at mypackage3.callWS.main(callWS.java:19)
    I have checked the response message, but it is all right. With "some" handcoding , I can extract the answer I want out of the response XML. It seems, that the stub fails to cast the response to the right result class.
    The method I use from the stub generated by JDeveloper. The error occurs at the last line, where the content of the message should be cast to String :
    =========================================================
    public String CapitalCity(String sCountryISOCode) throws Exception
    URL endpointURL = new URL(_endpoint);
    Envelope requestEnv = new Envelope();
    Body requestBody = new Body();
    Vector requestBodyEntries = new Vector();
    String wrappingName = "CapitalCity";
    String targetNamespace = "http://www.oorsprong.org/websamples.countryinfo";
    Vector requestData = new Vector();
    requestData.add(new Object[] {"sCountryISOCode", sCountryISOCode});
    requestBodyEntries.addElement(toElement(wrappingName, targetNamespace, requestData));
    requestBody.setBodyEntries(requestBodyEntries);
    requestEnv.setBody(requestBody);
    Message msg = new Message();
    msg.setSOAPTransport(m_httpConnection);
    msg.send(endpointURL, "", requestEnv);
    Envelope responseEnv = msg.receiveEnvelope();
    Body responseBody = responseEnv.getBody();
    Vector responseData = responseBody.getBodyEntries();
    return (String)fromElement((Element)responseData.elementAt(0), java.lang.String.class);
    =========================================================
    The class I use to call the webservice:
    =========================================================
    package mypackage3;
    public class callWS
    public callWS() {  }
    public static void main(String[] args)
    {  System.out.println("Calling CountryInfo Webservice");
    try
    CountryInfoServiceStub2 ws1 = new CountryInfoServiceStub2();
    String capitalCity = ws1.CapitalCity("IT");
    System.out.println("Capital City=" + capitalCity);
    } catch (Exception exception)
    {   System.out.println("An error occured while calling CountryInfoStub2:" );
    exception.printStackTrace(System.out);
    =========================================================

    Hi dickdral
    I', afraid I have not solution but the same problem. Today I try use VIES (http://ec.europa.eu/taxation_customs/vies/api/checkVatPort)
    and the same exception occurs. Stub was generated by JDev 10.1.2.
    Do you resolve this problem?
    Thanks
    Jara

  • Error when activating an R/3 generic datasource in BW

    Hi
    I've created a generic datasource in R/3 4.6C system using a table view over R/3 standard Project System tables with joins.  This datasource has been activated. I then replicated this generic datasource in BI7 datawarehousing environment.  The replication went ok and I could see the R/3 generic datasource in RSA1.  When I tried to activate this datasource I received this error message:
    Error when activating DataSource ZPROJECT_ATTR Message no. RSO404
    I didnt have similar problem with the other generic datasources.
    I'm currently working on Netweaver 2004s BI support pack 10 environment.
    Please let me know how to fix this problem.
    Many thanks,
    Anthony

    Hi Anthony,
    Do go through the note's detailed text and do listen to this advice from an old man.  Do read the section below in the note and do assign some points to this geezer "lying" on his deathbed.
    Quote from the note (this one rhymes..yaa):
    Source system = R/3 Release 4.0B ff (all subsequent releases including 4.7 and so on)
                = BW Datamart 2.0B, 2.1C, 3.0B, 3.10, 3.50, 7.00 ff
                = CRM release 2.0, 3.0, 4.0 ff
    unquote...
    Cheers
    Neeraj

  • Error when activating Datasource in Source System

    Dear All,
    I am gettting this error when activating data source in source system(RSA5).
    1)DataSource 0NETWORK_CUST_ATTR; switch to package PS_IS_EHP3_SFWS_SC is off.
    2) The extract structure DTTV_REC_53 of the DataSource 0TV_REC_531 is invalid
    Message no. R8444
    Diagnosis
    An invalid extract structure has been assigned to the DataSource. An extract structure has to be active in the DDIC. It cannot be a view, since the customer is not able to add append fields for filling in the customer exits to a view.

    Hi
    To use this datasource, you need to install EHP3 package.
    http://help.sap.com/saphelp_nw70/helpdata/EN/b0/7b6c759c494ffcbf821d2442687888/frameset.htm
    Chandu.

  • Error when activating datasource

    Hello,
    I am trying to create a new transaction data datasource assigned to a flat file source system.  When i hit the check i get no errors but when i try to activate the activation fails with errors.  The error Message No. RSO404 says "Error when activating Datasource".  We are on BW 7.0 stack 12.
    Has anyone seen this?  It is hard to troubleshoot it when i get no real errors to go on.  It is a very simple three field datasource with one characteristic, one key fig, and an additional currency characteristic.  The key fig is in external format and references 0CURRENCY.  Does anybody have any insight?
    Thanks,
    TMS

    Hi TMS,
    I am facing exactly the same problem here...
    transactional datasource for flatfile gives me errors DO313, RSO404 and then RSDS106
    We are on:
    SAP_ABA            700               0011  SAPKA70011
    SAP_BASIS     700               0011  SAPKB70011
    PI_BASIS            2005_1_700  0011  SAPKIPYJ7B
    SAP_BW            700               0012  SAPKW70012
    FINBASIS            600               0008  SAPK-60008INFINBASIS
    BI_CONT            703               0005  SAPKIBIIP5
    SEM-BW            600               0008  SAPKGS6008
    Did you manage to find a solution?

  • Error When Activating DataSource in BI

    Hi,
    I have created a Generice Data Source in source system and replicated the same in BI. I am getting error 'Error when activating Datasource '.
    Kindly give me some suggestion how to rectify it.
    Regards,
    Sangeetha.A

    Hi,
    First check whether u have activated the data source in the transaction RSA6. Also, check whether the data source which you activated is listed in transaction RSA5.
    Regards,
    Krishna.

  • Generating Master Data Export DataSources Error

    Hi Guys
       I 0VENDOR info object to be exported to other BI system . Iam using Generating Master Data Export DataSources. When I right click on 0vendor and say Generate export data source it shoud create 80VENDORM , 80VENDORT. But when I am doing that its saying generation successfull (what ever the success message)..when I go check the Infosources / Data Soruces / Info Provder and try to search 8zvendorM...I couldnt find this...Also I searched with vendor in all the tabs...Iam only finding 0VENDOR but not the new created once..Can any one tell me where should i check for it...Also ,please note that...Iam also using the same function Generate Export DS for one DSO and I can see this one in the Unassigned nodes of the Info Source TAb......
    Please let me know the sol ASAP
    regards

    Hi PB and Voodi
    I tried with Voodi's Sol and am still not able to find the 80VENDORM and 80VENDORT ....Where as PB's...I cant find the generated objects.in the settings tab...Can you please let me know what will be the issue and how to find this Data Sources....
    Please let me know ASAP...regards

  • Error while activating transformation  ----   Message no. RSTRAN510

    Hi,
    while I am Extrating Data From Flat File I encountered this Error.
    I am working on <b>ECC 6.0 , BI 7.0.</b>
    I am trying this one in IDES, it is newly installed server.
    For Flat File Extraction I follwed the Steps
    1) I created Data source -
    let us assume I have created a Flat File with 3 fields
    SNO SNAME MARKS
    File is located in workstation
    Data source created successfull , I have checked in preview.
    2) I have created 2 key Figures, 1 characteristic
    3) I have created Infocube
    <b>here I have some doubt</b>
    while I am creating Infocube, the look and Feel is very different to 3.XX
    when i try to create in 3.XX , we can see the Tabs for Kef figs,chars,Time chars and we assign chars to Dimenstions.
    when i am creating Infocube in BI 7.0 , I don't Find such a Tabs and how I am assign the chars to Dimension
    I created Like this
    select
    Info Area -
    > create Info cube   -
    given name of the cube and create (F5).
    the Info cube window displayed on the Right side
    Then I did like this
    select
    key Figures -
    > Info object Direct Input   
    Then I inserted my two key figures SNO,MARKS
    --- continue (F5)
    Dimension 1 -
    >  Info object Direct Input    
    I inserted the 1 char  SNAME
    --- continue (F5)
    Then I saved the Info cube
    Info cube saved successfull and activated successfull
    <b>Is it Right way For create InfoCube ?</b>
    4) I created Transfomation for the Data source
    Data source -
    > create Transfomation
    I have given
    Object Type  : InfoCube
    Name           :YSTU    - i selected which I already created.
    It automaticall taken these parameters
    Obejct Type     : DataSource
    Data source     : YSTU
    source system :PC_FILE
    create Transformation (Enter)
    I got the Error
    <b>Cannot generate proposal</b>
    <b>Message no. RSTRAN017</b>
    Then I try to activate, I got the Error.
    <b>Error while activating transformation</b>
    <b>Message no. RSTRAN510</b>
    Before I post this , I had searched in Previous SDN post for this Error , But I can't understand the solution.
    I have lot of doubts like <b>Basis Guy need to install any Patch</b> or
    I did mistake any where.
    Help me to Find the solution...
    sure you can get the points
    Thanks
    prasanna

    Thank You so much Voodi, yes you are Right , I am not concentrated on Mapping, Now Transformation is activated.
    and i created Info Package too for the Data source , created successfully.
    I am struck on Final step  <b>creating DTP</b>
    when I am creating DTP
    Data Transfer Proc  : here I need to give the Dtp name ex: YDTP
    DTP Type               : Standard (Can be sheduled)
    Target of DTP
    <b>Object Type</b>       : Info cube
    <b>Name </b>               : YSTU  (This is my Cube Name)
    Source of DTP
    <b>Object Type</b>     : Data source  (It automatically Taken)
    <b>Data source</b>     : This is Disabled
    <b>Source system</b>:  This is Disabled
    continue (Enter)
    I got the message ?
    <b>Specify Name of source</b>
    and courser is in <b>Data Transfer Proc </b>
    Thanks
    prasanna

  • Error while activating transformations? can you please help me

    Hi
    I am trying to create info cube , i created info objects, info cube,datasource. when i am trying to creat transformation it is throwing and error :
    Error while activating transformation
    Message no. RSTRAN510
    Can any one help me?
    Srinath

    Hi
    I think you are trying to activate the transformation.
    Have you tried to generate proposal?
    I think you will get the following error message :
    Cannot generate proposal
    Message no. RSTRAN017
    the system would never generate a proposal . u need to map the fields manually in the transformations... after u map it ... check the mapping and activate it ...
    Due to this when you are going to activate the transformation it is throwing this error message.
    If this works kindly assign me some points.
    Regards,
    Debjani..

Maybe you are looking for

  • Application Error - memory could not be read

    Hello all, we are having a problem with certain users of Manager Self Service (MSS) that have a large number of staff available to report upon. This problem occurs whenever these managers run any report for more than 63 employees. The IE error is: ie

  • How does system status influence the crm transactions?

    Dear CRM Experts, Can you please clarify the use of system status in the crm transactions?how it's control or influence the crm transactions.can we link  the R/3 and CRM transactions using system or user status?how user status & system status are lin

  • Some images color change in Photoshop

    Hi all, I've read a number of other threads that discuss this or similar issues, but I've not yet found a resolution that works for me. I'm using the latest Aperture and Photoshop CS 4. I have two or three images (from amongst probably 100+) that, wh

  • HRMS Upgrade

    Hi, We have modules Payroll, OTA, HR Intelligence, and Employee Self-service and Manager Self-Service and Basic HR. We are looking at the installation of 11.5.10. 1. Is there a problem with this selection or known problems with it implementation? 2.

  • Property binding causes Bean property to be null when Component is readonly

    I am retrieving an object (instantiation of a Bean) from a list of objects displayed in a table. A set of components (textfields, textareas) are bound to the properties of the retrieved object. - propertybinding, text property bound to name property