Schedule_ship_date not to sat ,sun (Holiday) in report in oracle

Hi All,
I have the below query in which the column (ool.schedule_ship_date - (DECODE(planning_make_buy_code,2,NVL(ceil(POSTPROCESSING_LEAD_TIME) ,0) + ceil(NVL(FIXED_LEAD_TIME,0)),ceil(NVL(FIXED_LEAD_TIME,0))+ ceil(NVL(VARIABLE_LEAD_TIME,0)))) schedule_postprocesing) gives the details of schedule date but the requirement is the it will not take the holiday(Means sat, sun) in the report.
Could you please help me how to modify this column so that it will not include the sat,sun dates.
{SELECT NULL,--pa.segment1 project_number,
  ooh.order_number,
  ool.line_number
  ||'.'
  ||ool.shipment_number line_num,
  ool.schedule_ship_date,
  ool.request_date,
  NVL(ool.ordered_quantity,0) - NVL(ool.cancelled_quantity,0) ext_qty ,
  ool.ordered_quantity,
  ool.schedule_ship_date,
  ool.inventory_item_id,
  ool.ship_from_org_id,
  NULL,--  pa.project_id,
  ool.header_id,
  ool.line_id,
  ooh.attribute1,
  fnd.meaning Pegging_Level,
  DECODE(planning_make_buy_code,2,NVL(ceil(POSTPROCESSING_LEAD_TIME) ,0) + ceil(NVL(FIXED_LEAD_TIME,0)),ceil(NVL(FIXED_LEAD_TIME,0))+ ceil(NVL(VARIABLE_LEAD_TIME,0))) lead_times,
  ool.schedule_ship_date                                                 - (DECODE(planning_make_buy_code,2,NVL(ceil(POSTPROCESSING_LEAD_TIME) ,0) + ceil(NVL(FIXED_LEAD_TIME,0)),ceil(NVL(FIXED_LEAD_TIME,0))+ ceil(NVL(VARIABLE_LEAD_TIME,0)))) schedule_postprocesing
FROM oe_order_headers ooh,
  oe_order_lines ool,
  --  pa_projects pa,
  mtl_system_items_b msi,
  fnd_lookups fnd
WHERE 1           = 1
AND ooh.header_id = ool.header_id
  --  AND ool.project_id = pa.project_id
AND DECODE(msi.end_assembly_pegging_flag,'I','Y','X','Y','N') <> 'Y'
AND NVL(ool.cancelled_flag,'N')                                = 'N'
AND NVL (ooh.open_flag, 'Y')                                   = 'Y'
AND ool.inventory_item_id                                      = msi.inventory_item_id
AND ool.ship_from_org_id                                       = msi.organization_id
AND ooh.order_number                                           = NVL(:P_SALES_ORDER_NO,ooh.order_number)
AND ool.line_number                                            = NVL(:P_LINE_NO,ool.line_number)
AND fnd.lookup_code                                            =msi.end_assembly_pegging_flag
AND fnd.lookup_type                                            ='ASSEMBLY_PEGGING_CODE'
AND ool.project_id                                            IS NULL;
}

1) The query does not run. Please run it yourself before posting a question.
2) You seem to be simply adding variable_lead_time in your calculations. Is your order quantity always 1? If not, you need to multiple the variable lead time by the quantity.
3) When posting query, use the tag to make it readable.
4) Remove unnecessary columns /clauses /comments from the query before posting.  e.g. in your select, leave in only the lead time related columns
5) Does your client use pre-processing lead time?  If they do, you may have to include it as well.
6) Typically, the supplier lead time is given in calendar days for purchased items.  Why would you treat it differently?
And finally the probable answer to your question
Say you have a scheduled_ship_date of 15th Mar and your lead time calculations come out to be 20 days.  As you mentioned, you would like to back up 20 work days from Mar 15.
Here is what you do:
Identify the calendar to use (most likely from mtl_parameters.calendar_code)
Find the sequence number for 15th Mar from bom_calendar_dates for that calendar code.
Substract the 20 from the sequence number.
Identify the date from bom_calendar_dates for that new sequence number.
That is your answer.
Sandeep Gandhi                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Similar Messages

  • Schedule_ship_date not to sat , sun in report in oracle

    Hi All,
    I have the below query in which the column (ool.schedule_ship_date - (DECODE(planning_make_buy_code,2,NVL(ceil(POSTPROCESSING_LEAD_TIME) ,0) + ceil(NVL(FIXED_LEAD_TIME,0)),ceil(NVL(FIXED_LEAD_TIME,0))+ ceil(NVL(VARIABLE_LEAD_TIME,0)))) schedule_postprocesing) gives the details of schedule date but the requirement is the it will not take the holiday(Means sat, sun) in the report.
    Could you please help me how to modify this column so that it will not include the sat,sun dates.
    {SELECT NULL,--pa.segment1 project_number,
    ooh.order_number,
    ool.line_number
    ||'.'
    ||ool.shipment_number line_num,
    ool.schedule_ship_date,
    ool.request_date,
    NVL(ool.ordered_quantity,0) - NVL(ool.cancelled_quantity,0) ext_qty ,
    ool.ordered_quantity,
    ool.schedule_ship_date,
    ool.inventory_item_id,
    ool.ship_from_org_id,
    NULL,-- pa.project_id,
    ool.header_id,
    ool.line_id,
    ooh.attribute1,
    fnd.meaning Pegging_Level,
    DECODE(planning_make_buy_code,2,NVL(ceil(POSTPROCESSING_LEAD_TIME) ,0) + ceil(NVL(FIXED_LEAD_TIME,0)),ceil(NVL(FIXED_LEAD_TIME,0))+ ceil(NVL(VARIABLE_LEAD_TIME,0))) lead_times,
    ool.schedule_ship_date - (DECODE(planning_make_buy_code,2,NVL(ceil(POSTPROCESSING_LEAD_TIME) ,0) + ceil(NVL(FIXED_LEAD_TIME,0)),ceil(NVL(FIXED_LEAD_TIME,0))+ ceil(NVL(VARIABLE_LEAD_TIME,0)))) schedule_postprocesing
    FROM oe_order_headers ooh,
    oe_order_lines ool,
    -- pa_projects pa,
    mtl_system_items_b msi,
    fnd_lookups fnd
    WHERE 1 = 1
    AND ooh.header_id = ool.header_id
    -- AND ool.project_id = pa.project_id
    AND DECODE(msi.end_assembly_pegging_flag,'I','Y','X','Y','N') 'Y'
    AND NVL(ool.cancelled_flag,'N') = 'N'
    AND NVL (ooh.open_flag, 'Y') = 'Y'
    AND ool.inventory_item_id = msi.inventory_item_id
    AND ool.ship_from_org_id = msi.organization_id
    AND ooh.order_number = NVL(:P_SALES_ORDER_NO,ooh.order_number)
    AND ool.line_number = NVL(:P_LINE_NO,ool.line_number)
    AND fnd.lookup_code =msi.end_assembly_pegging_flag
    AND fnd.lookup_type ='ASSEMBLY_PEGGING_CODE'
    AND ool.project_id IS NULL;
    }

    Hi,
    I have added the same but it is not working as my ool.schedule_ship_date='20-Mar-2012' but due to POSTPROCESSING_LEAD_TIME=3 for one item so the date if we will not take saturday & sunday then it has to show the calculated value='15-Mar-2012' But instead of this it is showing '17-Mar-2012'. Please advise.
    {SELECT NULL,--pa.segment1 project_number,
      ooh.order_number,
      ool.line_number
      ||'.'
      ||ool.shipment_number line_num,
      ool.schedule_ship_date,
      ool.request_date,
      NVL(ool.ordered_quantity,0) - NVL(ool.cancelled_quantity,0) ext_qty ,
      ool.ordered_quantity,
      ool.schedule_ship_date,
      ool.inventory_item_id,
      ool.ship_from_org_id,
      NULL,--  pa.project_id,
      ool.header_id,
      ool.line_id,
      ooh.attribute1,
      fnd.meaning Pegging_Level,
      DECODE(planning_make_buy_code,2,NVL(ceil(POSTPROCESSING_LEAD_TIME) ,0) + ceil(NVL(FIXED_LEAD_TIME,0)),ceil(NVL(FIXED_LEAD_TIME,0))+ ceil(NVL(VARIABLE_LEAD_TIME,0))) lead_times,
      ool.schedule_ship_date                                                 - (DECODE(planning_make_buy_code,2,NVL(ceil(POSTPROCESSING_LEAD_TIME) ,0) + ceil(NVL(FIXED_LEAD_TIME,0)),ceil(NVL(FIXED_LEAD_TIME,0))+ ceil(NVL(VARIABLE_LEAD_TIME,0)))) schedule_postprocesing
    FROM oe_order_headers ooh,
      oe_order_lines ool,
      --  pa_projects pa,
      mtl_system_items_b msi,
      fnd_lookups fnd
    WHERE 1           = 1
    AND ooh.header_id = ool.header_id
      --  AND ool.project_id = pa.project_id
    AND DECODE(msi.end_assembly_pegging_flag,'I','Y','X','Y','N') <> 'Y'
    AND NVL(ool.cancelled_flag,'N')                                = 'N'
    AND NVL (ooh.open_flag, 'Y')                                   = 'Y'
    AND ool.inventory_item_id                                      = msi.inventory_item_id
    AND ool.ship_from_org_id                                       = msi.organization_id
    AND ooh.order_number                                           = NVL(:P_SALES_ORDER_NO,ooh.order_number)
    AND ool.line_number                                            = NVL(:P_LINE_NO,ool.line_number)
    AND fnd.lookup_code                                            =msi.end_assembly_pegging_flag
    AND fnd.lookup_type                                            ='ASSEMBLY_PEGGING_CODE'
    AND to_char(ool.schedule_ship_date,'Day','nls_date_language=english') not in ('Saturday','Sunday')
    AND ool.project_id                                            IS NULL;}

  • How to configu alternative sat,sun holidays

    hi to all,
    i have one question on time management..
    my client wants in a month every alternative sat and sun day must be a holidy..
    like out of 4sat,4sun days i need 2sat, 2sunday must be a hoilday that to it must be alter native...
    how to set in the workshucdule..
    ples

    Hi,
    You can configure this, through periodic work schedule.
    like first week
    Mon - GEN work schedule
    Tue - GEN work schedule
    Wed -GEN
    Thu- GEN
    Fri - GEN
    Sat - GEN
    Sun - OFF work schedule
    Mon - GEN work schedule
    Tue - GEN work schedule
    Wed -GEN
    Thu- GEN
    Fri - GEN
    Sat - OFF
    Sun-OFF
    Please reward points if it is useful to you.
    Regards
    Venu

  • Deploy forms and reports on Oracle Application Server 10gR3 10.1.3 .1.0 on

    hello and hi alls,
    I and two tire method , one for database and one for application server. i connect to databse ,but am i does not unserstand how deploy forms and reports on Oracle Application Server 10gR3 10.1.3 .1.0 ,pls
    help me
    Reagrd
    Mahr Haider Iqbal
    Functional & Technical Consultant

    Hi,
    Well you just need to create a directory in paste your forms there, and then make an entry in the formsweb.cfg file and forms.conf files. Likewise there are entries for the images and report.
    http://download.oracle.com/docs/cd/B28638_01//doc/frs/forms/B14032_03/basics002.htm
    regards

  • Linux Issue  - Could not initialize class sun.print.CUPSPrinter

    Afternoon All,
    I am using the latest CR4Ev2.
    Java 1.6 (Am very sure but will double check)
    My Windows enviroment is all working perfectly and so have moved my application over to a Linux setup.
    After solving all my case-sensitivity issues I have managed to get my reports almost working. (I hope almost)
    When the following code is run:
    reportClientDocument = new ReportClientDocument();
    reportClientDocument.setReportAppServer(ReportClientDocument.inprocConnectionString);
    reportClientDocument.open(reportFilePath,OpenReportOptions._openAsReadOnly);
    I get the below error messages in my logging.
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: Could not initialize class sun.print.CUPSPrinter---- Error code:-2147467259 Error code name:failed
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.<init>(SourceFile:286)
         at com.businessobjects.sdk.erom.jrc.a.<init>(SourceFile:43)
         at com.businessobjects.sdk.erom.jrc.ReportAgentFactory.createAgent(SourceFile:46)
         at com.crystaldecisions.proxy.remoteagent.RemoteAgent$a.<init>(SourceFile:703)
         at com.crystaldecisions.proxy.remoteagent.RemoteAgent.a(SourceFile:662)
         at com.crystaldecisions.proxy.remoteagent.RemoteAgent.a(SourceFile:632)
         at com.crystaldecisions.sdk.occa.report.application.ClientDocument.if(SourceFile:504)
         at com.crystaldecisions.sdk.occa.report.application.ClientDocument.open(SourceFile:669)
    Now it could just be as simple as we dont have a printer setup on that box.
    Is this a definate requirement. Does the server have to have a printer setup, even if we are only exporting to PDF files.
    I am still doing some testing and since it is the first time getting this far on Linux it might be mistakes on my side,
    but thought I would ask the wide world and see what replies I get back.
    Cheers
    Darren
    Edited by: Darren Jackson on Mar 10, 2010 11:12 AM
    Sorry for the bump but wanted to change the subject to something more enticing

    After many many hours of reading and pulling my hair out I have found a solution to my problem,
    Whether it is a valid solution or a workaround or a cheat I am hoping someone can tell me.
    If I run my application with the switch
    java -jar -Djava.awt.headless=true MyApp.jar
    It works.
    Now I am still doing some investigation on what exactly this headless switch is doing. But it works so I am happy.
    If anyone can give me a technical and or a laymans explanation that would be great.
    All I have to do now is solve my Font issue
    Cheers
    Darren

  • Urgent: Removal of sat/sun days from the sql date query

    Hi All,
    I have a date field in my database table and I would like to get the details from the db table for the condition (SYSDATE - I/PDATE)< 2 i.e I need all the details which are 2 days old. But with this condition I would like to exclude the saturdays and sundays.
    Say if I am running this query on wednesday then it returns me the details for sat/sun which I do not want. It sould return me the thursday and friday details.
    My question can we this in SQL??? Can anybody help me??
    Thanks and regards,
    Kshitij

    refer to http://technet.oracle.com:89/ubb/Forum88/HTML/002539.html

  • 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]

  • Embedded BI publisher in 8.98 tools -  Not able to generate a BIP report

    Hi gurus,
    I'm using JdE stand-alone with tools 8.98
    I'm trying to use the embedded reporting solution of BI publisher on tools 8.98. I follow all the steps below, but when I submit I'm not getting any error, but I'm not getting any result. I'm not able to see any formatted document generated, and I'm not getting any output in the "Report Definition Jobs" Section.
    Any clue? Should I set up something else, apart of the steps taken below?
    1. Use Oracle’s BI Publisher Template Builder, Microsoft Excel, Microsoft Word, or Adobe Acrobat to
    create a blank template file.
    2. Add an object to the BI Publisher Object Repository (P95600), using the template name for the
    object name.
    3. Create a report definition in the JD Edwards BI Publisher Report Definition application (P95620),
    associating the source batch application (UBE) and the template.
    4. Submit the report definition to generate an XML data file.
    5. Download the XML data and design the template in the desktop application that you used to create the
    template.
    6. Update the report definition in the BI Publisher Report Definitions application, defining criteria such
    as output types, bursting, and delivery options.
    7. Upload the completed template into BI Publisher Object Repository.
    8. Submit the report definition to BI Publisher.
    9. Use Report Definition Jobs (P95630) to access the submission
    Thanks

    Please see these docs.
    'Report Cannot Be Rendered Because Of An Error - Unexpected element:report' When Using Firefox [ID 605403.1]
    Troubleshooting Oracle BI Publisher Enterprise and XML Publisher Enterprise [ID 412232.1]
    BI Publisher Error On Report Access : java.lang.NoClassDefFoundError [ID 1083315.1]
    BI PUBLISHER DATA TEMPLATE ISSUE RETRIEVING LARGE VARCHAR COLUMNS [ID 960838.1]
    XML-21028 Access Not Allowed While Generating Output With BI Publisher [ID 458161.1]
    Thanks,
    Hussein

  • Import netscape.ldap.* ; is it not supported in Sun one LDAP server

    import netscape.ldap.*;
    is the above line not supported n Sun One LDAP directory Server
    if that is the case what should i do
    wenever i compile my code the error tat comes up is : package netscap.ladp does not exists
    need help immediately
    my code is as follows
    import netscape.ldap.*;
    import java.util.*;
    * Simple search program to experiment with filters
    public class SearchFilter {
    * Do a subtree search using a specified filter
    * @parm args host, port, authDN, password, baseDN, filter
    public static void main(String[] args) {
    if (args.length != 6) {
    System.out.println("Usage: java FilterSearch " + "<host> <port> " + "<authdn> <password> " + "<baseDN> <filter>");
    System.out.println("Example:");
    System.out.println(" java FilterSearch " + "localhost 389 " + "\"\" \"\" " + "\"o=airius.com\" " + "\"(|(cn=sam*)(cn=b*))\"");
    System.exit(1);
    }

    Couldn't you download the netscape.ldap package (iPlanet LDAP SDK) and put its jars in your app classpath?
    The suggested way to replace netscape.ldap package is to use only JNDI calls, but maybe they can not fulfill all your needs.
    By the way, you can get the source code for that package in Mozilla.org site.
    (Note: if you are using Netscape LDAP SDK for parsing/generating ASN.1 streams including X.509 certificates, try using BouncyCastle instead of netscape.ldap.ber.stream package - I had to modify several classes from Netscape's package that is not meant to handle certificates, but LDAP streams...)

  • SSRS in SharePoint Mode: Reporting Services scale-out deployment is not supported in this edition of Reporting Services [not true]

    Hello,
    We are experiencing some issues with SharePoint 2013 which is driving me insane.
    We have a deployment with two SQL Servers (HA groups) and four SharePoint servers: 2 Application servers, and 2 Web FrontEnd servers.
    We installed SSRS for SharePoint in both application servers. The disc I have used is the MSDN image of SQL Enterprise 2012 w/ SP2.
    ISO name: en_sql_server_2012_enterprise_edition_with_service_pack_2_x64_dvd_4685849.iso
    MD5: 003e14c55fa648ad15f8be1e2439bd06
    The installation completes without any problems. We can start the SSRS SharePoint Service in the first application server without any issues. However when we try to start the second one, we get the following error:
    Reporting Services scale-out deployment is not supported in this edition of Reporting Services. This edition only supports one instance of the sql reporting services service in the farm. The SQL Server Reporting Services cannot be started on
    this server unless it is stopped on all other servers in the farm.
    Now I am at a loss here. As I mentioned, we have used an image of SQL Server Enterprise. This is the same image we used on other environment, which worked as expected (we got no such error).
    I have included the text related to the correlation error from the SP logs below.
    Has anyone ever seen this issue before? Very, very strange!
    Regards,
    P.
    01/29/2015 14:13:26.22 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Logging Correlation Data xmnv Medium Name=Request (POST:http://spap-01:5555/_admin/Server.aspx?ServerId=7f7d5eec-3791-44cf-a992-673eaea90f48) 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.22 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Authentication Authorization agb9s Medium Non-OAuth request. IsAuthenticated=True, UserIdentityName=, ClaimsCount=0 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.22 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Logging Correlation Data xmnv Medium Site=/ 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.22 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (PostAuthenticateRequestHandler). Execution Time=9.742 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.28 w3wp.exe (0x0B94) 0x294C SharePoint Foundation General 6t8h High [Forced due to logging gap, cached @ 01/29/2015 14:13:26.23, Original Level: Verbose] {0} 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.28 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Web Controls 88wu High [Forced due to logging gap, Original Level: Verbose] SPGridView.OnRowCreated() - Row.RowType={0}, .RowState={1}, .RowIndex={2}, .DataItemIndex={3} 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.37 w3wp.exe (0x0B94) 0x294C SharePoint Foundation General af4yd High [Forced due to logging gap, cached @ 01/29/2015 14:13:26.28, Original Level: Verbose] TenantAppEtag record requested but there is no sitesubscription or tenantId for site {0} so we will use the WebApp Id for the cache. 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.37 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Asp Runtime aj1kp High [Forced due to logging gap, Original Level: Verbose] SPRequestModule.PreSendRequestHeaders 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.43 OWSTIMER.EXE (0x1F10) 0x0B40 SharePoint Foundation Health abire Medium Failed to Sql Query data XEvent collector on sql-01. The error is Object reference not set to an instance of an object.
    01/29/2015 14:13:26.51 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Topology 7034 Critical An attempt to start/stop instance of service Microsoft SQL Server Reporting Services Shared Service on server SPAP-01 did not succeed. Re-run the action via UI or command line on the specified server. Additional information is below. Reporting Services scale-out deployment is not supported in this edition of Reporting Services. This edition only supports one instance of the SQL Server Reporting Services Service in the farm. The SQL Server Reporting Services service cannot be started on this server unless it is stopped on all other servers in the farm. 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.53 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Database ahjqp High [Forced due to logging gap, cached @ 01/29/2015 14:13:26.40, Original Level: Verbose] SQL connection time: 0.0821 for Data Source=sql-01;Initial Catalog=SharePoint_Config;Integrated Security=True;Enlist=False;Pooling=True;Min Pool Size=0;Max Pool Size=100;Connect Timeout=15;Application Name=SharePoint[w3wp][2][SharePoint_Config] 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.53 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Topology 88b9 High [Forced due to logging gap, Original Level: Verbose] Determining if the current user is a SharePoint Farm Administrator 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.53 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Topology 8xqz Medium Updating SPPersistedObject ReportingWebServiceInstance. Version: 1118292 Ensure: False, HashCode: 52212853, Id: 5a4058b9-2ecd-421e-b9ae-818bbc57c8c6, Stack: at Microsoft.SharePoint.ApplicationPages.ServerPage.OnObjectModelAction(Object sender, ObjectModelActionEventArgs e) at Microsoft.SharePoint.WebControls.ActionLinkDataSourceControl.RaisePostBackEvent(String eventArgument) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) at System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception error) at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext context, AsyncCallback cb) at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus) at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.79 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Database ahjqp High [Forced due to logging gap, cached @ 01/29/2015 14:13:26.57, Original Level: Verbose] SQL connection time: 0.0965 for Data Source=sql-01;Initial Catalog=SharePoint_Config;Integrated Security=True;Enlist=False;Pooling=True;Min Pool Size=0;Max Pool Size=100;Connect Timeout=15;Application Name=SharePoint[w3wp][2][SharePoint_Config] 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.79 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Database 8acb High [Forced due to logging gap, Original Level: VerboseEx] Reverting to process identity 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.86 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Topology 88ch High [Forced due to logging gap, cached @ 01/29/2015 14:13:26.84, Original Level: Verbose] {0} 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.86 w3wp.exe (0x0B94) 0x294C SharePoint Foundation General 8nca Medium Application error when access /_admin/Server.aspx, Error=Reporting Services scale-out deployment is not supported in this edition of Reporting Services. This edition only supports one instance of the SQL Server Reporting Services Service in the farm. The SQL Server Reporting Services service cannot be started on this server unless it is stopped on all other servers in the farm. at Microsoft.ReportingServices.SharePoint.SharedService.Service.ReportingWebServiceInstance.Provision() at Microsoft.SharePoint.ApplicationPages.ServerPage.OnObjectModelAction(Object sender, ObjectModelActionEventArgs e) at Microsoft.SharePoint.WebControls.ActionLinkDataSourceControl.RaisePostBackEvent(String eventArgument) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.87 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Runtime tkau Unexpected System.InvalidOperationException: Reporting Services scale-out deployment is not supported in this edition of Reporting Services. This edition only supports one instance of the SQL Server Reporting Services Service in the farm. The SQL Server Reporting Services service cannot be started on this server unless it is stopped on all other servers in the farm. at Microsoft.ReportingServices.SharePoint.SharedService.Service.ReportingWebServiceInstance.Provision() at Microsoft.SharePoint.ApplicationPages.ServerPage.OnObjectModelAction(Object sender, ObjectModelActionEventArgs e) at Microsoft.SharePoint.WebControls.ActionLinkDataSourceControl.RaisePostBackEvent(String eventArgument) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.89 w3wp.exe (0x0B94) 0x294C SharePoint Foundation General ajlz0 High Getting Error Message for Exception System.Web.HttpUnhandledException (0x80004005): Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> System.InvalidOperationException: Reporting Services scale-out deployment is not supported in this edition of Reporting Services. This edition only supports one instance of the SQL Server Reporting Services Service in the farm. The SQL Server Reporting Services service cannot be started on this server unless it is stopped on all other servers in the farm. at Microsoft.ReportingServices.SharePoint.SharedService.Service.ReportingWebServiceInstance.Provision() at Microsoft.SharePoint.ApplicationPages.ServerPage.OnObjectModelAction(Object sender, ObjectModelActionEventArgs e) at Microsoft.SharePoint.WebControls.ActionLinkDataSourceControl.RaisePostBackEvent(String eventArgument) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.HandleError(Exception e) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.92 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Micro Trace uls4 Medium Micro Trace Tags: 0 nasq,2 agb9s,9 b4ly,309 8xqz,331 8nca,15 tkau,8 ajlz0 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.92 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Request (POST:http://spap-01:5555/_admin/Server.aspx?ServerId=7f7d5eec-3791-44cf-a992-673eaea90f48)). Execution Time=712.2145 6f83e49c-cc03-d049-90f4-81439b542cf8

    Hi Wynn,
    I appreciate your attempt to address my concerns, but even your reply seems to ignore the fact that I have not only provided the name of the ISO, but the MD5 checksum of the ISO as well. Also this is the first time I am being asked to double-check the version
    of SSRS. The first reply I got to my query simply disregarded the version mismatch.
    As per your request, I have checked under the folder you have specified (C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\WebServices\LogFiles), but unfortunately there are no files under this folder in neither of my two application
    servers.
    We only have logfiles under C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\LOGS 
    Is there a way I can turn those logs on?
    In the meantime, we run the SQL Server Discovery tool and I have attached the summary for you to see that it finds the Enterprise Edition of SQL Server:
    Final result: Passed
    Exit code (Decimal): 0
    Start time: 2015-01-29 15:17:44
    End time: 2015-01-29 15:17:56
    Requested action: RunDiscovery
    Machine Properties:
    Machine name: SP-AP-02
    Machine processor count: 4
    OS version: Future Windows Version
    OS service pack:
    OS region: United States
    OS language: English (United States)
    OS architecture: x64
    Process architecture: 64 Bit
    OS clustered: No
    Product features discovered:
    Product Instance Instance ID Feature Language Edition Version Clustered Configured
    SQL Server 2012 Management Tools - Basic 1033 Enterprise Edition 11.2.5058.0 No Yes
    SQL Server 2012 Reporting Services - SharePoint 11.2.5058.0 No Yes
    Package properties:
    Description: Microsoft SQL Server 2012
    ProductName: SQL Server 2012
    Type: RTM
    Version: 11
    SPLevel: 0
    Installation edition:
    User Input Settings:
    ACTION: RunDiscovery
    CONFIGURATIONFILE:
    ENU: true
    HELP: false
    IACCEPTSQLSERVERLICENSETERMS: false
    INDICATEPROGRESS: false
    QUIET: false
    QUIETSIMPLE: false
    UIMODE: Normal
    X86: false
    Configuration file: C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Log\20150129_151743\ConfigurationFile.ini
    Rules with failures:
    Global rules:
    There are no scenario-specific rules.
    Rules report file: The rule result report file is not available.
    The \Setup Bootstrap\Log folder also has several log files that indicates the version of SQL Server that has been installed. For instance here is an entry of the Detail.txt file:
    (01) 2015-01-28 19:10:27 Slp: -- SkuPublicConfigObject : CreateSKUCookie succeeded, new checksum is 195 bytes.
    (01) 2015-01-28 19:10:27 Slp: -- SkuPublicConfigObject : Updated skuCheckSumInfo -> daysLeft=0 sqlEdition='ENTERPRISE' (0x6B9471A8) fileTimeInstalled=0 timeBombValue=0 editionType='Enterprise Edition' edition='Enterprise Edition' writeEditionStrings='True' checkSum=195bytes
    (01) 2015-01-28 19:10:27 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine
    I hope this help while we don't have any logfiles in the folder you asked me to look into. Please advise me as in how to proceed if logfiles must be generated.
    Regards,
    P.

  • MSI x48c platinum - does not detect SATA HDDs

    I am having some problems with a pc build with motherboard not detecting SATA HDDs (MIS x48c Platinum).
    I believe I have exhausted all other avenues, and I would appreciate some help if I have missed something obvious.
    (details of other components are listed at end of mail).
    When I built pc using these components, and went into BIOS settings, the SATA HDD's were not detected.  I tried changing BIOS settings, but no difference if SATA, AHCI, or IDE settings.
    I removed the HDDs and successfully tested them in another machine (also formatted them while had them istalled in other pc).
    IDE optial drives are detected.  I have tried to boot with these disconnected to ensure no isues with both IDE and SATA drives connected, but this did not resolve issues.
    I have also tried connecting HDD to different onboard SATA ports, and connecting just one drive with no success.
    Resetting BIOS defaults, and using clear CMOS reset did not resolve issues either.
    Sometimes on boot, it takes a few attempts to boot correctly, and on these occassions I receive an error message "Warning !!! The previous performance of overclocking is failed, and the system is restored to the default settings, Press any key except "DEL" to enter setup ......."  I haven't tried to set any over clocking.
    I read about a number of issues on MSI forum related to SATA drives which were resolved by BIOS upgrade (mobo was shipped with v.7.0 released 20 March 08).  I managed to install an old IDE HDD and flash BIOS, but still no resolution of issues detecting SATA drives (BIOS V.7.2 released 29 July 08).
    I've tried everything I can think of at this stage.  Is there anything else I should try, or is there something wrong with this motherboard?
    Spec:
    Motherboard:
    343949 MSI X48C Platinum, X48, Socket-775,
    DDR2/DDR3, ATX, GbLAN, 2xPCI-Ex(2.0)x1
    Other components in build:
    CPU Intel Core 2 Quad Q9550
    Graphics Sapphire Radeon HD 4870 512MB
    HDD 2 x Samsung SpinPoint T166 500GB
    RAM 4GB (2x2GB) GeIL DDR3 1333MHz Value Dual Channel (7-7-7-24) PC3-10660
    PSU 700W X-Power ATX SLI PSU
    ODD DVD & CDR drives from an old pc - IDE connections.

    i just remember     i had once similar problem with a sata driver. the issue is this you can not adjust everything in bios in one go and expect mobo to know about it. what i mean is this for instance you disable the raid then you save it and exit and then when it reboot you go back to bios and reset another another parameter,  you save and exit and on reboot you go back to bios and reset another parameter. i got round the prob that way and it worked and mobo saw the sata HDD. give this a shoot good luck and finally make sure raid is disabled
    this is what i would do
    1- make sure the jumper setting on your IDE Hdd is correct (Y may have to try this twice as there are two different setting on jumper setting for Master)
    2- connect the sata HDD
    3-click on power
    4-go to bios and disable raid save exit
    5-on reboot go back to bios
    6--on first option click on it then you should see all devices that can be seen by mobo if you do not see sata HDD you have to click on enable for the auto to see the device once it sees the device save and exit. REMEMBER THE JUMPER SETTING  ON IDE HDD CAN CAUSE PROB . SO try the other jumper setting for master, repeat this procedure once more hopefully you get it right

  • Custom Report Not fetching values for parameter of report (Valueset not pop

    Hi,
    I am running custom report on Oracle application R12. This report parameters used standard value set for fetching purchase order number. The value set is not populating any values for the custom report. but for the standard report where this valuse set populating proper result.
    It's bit Supprising ...the same valuset populating values for standard reports but not for custom report developed by me.
    Value set query using table valueset and getting values from po_headers (View)
    Thanks

    Hi All,
    Luckily I have been able to rectify the problem !
    I tried retrieving the output using LISTCUBE to show the SID of the InfoObject  also for which I was unable to get the data. After the report successfully gave the output for those I/O, I checked again I could see the data in the I/O maintain master data !
    It worked like magic to me !
    But I could guess that since it is a virtual I/O therefore it is not able to retrieve the data from the table directly and is able to do that only after the SID of this I/O is retrieved.
    (If a characteristic does not have any master data, the values from the SID table are displayed for the "Values in Master Data Table" mode.)
    Closing the thread !
    Regards
    Shalabh

  • Report navigation not working properly for the union report

    i have a report which is union and i need to navigate to another report(detailed).the filters are not carried out to the detailed report .Please suggest me on how to get the filters ar e correctly applied on detailed report.I have prompted the fileds in the detailed report.

    Hi,
    Please refer to the below thread.
    Re: OBIEE-UNION Request navigate is not working (Parameter value is not passed)
    Hope it helps!
    Thansk

  • Not able to open web analysis reports after upgradation

    we have upgraded Hyperion 11.1.1.3 to 11.1.2.2 version, after this process we are not able to open web analysis reports
    These reports are still pointing to old servers so, how to edit this database connection details in the new version??
    Edited by: 1007326 on May 22, 2013 3:29 AM

    Hi,
    Welcome to Forums...!
    I think we need to change the database connection details in the Web analysis.
    goto file --> Edit --> browse the database connection then change the server name in the connection details.
    may be this will help to resolve your issue.
    Thanks,
    mady

  • Not able to export web analysis report to excel smart view from workspace

    Not able to export web analysis report to excel smart view from workspace.
    Error :Web launch operation has been cancelled.
    Can anyone help me to resolve this issues

    I realized that I can put a block in WebI and then I can pull that in excel alongside of static header, after putting the question.
    My interest to know whether it is by design in XI 3.0 or it is an issue. But by the replies it seems to me like it is by design.
    @Anis: I can't go for header as part of Body. Because this report is viewed in Web by many other users. I can't have separate report for Live office, it is a restriction for me. If I use the header in body, it wont look good I guess.

Maybe you are looking for

  • ITunes Not Responding and Ipod not Updating

    Everytime I connect my Ipod to the usb, it shows up on itunes and as a drive. But when usually the ipod should be updating, it brings up a window saying itunes isn't responding,giving me options to send the error report or not, and then no matter whi

  • LSMW project read only keep last content for wildcard

    Hi Gurus, when I use the wildcard option to run a LSMW project . The result is the system list all the data summaries about each file covered by the wildcards.  I m used to find the data of all the covered files in the read-file  after . When I start

  • Trade Promotion - edit after manager approval

    Hi, We are currently upgrading from Version 4.0 to CRM 2007. As part of the upgrade, the business is requesting the ability to leave certain fields in the BI planning table unlocked for editing after the promotion has been approved. They want to avoi

  • No X-server after Jumpstart install

    Hi All,      I have just finished the install of a Enterprise 250R server with Solaris 10 using a jumpstart server.. This server does not have a Video card installed.      After the reboot, and installing the latest patch clusters for Solaris 10. It

  • Error 3002, updating to ios 5 help

    Hey, one of my friends registered my udid to his apple developer account. I got the ios 5 firmware, but whenever i try updating, i always get an error 3002.  I'm sure that if i wasn't registered, it would say that i would need to register. I'm also u