BI Technical Content datasources not found in Quality after transport

HI All
I am trying to implement BI technical Content for Admin Cockpit. I was able to implement Technical content Infocubes successfully in development box but when I collected the objects and transported to Quality(collected oblects in seperate requests: info objects in one request, datasources in one request, infocubes, transfer rules and updated rules in one request), I am not able to find the datasources in quality in myself sourcesystem even after repication. but the transport for technical content datasources is successfull. The following are the datasources:
       Comment Entry: Released
       DataSource Replica
           0TCT_DS01                     D17CLNT208
           0TCT_DS02                     D17CLNT208
           0TCT_DS03                     D17CLNT208
           0TCT_DS11                     D17CLNT208
           0TCT_DS12                     D17CLNT208
           0TCT_DS21                     D17CLNT208
           0TCT_DS22                     D17CLNT208
           0TCT_DS23                     D17CLNT208
can anyone tell me why I am not able to find the datasources in Quality after successfull transport.
We are on SAP_BW     700   SAPKW70016     SAP NetWeaver BI 7.0.
thanks

thanks for your quick responce. I was not able to collect the datasources so I had to manually input them in the transport request. But it worked.
thanks once again.

Similar Messages

  • Org.xml.sax.SAXParseException: File "..\contents.dtd" not found.

    I have an xml file that has to be parsed in my application, without changing the XML. I don't have the dtd that is mentioned in the XML file.
    The code i am using to parse the xml into a Document is
    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
    factory.setValidating(false);
    System.out.println("Factory=" + factory.isValidating());
    DocumentBuilder builder = factory.newDocumentBuilder();
    builder.setEntityResolver(new XMLResolver());
    System.out.println("DocBuilder=" + builder.isValidating());
    Document doc = builder.parse(xml.getInputStream());
    System.out.println("doc=" + doc);
    if (doc == null) {
    return;
    The XML file is
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE contentspace SYSTEM "..\contents.dtd" [
    ]>
    <contentspace validdtd="0.0.2">
    <emscombicategory emscombisubtype="EMSCOLLECTION">
    <default name="lugares" description="lugares"/>
    <emscombi>
    <default name="alemania" description="Alemania"/>
    <commondetails copyrightowner="TME" copyright="COPYRIGHTED" price="" validfrom="" validto="" provider="terramobile" globalcontentid="ECOLL"/>
    <previewedbinarycontent preview="alemania.GIF">
    <binarycontent binarydata="alemania.OTA"/>
    </previewedbinarycontent>
    <emsringtone>
    <default name="alema" description="Himno de Alemania"/>
    <commondetails copyrightowner="TME" copyright="FREE" price="" validfrom="" validto="" provider="terramobile" globalcontentid="TMEEMEL"/>
    <previewedbinarycontent preview="alema.WAV">
    <binarycontent binarydata="alema.OTA"/>
    </previewedbinarycontent>
    <ringtonedetails composer="Tradicional" performer="Tradicional"/>
    </emsringtone>
    <emspicture>
    <default name="birra" description="Cerveza alemana"/>
    <commondetails copyrightowner="TME" copyright="COPYRIGHTED" price="" validfrom="" validto="" provider="terramobile" globalcontentid="TMEEPM"/>
    <emspicturedetails width="32" height="32">
    <previewedbinarycontent preview="birra.GIF">
    <binarycontent binarydata="birra.OTA"/>
    </previewedbinarycontent>
    </emspicturedetails>
    </emspicture>
    </emscombi>
    </emscombicategory>
    </contentspace>
    When i run this through it throws an exception with the message
    org.xml.sax.SAXParseException: File "..\contents.dtd" not found.
    I thought by setting factory.setValidating(false) it would not read the DTD, but it does.
    Is there any way to make the document model NOT attempt to read the DTD ???

    setValidating(false) has no effect on checking against the DTD.
    create your own EntityResolver rather than using new XMLResolver(): in this resolver divert the call to the DTD on an empty XML document.
    i have shown how to do so in another thread, just run a search on this forum (this hint is valid for any question btw)

  • RIDC api: The result set 'content' was not found or is empty

    Hi,
    I am trying to add a revision using COLLECTION_CHECKIN_REVISION. The content which I want to add a revision has only one revision i.e. 1,
    and its dID is 3746 and is already checked out.
    <code>
         binder.putLocal ("IdcService", "COLLECTION_CHECKIN_REVISION");
         // get the binder
         binder.putLocal ("dDocTitle", "Html file");
         binder.putLocal ("dDocName", "SUN00100");
         binder.putLocal ("dDocType", "Document");
         binder.putLocal ("dSecurityGroup", "Public");
         binder.putLocal("hasCollectionID", "true");
         binder.putLocal("dID", "3746");
         binder.putLocal("dRevLabel", "2");
         binder.putLocal("dCollectionID", this.getFolderIdFromPath(idcClient, userContext, PATH));
         System.out.println("dCollectionID###############################" +binder.getLocal("dCollectionID"));
         binder.addFile ("primaryFile", new TransferFile(new File("D:\\P6WS\\RIDC Test\\src\\com\\oracle\\ridc\\poc\\2.html")));
         // checkin the file
         response = idcClient.sendRequest(userContext, binder);
         System.out.println("response "+response.getResponseAsString());
    </code>
    And the output is as follows
    dCollectionID###############################739373434448003784
    response <?hda version="11gR1-11.1.1.5.0-idcprod1-110413T184243" jcharset=UTF-8 encoding=UTF-8?>
    @Properties LocalData
    deleteCompleteInCollections=true
    dDocType=Document
    refreshSubMonikers=
    dUser=sysadmin
    anyState=true
    primaryFile=2.html
    StatusMessage=<strong>The result set 'content' was not found or is empty.</strong>
    UserTimeZone=UTC
    localizedForResponse=1
    dDocName=SUN00100
    changedMonikers=
    I want to understand which content is being referred. The primaryFile is existing in the same location.
    Did I missed out any required parameter.
    regards,
    Sunil Kumar Dhage
    Edited by: 881595 on Aug 26, 2011 4:18 AM

    Like last time: documentation is not a big help here, so you have to do a bit of investigation yourself.
    In order to understand result sets, check this link: http://download.oracle.com/docs/cd/E17904_01/doc.1111/e10726/c04_master_usage.htm#CSIDO249
    ('content' is the name of the result set)
    I can't imagine why you would need such a result set while checkin in a new revision to a folder, but the documentation (http://download.oracle.com/docs/cd/E17904_01/doc.1111/e11011/c08_folders.htm#i1082329) advices that some sub services are called, so it might actually be an error coming from these subservices. I'd suggest to narrow down the search first - turn on requestaudit in server-wide tracing (see here: http://download.oracle.com/docs/cd/E17904_01/doc.1111/e10792/c02_processes.htm#CSMSP536).
    Alternatively, you could also perform your service call from GUI and trace what parameters are provided. I guess something will be missing.

  • Service Notifications: 2LIS_18_I0NOTIF datasource not found in BI Content

    Hi Experts,
    We are in phase of implementing CS module reports in BI.
    1)  For the same when searching the standard datasource 2lis_18_i0notif in BI Content , we are unable to find this in BI Content
    (RSA1 >> BI Content >> Datasource >> Object Type: 2lis_18_i0notif   : No Hit Found
    Currently we are having  following BI Content version:
    BI_CONT     705     0000          -     Business Intelligence Content
    2)  Also, please specify the dependent objects i.e. standard flow (standard data targets- infocube / Dso etc. ) based on this datasource.
    3)  All significant  Info./document  related to this datasource will be appreciated.
    Regards,
    Sandeep

    Hi,
    As said earlier, please install the data source 2LIS_18_I0NOTIF from RSA5 in R/3.
    After a successful activation in R/3, replicate the same in BI.
    As far as the BI content for the data flow is concerned, please take a look at the below URL:
    [http://help.sap.com/saphelp_nw70ehp1/helpdata/en/8d/eef23839eb8b78e10000000a114084/frameset.htm]
    Hope this helps.
    Regards
    Vishal

  • DataSource not found

    Hi,
    I have not found any datasource for Infocube 0SR_FIC01.
    I have checked in BI content and sap.help.com.
    There I found like there is one InfoSource (0SR_FI_SL_GLS), DSO (0SR_FIDS1) and InfoCube (0SR_FIC01).
    But I did not find any DataSource, Transfer Rules and Update Rules.
    where can I find those?
    Can anybody help me.
    Thanks,
    Venkat

    No DataSources are delivered with Global Spend Analysis based on data from Financial Accounting. The DataSources are generated after the special ledger is created in SAP Financial Accounting (SAP FI). In the standard, however, you can use the following extract structure.
    Source :
    http://help.sap.com/saphelp_nw04s/helpdata/en/04/0b057fdc42ff4c9a38d07955d04d67/content.htm
    Hope this helps.

  • Portlet Exchange 2000 view content messages not found

    I installed and configured the portlet exchange 2000 (March 2003).
    I can access the inbox.asp, calendar.asp and contacts.asp the login is OK, but when I want to view the content for a message show me the error file not found,
    I review many times the configuration and was Ok.
    Do you have any information about this??
    Thank you
    Regards

    Hi,
    From your posts it seems like an issue with the setup of the Exchange Portlets.
    With Exchange portlet you need do the following:-
    1. Installing the ASP files on Internet Information Server
    2. Updating provider.xml
    3. Publishing the Microsoft Exchange 2000 Portlets
    4. Creating the External Application
    5. Registering the Microsoft Exchange 2000 Provider
    Each of these tasks have been elaborated in the install document and I am sure that you must have followed the same. Just verify these steps to ensure that you have not missed out on anything.
    Ideally with Exchange Portlets, if you have followed all the steps and your setup is in line with the requirements you should not run into these problems.
    If you still are running into erros, please mention the Portal version, Exchange version, IIS version and the Machine setup too.
    Take care,
    Manoj

  • DataSource not found in Oracle AS 10gR3

    Hi,
    I deployed my J2EE app in Oracle AS 10gR3, I created datasource jdbc/xxxCoreDS (native DS) thro' console and manually overwritten the file data-sources.xml in /ora/OracleAS_SOASUITE/j2ee/home/config.
    When I type the url of my app, its supposed to connect to the DB using the datasource, while getting the DB connection I am getting the following exception
    Error : javax.naming.NameNotFoundException: jdbc/xxxCoreDS not found.
    Any help would be appreciable.

    When that happen (you manualy modify the file) you have to restart the EM console and clear the cache of your browser cause it keeps the last configuration that it work with, as you modify the file manually it wont get the last configuration. I dont recomend to modify this files manually cause they could cause a lot of problems of de-sync. As well you have to restart the home OC4J to get this changes.
    Hope this helps.
    Greetings.

  • Process chain is not visible in Quality after TR transport

    Hi,
    I have transported process chain to Qua, but its not visible, only the technical id of process chain is displayed in RSPC tcode. I've tried activating through RSPC_CHAIN_ACTIVE_REMOTE, but still, its not visible in rspc tcode.

    Thru not assigned nodes you have issue.
    All objects are at prod not in place or not inactive.
    So first transport your data flow objects(one by one as suggested at another thread) one by one again to prod and make them proper activation.
    at final you can transport your process chain into prod and check it.
    With out info pack/dtps at prd, connected process chain how will display the chain.
    One the data flow you have issue, please try understand the issue and re transport whole data flow.

  • Third party EXS-instruments not found in LP9 after downloading.

    Hi.
    I have downloaded some EXS-instruments that i found online for free. I stored them along with the original EXS-instruments that came with LP9. When i try to load them in LP I get a pop-up saying the instrument was not found. I have refreshed the library, restarted the mac without result. Why is this?
    Thx, Elias

    Read the Logic Studio Instruments manual available in the Help menu.
    Specificially, the section on loading instruments.  It spells out the storage locations.  There's a main LIbrary on the Mac HD, and a user Library.
    The factory instruments are in the main Library (similar to the path above but starting with the Mac HD vs user).
    User instruments go into the user Library.

  • After Yosemite install Symantec AV LiveUpdate won't run citing Java RTE not found error even after install of Java 8 Update 25

    I just installed Yosemite.  When I attempted to run Symantec Anti-Virus LiveUpdate (which worked fine under Mavericks) I got an error message stating "LiveUpdate was cancelled because Java Runtime was not found. Please run LiveUpdate once Java has been installed. For your convenience we will try to install Java using Apple Software Update."  Accordingly, I went to the Java website, downloaded and installed Java 8 Update 25.  However, I keep getting the same error message when I attempt to run LiveUpdate.  What must I do to get this AV software to work with Yosemite?

    Get rid of Symantec. You don't need it, or Java for that matter, which comprises a potential vulnerability of its own. Get rid of it too.
    One or more of the following support documents may be applicable:
    Uninstall Norton Internet Security for Mac
    Removing Symantec programs for Macintosh by using the RemoveSymantecMacFiles removal utility
    RemoveSymantecMacFiles

  • {871E20E9-​938D-4AAE-​9CB3-A1C57​9E94F77} not found by installer after build.

    The installation I create fails when you try to install it on a machine. You get the following error from the setup program:
    .\Distribution.cpp(237): IInstallerError 10002
    Fatal Error. Object not found.
    class CPart object lookup by ProductCode failed to find object {871E20E9-938D-4AAE-9CB3-A1C579E94F77}
    The Installer work last week. I've got a build that installs the older VI, but I need to dsitrubute the one with the fixes. Anybody know what
    causes this and how to fix it.

    If I understand correctly, the builds are successful for your executable and the installer, but when you try to run the installer on the target computer, you got this error?
    I've never seen the particular CPP error you were seeing (Distribution.cpp on line 237).  Do you have options for reporting this to NI?  If so, you should.  This will send a log file to us for investigation.
    Maybe there was some corruption in your installer files.  Have you tried rebuilding the executable and installer and trying again?
    Are you including any additional installers like DAQmx or VISA? 
    Are you using any or of our toolkits like the Control Design Toolkit?
    Regards,
    Craig D
    Applications Engineer
    National Instruments

  • Web Interface builder - Not displaying planning folder after transporting

    I created an web-enabled planning folder and transported it to the quality system.
    In the development system works perfectly (variables, layouts, links, user-exits, etc).
    After transporting it to the quality system when I run this web planning folder the page doesn't load and displays with an empty white web page.
    I tried to re-generate it in the quality system, but I'm having the same problem. I haven't recieved any error message.
    Development system:
    SAP_BW     350     0019     SAPKW35019     Business Information Warehouse
    SEM-BW     400     0012     SAPKGS4012     SEM-BW 400 : Add-On Upgrade Request
    BI_CONT     353     0007     SAPKIBIFP7     Business Intelligence Content
    Quality system:
    SAP_BW     350     0019     SAPKW35019     Business Information Warehouse
    BI_CONT     353     0007     SAPKIBIFP7     Business Intelligence Content
    SEM-BW     400     0012     SAPKGS4012     SEM-BW 400 : Add-On Upgrade Request

    Thanks for your post.
    I tried re-transporting and re-generate it again and I'm still having the same problem.
    Have you heard of a note or something for a similar problem?
    The only thing I recall is that this client was using SEM 3.5 before and upgraded to SEM 4.0 recently.

  • Datasource not found in BI content

    Hi Gurus,
    I am working on BW CRM Service. I have activated all Cube , ODS and Infosource related to CRM Service my problem is
    I have activated ODS and Infosource of Detailed Controlling Data (0CRM_CODA & 0CRM_SRV_COSTS,0CRM_SRVCNF_COSTS)  but while creating transfer rule I am not getting Datasource .
    please help me to solve this problem
    Thanks in advance
    Regards,
    Rakesh

    Hi,
    did you goto your crm system to activate all relevant datasources there? Did you replicate them into BW?
    If not, do so and try again.
    Siggi

  • Verifying DSN reports Datasource not found?

    Hello, thanks for looking..
    I have two datasources configured on a production web server (Win IIS, CF8), one that connects to a remote database and the other connects to a local database. A web application I was in the process of migrating to a new server used the datasource that connected to the remote database as I was taking one step at a time. Yesterday became the day to make the final jump and to migrate the database, so after comparing the two databases (SQL Delta is a beautiful tool), I proceded to swap the datasources by renaming them in the ColdFusion Administrator. I renamed the datasource to the remote database to some arbitrary backup name, then renamed the datasource to the local database to the original name of the the datasource to the remote database.
    JDBC, ODBC, whatever, I have probably performed these same steps hundreds of times without an issue. Yesterday, after renaming the datasource, verifying it, confirming it was working by browsing the application and seeing the noticable performance increase from accessing a local database, I was content to call to process complete.
    At 3am server time however, the application began throwing errors, saying the datasource could not be found. I jumped into CF Admin to check everything out and found things just as I left them, two datasources, one named as a backup and the other the original name to the local database. When I clicked verify all however, the datasource to the local database failed, saying "Datasource could not be found".
    I am curious as to what may have happened here. I don't see any cause for alarm with regards to technique as I have been using it for so long. ColdFusion server.log shows no sign of a restart. Does anyone have any clue what could have happened here? How could a datasource appear in CF Admin, yet verifying it says it doesn't exist? I resolved the problem by renaming it to something else, then renaming it back but I plan on deleting and recreating it completely this evening when traffic is lower. My only guess here is that ColdFusion updated active memory but failed when updating the registry, then something happened where things were refreshed.. But why.. and how can that be detected/avoided if true?
    I have a lot of people asking me questions now, and after spending great amount of time convincing them ColdFusion is the best answer for their needs the first time around, I am having trouble doing so this second time. So thank you in advance for any help or insight..
    Mike

    I am okay with that, and a 1 in 200ish failure rate, especially now that I have an automated script verifying datasources regularly. My clients are not however, especially without understanding the cause. Thanks for the reply though.
    Well, if that client was mine, I'd be saying something along these lines:
    "I've investigated this as much as practical, and asked around the CF community, and no-one has heard of this happening.  Given it's an isolated occurrence, I'm prepared to put this down to a temporary aberration, which is now resolved.  "Case closed", although obviously we'll "watch this space" too.  All computer software is very complex, and there will always be glitches.  I can investigate this to conclusion if you like, but it's difficult to troubleshoot something after havnig fixed it, especially when it's not replicable.  I am satisfied this is not something to be concerned about, however if you really want me to get to the bottom of it, it's likely to take a week (billable, as it's not a good use of my time), and at the end of it, you're not going to be any better off.  If it's such a concern - and fair enough - that there's a single point of failure here, then let's start talking about some fail-over protection.  That way if any other aberrations present themselves, it will not be an issue".
    However, in the mean time, have a look at your JRun and CF logs at round about the time the problem happened, and see if there's anything in there to do with JDBC and the like.
    Adam

  • Error in transporting technical content  Datasource

    Hello
    We are facing issues with transporting the Datasource ans associated transfer rules for 0TCTSOURSYS_ATTR from development to quality.
    When transporting the following objects:
    >Datasource Replica
    >Transfer Rules
    >Transfer structure
    we are receiving the following error in the quality box during the import process:
    Methos execution ended with errors < return code 8>
    Start of the after-import method for object type R3TR ISMP (Activation Mode)
    DataSource 0TCTSOURSYS_ATTR does not exist in source system WFNCLNT100 of version A
    Mapping between data source 0TCTSOURSYS_ATTR and source system WFNCLNT100 is inconsistent
    DataSource 0TCTSOURSYS_ATTR does not exist in source system WFNCLNT100 of version A
    Field RLOGSYS will not be delivered from DataSource 0TCTSOURSYS_ATTR in source system <Quality box>
    Field SLOGSYS will not be delivered from DataSource 0TCTSOURSYS_ATTR in source system <Quality box>
    Field SRCTYPE will not be delivered from DataSource 0TCTSOURSYS_ATTR in source system <Quality box>
    Start of the after-import method for object type R3TR ISTS (Activation Mode)
    Reference to transfer structure 0TCTSOURSYS_ATTR_VA not available. No activation possible.
    If i check for this DS in table ROOSOURCE on the quality box I see that there in an entry with Delivered status (no entry for active version)
    checking in RSA5 I can find this datasource - however I cannot find it in RSA6
    In the development box this DS has both the active version and the delivered version - I can find the DS in RSA5 and RSA6
    Clicking on the transport button in RSA6 just gives a message that action completed succesfully. Therefore I tried tranporting it through tranport connection.
    Please advise as to where I am going wrong and how to proceed.
    Thanks in advance

    HI,
    Generally  the flow will be like this from Dev to Quality and then to Production and in the similar way the datasource also needs to be transported in the source system also
    D1 ->Q1 ->P1 (D-development,Q-quality,P-Production)
    SD1->SQ1->SP1 (SD-source development,SQ-Source Quality,SP-Source Production)
    please check whether the fields is present in the source system of the quality( or data source in our BW system) if not you need to transport them again
    Please let me know if you have any questions
    Regards,
    MADhu.

Maybe you are looking for