BP Activity  Report- not active

Need to create a query to find ---BP  has no activities (incoming/outgoing calls ) in specific  period ( 30 days- later than). any help
thanks& regards

You may try to use this:
Select T0.CardCode, T0.CardName
From dbo.OCRD T0
Where T0.CardCode NOT in
(SELECT customer FROM OSCL WHERE DATEDIFF(DD,createDate, GetDate()) <= [%0\])
However the display by B1 would show wrong field name.  It is misleading although it works if you just input any number like 90 or 60.

Similar Messages

  • CDR report not working

    Hi,
    We have LYNC 2013 and Monitoring is enabled. the CDR report is not working. even User Activity summary for telconferencing and for audio, reports not working.
    Kindly suggest troubleshooting steps.
    Can we have any SQL query to fetch the report from database?
    Thanks
    jitender

    Hi Raju,
    From Monitoring server , CDR report is not working. Even "User Activity Report" not working and giving below error for "Telephony Conference" and as well for "A/V Conference"
    " No results match the report filters. Change the filter values and submit the query again."
    Thanks
    jitender

  • CreativeCloud App reports: "Not connected to Internet"

    Hi,
    We've just installed Creative Cloud to a Win7-64bit laptop.  Starting CC, it reports "Not connected to Internet" & won't allow login.
    Internet is definitely "connected" - no problems accessing any website (eg Google).
    Laptop is connected directly to ADSL Internet (no corporate settings/network/proxy involved).
    Very puzzled.  Can anyone help (please)??

    Moving this discussion to the Creative Cloud Download & Install forum.
    SimonKirkland please see Sign in, activation, or connection errors | CC, CS6, CS5.5 - http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html for information on how to resolve your current difficulties.

  • If image file not exist in image path crystal report not open and give me exception error problem

    Hi guys my code below show pictures for all employees
    code is working but i have proplem
    if image not exist in path
    crystal report not open and give me exception error image file not exist in path
    although the employee no found in database but if image not exist in path when loop crystal report will not open
    how to ignore image files not exist in path and open report this is actually what i need
    my code below as following
    DataTable dt = new DataTable();
    string connString = "data source=192.168.1.105; initial catalog=hrdata;uid=sa; password=1234";
    using (SqlConnection con = new SqlConnection(connString))
    con.Open();
    SqlCommand cmd = new SqlCommand("ViewEmployeeNoRall", con);
    cmd.CommandType = CommandType.StoredProcedure;
    SqlDataAdapter da = new SqlDataAdapter();
    da.SelectCommand = cmd;
    da.Fill(dt);
    foreach (DataRow dr in dt.Rows)
    FileStream fs = null;
    fs = new FileStream("\\\\192.168.1.105\\Personal Pictures\\" + dr[0] + ".jpg", FileMode.Open);
    BinaryReader br = new BinaryReader(fs);
    byte[] imgbyte = new byte[fs.Length + 1];
    imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length)));
    dr["Image"] = imgbyte;
    fs.Dispose();
    ReportDocument objRpt = new Reports.CrystalReportData2();
    objRpt.SetDataSource(dt);
    crystalReportViewer1.ReportSource = objRpt;
    crystalReportViewer1.Refresh();
    and exception error as below

    First: I created a New Column ("Image") in a datatable of the dataset and change the DataType to System.Byte()
    Second : Drag And drop this image Filed Where I want.
    private void LoadReport()
    frmCheckWeigher rpt = new frmCheckWeigher();
    CryRe_DailyBatch report = new CryRe_DailyBatch();
    DataSet1TableAdapters.DataTable_DailyBatch1TableAdapter ta = new CheckWeigherReportViewer.DataSet1TableAdapters.DataTable_DailyBatch1TableAdapter();
    DataSet1.DataTable_DailyBatch1DataTable table = ta.GetData(clsLogs.strStartDate_rpt, clsLogs.strBatchno_Rpt, clsLogs.cmdeviceid); // Data from Database
    DataTable dt = GetImageRow(table, "Footer.Jpg");
    report.SetDataSource(dt);
    crv1.ReportSource = report;
    crv1.Refresh();
    By this Function I merge My Image data into dataTable
    private DataTable GetImageRow(DataTable dt, string ImageName)
    try
    FileStream fs;
    BinaryReader br;
    if (File.Exists(AppDomain.CurrentDomain.BaseDirectory + ImageName))
    fs = new FileStream(AppDomain.CurrentDomain.BaseDirectory + ImageName, FileMode.Open);
    else
    // if photo does not exist show the nophoto.jpg file
    fs = new FileStream(AppDomain.CurrentDomain.BaseDirectory + ImageName, FileMode.Open);
    // initialise the binary reader from file streamobject
    br = new BinaryReader(fs);
    // define the byte array of filelength
    byte[] imgbyte = new byte[fs.Length + 1];
    // read the bytes from the binary reader
    imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length)));
    dt.Rows[0]["Image"] = imgbyte;
    br.Close();
    // close the binary reader
    fs.Close();
    // close the file stream
    catch (Exception ex)
    // error handling
    MessageBox.Show("Missing " + ImageName + "or nophoto.jpg in application folder");
    return dt;
    // Return Datatable After Image Row Insertion
    Mark as answer or vote as helpful if you find it useful | Ammar Zaied [MCP]

  • ISE 1.2 - Posture Detail Assessment - enforcement audit mode report not show status for non-compliant

    ISE 1.2 - Posture Detail Assessment - enforcement audit mode report not show status for non-compliant.
    - For old version 1.1.4 it can be reported for non-compliant, How can I generate report for this? 
    Thanks
    Kosin Usuwanthim

    It used to be in there (id 226635 is the last one with it); should I clean it up a bit and put it back with a bit more of a disclaimer?

  • SSRS report not displaying data in correct order

    Guys,
    I have a SSRS 2012 report not displaying returned records from SQL in the correct order.  Running the stored procedure in SSMS and supplying the parameter values returns the data correctly and running Query Designer in SSRS using the stored procedure
    on the dataset in question, likewise returns the data correctly.  Only when I run the actual report does the data display incorrectly(always last name order).  I've done similar reporting using very similar stored procedures and I've never had this
    problem.  Below is the stored procedure.  "@SortBy" is the parameter with the sorting value. 1=Due Date; 2=Denial Amt and 3=Last name and is passed by SSRS to SQL.  Wish I could supply screen shots.  
    Thanks for any help,
    Dave
    ALTER PROCEDURE [dbo].[RAC_PT_List]
    @Level as int,
    @SortBy as int,
    @PTLName as varchar(30) = NULL,
    @User as varchar(10) = NULL
    AS
    SELECT pat.headerID,
    pat.PT_LName + ', ' + pat.PT_FName AS PTName,
    pat.PT_AcctNo,
    rco.RCO_CLMREF,
    rco.RCO_AppealLevel,
    rco.RCO_LevelNo,
    rco.RCO_AuditorStatus,
    let.LET_DEN_DueDate,
    CONVERT(varchar(12),let.LET_DEN_DueDate) as DueDate,
    let.LET_DEN_Dollars,
    let.userID
    FROM Master_PT_List pat
    INNER JOIN Master_RCO_Work rco on RCO.PT_headerID = pat.headerID
    INNER JOIN Master_Letters let on LET.PT_headerID = pat.headerID
    WHERE (@PTLName IS NULL OR(pat.PT_LName LIKE + '%' + @PTLName + '%'))
    AND (rco.RCO_LevelNo = @Level)
    AND (let.userID = @User)
    --AND (rco.RCO_AuditorStatus <> 'Closed' and rco.RCO_AdminStatus <> 'Closed')
    ORDER BY 
    CASE WHEN @SortBy = '1' THEN LET_DEN_DueDate
    END
    DESC,
    CASE WHEN @SortBy = '2' THEN let.LET_DEN_Dollars
    END
    DESC,
    CASE WHEN @SortBy = '3' THEN pat.PT_LName
    END

    Hi DaveMac1960,
    According to your description, when you render data in report, you find it always shows the data with unexpected order. Right?
    In Reporting Services, if we don't set any sorting in tablix, it will order the data as your query in SSMS or Query Builder. In some scenario, for example, we add parent group for data rows, it will have the rows sort by the group on data field by default,
    and the "order by" in your query will be ignored. So please check the Sorting tab in Tablix Properties, in this scenario, we suggest you delete any sorting in the Sorting tab so that the "Order By" clause can work.
    Reference:
    Sort Data in a Data Region (Report Builder and SSRS)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • Purchase Analysis Report not shown.

    Hi,
        Iam using SAP B1-2005B,PL-40.but it do not show Purchase Analysis report(System report) so tell me what are the possible reasons for not showing report.please help me out.
    Regards
    Sudhir.
    Edited by: Philip Eller on Jun 27, 2008 9:49 AM

    Suda,
           I had already done Form settings for Purchasing A/P>Purchase Report.still the purchase analysis report not showing in Supplier- A/P Invoice,Purchase order,GRPO of any period and the fact is it shows reports of Purchase Analysis>Items or Sales empolyees.so please help me.
    Regards
    Sudhir Pawar.

  • Report not displaying data from one of the infoproviders

    Hi Experts,
    Issue: Report not displaying data from one of the infoproviders
    I have a report 'ReportA' which has multiprovider MP1 as the source.
    MP1 has two Infocubes IC1, IC2 in its design.
    Now, when i execute the report, data from IC1 is displayed. But no data from IC2 is displayed.
    Is there a setting i need to enable in MP1 ? or is there anything else that needs to be enabled ?
    Please reply.
    Regards,
    Suraj S Nair

    Hi All,
    When i display data directly from the multi provider, without any restrictions, i cannot view the data from infocube IC2.
    I feel its not an issue with the Query. It must be a problem with the setting in the Multiprovider MP1.
    Infocube IC2 is a copy of Infocube IC1. Multiprovider MP1 first only had IC1 in its design. It was recently IC2 was also included.
    I checked the Characteristics, all of them are assigned corectly.
    Now, this issue sure has something to do wiht the setting of Multiprovider or please correct me if wrong.
    Regards,
    Suraj S Nair

  • Report Not working in the Web Browser

    Hi ALL ,
    Am working on a item SKU report . The report is running fine in the BIDS but once i try to view the report in the WEB Browser
    tried both Mozilla and Internet Explorer no data is shows up .
    The report has 2 report filter one is on the service and the other one is the item sku its a multi - parameter  that contains
    a list of more than 6000 different SKU . Can the filter be the reason for the report not displaying in the web browser.
    If yes kindly advice me what the workaround for it .
    I tried having the filter in the  SQL main query but it was of no use no data it was showing after having the ssrs report filter
    at least right information its showing but in the BIDS not in the main web browser.
    Kindly Help
    Priya

    Hi Priya,
    According to the description, I understand that there are parameters (@SKU and @SKUlist) in the report, and SKUlist parameter is multi-value parameter. When selecting values of the SKU parameter, the parameter SKUlist will display corresponding values. In this
    case, you should create cascading parameters, right? And you use parameters to filter the report.
    Because the data of the report can be shown in the Business Intelligence Development Studio (BIDS) environment, the issue only occurs after deploying the report to report server. Based on my research, I think it may occur because of web browser issue. I have
    known you use Mozilla and Internet Explorer to view the report but there is still no data.
    In Reporting Services, not all report functionality is supported by all browsers. In this scenario, I suggest you considering the aspects of the setting or third party add-ons of Internet Explorer (IE). You can refer to the steps below:
    1. Click Tools -> Internet options.
    2. Switch to the Security tab, click Local intranet, and then select Default level.
    3. Switch to the Advanced tab, and click Restore advanced settings.
    4. Temporarily disable third party add-ons. For detailed steps, please see the link:
    http://windows.microsoft.com/en-IN/internet-explorer/manage-add-ons#ie=ie-10
    Reference:http://technet.microsoft.com/en-us/library/ms156511(v=sql.105).aspx
    Regards,
    Heidi Duan
    Heidi Duan
    TechNet Community Support

  • Report not displaying anything

    Hi Experts,
    Please advise why is dat the report not showing any values where as we have good amount of data in cube.
    CRM - BI.
    Cube: 0MKTG_C01
    report : 0MKTG_C01_Q7001
    Cube - Regular deltas uploaded.
    Cube has data.
    Report not showing any value.

    Check if there are Aggregates built on the cube and if so roll up has been done.
    regards,
    Rajendra

  • Report not show after submit query in parameter form

    Hi, anubody can help me with this
    report not show after click submit query button in parameter form

    To help you see what is happening, temporarily add DESNAME to your parameter screen. Make sure that DESNAME on the parameter screen has a value before you click the Submit Query button.
    If you are running the report with a local report service (running on your workstation), the value of desname should be the name of your default printer.
    If you are running the report on a network application server based report service you need to specify the name of a printer that is accessible to the server on which the report service is running. Make sure that it is specified in a way that the server can recognize it, e.g. \\printserver_01\HPLaserJ4210.
    Maybe this will help some.
    James K.

  • Report not opening in windows 8

    hello all,
    on some machines report not opening after windows 8 installed can anyone had this issue .
    Please help..
    Dilip Patil..

    Hi Dilip,
    Based on my understanding, you want to open reports on some machines which have Windows 8 installed, right?
    Regarding the issue, we couldn’t understand it clearly, and we would like to confirm something from you below:
    1. Which method have you tried to open reports, SSDT, report manger or another application?
    2. Have you installed SSRS on the machine which have Windows 8 installed? If so, have you checked if the version of SSRS is supported on Windows 8? 
    3. On which version of SSRS you create those reports? If those reports open with a higher version of SSRS, you should refer to this
    article to upgrade the reports firstly.
    So in your scenario, please provide more information about the issue then we can understand the issue clearly.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • Report not generating with blob

    SO I was trying to create a report to insert an image. I saw and followed the following resource: http://blogs.oracle.com/xmlpublisher/2006/05/inserting_blobs_into_your_repo.html
    In the template builder for MSWord, where I grab the XML data containing the Base64 code for the image, the output is all there. - so yes the actual query grabs the base 64 version of the image, as per http://sergekoganovitsch.wordpress.com/2009/05/02/blob-base64-encoding/
    Now the situation is there is a temporary table that stores all the fields, and the image, along with the apex session_id. So the report query looks like this:
    SELECT
          p.full_name
        , blob_to_clob_base64(p_photo => p.photo) photo
    FROM  profiles_tmp p
    WHERE p.session_id = :APP_SESSIONSo.. first to make sure it was all working properly, I created another report query specifying a specific session id in the where clause that I know contains a photo - all works fine. However, when I apply the layout to the query above, and test it - it comes out containing no pages. Even if I test it when going through the application where there would be a valid session id, still no pages.
    I have tried changing :APP_SESSION to v('APP_SESSION') and to_number(:APP_SESSION) to no avail.
    If i remove the image bit, and just have the field as <?PHOTO?> , it outputs the base64 contents fine - but obviously, I want the actual image in the report, not the base64 code.
    IF i open the pdf file in a text editor, I get the following:
    %PDF-1.4
    1 0 obj
    <<
    /Type /Catalog
    /Pages 3 0 R
    >>
    endobj
    2 0 obj
    <<
    /Type /Info
    /Producer (Oracle BI Publisher 10.1.3.4.1)
    >>
    endobj
    3 0 obj
    <<
    /Type /Pages
    /Kids [
    /Count 0
    >>
    endobj
    4 0 obj
    <<
    /ProcSet [ /PDF /Text ]
    >>
    endobj
    xref
    0 5
    0000000000 65535 f
    0000000010 00000 n
    0000000065 00000 n
    0000000147 00000 n
    0000000208 00000 n
    trailer
    <<
    /Size 5
    /Root 1 0 R
    /Info 2 0 R
    /ID [<e45d94e9f08bf009170c54aabd4c051c><e45d94e9f08bf009170c54aabd4c051c>]
    >>
    startxref
    258
    %%EOF
    <PRE>Servlet error: An exception occurred. The current application deployment descriptors do not allow for including it in this response. Please consult the application log for details.</PRE></BODY></HTML>The DBA enabled trace and I have that log file.. but don't really know what I am looking for :-/
    It doesnt really make much sense to me, since when running it in the application there is a valid session id and it doesnt work. but if i explicitly specify the session id in the report query it does work.
    Has anyone experienced said problem or can provide any useful guidance?
    Thanks,
    Trent

    Found out this was a limitation to do with apex <= 3.x .. see http://marcsewtz.blogspot.com/2008/06/one-question-about-pdf-printing-feature.html

  • What is happening when firefox reports (Not Responding)?

    More often than I'd like (at least a dozen times per day) Firefox goes non-responsive and reports (Not Responding) in the banner. (In fact it happened while I was trying to access this page!)
    Does mozilla have any tools/add-ons that I could install that Firefox could activate when this happens to try to diagnose the problem? i.e. when the banner is updated to display (Not Responding), could firefox also do things like:
    - ICMP ping the proxy server (if there is one) to see if it is a local network problem.
    - ICMP ping the destination website in question to check end-to-end network latency.
    - setup an HTTP connection (wget?) to the proxy server (if there is one) to see if the proxy server is the bottleneck?
    - setup an HHTP connection(wget?) to the destination website to measure the response time for a new connection?
    Etc.

    "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"<br />
    "Remove the Cookies" from sites that cause problems: Tools > Options > Privacy > Cookies: "Show Cookies"<br />
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    There is also security software (firewalls) that can cause such issues, so you may need to look there as well.

  • SSRS 2008 R2 Report parameters have default values and report not to auto run

    Hi, I am using SSRS 2008 R2 one of my requirements for a Report is all the parameters have default value and I do not want this report to auto run when users open this report. I can create a dummy hidden parameter to break the auto run for this
    report. But I am looking for solutions other than that.
    Thanks in advance..........
    Ione

    Hi lone,
    According to your description, you have a report with parameters. Now you want you report not to run automatically with your parameters default values. Right?
    In Reporting Service, if you have parameters with default values in your report, your report will always auto run with these default values. We can say these default values are used for report running initially. So for your requirement, if you really need
    to see your default value before the report running, the best workaround is set one more parameter to break the auto run like you have done. If you just want your report not to auto run, your can achieve it by removing those default values.
    Reference:
    Report Parameters (Report Builder and SSRS)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou (Pactera)

  • SSRS 2008 R2 Calendar Control not working and report not refreshing on pressing enter in Chrome.

    SSRS 2008 R2 Calendar Control not working and report not refreshing on pressing enter in Chrome.

    SSRS reports are always best viewed in IE and the report result what you see in IE always will not be same and consistent in thirdy party browswers.
    So consider using IE as workaround.
    Also please refer:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/2188de10-cff9-4e24-b14f-da5121f1c4a4/ssrs-calender-control-not-visible-in-chorme-on-server?forum=sqlreportingservices
    Workaround here:
    http://www.rajbandi.net/Fixing-SSRS-Report-Viewer-control-date-picker-in-Google-chrome/
    -Vaibhav Chaudhari

Maybe you are looking for

  • Restore from Tape Backup

    Hi All, Oracle Ver. 10.2.0.4 on Sun-Solaris 9. Need to do a restore and recover on the DR site using the tape backups from production site. The path and file names are same in both sites. In the DR site only the Oracle server software is installed. T

  • HT1918 itunes credit card info....

    i keep entering the correct security code on  my mastercard and it says it is invalid... help!!!

  • "itunes could not connect to the itunes store" on 3gs

    hi im haveing the same problem i got a replacement iphone 3gs 16gb from vodafone and i backed everything up so im trying to activate it andf it comes up with the message 'itune could not connect to the itunes store make sure network connection is act

  • Essbase External Security via Shared Services

    I have hit a problem with essbase external security via shared services, might be fairly trivial, first time doing this. In the install guide for essbase 9.3.1 it mentions not to use the user 'admin' when firing up essbase server console mode for the

  • BI Publisher Caching issues

    Hi Folks - I'm having trouble with a caching problem in BI Publisher. Recently on some reports, after refereshing data in the source database I retrieve results that are not consistent with the source data. The problem has manifested in a couple of d