Compare and adjaust configuartion for different Report Servers

Hi All,
in one OFM-environment (11.1.1.6.0), I need to find and adjust different configuartion between reports servers.
I can see in EM only ONE Report Server under asinst_1 and colud not find other Report Server (in-process-server). In addition, I can see both Reports Server with showjobs...
What is wrong and how can I solve that?
Regards,
Moh

Hi Moh,
check the following support note that I think will answer your question.
Reference
     Where is the in-process Reports Server in Fusion Middleware Control Site 11g? (Doc ID 862602.1)
Regards, RZ

Similar Messages

  • How many MDM certificates for different MDM servers can be generated under one  Apple Developers  Subscription

    Hello All
    Please say how many MDM certificates for different MDM servers can be generated under one Apple Developers Subscription?
    Thanks in advance

    So no Meraki MDM?
    Supports Multiple VPP accounts, completely free, fully encrypted, and quite secure.
    Otherwise, you might want to take a look at the mdm that Spiceworks has.

  • Define Logical Systems and Template Names for BW Reports

    Hi experts
    I would like to know if someone used the mentioned functionality 'Define Logical Systems and Template Names for BW Reports, I would like to know too IF I create a Z REPORT for example in webdynpro and insert it in this configuration it will work and where it will appear in sourcing cockpit?
    sds.
    Javier

    Hello Muthu,
    BW reports will be shown in SRM Box if the corresponding BW roles for SRM are integrated with SRM roles.
    You might to activate the corresponding datasource of this in SRM.
    And since you have to connect the source system to BW, I think you have to define SRM system as logical system in BW.
    Regards,
    Pavan

  • Design and Testing Suggestions for Different Screen Resolutions

    Intermediate Dreamweaver CS3 user, in need of "Design and Testing Suggestions for Different Screen Resolutions".
    Thank you, J. Chavez

    Adobe Browser Labb and BrowserShots.org

  • How to use different default parameter value for different report subscriptions

    In ssrs is it possible to define different default parameter values for different subscriptions? In the following example I have a report which has two subscriptions with different start date and end date values:
    Report name – Testsubscription.rdl
    Subscription-1
    Input parameter (default values):
    start_date = first day of current Month
    end_date = till date
    Subscription-2
    Input parameter (default values):
    start_date = first day of current Quarter
    end_date = till date
    I know an alternative way of doing this would be to copy the rdl file with a different name but I am curious whether this can be done within a single report definition file. I am using SQL Server 2008 R2 Standard Edition.
    Thanks!
    spp

    Hi sppdba,
    As per my understanding, there is a report with two parameter: start_date and end_date, you want to configure subscription for the report, and set different default values for start date and end date. And you want to know if it is possible to achieve you
    goal by using a single report definition file.
    Since you are using SQL Server 2008 R2 Standard Edition, we need to achieve your goal by configuring two subscriptions for the report. For detail information, please refer to the following steps:
      1. In design surface, right click start_date and open Parameter Properties dialog box.
      2. In General pane, type Name and Prompt, set Data Type to Date/Time.
      3. Click Available Values in left pane, select Specify Values.
      4. Click Add button, in Label text box, type “First day of Current Month”, click (fx) button in Value section, then type the expression like below:
    =DateSerial(Year(Now()), Month(Now()), 1)
      5. Click Add button, in Label text box, type “First day of Current Quarter”, click (fx) button in Value section, then type the expression like below, then click OK.
    =DateSerial(Year(Now()), (3*DatePart("q",Now()))-2, 1)
      6. Right click end_date and open Parameter Properties dialog box.
      7. In Available Values pane, select Specify Values.
      8. Click Add button, in Label text box, type “Today”, click (fx) button in Value section, then type the expression =Today(), then click OK.
    Now that the parameters are created, we need to configure subscription for the report. For detail information, please follow these steps:
      1. Open Report Manager, and locate the report for which you want to create a new subscription.
      2. Hover over the report, and click the drop-down arrow.
      3. In the drop-down menu, click Manage. This opens the General properties page for the report.
      4. Select the Subscriptions tab, and then click New Subscription.
      5. Select the delivery extension and data source for the subscription.
      6. Select a method of delivery, then choose report delivery options.
      7. Specify conditions that cause the subscription to process and delivery to occur.
      8. Set start_date to First day of Current Month, end_date to Today, then click OK.
      9. Create a new subscription as step4 to 7, set start_date to First day of Current Quarter, end_date to Today, then click OK.
    The following screenshots are for your reference:
    For detail information about Creating Standard Subscriptions, please refer to the following document:
    http://msdn.microsoft.com/en-us/data/ms156307(v=sql.105)
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu
    If you have any feedback on our support, please click
    here.

  • Reuse Crystal report Viewer For different reports - unload cache

    So I am migrating from crystal reports basic to crystal reports 2008. I have hit a stumbling block. Rather than have a new page and report viewer for each report I decided it would be easier to have one report viewer and send to it in session variables the report I wish to run and appropriate parameters. This seemed to work fine in CR basic.
    Now I have upgraded the viewer works fine for the first report I run however it then caches this report and doesn't seem to clear it down, if the new report has different parameters I will get a parameter error. If I run a report requiring the same parameters I will get the original report not an updated one.
    I believe I need to leave the CrystalReportSource cache on in order to page the report (correct me if I am wrong)
    I have taken a few snippets of code, is this possibly running too late in page life cycle have I missed something or is there a way to force a cache clear:
    protected override void OnLoad(EventArgs e) {
    //setup report in viewer with correct db logon
                    CrystalRepSource.Report.FileName = report;
                    SetupLogonInfo(CrystalRepSource);
                    //add parameters
                    AddParam(paramFields, pfItem1, dcItem1, "@year", year);
                    AddParam(paramFields, pfItem2, dcItem2, "@school", school);
                    AddParam(paramFields, pfItem3, dcItem3, "@division", division);
                    AddParam(paramFields, pfItem4, dcItem4, "@progArea", progArea);
                    AddParam(paramFields, pfItem5, dcItem5, "@type", SessionHandler.record_type);
                    AddParam(paramFields, pfItem6, dcItem6, "@filterText", "School = \'" + school +
                                                            "\' Division = \'" + division
                                                            + "\' Programme Area = \'" + progArea
                                                            + "\' Record Type = \'" + SessionHandler.record_type_text + "\'");
    CrystalViewer.ParameterFieldInfo = paramFields;
    private void SetupLogonInfo(CrystalReportSource CrystalRepSource)
            TableLogOnInfo logOnInfo = new TableLogOnInfo();
            logOnInfo = CrystalRepSource.ReportDocument.Database.Tables[0].LogOnInfo;
            ConnectionInfo connectionInfo = new ConnectionInfo();
            connectionInfo = logOnInfo.ConnectionInfo;
            connectionInfo.DatabaseName = Application["db"].ToString();
            connectionInfo.ServerName = Application["server"].ToString();
            connectionInfo.Password = Application["pass"].ToString();
            connectionInfo.UserID = Application["user"].ToString();
            CrystalRepSource.ReportDocument.Database.Tables[0].ApplyLogOnInfo(logOnInfo);
        private void AddParam(ParameterFields paramFields, ParameterField pfItem, ParameterDiscreteValue dcItem, string fieldName, string value)
            pfItem.ParameterFieldName = fieldName;
            dcItem.Value = value;
            pfItem.CurrentValues.Add(dcItem);
            paramFields.Add(pfItem);

    ok so I have tried changing the code to:
    CrystalRepSource.ReportDocument.SetParameterValue("@year", year);
                    CrystalRepSource.ReportDocument.SetParameterValue("@school", school);
                    CrystalRepSource.ReportDocument.SetParameterValue("@division", division);
                    CrystalRepSource.ReportDocument.SetParameterValue("@progArea", progArea);
                    CrystalRepSource.ReportDocument.SetParameterValue("@type", SessionHandler.record_type);
                    CrystalRepSource.ReportDocument.SetParameterValue("@filterText", "School = \'" + school +
                                                            "\' Division = \'" + division
                                                            + "\' Programme Area = \'" + progArea
                                                            + "\' Record Type = \'" + SessionHandler.record_type_text + "\'");
    private void Page_Unload(object sender, EventArgs e)
            try
                    CrystalRepSource.Report.DataSources.Clear();
                    CrystalRepSource.Report.Parameters.Clear();
                    //CrystalRepSource.ReportDocument.Close();
                    //CrystalRepSource.ReportDocument.Dispose();
                    CrystalRepSource.Dispose();
                    CrystalViewer.Dispose();
                    GC.Collect();
            catch { }
    I experimented with various bits in the page unload as you can see I have commented a bit out at present as it was throwing an exception. The SetParametersValue while handy (will clean the code up a bit) didn't make any difference I am still getting the same issue.

  • How to retrieve Min(startDate) and Max(endDate) for different groups of data? (sql server 2000)

    My sample dataset (below) contains 3 groups -- 'a', 'b', 'c'.  I need to retrieve the Min(startDate) and Max(EndDate) for each group so that the output looks something like this (date format not an issue):
    fk   minStart       maxEnd
    a    1/13/1985    12/31/2003
    b    2/14/1986    12/31/2003
    c    4/26/1987    12/31/2002
    What is the Tsql to perform this type of operation?  Note:  the actual data resides in a sql server 2000 DB.  If the Tsql is different between version 2000 and the later versions -- I would be grateful for both versions of the Tsql
    --I noticed that multiple lines of Insert values doesn't work in Sql Server 2000 -- this sample is in Sql Server 2008
    create table #tmp2(rowID int Identity(1,1), fk varchar(1), startDate datetime, endDate datetime)
    insert into #tmp2
    values
    ('a', '1/13/1985', '12/31/1999'),
    ('a', '3/17/1992', '12/31/1997'),
    ('a', '4/21/1987', '12/31/2003'),
    ('b', '2/14/1986', '12/31/2003'),
    ('b', '5/30/1993', '12/31/2001'),
    ('b', '6/15/1994', '12/31/2003'),
    ('b', '7/7/2001', '12/31/2003'),
    ('c', '4/26/1987', '12/31/1991'),
    ('c', '8/14/1992', '12/31/1998'),
    ('c', '9/10/1995', '12/31/2002'),
    ('c', '10/9/1996', '12/31/2000')
    Thanks
    Rich P

    Rich
    It is unclear what you are trying to achieve, you said that it is SQL Server 2000 but provide a sample data with SQL Server 2008 syntax
    Is it possible to use UNION ALL for your queries to make its one 
    select * from
    select * from #tmp2 t1 where exists
    (select * from (select top 1 * from #tmp2 t2 where t2.fk = t1.fk order by t2.startdate) x where x.rowID = t1.rowID)
    UNION ALL
    select * from #tmp2 t1 where exists
    (select * from (select top 1 * from #tmp2 t2 where t2.fk = t1.fk order by t2.Enddate desc) x where x.rowID = t1.rowID)
     as  der order by fk
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • OBIEE filter/criteria limit for AND/OR operations for a report

    Hi
    We have a report that has around twenty "OR" criterias and ten "AND" criterias. All the filters are logically correct but report is returning invalid data. However if we reduce some filters then report works fine.
    Any ideas of increasing filters limit for a report or reason of the issue.
    Umer

    Thanks Chaknor,
    The report i created would not result any error code/msg.
    The only reason i put question here is:
    My report has around 50 predicates and is returning data without any respect of the predicates i have applied. However if i reduce some predicates (says reduce them to 20) then my report results correct data.
    For the time i tried a work around and created two reports using half of the predicates in one and half in two. but i need everything in one single report.
    The most important thing is that when i execute report with 50 predicates, the query i get in NQquery log omits many predicates.
    Following is what i get in NQquery log
    After removing half of the filters from the report the where clause from the log is given below;
    WHERE ( t120650.patient_seq_num = t120867.patient_seq_num
    AND t120585.location_seq_num = t120738.location_seq_num
    AND t120585.visit_seq_num = t120650.visit_seq_num
    AND t120585.provider_seq_num = t120767.provider_seq_num
    AND t120650.procedure_seq_num = t121446.procedure_seq_num
    AND t120738.practice = 'MSP'
    AND t120800.plan_category = 'CORNEL IPA'
    AND CASE
    WHEN t120650.charge_seq_num = t120650.parent_seq_num
    THEN 'NO'
    ELSE 'YES'
    END = 'NO'
    AND t120767.provider <> 'SANDH,OLD'
    AND t120767.provider <> 'GRANSR,OLD'
    AND t120767.provider <> 'GRANATO,SR'
    AND t120767.provider <> 'SANDHAUS,J'
    AND t120767.provider <> 'AARONS,OLD'
    AND t120767.provider <> 'DYBNER,OLD'
    AND t120767.provider <> 'GRANJR,OLD'
    AND t120767.provider <> 'AAR-DYBNER'
    AND t120767.provider <> 'SUBIETAS,A'
    AND t120767.provider <> 'TILLEM,OLD'
    AND t120767.provider <> 'WEBER,OLD'
    AND t120767.provider <> 'WOLGEL,C'
    AND (t120800.insurance IN
    ('ACSHEALTHN', 'AETNA', 'CIGNA', 'HIPNY', 'NYBCEMP')
    AND ( t120800.insurance IN ('AETNA', 'HIPNY')
    OR t120585.visit_date >= TIMESTAMP '2010-04-20 00:00:00'
    AND ( t120800.insurance IN ('HIPNY')
    OR t120585.visit_date >= TIMESTAMP '2010-04-20 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-08-01 00:00:00'
    AND ( t120767.provider IN
    ('AARONSON', 'DYBNER,R', 'GRANATO,JR', 'TILLEM,S',
    'WEBER,M')
    OR t120800.insurance IN ('AETNA')
    OR t120585.visit_date >= TIMESTAMP '2010-04-20 00:00:00'
    AND ( t120800.insurance IN
    ('ACSHEALTHN', 'CIGNA', 'HIPNY', 'NYBCEMP')
    OR t120585.visit_date >= TIMESTAMP '2010-08-01 00:00:00'
    AND ( t120767.provider IN
    ('AARONSON', 'DYBNER,R', 'GRANATO,JR', 'TILLEM,S',
    'WEBER,M')
    OR t120800.insurance IN
    ('ACSHEALTHN', 'AETNA', 'CIGNA', 'NYBCEMP')
    AND ( t120767.provider IN
    ('AARONSON', 'DYBNER,R', 'GRANATO,JR', 'TILLEM,S',
    'WEBER,M')
    OR t120800.insurance IN ('ACSHEALTHN', 'CIGNA', 'NYBCEMP')
    OR t120585.visit_date >= TIMESTAMP '2010-08-01 00:00:00'
    AND ( t120767.provider IN
    ('DYBNER,R', 'GRANATO,JR', 'TILLEM,S', 'WEBER,M')
    OR t120800.insurance IN
    ('ACSHEALTHN', 'AETNA', 'CIGNA', 'NYBCEMP')
    OR t120585.visit_date >= TIMESTAMP '2010-04-01 00:00:00'
    AND ( t120767.provider IN
    ('DYBNER,R', 'GRANATO,JR', 'TILLEM,S', 'WEBER,M')
    OR t120800.insurance IN ('ACSHEALTHN', 'CIGNA', 'NYBCEMP')
    OR t120585.visit_date >= TIMESTAMP '2010-04-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-08-01 00:00:00'
    AND ( t120767.provider IN ('AARONSON', 'DYBNER,R')
    OR t120585.visit_date >= TIMESTAMP '2010-04-20 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-08-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2011-01-01 00:00:00'
    AND ( t120767.provider IN
    ('AARONSON', 'DYBNER,R', 'GRANATO,JR', 'TILLEM,S',
    'WEBER,M')
    OR t120585.visit_date >= TIMESTAMP '2010-04-20 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-08-01 00:00:00'
    AND ( t120767.provider IN ('DYBNER,R')
    OR t120585.visit_date >= TIMESTAMP '2010-04-20 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-04-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-08-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2011-01-01 00:00:00'
    AND ( t120767.provider IN
    ('DYBNER,R', 'GRANATO,JR', 'TILLEM,S', 'WEBER,M')
    OR t120585.visit_date >= TIMESTAMP '2010-04-20 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-04-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-08-01 00:00:00'
    AND ( t120767.provider IN ('AARONSON')
    OR t120585.visit_date >= TIMESTAMP '2010-04-20 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-08-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-10-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2011-01-01 00:00:00'
    AND ( t120767.provider IN ('GRANATO,JR', 'TILLEM,S', 'WEBER,M')
    OR t120585.visit_date >= TIMESTAMP '2010-04-20 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-04-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-08-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-10-01 00:00:00'
    AND ( t120767.provider IN
    ('AARONSON', 'GRANATO,JR', 'TILLEM,S', 'WEBER,M')
    OR t120585.visit_date >= TIMESTAMP '2010-04-20 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-08-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-10-01 00:00:00'
    AND ( t120585.visit_date >= TIMESTAMP '2010-04-20 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-04-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-08-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-10-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2011-01-01 00:00:00'
    AND ( t120767.provider IN ('AARONSON')
    OR t120800.insurance IN ('AETNA')
    OR t120585.visit_date >= TIMESTAMP '2010-04-20 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-10-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2011-01-01 00:00:00'
    AND ( t120800.insurance IN
    ('ACSHEALTHN', 'AETNA', 'CIGNA', 'NYBCEMP')
    OR t120585.visit_date >= TIMESTAMP '2010-04-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-10-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2011-01-01 00:00:00'
    AND ( t120767.provider IN ('AARONSON')
    OR t120800.insurance IN ('ACSHEALTHN', 'CIGNA', 'NYBCEMP')
    OR t120585.visit_date >= TIMESTAMP '2010-08-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-10-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2011-01-01 00:00:00'
    AND ( t120800.insurance IN ('ACSHEALTHN', 'CIGNA', 'NYBCEMP')
    OR t120585.visit_date >= TIMESTAMP '2010-04-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-08-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-10-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2011-01-01 00:00:00'
    AND ( t120767.provider IN ('DYBNER,R')
    OR t120800.insurance IN ('AETNA')
    OR t120585.visit_date >= TIMESTAMP '2010-04-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-04-20 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2011-01-01 00:00:00'
    AND ( t120800.insurance IN ('AETNA')
    OR t120585.visit_date >= TIMESTAMP '2010-04-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-04-20 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-10-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2011-01-01 00:00:00'
    AND ( t120767.provider IN ('DYBNER,R')
    OR t120800.insurance IN
    ('ACSHEALTHN', 'AETNA', 'CIGNA', 'NYBCEMP')
    OR t120585.visit_date >= TIMESTAMP '2010-04-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2011-01-01 00:00:00'
    AND ( t120767.provider IN ('AARONSON', 'DYBNER,R')
    OR t120800.insurance IN ('AETNA')
    OR t120585.visit_date >= TIMESTAMP '2010-04-20 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2011-01-01 00:00:00'
    AND ( t120767.provider IN ('AARONSON')
    OR t120800.insurance IN
    ('ACSHEALTHN', 'AETNA', 'CIGNA', 'NYBCEMP')
    OR t120585.visit_date >= TIMESTAMP '2010-10-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2011-01-01 00:00:00'
    AND ( t120767.provider IN ('AARONSON', 'DYBNER,R')
    OR t120800.insurance IN ('ACSHEALTHN', 'CIGNA', 'NYBCEMP')
    OR t120585.visit_date >= TIMESTAMP '2010-08-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2011-01-01 00:00:00'
    AND ( t120767.provider IN ('DYBNER,R')
    OR t120800.insurance IN ('ACSHEALTHN', 'CIGNA', 'NYBCEMP')
    OR t120585.visit_date >= TIMESTAMP '2010-04-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-08-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2011-01-01 00:00:00'
    AND ( t120767.provider IN
    ('DYBNER,R', 'GRANATO,JR', 'TILLEM,S', 'WEBER,M')
    OR t120800.insurance IN ('AETNA')
    OR t120585.visit_date >= TIMESTAMP '2010-04-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-04-20 00:00:00'
    AND ( t120767.provider IN
    ('AARONSON', 'GRANATO,JR', 'TILLEM,S', 'WEBER,M')
    OR t120800.insurance IN ('ACSHEALTHN', 'CIGNA', 'NYBCEMP')
    OR t120585.visit_date >= TIMESTAMP '2010-08-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-10-01 00:00:00'
    AND ( t120767.provider IN
    ('AARONSON', 'GRANATO,JR', 'TILLEM,S', 'WEBER,M')
    OR t120800.insurance IN
    ('ACSHEALTHN', 'AETNA', 'CIGNA', 'NYBCEMP')
    OR t120585.visit_date >= TIMESTAMP '2010-10-01 00:00:00'
    AND ( t120767.provider IN ('GRANATO,JR', 'TILLEM,S', 'WEBER,M')
    OR t120800.insurance IN
    ('ACSHEALTHN', 'AETNA', 'CIGNA', 'NYBCEMP')
    OR t120585.visit_date >= TIMESTAMP '2010-04-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-10-01 00:00:00'
    AND ( t120767.provider IN
    ('AARONSON', 'GRANATO,JR', 'TILLEM,S', 'WEBER,M')
    OR t120800.insurance IN ('AETNA')
    OR t120585.visit_date >= TIMESTAMP '2010-04-20 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-10-01 00:00:00'
    AND ( t120767.provider IN ('GRANATO,JR', 'TILLEM,S', 'WEBER,M')
    OR t120800.insurance IN ('ACSHEALTHN', 'CIGNA', 'NYBCEMP')
    OR t120585.visit_date >= TIMESTAMP '2010-04-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-08-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-10-01 00:00:00'
    AND ( t120767.provider IN ('AARONSON', 'DYBNER,R')
    OR t120800.insurance IN
    ('ACSHEALTHN', 'AETNA', 'CIGNA', 'NYBCEMP')
    OR t120585.visit_date >= TIMESTAMP '2011-01-01 00:00:00'
    AND ( t120767.provider IN ('GRANATO,JR', 'TILLEM,S', 'WEBER,M')
    OR t120800.insurance IN ('AETNA')
    OR t120585.visit_date >= TIMESTAMP '2010-04-01 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-04-20 00:00:00'
    OR t120585.visit_date >= TIMESTAMP '2010-10-01 00:00:00'
    AND t120767.provider <> 'WOLGEL,OLD'
    However when we increase the filters the where clause is truncated to;
    WHERE ( t120650.patient_seq_num = t120867.patient_seq_num
    AND t120585.location_seq_num = t120738.location_seq_num
    AND t120585.visit_seq_num = t120650.visit_seq_num
    AND t120585.provider_seq_num = t120767.provider_seq_num
    AND t120650.procedure_seq_num = t121446.procedure_seq_num
    AND t120738.practice = 'MSP'
    AND t120800.plan_category = 'CORNEL IPA'
    AND CASE
    WHEN t120650.charge_seq_num = t120650.parent_seq_num
    THEN 'NO'
    ELSE 'YES'
    END = 'NO'
    AND t120767.provider <> 'SANDH,OLD'
    AND t120767.provider <> 'GRANSR,OLD'
    AND t120767.provider <> 'GRANATO,SR'
    AND t120767.provider <> 'SANDHAUS,J'
    AND t120767.provider <> 'AARONS,OLD'
    AND t120767.provider <> 'DYBNER,OLD'
    AND t120767.provider <> 'GRANJR,OLD'
    AND t120767.provider <> 'AAR-DYBNER'
    AND t120767.provider <> 'SUBIETAS,A'
    AND t120767.provider <> 'TILLEM,OLD'
    AND t120767.provider <> 'WEBER,OLD'
    AND t120767.provider <> 'WOLGEL,C'
    Need help !

  • How to set SMB and FTP sharing for different users?

    In Tiger FTP and SMB sharing was different options with their own settings each other. In Leopard there if i enable user for sharing, it enables for all protocols together.
    Another problem. In file sharing i can add shared folder, but what's sens of it, if the whole filesystem is shared (at least FTP and AFP, not SMB, thanks god) and there's no way to remove this share. Just shortcut? How can i create ftp sharing, allowing user to see only his folder, not the whole filesystem?
    Any advices are pleased, except to get Leopard Server Thank you.

    OS X Client FTP implementation is not comprehensive at all. Apple does not make FTP serving a priority for OS X (on the general principle that it is not really necessary for most consumers). Thus, by default you can't enable/disable FTP for individual users. Nor can you create FTP only users.
    However, a useful product called [Pure-FTPd|http://www.pureftpd.org/project/pure-ftpd], provides the missing functionality for free to all UNIX based systems. Even better, [PureFTPd Manager|http://jeanmatthieu.free.fr/pureftpd> provides a GUI on OS X for managing it.
    This product is probably overkill for a single-user situation - but it is a great example of leveraging the UNIX platform of OS X to significantly enhance file sharing capabilities to server level.
    Cheers,
    Rodney

  • Having different ringtones and text alerts for different contacts

    Hi I've had Samsung phones for a while and have recently swapped to an iPhone.  Can you assign different ringtones and text alerts for contacts,  android have an app called ringolite - is there anything similar on App Store?? Many thanks

    You can make your own ringtones text tones from music read http://www.demogeek.com/2009/07/31/how-to-add-custom-ringtones-to-your-iphone/

  • P&L A/C and Balance sheet for segment reporting

    Hi
    I am using the ECC 6.00, segmental reporting functions
    I have one requirement is that
    Customer wants prepare the profit and loss account and balance sheet for each segments wise, 
    Please help me, How to prepare the segment wise profit and loss account and balance sheet
    Tarakesh

    Hi thanks for quick reply,
    segment is assigned in profit center masters, i prepare the account groups for profit center and setting like okb9 and 3keh.even though one segment have assigned to no of profit centers.when profit center and cost centers are hitted segment also hitting. based on the cost objects can i get the profit and loss account for segment?
    but my doubt is how the system know particular g l account have revenue account and expenses account relating to segment.
    we want to purly segement profit and loss account and balance sheet only to meet the AS-17
    thanks
    tarak

  • Compare and adjust functionality for Solution Directory

    Hello all,
    I am trying to use the Compare and Adjust function with a Solution Directory. There is a previous discussion about how to do this between a Master Template and Implementation Project. Now that the Solution Directory exists, I would like to do the same thing. I.e. take scenarios from the Solution Directory into individual projects to extend them before putting them back into production. Together with the check in/out function, I would like to use the Compare and Adjust (SA_PROJECT_UPGRADE) function to identify differences periodically. The button for this appears in the transaction SOLMAN_DIRECTORY, but I can't seem to activate it - i.e. it is faded out. For projects, you must first run SA_PROJECT_UPGRADE to activate this button. However, you cannot select a Solution when running the project upgrade transaction. Does anyone know how to do this? Is anyone using the Solution Directory in a similar way and have advice?
    Regards,
    Marcel

    Hi Marcel,
    Funnily enough I have the exact same question.
    Is there a way to compare changes between a maintenance project (business scenarios checked out this project) and the solution. This way the person approving the check in can see the changes before approving.
    Have you had further information on this?
    Referring back to your question, ideally once you've checked out a business scenario to a maintenance project you wouldn't continue to maintain it. It is the responsibility of that project to maintain it. In the meanwhile if you have a support issue that requires that business scenario to be updated, this will have to assessed and handled by either the project or the solution administrators.
    Cheers
    Ganesh

  • Need Users and ACL permission for KM Reports

    Hello Experts,
    Need you help for one requirement , in which i need to provide a list of users with ACL permission of each report from KM. There is huge amount of reports so it is quite time consuming to get each report open & to check the ACL and user from KM.
    It there is any thing , so that i can get the list of user with the ACL permission for each reports?
    Any help will be appreciated with points.
    Regards
    AK

    Hi AK,
        I misunderstood your query,if you just want to check the permission of all reports then you can use the default permission report available in the content Administration->KM Content->toolbox->reports->permission report.
    http://help.sap.com/saphelp_nw04/helpdata/en/fe/5290412facac5fe10000000a1550b0/frameset.htm
    If you could not find the report contact basis team to do the configuration
    http://help.sap.com/saphelp_nw04/helpdata/en/07/dad131443b314988eeece94506f861/frameset.htm
    Naga

  • Managing Shared iPads and iPod Touches for different Departments

    What would be the best way to manage multiple iPads used for different departments in an educational setting.  I work in an educational setting and have recently purchased three iPads and 5 iPod touches for the sharing of four different departments each having both common and  different uses and app desires?  What are some best practices for managing accounts and workflow? Ex;  Workflow for updating, syncing and maintenance?  What about credit card accounts, does each iPad profile need to have a credit card account attached to it?  What questions do we need to think in terms of creating a standard build without compromising the individual needs that each department may want to have on the iPads.  Any advice would really help?

    Hi Carolina,
    I too would love to know how to do this. I think you can manage multiple ipads/ipods from one computer, but don't know whether you can actually have different setups for apps on various ones.
    If you get any answers, would you please share with me?
    regards,
    Rob
    www.burnham.school.nz

  • JMS ReplyTo - RequestQ and ResponseQ are in different Managed Servers

    Hopefully this brief summary explains the issue:
    1) Two managed servers, ServerA and ServerB
    2) ServerA has JMSServerA with ResponseQ (hosted at t3:\\A)
    3) ServerB has JMSServerB with RequestQ (hosted at t3::\\B)
    a) Standalone JMS client sends message to ServerB RequestQ (t3:\\B) with replyTo field set to ResponseQ hosted by ServerA (t3:\\A)
    b) Standalone JMS consumer onMessage() recieves message, extracts replyTo field, uses its Session (that it created off a connection to JMSServerB (t3:\\B), not t3::\\A)
    and so when the replyTo message is sent, i.e.
    producer = session.createProducer( replyToDestination); // session is created from a connection to B, not A
    producer.send( replyMessage )
    an exception is generated that says "no available router to destination, . . . "
    How is the connection info supposed to be avail to consumer to know how to create a session on a connection to A so that the replyTo destination hosted by A is reachable?
    (t3:\\A and t3::\B are notional so you get the idea that different physical connections are being used)
    thanks for any insight
    -mike

    Hi Mike,
    It is generally a good goal to try and design applications to be made stateless, so that responses can be processed by any JVM.
    Alternatively, if the response message is ephemeral -- only needed for the life of the client JVM - then I would consider using dynamically created JMS temporary queues instead of configured queues, with each client JVM creating a temporary queue when it starts.
    Finally, if the responses must be long-lived, and your app can't be stateless, then, in general the easiest approach with a simple distributed response queue is to change the application to create consumers on each member. You can try the co-location approach that you mentioned if its known the app will always be running co-located with the distributed destination member that it works with - this type of approach tends to be incompatible with "service migration" style HA.
    Hope this helps,
    Tom

Maybe you are looking for

  • When I try to verify my apple id, it says my email is already verified to a different appleid- but I just got it

    need help= when I try to verify my apple id, I use my email address with frontier, it says that the email address is already verified to an appleid- but I just created this on on my new i-phone

  • Business Object Modeler Question

    Hi Experts, I'm new to CE and currently trying to figure out what can I do with it? Assume that I'm planning to create an application to follow activities that our consultants doing. For this, we're planning to use Local Portal Database to store data

  • Why does my MacBook Pro go to a blue screen?

    Hi there. Has anyone experienced their MacBook Pro randomly going blank or to a blue screen in the middle of working? It is random and i cannot repeat the steps, but the most recent time, I was in Safari, working on a WordPress template and my screen

  • Problems with the Latitude APP

    My wife and I have each other set up for tracking and about 2 months ago I was able to track her progress driving accross country with little lag and very accurate results.  Nothing has changes and recently her location remains in the same location f

  • Can`t get rid of "Launcher" bar on bottom of my home page.

    I have Google as my home page. The one with only the search text bar with Firefox logo above it. Nice and clean. Now I keep getting what is called a 'launcher' toolbar on my Google home page and I would like to get rid of it. I found by right-clickin