LO 26603 (missing parameter and db logon failed)

Hi Experts,
I am getting a known error discussed on the forum many times,this is my first stint with CR_LO-Xcelsius,getting stuck at the Error LO 26603.
The dashboard is having a tab sets  (3 CR in each tab) and out of three, I am getting u201CParameter Value Missing for oneu201D and u201CDatabase Login Failed for two tabsu201D.
I have already referred the following threads but none of them is answered..
error LO 26603 crystal reports - live office - xcelsius
Error Code: LO 26603
Xcelsius missing parameter values (LO 26603)
Database logon failed (LO 26603)
The Task:
Get CR into the embedded excel using Live Office. To show charts.
The Problem:
Once i preview the Dashboard, data is displayed for the default date.
The CR Server login is popped upon refresh request (triggers from the dashboard) and providing the correct info (Admin user name and pwd) also the error is thrown Lo 26603.
The parameters (3 in no.) are common for all the three reports: (All setting done from Prompt settings)
1.     Date u2013 Data in the charts refreshes when the date is changed (I/P from Calendar in Xcelsius). Cell Binding (Option from Choose Excel Data Range)
2.     Region u2013 Selected (All) from prompt setting in LO Excel (Choose Value List).
3.     Products u2013 Selected (All) from prompt setting in LO Excel (Choose Value List).
I have set the DB logon information for processing the report in CMC and not sure of using SSO to bypass the DB logon prompt.
Please help, how I can troubleshoot this problem.
Config.
Crystal Server XI 3.1 SP2
Xcelsius 2008 5.3.3.0
SAP Integration Kit SP2
Live Office XI 3.1 SP2
Rgds
Sam

Go to CMC
Go to your CR
Right-click and select database configuration
Hardcode logon credentials
This should solve your issue.
Regards,
Rohan

Similar Messages

  • Xcelsius - Database logon failed. (LO 26603)

    Hi Expert,
    I have a error when run .swf file.
    The first, I create new query from SAP toolbar integration in Crystal Report 2008. The Crystal Query is called from a BW Query . The query have not variables, the data get directly from BW Query.
    I saved Crystal Report file into BOE (File -->Save -->Enterprise, not save on BW).
    In Infoview, I setup schedule for this .rpt file with information database logon below (default as inform in Set Database Location of Crystal Report):
    - Database server: xxx.xxx.xxx.xxx (BW server)
    - User name: User in BW
    - Password: Password in BW
    In Xcelsius, I use Live Office to get data from crystal on BOE to Excel sheet on Xcelsius.
    In data-->Connection, I changed <server:8080> by <IP BOE System:8080>.
    When I preview or export to swf file, a message box appear require input user name and password of BW server (Database logon). After I input correct password, a message box User Identification appear, I input System, User name, Password on BOE server and chose Authentication Enterprise. And final, I get error message "  Database logon failed. (LO 26603)".
    I try opening Crystal Report file on Infoview and Refresh data, I also input database logon by BW User, the data refresh correctly.
    Why do crystal report file update data from BW correct, while .swf file is not and return error Database Logon failed.
    Please explain for me what step I missed to get data through Live Office.
    Thanks

    Hi Priya,
    Thanks for your support.
    I have set the default credentials in database configuration.
    But my dashboard still can't work. When I preview dashboard, A prompt for database logon information appear, I can logon sucess and refresh data. But after I logon username and password on BOE for BOE User Identification with Authentication Enterprise, I still get error " Database logon failed".
    Who can explain for me what steps I miss.
    Thanks

  • Xcelsius missing parameter values (LO 26603)

    Hi experts,
    I've created a dashboard against a BW query using Live Office and a Crystal Report as the data source. Live Office and everything under it is using SAP authentication. When I click on the Refresh All Objects button in Live Office, I'm prompted for required parameters and then the data is refreshed successfully. However when I click Preview to generate the swf file, I get a "Cannot access external data.  Missing parameter values (LO 26603)" The Crystal Report's database config has been set to logon as a specific SAP user and refreshes successfully from Infoview.
    Business Objects Edge 3.1 SP3
    Xcelsius 2008 SP3
    SAP Int Kit SP3
    Any suggestions?
    Cheers
    Keith

    Which version of MS Office do you use? Any MS Office Service packs installed?
    Regards,
    Stratos

  • Database logon failed when opening report with parameter values in CrystalReportViewer

    Hi,
    I designed 2 crystal reports: report A contains parameter fields and report B did not contain any parameter
    I can open both reports in development site using CrystalReportViewer control. When I open the reports in testing site,
    I can open report B but can't open report A. It display error message "Database logon failed". When I set EnableDatabaseLogonPrompt
    to true and try to open the report A again, it shows database connection data which was created on report.
    In addition, it is strange that it displays error "Database logon failed" when I click an item in group tree panel of the report B. This indicates that it can load data from database
    in testing site but it connect to development database when clicking items in group tree panel
    All reports connect to database using Windows Authenication. It use dynamic database connection at runtime
    How to ensure the report always connect database using login data dynamically at runtime?
    Below is my code about database connection:
    string strServerName = null;
    string strDatabaseName = null;
    ReportDocument rptDoc = new ReportDocument();
    rptDoc.Load(strFilePath);
    ConnectionInfo connInfo = new ConnectionInfo();
    TableLogOnInfo logonInfo;
    for (int i = 0; i < rptDoc.Database.Tables.Count; i++)
    logonInfo = rptDoc.Database.Tables[i].LogOnInfo;
    ReportHelper.GetReportConnection(ref strServerName, ref strDatabaseName, strSystemType);
    logonInfo.ConnectionInfo.ServerName = strServerName; 
    logonInfo.ConnectionInfo.DatabaseName = strDatabaseName;
    logonInfo.ConnectionInfo.IntegratedSecurity = true;
    rptDoc.Database.Tables[i].ApplyLogOnInfo(logonInfo);
    rptDoc.Database.Tables[i].Location = rptDoc.Database.Tables[i].Location.Substring(0, rptDoc.Database.Tables[i].Location.Length - 2);
    crvViewer.ReportSource = rptDoc;
    crvViewer.DataBind();
    Development environment:
    - SAP Crystal Reports 2013 Support Pack 1
    - Visual Studio Professional 2012
    - .NET Framework 3.5
    - DDL
    CrystalDecisions.Shared (v 13.0.8.1216)
    CrystalDecisions.Web (v 13.0.8.1216)
    CrystalDecisions.CrystalReports.Engine (v 13.0.8.1216)
    Database connection in crystal report:
    - Database Type: OLEDB (ADO)
    - Provider: SQLOLEDB
    - Integrated Security: True
    Thanks and Regards,
    Tony

    Hi Tonylck
    Try  to pass login info to crystal report dynamically as follows:
    using System;
    using System.Windows.Forms;
    using CrystalDecisions.CrystalReports.Engine;
    using CrystalDecisions.Shared;
    namespace WindowsApplication1
    public partial class Form1 : Form
    public Form1()
    InitializeComponent();
    private void button1_Click(object sender, EventArgs e)
    ReportDocument cryRpt = new ReportDocument();
    TableLogOnInfos crtableLogoninfos = new TableLogOnInfos();
    TableLogOnInfo crtableLogoninfo = new TableLogOnInfo();
    ConnectionInfo crConnectionInfo = new ConnectionInfo();
    Tables CrTables ;
    cryRpt.Load("PUT CRYSTAL REPORT PATH HERE\CrystalReport1.rpt");
    crConnectionInfo.ServerName = "YOUR SERVER NAME";
    crConnectionInfo.DatabaseName = "YOUR DATABASE NAME";
    crConnectionInfo.UserID = "YOUR DATABASE USERNAME";
    crConnectionInfo.Password = "YOUR DATABASE PASSWORD";
    CrTables = cryRpt.Database.Tables ;
    foreach (CrystalDecisions.CrystalReports.Engine.Table CrTable in CrTables)
    crtableLogoninfo = CrTable.LogOnInfo;
    crtableLogoninfo.ConnectionInfo = crConnectionInfo;
    CrTable.ApplyLogOnInfo(crtableLogoninfo);
    crystalReportViewer1.ReportSource = cryRpt;
    crystalReportViewer1.Refresh();
    Ref
    http://csharp.net-informations.com/crystal-reports/csharp-crystal-reports-dynamic-login.htm
    Mark as answer if you find it useful
    Shridhar J Joshi Thanks a lot

  • 'Database logon failed (LO 26603) - Please HELP ME!

    Hi everybody...
    i need your help for an authentication issue whit LIVE OFFICE connections from Xcelsius2008 to Crystal Report Server 2008.
    I've just connected other reports data in Xcelsius2008 but generating the SWF sometimes the SWFs can not logon and refresh the live office objects (ex. Crosstabs).
    The error message is the following:
    'Database logon failed (LO 26603)'
    During the SWF's generation in Xcelsius (Live Office), it requires me the authentication to Logon in the Database, if I insert the correct authentication, Xcelsius refreshes the data (downloaded by CRServer) but before that it shows the Preview, it requires the authentication for Crystal Report Server 2008;
    in this windows i select:
    Sys: ServerName
    User: Admin
    Password: Password
    Autentication: Enterprise
    After this step, for some SWFs the data are refreshed and it works correctly, other times it shows the same error: 'Database logon failed (LO 26603)'
    May you explain me why for some "live office connections" i have this problem and other times not?

    Hi
        There is a known issue  for live office database logon credentials in Xcelsius 2008 Release note document.
        "A Live Office-enabled SWF file using a Crystal Report that requires
    database logon credentials will fail to refresh. This occurs because the
    SWF file does not prompt the user for database logon credentials, even
    if required by the report.
        To ensure the data is refreshed properly, the SWF file and the Crystal
    Report must be saved to the same BusinessObjects Enterprise system.
    A BusinessObjects Enterprise administrator must then enter the report's
    database logon information in the Central Management Console so that
    credentials are not required when the report is refreshed."
      Woud you please check your LO and see whether it is the reason some work well and some not?
    BR,
    Sammi
    Edited by: Sammi Sun on May 7, 2009 8:02 AM

  • "Missing parameter values."  --  Export and Print only...

    I have a web application and I am using CrystalReportViewer.  I am passing several parameters to Crystal using: 
    report.SetParameterValue(field.Name, Session[field.Name]);
    I have session variables which will hold parameters needed to pass into the report.  The session variables are populated from controls on my webpage after an onclick event.  This even not only populates session, but also passes parameters to the report with the following code: 
    ReportDocument report = new ReportDocument();
    Session["MapPathName"] = "./Reporting/CaseStudy.rpt";
    report.FileName = Server.MapPath(Session["MapPathName"].ToString());
    ParameterFields fields = new CrystalDecisions.Shared.ParameterFields();
    fields = report.ParameterFields;
    foreach (ParameterField field in fields)
          report.SetParameterValue(field.Name, Session[field.Name]);
    CrystalReportViewer1.ReportSource = report;
    This works great for reporting and is very extensible.  However, when clicking on the "Print" or "Export" buttons on the toolbar I get "Missing parameter values."  I attempted to export manually in code using the .ExportToStream function but I still get the error, "Missing parameter values." 
    I received this error also in Refresh, Search, and Navigate functions.  This was corrected by calling a function that supplies the above code block to these functions.  However, I do not see any events for controlling the Print nor the Export events. 
    QUESTION: How can I print or export a report when passing parameters using CrystalReportViewer?  Thanks in advance!
    P.S. - Crystal Reports XI Release 2
    Edited by: KyleSavant on Jun 18, 2009 5:42 PM

    There are no Export or Print events accessible for the viewer
    Since it sounds like you are creating the reportdocument object in your click event, the settings on this object become out of scope on successive postbacks executed by other events.
    to get around this without major changes, you can place your "report" object in session in this event and retrieve it from session on successive postbacks.  This should solve your problems around navigation, printing and exporting.  What you will need to do is check if the session object exists (usually in page_load or page_initialze) and if so, retrieve it from session and bind it to the viewer's reportsource.  If the session object does not exist, then do nothing (ie you have not clicked your button yet that retrieves the parameter values from session and loads the report).  Also, in your click event you can check if the report session object exists and if so, remove it so that it can be re-created with your new parameter values (ie i'm assuming the only time you want to set parameter values is in this event).
    Dan

  • The report server has encountered a configuration error. Logon failed for the unattended execution account. (rsServerConfigurationError) Log on failed. Ensure the user name and password are correct. (rsLogonFailed) Logon failure: unknown user name or bad

    The report server has encountered a configuration error. Logon failed for the unattended execution account. (rsServerConfigurationError)
    Log on failed. Ensure the user name and password are correct. (rsLogonFailed)
    Logon failure: unknown user name or bad password 
    am using Windows integrated security,version of my sql server 2008R2
    I have go throgh the different articuls, they have given different answers,
    So any one give me the  exact soluction for this problem,
    Using service account then i will get the soluction or what?
    pls help me out it is urgent based.
    Regards
    Thanks!

    Hi Ychinnari,
    I have tested on my local environment and can reproduce the issue, as
    Vaishu00547 mentioned that the issue can be caused by the Execution Account you have configured in the Reporting Services Configuration Manager is not correct, Please update the Username and Password and restart the reporting services.
    Please also find more details information about when to use the execution account, if possible,please also not specify this account:
    This account is used under special circumstances when other sources of credentials are not available:
    When the report server connects to a data source that does not require credentials. Examples of data sources that might not require credentials include XML documents and some client-side database applications.
    When the report server connects to another server to retrieve external image files or other resources that are referenced in a report.
    Execution Account (SSRS Native Mode)
    If you still have any problem, please feel free to ask.
    Regards
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Crystal Report 10 and Visual Basic 6 - logon failed in crystal report viewe

    Guyz,.
    Report viewer is showing logon failed, pelase help me, i can able to view the data from rs1(recorset).
    please hellp me to fix this issue, i need to pass the sql query to my pre designed Crystal report which has all the field as same as SQL query.
    Please suggest me if any other alternate way to do this , my code is below.
    Environment : Crystal Report 10, Visual Basic 6
    cr_preview -> CrystalActiveXReportViewer
    RepName  -> Fiename and path of the Crystal report is designed from Crystal Report Designer.
    Function show_rep(Sql As String, RepName As String)
    Dim crystal As CRAXDRT.Application
    Dim report As New CRAXDRT.report
    Dim rs1 As New ADODB.Recordset
        If rs1.State Then rs1.Close
        rs1.Open Sql, cn, adOpenStatic, adLockReadOnly
        Set crystal = New CRAXDRT.Application
        Set report = crystal.OpenReport(RepName)
        report.DiscardSavedData
        report.Database.SetDataSource rs1
        'cr_preview.Refresh
        cr_preview.ReportSource = report
        cr_preview.Visible = True
        cr_preview.ViewReport
        Do While cr_preview.IsBusy
            DoEvents
        Loop
        cr_preview.Zoom 100
        If rs1.State Then rs1.Close
        Set rs1 = Nothing
    Set crystal = Nothing
    Set report = Nothing
    End Function

    Hi,
    Please refer to the link for the list of example, [click here|http://pscode.com/vb/scripts/BrowseCategoryOrSearchResults.asp?optSort=Alphabetical&lngWId=1&B1=QuickSearch&txtCriteria=crystalreport+10&blnWorldDropDownUsed=TRUE&txtMaxNumberOfEntriesPerPage=10&blnResetAllVariables=TRUE]
    Regards,
    Clint

  • "Failed to open midi support library". What is missing? And if so, how do I get it back? What to do?

    I own a new Macbook pro 15" quadcore with OS X Mountain Lion 10.8.4
    When trying to start software Reason 7 I only get the message "Failed to open midi support library".
    What is missing? And if so, how do I get it back? Reinstalling Mountain Lion did not solve anything.
    What may I do? Is there separate MIDI-drivers or else that Macbook needs to be running audio at all?
    My audiocard Apogee Duet 2 is´nt working well either and I cannot even open the MIDI-window in Mac,
    so that road is blocked. I´ve seen more ppl having problem but found no explaination.
    Some say to remove midi-drivers but that folder is empty (or hidden?) when opening.
    Also, Garage Band cannot open. It´s no problem with graphic apps, only with audio/midi.
    My 2011 Macbook pro13" with OS X Lion runs like a charm. So how can this be? It really puzzles my mind.
    Have thoughts on having OS X Lion on the new Mac as well but will not do it until I know where the real problem is.
    Hope there is an easy fix to it. Thanks in advance.

    When I use find file http://www.macupdate.com/app/mac/30073/find-file (which does tend to find files that "Finder" can't), it's not coming up with any other itunes library files that have been modified in the past week, which I know it would have been - unfortunately, I don't have a very recent backup of the hard drive.  It would be a few months old so it wouldn't have the complete library on it....any ideas?  I'm wondering if restarting the computer might help but have been afraid to do so in case it would make it harder to recover anything...I was looking at this thread https://discussions.apple.com/thread/4211589?start=0&tstart=0 in the hopes that it might have a helpful suggestion but it's definitely a different scenario.

  • Logon failed error : connection is OK in Designer but error in CR and CMC

    Hi,
    BOXI 3.1 SP3 installed
    Crystal Report 2008 SP3 installed.
    Windows 2003 R2 SP2 64 bits
    The data source location is SQL Server 2005 SP3/Windows 2003 R2 SP2 64 bits
    I defined a connection (OLEDB secured) and a universe which uses this connection. I export the universe to make it available.
    In Designer, everything works fine: i can access the data.
    In CR 2008, when i create the connection within Database expoert, i access the universe, select the fields but there is an error message 'logon failed" when i validate the choice.
    I have also made a test with an ODBC driver with no success.
    I have checked ODBC and MDAC version.
    Important to note: from CR, i can define datasource with ODBC/OLEDB driver directly from the SQL Server.
    The rror message occurs when i access the universe to access the DB.
    I have also made a test by applying CR 2008 SP4 but with no success.
    Please someone help me ? give me some suggestions ?
    Thanks in advance.
    Regards,
    Marc

    Thanks to CA Technologies Suppport !
    The password was containing a '='.
    I have removed it from the password and now it works fine.

  • The report server has encountered a configuration error. Logon failed for the unattended execution account. (rsServerConfigurationError) Log on failed. Ensure the user name and password are correct. (rsLogonFailed) The user name or password is incorrect

    I am able to run the report fine in BIDS in the preview window, and it deployes fine.  When it goes to view the report in the browser, I get the following error.  There is no domain, I am using a standalone computer with SQL Server and SSRS on
    this one machine.
    Can anyone point to where I might configure the permission it is looking for?  thanks!  Steven
    The report server has encountered a configuration error. Logon failed for the unattended execution account. (rsServerConfigurationError)
    Log on failed. Ensure the user name and password are correct. (rsLogonFailed)
    The user name or password is incorrect
    Steven DeSalvo

    Hi StevenDE2012,
    Based on the error message "The report server has encountered a configuration error. Logon failed for the unattended execution account. (rsServerConfigurationError)", it seems that the Unattended Execution Account settings in Reporting Services
    Configuration is not correct.
    Reporting Services provides a special account that is used for unattended report processing and for sending connection requests across the network. Unattended report processing refers to any report execution process that is triggered by an event rather than
    a user request. The report server uses the unattended report processing account to log on to the computer that hosts the external data source. This account is necessary because the credentials of the Report Server service account are never used to connect
    to other computers. To configure the account, please refer to the following steps:
    Start the Reporting Services Configuration tool and connect to the report server instance you want to configure.
    On the Execution Account page, select Specify an execution account.
    Type the account and password, retype the password, and then click Apply.
    In addition, please verify you have access to the Report Server database by following steps:
    Go to SQL Server Reporting Services Configuration Manager, make sure the configuration is correct.
    Go to Database, Verify that you can connect to the database.
    Make sure you are granted public and RSExecRole roles.
    Reference:
    Configure the Unattended Execution Account
    Configure a Report Server Database Connection
    If the problem is unresolved, i would appreciate it if you could give us detailed error log, it will help us move more quickly toward a solution.
    Thanks,
    Wendy Fu

  • Missing In and Out Parameter at index in procedure

    Hi,
    I am writing my select query on command on source tab, say
    select
    A as A,
    B as B
    from table
    I am writing insert query in command on source tab.
    insert into table(
    A,
    B
    values
    :A,
    :B
    It end with a error in target Missing In and Out Parameter at index 26
    All columns are in caps.
    Please help
    Regards,
    Prerna

    Hi,
    put a DECLARE step before all. After that under my opinion it's better to put a TO_CHAR().
    Try putting your variable in text mode and modify your filter into
    TO_CHAR(LAST_UPDATE_DATE,'YYYYMMDDHHMI') >= TO_CHAR(#PROJ.P_EXTRACT_FROM_TS,'YYYYMMDDHHMI')In your operator if you click on variable which value do you see?

  • GetPrevStepLog fails with missing parameter

    when trying to refresh a variable with this code
    SELECT '<%=odiRef.getPrevStepLog("MESSAGE")%>' FROM DUAL
    I get this error.
    com.sunopsis.sql.SnpsMissingParametersException: Missing parameter
    Any ideas?
    Message was edited by:
    gglova

    Hi Gglova,
    Trying to help you.
    Quick questions,
    1. Are you using this variable in a package?
    2. If so what are all the components are there in that package?
    3. In the package flow where this variable comes ( i mean whether its coming after any interface/procedure or as the first step)?
    Thanks,
    Guru.

  • "Program terminated in remote system NONE: Logon failed" when adding a new table

    Hello,
    I set up a replication flow from a SAP ERP 6.0 EHP7 with SAP ASE 16.0 source to SAP HANA 1.0 rev 82 target
    I am using a standalone SLT system NetWeaver 7.0 with DMIS 2011_1_731 (with SP 1 to 7).
    I have 100 tables to replicate.
    I succeeded to set up replication for 57 tables. These tables are replicating properly.
    Whenever I try to add a new one (with LTRC transaction, Data Provisioning -> Start Replication), the new table is marked as 'Failed' after a little while.
    When I press 'Show Error Log' button I got an obscure error message:
    "Program terminated in remote system NONE: Logon failed "
    I do not understand this message. I checked both on SAP ASE source and SAP HANA target. I am still able to connect against both source and target.
    Can you please tell how to troubleshoot this error.
    Thanks in advance,
    Christian

    First thank you for answering my questions. I really appreciate your answers.
    I rechecked the documentation.
    "Application Operations Guide SAP Landscape Transformation Replication Server Document Version: 2.3 – 2014-07-08"
    Page 29 - 30
    3.5.2.2 Data Transfer Jobs
    This section explains the relationship between the number of data transfer jobs and the number of available background work process.
    Data transfer and data transformation processing on SLT server system is accomplished by the background work processes of the underlying SAP NetWeaver ABAP application server. Each job occupies 1 background work process in the SAP LT Replication Server system. For each configuration, the parameter Data Transfer Jobs restricts the maximum number of data load job for each mass transfer ID (MT_ID). In total, a mass transfer ID (MT_ID) requires at least 4 background jobs to be available:
     One monitoring job (master job)
     One master controller job
     At least one data load job
     One additional job either for the migration objects definition, access plan calculation or to change configuration settings in the Configuration & Monitoring Dashboard
    Example
    If you set the parameter Data Transfer Jobs to 04 in a configuration “SCHEMA1”, a mass transfer ID 001 is assigned. As a result, the following jobs should be in the system:
    1 Master controller job: /1LT/IUC_REP_CNTR_001
     At most 4 parallel jobs for MT_ID 001: /1LT/IUC_LOAD_MT_001_001/~002/~003/~004
    When configuring your data load or replication scenario, consider the following:
     Do not define more data transfer jobs than the number of available application server background work processes. If all available background work processes are already occupied by jobs, any other job will have to wait until a free work process becomes available. This can lead to long wait times until a new activity (for example creating triggers) can start, and can also result in significantly increased latency times for data replication.
     The number of dialog work processes in the source system corresponds 1:1 with the number of data transfer jobs in the SAP LT Replication Server system.
     Besides the work processes allocated by the data transfer jobs you need to provide additional available work processes for controller and monitoring jobs, the migration objects definition, access plan calculation or to perform configuration changes, and so on.
    Sizing for SAP LT Replication Server involves determining how many work processes are required to perform the initial load of data into the target system within an acceptable timeframe, and accomplish the change capturing and the transfer of data changes to the target system within expected latency times.
    Ensure that you add enough additional work processes to allow other required SAP LT Replication Server jobs to run.
    Finally, you map the number of required application server work processes to their system resource consumption (CPU, memory, disc space) using the formulas provided by the SLT Sizing Guide.
    With the simple formula below, you can calculate the number of required application server work processes (WPs) on the SLT Server for each active SLT configuration.
    The number of required work processes can be determined by adding
     The Number of required data transfer jobs ,
     plus one background work process for Central Master (Monitoring) Job (only one per system!),
     plus one background work process for Master Controller Job,
     plus 3-5 additional empty background work processes (recommended per configuration),
     plus approx. 3 dialog work processes (recommended for each configuration).
    Note: A lack of available free application server work processes can negatively affect the data load or data replication processes.
    To summarize everything, the number of 'Data Transfer Jobs' must be set depending of the number of source tables, it is not the actual number of tables.
    Assume that for my 100 tables I use 10 'Data Transfer Jobs' :
    - The number of work processes on the SLT server would be 20. I took the simple formula of the documentation:
    10 data transfer jobs ,
    + 1 background work process for Central Master (Monitoring) Job (only one per system!),
    + 1 background work process for Master Controller Job,
    + 5 additional empty background work processes (recommended per configuration),
    + 3 dialog work processes (recommended for each configuration).
    - The number of dialog processes on the source server would be 10 ( equal to the number of 'Data Transfer Jobs')
    Am I correct ?
    Regards,
    Christian

  • Crystal report logon Failed Error

    Dear All
    We have installed BOBJ Edge 3.1 Server at Windows Server.
    We insalled Crystal Report 2008 at one of our Laptop.  (Client).
    When we tried to create a sample report,
    we selected a existing universe from the BOBJ Server.  When we selected it ask me for the server connection details. It connected and showed me the existing unverses.
    I selected say eFashion - and picked some fields and Click OK.
    Then it givs logon failed error.
    Can some one explian me where i am missing
    REgards,
    Venkat

    Hi Venkat,
    If the Universe is based off an ODBC connection, then the same ODBC connection (with the same name) needs to be present on the client machine too.
    So, like Don suggested, the client machine would need the same DB client too.
    Open the Universe in the Universe Designer. Go to File > Parameters > Edit. This is where you see all the connection information of the Universe.
    -Abhilash

Maybe you are looking for

  • When I plug phone into computer, Itunes wants me to restore (3GS OS4update)

    Since I updated to os4 my iphone has been terrible, It is slow, I keep getting the "Crash Tool" error when syncing and most troubling is not every time but frequently when I plug it in Itunes tells me I have to restore from backup or as a new phone.

  • Planned order - PR history

    Dear, I want to view the history of planned order -> PR. I want to check who convert Planned order to PR. does this tool exist in SAP. could someone teach me how to approach it. Thanks in advance Meng HM

  • Problem Creating a query for a hierarchical tree. [using connect by prior]

    Hi all, I have 2 tables. box (box_id, box_name) item(item_id, item_name, box_id) In a box there are several items. I want to create a hierachical tree to display items that are present in each box. LIKE: |---BOX1 | |----ITEM 1 | |----ITEM 2 | |---BOX

  • PDF Name in the Action Profile

    Hello, CL_CRM_DOCUMENTS->get_info i have try to use but not working. We have action profile to fire the smartform, later on it will convert as pdf & stores in the sap. do you guys know any function modules to get the pdf file name of the crmd_order.

  • Anyone Using Tweenlite?

    Hi, I've been using flash to build small websites and banners, mostly simple stuff, and I've been using tweenlite for my tweening.  What is the general opinion about tweenlite?  Is it a good idea to use it?  I find that it works for what I try to do,