Regd Data Source text missing

HI All,
I have made changes in R/3 data source for 2LIS_13_VDITM and successfully transported to test server. Strangely when I replicate I could see the text of this data source in Dev system is missing.
I tried to add the text in RSA6 change mode but still I cannot do it as it does not give the change mode in RSA6 for text description.
Pls help

Hi,
    Some times texts will missed in the Transport. Try to create a new Transport. That will reslove the issue.
Update the Thread how you resloved it.
All the best.
Regards,
Nagesh.

Similar Messages

  • Create a new dimension in business layer from Data source: text file on the web

    Hi,
    I have a text data source which is published every few hours that is accessible from a certain URL. I follow the instruction given in this http://scn.sap.com/docs/DOC-43144 - where it shows in great detail how to create the connection, data foundation as well as business layer to create a universe for this type of data.
    All is well - I can use this universe in my WEBI doc and display the data.
    However, in order for me to merge the data from this universe with another universe, I need to create  new dimension based on the data from the text file. The new dimension value is simply the first 4 characters of the Subject found in the text file. The "Subject" dimension is of variant type: varchar.
    Following the guide mentioned earlier, the connection is using SAP BO OpenConnectivity driver. And this driver limits severely the SQL statement that I can use to extract a substring of another string. Here's the screenshot of the SQl expression that I can use with this driver
    After hours of searching, I cannot find any other connection driver for a text file that's published on a certain URL. The BO OpenConnection driver is the best that I could find.
    So here are my problems
    1. one of my data source is a text file published on a web
    2. the only connection I can create does not allow me to create  new dimension in the universe to create an important column "subject ID"
    3. I can create the column in webi as a variable. But when I do so, I cannot merge it with existing dimension (webi not allowing to merge these 2 types). And without the merge, the flat file universe with my database universe can't be combined.
    I'm using WEBI Rich client version 4.1 SP3 Patch 1. Build 14.1.3.1300
    Is there any other idea that you can suggest without requiring to change the extracted data?
    Thanks.
    With warm regards

    Hi Bala,
    Were you able to find out a solution for the problem with uploading values for a variable from a text file on the web?  I am confronted with the same request from users.
    Thanks,
    BQ

  • When creating a report, "Available Data Sources" is missing options.

    Background:
    I am running Crystal Reports XI Developer edition.
    Here are the steps to expose the problem:
    1.  Create a new standard report (Ctrl-N).
    2.  Available data sources - expand "Create New Connection"
    3.  I expect to find "Field Definitions Only" and "File System Data" in the displayed list (among many others).  However, I only see "Database Files", "OLE DB (ADO)", and "More Data Sources".
    4.  "Field Definitions Only" formerly appeared under "More Data Sources" but has disappeared.
    Question:  How do I get all the connection types to appear?
    I have a secondary computer running Crystal Reports where the entire list is populated.  The problem appears only on my primary Crystal Reports development machine.
    .... Warren

    Vitaly,
    1.  Yes, I checked "More Data Sources" - not there.
    2.  I tried adding the Field Definitions using Control Panel Add/Remove - no help.
       I tried removing the "Field Definitions" and then adding them again - no help.
    3.  Another machine does have the same version of CR.  It is running Vista.  Problem machine is running XP.
    4.  Clicked the "Reinstall" button in the Control Panel Add/Remove - this fixed the problem.  I did not need to uninstall the program.
    Both machines now exhibit the same list of connection types (with one small exception).  Thank-you for your hellp.
    .... Warren
    Edited by: Warren Pickell on Oct 23, 2009 11:55 PM
    Edited by: Warren Pickell on Oct 23, 2009 11:56 PM
    I'm trying to indicate "Yes, my question has been answered.", but it does not seem to "take".

  • 0distr_chan initial master data load, text missing

    Hey: I am trying to do an initial master data load for 0distr_chan on text. The load is not successful. In the monitor detailed error message, it has red alert for transfer rules missing message, update missing message.
    0distr_chan attibute is OK.
    I am also having problems when loading 0salesorg on text. It fails also.
    Can anyone give me a clue?
    Thanks!

    Hi, thank you for your answer. I am new to this system. Please give me more guidance.
    To check on datasource on R3, I use transaction RSA6, underneath the SD-IO master data, I found 0DISTR_CHAN_TEXT with green text icon on the right. Is this a valid way to verify that datasource for 0DISTR_CHAN_TEXT has been activated OK on R3? I am not sure if there is any way for me to check if any transfer rules for the datasource has been activated OK on R3.
    thanks!

  • Crystal ActiveX Runtime Lib: Change text data source path at run time.

    We have some PCs running Crystal Reports 10 and some running CR 9 and 8.5. For each PC, we set up a System DSN ODBC data source (in Control Panel - Administrative Tools) for pulling data from text files to
    generate reports.
    Recently we wrote some routines (see the Visual Basic example at the
    end of this message) to change the path of the data files at runtime.
    According to the Crystal Reports Technical Reference Guide, we may use
    the method LogOnServer() of an Application object or an DatabaseTable
    object. However, we find that this does not work: the PrintOut()
    method only pulls data from the default path as configured for the
    System DSN, not from the path passed as the third parameter of
    LogOnServer(). It does not return any error message.
    We have also tried to use SetTableLocation() method, and it still does
    not work.
    Would any experts examine our code below and advise what we are missing? Thanks.
    For the following VB example, we have:
    System DSN Name: AP_WORKSHEET
    Driver: Microsoft Text Driver
    Database Directory: D:\0ood2 (i.e. the default path)
    Crystal Report Document: D:\3g\run\Vision\apcyto\Reports\crBlockWS.rpt
    (Which specifies that the data source text file name is BlockWS.txt)
    Purpose : We would like to read the data source text file from
    D:\0ood1 instead of the default path.
    Following is the code of the VB macro:
    Sub test()
    Rem In this version of the subroutine, we call
    Rem DatabaseTable.LogOnServer() and "Rem"ed out
    Rem Application.LogOnServer() and SetTableLocation().
    Rem We have un"Rem"ed each of them and "Rem"ed others and try to run.
    Rem In all runs, data are pulled from the default file
    Rem D:\0ood2\BlockWS.txt instead of D:\0ood1\BlockWE.txt.
    Dim crxapp As CRAXDRT.Application
    Dim crxRep As CRAXDRT.Report
    Dim crxDB As CRAXDRT.Database
    Dim crxTab As CRAXDRT.DatabaseTable
    Dim crxConnPs As CRAXDRT.ConnectionProperties
    Dim crxConnP As CRAXDRT.ConnectionProperty
    Dim apropSubLoc As String
    Dim apropConnBufStr As String
    Set crxapp = CreateObject("CrystalRuntime.Application")
    Rem
    crxapp.LogOnServer "p2sodbc.dll", "AP_WORKSHEET", "<CRWDC>DBQ=D:\0ood1",
    Set crxRep = crxapp.OpenReport
    ("D:\3g\run\Vision\apcyto\Reports\crBlockWS.rpt")
    Set crxDB = crxRep.Database
    Set crxTab = crxRep.Database.Tables(1)
    apropConnBufStr = crxTab.ConnectBufferString
    apropSubLoc = crxTab.SubLocation
    crxDB.LogOnServer "p2sodbc.dll", "AP_WORKSHEET", "<CRWDC>DBQ=D:\0ood1",
    Rem crxTab.SetTableLocation "D:\0ood1\BlockWS.txt", apropSubLoc, "DSN="
    Rem Set crxConnPs = crxTab.ConnectionProperties
    Rem Set crxConnP = crxConnPs.Item("DSN")
    Rem crxConnP.Value = "AP_WORKSHEET"
    Rem Set crxConnP = crxConnPs.Item("Database")
    Rem crxConnP.Value = "D:\0ood1\BlockWS.txt"
    Rem crxTab.Location = "BlockWS.txt"
    crxRep.DiscardSavedData
    crxRep.PrinterSetup (0)
    crxRep.PrintOut
    End Sub
    For VB macros, the problem exists in all of CR 8.5, 9 and 10. However,
    for another platform we are using, Unify Vision 4GL, it works for CR
    8.5 while not working for CR 9 and 10.
    Following is the source code in Unify Vision 4GL. This language may
    not be popular, but I thin you are about to see how it calls the
    Runtime Library methods LogOnServer(), OpenReport(), PrinterSetup() and
    PrintOut().
    %gfPrintCrystalReport
    BOOL FUNCTION gfPrintCrystalReport($reportName)
    BEGIN
    if NOTMKNOWN(GF:$oSeagateId) then
    create service of activex
    class 'CrystalRuntime.Application'
    object_ref into GF:$oSeagateId;
    if MKNOWN(GF:$oSeagateId) then
    begin
    /* TD23013: Database directories are dynamic to
    accommodate multiple user requirement of Citrix */
    send message LogOnServer to GF:$oSeagateId
    using
    ( 'PDSODBC.DLL', 'AP_WORKSHEET', '<CRWDC>DBQ='+GF:$WinTempDir,'','')
    identified by $msgHandle;
    if $msgHandle:MSG_STATE 'RESPONSE_PROCESSED'
    then
    begin
    display 'Crystal Reports cannot connect
    to the datasource ' for fyi_message wait;
    return (FALSE)
    end
    send message OpenReport to GF:$oSeagateId using
    ($reportName, 1)
    identified by $msgHandle returning
    $oCrystalReport
    if MKNOWN($oCrystalReport) then
    begin
    if (NOTMKNOWN(GF:$printerName)) then
    set GF:$printerName to
    $oCrystalReport->PrinterName;
    if GF:$printerName $oCrystalReport-
    PrinterName then
    send message SelectPrinter to
    $oCrystalReport
    using
    (GF:$driverName,GF:$printerName,GF:$portName)
    identified by $msgHandle;
    set $oCrystalReport-
    DisplayProgressDialog to FALSE;
    while TRUE
    begin
    DISPLAY NOTICE 'Print to : ' +
    GF:$printerName
    LABELS 'Ok'
    DEFAULT, 'Cancel', 'Printer Setup'
    RESULT INTO $userOption
    switch ($userOption)
    begin
    case 0 :
    send
    message PrintOut to $oCrystalReport
    using
    (PROMPT_USER, NUMBER_OF_COPIES, COLLATED, START_PAGE, STOP_PAGE)
    identified by $msgHandle;
    set
    $oCrystalReport to UNDEFINED
    return
    (TRUE);
    case 1:
    set
    $oCrystalReport to UNDEFINED
    return
    (FALSE);
    case 2:
    send
    message PrinterSetup to $oCrystalReport
    using
    (0)
    identified by $msgHandle;
    if
    GF:$printerName $oCrystalReport->PrinterName then
    begin
    set GF:$printerName to $oCrystalReport->PrinterName;
    set GF:$driverName to $oCrystalReport->DriverName;
    set GF:$portName to $oCrystalReport->PortName;
    end
    break;
    end
    end
    end
    end
    return
    (FALSE);
    END

    Hi Sydney,
    If you search the Developers help file you'll find info on using the method:
    How to change the data source
    This example demonstrates how to change the data source from native Access to an OLEDB (ADO) data source by using the ConnectionProperty Object, as well as how to change the table name by using the Location property of the DatabaseTable Object. CrystalReport1 is connected to the xtreme.mdb database found in the \Program Files\Crystal Decisions\Crystal Reports 10\Samples\En\Databases folder. The report is using the Customer table. A copy of the Customer table is added to the pubs database on Microsoft SQL Server.
    ' Create a new instance of the report.
    Dim Report As New CrystalReport1
    Private Sub Form_Load()
    ' Declare a ConnectionProperties collection.
    Dim CPProperties As CRAXDRT.ConnectionProperties
    ' Declare a DatabaseTable object.
    Dim DBTable As CRAXDRT.DatabaseTable
    ' Get the first table in the report.
    Set DBTable = Report.Database.Tables(1)
    ' Get the collection of connection properties.
    Set CPProperties = DBTable.ConnectionProperties
    ' Change the database DLL used by the report from
    ' native Access (crdb_dao.dll) to ADO/OLEDB (crdb_ado.dll).
    DBTable.DllName = "crdb_ado.dll"
    '  The connection property bags contain the name and value
    ' pairs for the native Access DLL (crdb_dao.dll). So we need
    ' to clear them, and then add the name and value pairs that
    ' are required to connect to the OLEDB data source.
    ' Clear all the ConnectioProperty objects from the collection.
    CPProperties.DeleteAll
    ' Add the name value pair for the provider.
    CPProperties.Add "Provider", "SQLOLEDB"
    ' Add the name value pair for the data source (server).
    CPProperties.Add "Data Source", "ServerA"
    ' Add the name value pair for the database.
    CPProperties.Add "Initial Catalog", "pubs"
    ' Add the name value pair for the user name.
    CPProperties.Add "User ID", "UserName"
    ' Add the name value pair for the password.
    CPProperties.Add "Password", "password"
    ' Set the table name. ' for SQL types it would be "database.dbo.table"
    DBTable.Location = "Customer"
    Screen.MousePointer = vbHourglass
    ' Set the report source of the viewer and view the report.
    CRViewer1.ReportSource = Report
    CRViewer1.ViewReport
    Screen.MousePointer = vbDefault
    End Sub

  • EPM Architect - Missing Data Source when deploy

    Hi,
    I have an application on EPM which status is at the moment Not Deployed. It once worked but now when I try to deploy it's Data Source is missing, nor i can associate one to it. How can I recover this situation? The application was working until yesterday and the Data Source for the underlying application is present.
    The Diagnostic does not show me the option to find suitable datasource for this application.
    The Planning application works correctly, I tried to restart Planning and EPMA Services but without success.
    Is there something I can do working on the tables in the EPMA schema?
    Thank you,
    bidi

    Hi Celvin,
    no I didn't play with the underlying tables. I ran the Diagnostic and it fails two tests:
    - Not deployed but in Shared Services
         - a) Delete from EPMA only
         - b) Manually delete application from Shared Services
    - Not Deployed status in EPMA, but in product
         - a) Delete from EPMA only. May run the Transform Classic to EPM Architect Wizard manually aftwrwards
         - b) Manually delete the application from the productnd
    I think that Delete from EPMA and reverse from the underlying planning application would in a certain sense "fix" my issue, but I'm not so confident in this operation, I don't want for some reason override something on the Planning application.
    In the forum I found that when the Data Source is set to NONE the diagnostic is able to recognize a data source that could fit. I don't know if in that case NONE is "NONE" as a string or is just missing, in my case I see an empty drop down list.
    Thanks

  • Searching for data source

    Hi All,
    Is anyone have the ideas of what are the data source (text and attribute) for this 2 info objects?
    1. 0UCSERV_ID
    2. 0CRM_MKGUID
    Thank you.

    Hi
    check out the following datasources for 0UCSERV_ID
    0UC_DEVICER_ATTR
    0UC_GRIDH_ATTR
    0UC_PODSERV_ATTR
    0UC_SALES_SIMU_02
    0UC_SALES_STATS_01
    0UC_SALES_STATS_02
    0UC_SERVICEID_TEXT
    0UC_SRVPROV_ATTR
    0UC_SRVPROV_TEXT
    For 0CRM_MKGUID cudnt find any datasource in BI 7.0
    Hope this helps
    Sonal.....

  • Updated Direct 7mode And CDOT Script Data Sources

    Here are updated versions of my direct data sources I put together (communities doesn't seem to let me edit the existing article) - the 20150703 update adds support for WFA 3.0 and provides much more complete cDOT (cm_storage), including cDOT 8.3 features. The 20150728 update fixes storage pool support. The 20150802 update adds support for WFA 3.1RC1 and fixes failover_group support in WFA 3.0. Not everyone has pre-existing OCUM and installing and configuring OCUM for both 7mode and cDOT is not necessarily a small task. These datasource types populate the standard storage and cm_storage schemas which can then be used as normal with many workflows. The WFA 3.0 cDOT direct data source is almost complete. It now populates the following: disk, disk_aggregate, efficiency_policy. It includes cDOT 8.3 information added in WFA 3.0: broadcast_domain, failover_group, ipspace, storage_pool*. There may be some minor gaps in some of the data - please let me know if you identify anything. (Note: The WFA 2.2* cDOT data source is missing all of these items). The WFA 3.1RC1 cDOT dats source adds support for cluster_peer, vserver_peer and SVM DR, and all new fields added in 3.1RC1 are populated. It also populates cifs domain information. The 7-mode source is less complete. It contains: array, vfiler, aggregate, interface, volume, vsm, qtree, lun. It is missing: array_license, cifs_share, cifs_share_acl, dataset, disk, igroup, igroup_initiator, lunmap, nfs_export, object_comment, quota, snapshot, snapvault, user_quota. Configuration is simple:Provide credentials for the arrays/clusters in WFA credentials.Add datasource - select version appropriate to your WFA version (the 7-mode source works with 2.2-3.0) which the cDOT one is different for 2.2 and 3.0.Set the Hostname of the datasource to a comma separated list of array or cluster admin names or addresses, or set up one datasource per array/cluster.Configure the interval to something reasonable (say 15 or 30 minutes)Increase the timeout for larger environments (in my testing, collection takes 15-90s per array/cluster - it may take longer when there are large numbers of objects or if there is significant latency between the WFA system and the array/cluster) There are some flags that can be passed in (comma separated) through the data source's "User name" field:strict - fail collection if any error occurs (default if there is only one array/cluster)nostrict - don't fail connection if an error occurs (for a single array/cluster datasource)debug - log more informationlog=<logpath> - where to log (defaults to ..\..\log\direct_<schema>.log - typically C:\Program Files\NetApp\WFA\jboss\standalone\log\)timeout=<timeout_in_milliseconds> - API timeout (defaults to 180000)The Password, Database and Port fields are unused. Reservations, etc, should work as normal. This has been developed against WFA 2.2RC1, 2.2, 2.2.1, 3.0RC1 and 3.0 and will likely require updates to work with future versions. Upgrades from previous versions should be seamless. Changes from previous version:Added WFA 3.0 schema supportAccomodate changed mysql behavior in WFA 3.0Single array/cluster is now automatically strictAdded nostrict parameter7-mode direct data source handles pre 7.3.3 systems7-mode direct data source doesn't fail if vfiler stopped/inconsistentFix for storage_pools in 3.0 cDOT data source (20150728)Fix for broadcast_domain (3.0/3.1RC1)Added support for WFA 3.1RC1, populates all new schema tables and fields.No longer imports into WFA 2.2RC1

    Hi Richard, The dar file is directly attached, not wrapped in a zip as the previous communities site used to do. You should be able to directly import it into WFA. Note that some browsers may save the file with a zip extension (I've seen IE do this - dar files are just zip files anyway), so you may need to rename the file to .dar first. Regards,Tim

  • Problem transporting data source on R/3 side - missing text

    Hi guys
    We are trying to transport a BC data source with enhancement from DEV to TEST. The person doing the enhancement is long gone.
    When we try to include the data source in a transport, we get the error:
    "The short text of data source … is not maintained in language E"
    If we login in English we can see the short text missing. However this being BC, how do we add the text?
    Hope you can help guys...
    Kind regards
    Karsten

    Hi Karsten,
    This text missing, is from the transfer structure?
    You may access from transaction se11 and edit the transfer structure in English, and add the missing texts in that language.
    Let me know if you need any further help.
    Hope it helps.
    Regards,
    Diego Lombardini.

  • Microsoft Access Text Driver missing! and ...Cannot initialize the data source object of OLE DB provider "MSDASQL" for linked server "(null)".

    In order to use OpenRowSet, I installded Microsoft Access Database Engine 2010. However, I could not find Microsoft Access Text Driver in Drivers of ODBC Data Source Administrator.  Could I get some help with that?
    Thank you very much!

    I am local admin and try to run the following script, but I got an error. Could anyone help me look at it?
    EXEC sp_configure 'show advanced options', 1
    go
    RECONFIGURE
    GO
    EXEC sp_configure 'ad hoc distributed queries', 1
    go
    RECONFIGURE
    GO
    SELECT * FROM OPENROWSET('MSDASQL',
    'Driver={Microsoft Access Text Driver (*.txt, *.csv)};
    DefaultDir=D:\;','SELECT * FROM Test.csv')
    Configuration option 'show advanced options' changed from 1 to 1. Run the RECONFIGURE statement to install.
    Configuration option 'Ad Hoc Distributed Queries' changed from 1 to 1. Run the RECONFIGURE statement to install.
    OLE DB provider "MSDASQL" for linked server "(null)" returned message "[Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified".
    Msg 7303, Level 16, State 1, Line 1
    Cannot initialize the data source object of OLE DB provider "MSDASQL" for linked server "(null)".

  • Fields Missing in the data source

    Hello Friends ,
                          I have to Append structures in my data source , and there are few fields under each append , the fields existing in Dev are missing in QA under one of Append strcuture's in QA. I see the fields when I double click the extract str but dont get to see them in the data source in QA, has anyone had this earlier ?
    Need y

    Hi,
    Go to transaction RSA6 -> datasource. You will see number of fields ( standard and appended). Check missing  field there and checkbox in HIDE column against it. If box is checked it wont be shown in the datasource. It will hide the field in the datasource.
    Hope this helps.
    Regards,
    Viren

  • Fields missing while creating the data source

    Hi All
    I am using a third party system to pull data in to BI...Actually there was one table where from the other end they had added 2 fields recently...when i checked in development i was able to create the data source for the table along with the new fields..but when i check it in production those newly added 2 fields are missing .. though i am able to see  the old fields in the data source the newly added fields are missing..so is there any problem with the refreshment of the table or should we reastart the connection?
    Can any one  please  let me know a solution for this...
    Regards
    Shilpa

    HI,
    Are you having connectivity like this
    BI Dev
    BI QA         ---> All Three connected to same 3 rd party system
    BI Prod
    If yes, If it is R3 replicate datasource will help.
    Incase of third party system you need to regenerate the datasource.
    if it is DB Connect try to go to the source system and connect to database table from BI side and at the top you will have
    generate datasource. use that option you will be able to solve.
    Else
    BI Dev - 3rd party dev
    BI prod - 3rd party prod
    Try to add 2 new fields in the 3rd party system and generate the datasource as told above.
    Thanks
    Arun
    Edited by: Arunkumar Ramasamy on Sep 14, 2009 9:12 AM

  • Fields missing from Data Source but displayed in RSA3

    Hello Experts
    I have an issue while finding for a field in the data source. As I am looking for some fields : MABST, MINBE, EISBE on BW Side but not found. When I llok the same fields in ECC Side in the table RSOSFieldmap, then I get these fields in 0MAT_PLANT_ATTR Data Source. In the same time , the fields are not available in the Data source on BW Side as well as on ECC Side(while goin thru RSA6). Also when I execute the RSA3 for the data source, I am getting the data in the Missing Fields. How it can be possible? Also plz let me know how can I make these fields available in Data Source.
    I replicate the data source, also i looked for the hidden fields, but still not succeed.
    Thanks in advance
    Neha

    Hello,
    TO unhide the field,
    Just Goto T.code RSO2 > press change button.> unhide the filds and --> Generate the Datasource
    or
    Goto RSA6 --> select the Datasource and --> press change button (pencil icon) --> unhide the filed --> Save and Generate the Datasource.
    Try the above two option and check if it is working.
    also go thru the below post
    BI : Hidden field Datasource
    Hope this helps,
    Sri...

  • Missing Connection Types in Report Data Source Properties

    I am running three installations of SharePoint 2013 with SQL 2012 for Business Intelligence, with Kerberos working.
    I have been having intermittent issues with SQL Reporting Services in a multi-server configuration, but finally had it working in all three environments.  We discovered many of our issues were caused by master page customizations which we have now disabled
    temporarily while we work on function issues.
    However, we started having a new problem with Reporting Services on just ONE of the environments, and we are not sure what happened.  Most everything appears to still be working, except Reporting Services. I have verified that features are enabled
    in both the farm and the site collection, as well as insured managed content types are being allowed on the target document libraries.  I also verified the Reporting Service properties and database connections.  However, I have found two clear symptoms
    which I can find no other information regarding (in logs or in online searches):
    1) If we try to create a new "Report Data Source" using the SharePoint UI, it will open a new Data Source Properties window, but in the "Data Source Type" field, there are no values available for me to select my connection type (e.g.,
    Microsoft SQL Server).
    2) In Central Administration, while administering the Reporting Services Service Application, I can manage a majority of the settings, including System Settings, Manage Jobs, Key Management, etc.  However, if I click on the link for "E-mail Settings,"
    I get the dreaded "Sorry Something went wrong screen," with an error saying that "Object reference is not set to an instance of an object."
    So I am hoping someone has an idea of where I can look for additional information on this issue, or even better, knows what I am missing to get Reporting Services functional again in this environment!
    Thanks in advance for any help provided.
    Elohir

    However, we started having a new problem with Reporting Services on just ONE of the environments, and we are not sure what happened.
    Hi Elohir,
    I assume you are installing Reporting Services SharePoint mode for SharePoint 2013, you need to:
    1. Install "Reporting Services – SharePoint" and "Reporting Services add-in for SharePoint Products" on the SharePoint server that the SSRS service will run on.  All other SP servers only need the "Reporting Services
    add-in for SharePoint Products."   
    2. Run the Insall-SPRSService and Install-SPRSServiceProxy on Central Admin and SSRS server.
    3. Start SSRS Service only on desired SSRS servers.
    http://msdn.microsoft.com/en-us/library/jj219068.aspx
    Since the issue occurs only to one of the environments, please provide more information about your multi-server configuration, and point out the server where the issue occurs.
    Regards,
    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] .
    Rebecca Tu
    TechNet Community Support

  • Data Source Missing in Publication

    HI experts,
    I've got a business objects publication which uses 1 crystal report as the source data and 1 crystal report as the dynamic recipients. When run seperately both these crystal reports work fine but when I try to schedule the publication I keep getting the error message 'Unable to connect. Incorrect logon parameters'.
    The source data crystal report uses 2 different data sources and when I look at the database logon parameter within the report I can see them both and they have the correct passwords. When I look at the database logon parameter of the source data within the publication I can only see 1 datasource.
    I'm assuming my problem is something to do with the missing datasource but I don't know how to view it within the publication.
    What am I doing wrong?
    Thanks
    Stuart.

    Hi Mansi and Rathi
    Will creating a new infopackage or replicating hamper anything that is already existing. I am new to BI and actually was asked only to work in queries. I dont want to take a chance, just in case.
    I have 3 infopackages already created for this data source.
    Thanks and Regards
    Madhu

Maybe you are looking for