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;}

Similar Messages

  • 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                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Not able to print PDF report from Oracle APPS

    adcmctl.sh version 115.17.
    We have a network printer HP Laserjet 4250 which is configured on our concurrent manager server of RH Linux OS. We are using HP LASERJET 4250 Postscript driver. We are able to print PDF's directly however through CC manager we are not able to print reports in Proper PDF format. Has anyone faced such an issue with Oracle Apps?

    user11996936 wrote:
    Has anyone faced such an issue with Oracle Apps?Maybe. Maybe not. Ask to the proper forum. Here you are in Peoplesoft forum.
    Nicolas.

  • Urgent : i am not able to coonect the report through oracle forms  10g

    i created a report "test1" through oracle report 10g and calling from oracle forms 10g
    i tried to run the report from forms builder but i am getting the following error
    "server can not connect 41213 error"
    from run mode i already given the following command for running the report server
    rwserver server=rep_fsprod
    The help is saying like that
    cause:  There is a problem connecting to the specified Report server. Action:  Check the Report server and make sure it is up and running. Level:  20
    Any pleae provide me the necessor setting for this issue and give me some good reselution
    But i am not sure where is the problem
    If anybody thats will be helpfull for me. please provide the step that i need to take
    the following are the code
    ------------------------------------------------------------>
    Declare
         PL_Id     ParamList;
    v_Report VarChar2(30) := 'TEST1';
    v_Rep_Id Report_Object;
    v_Rep_Job_Id VarChar2(100);
    v_Job_Id VarChar2(100);
    v_Rep_Status VarChar2(100);
    v_Rep_URL VarChar2(1000);
    v_Host_Name VarChar2(100) := 'localhost';
    v_Port     VarChar2(100) := '8889';
    v_Rep_Server VarChar2(100) := 'abc';
    Begin
    PL_Id := Get_Parameter_List(v_Report);
    If Not Id_Null(Pl_Id) Then
    Destroy_Parameter_List(Pl_Id);
    End If;
    Pl_Id:=Create_Parameter_List(v_Report);
    Add_Parameter(PL_Id, 'Usr_Id', Text_Parameter, 'cms');
    Add_Parameter(Pl_Id, 'ParamForm', Text_Parameter, 'NO');
    --Find Report Object
    v_Rep_Id := Find_Report_Object('TEST1');
    --Communication Mode
    Set_Report_Object_Property(v_Rep_Id, Report_Comm_Mode, Synchronous);
    Set_Report_Object_Property(v_Rep_Id, Report_Desformat, 'HTML');
    --Handled Destination Type and Name
         Set_Report_Object_Property(v_Rep_Id, Report_DesType, CACHE);
    --Specify Report Server and Report File Name
    Set_Report_Object_Property(v_Rep_Id, Report_Server, v_Rep_Server);
    Set_Report_Object_Property(v_Rep_Id, Report_FileName, v_Report);
    --Run Report
    v_Rep_Job_Id := Run_Report_Object(v_Rep_Id, PL_Id);
    v_Rep_Status := Report_Object_Status(v_Rep_Job_Id);
    If v_Rep_Status = 'FINISHED' Then
              v_Job_Id := SubStr(v_Rep_Job_Id, length(v_Rep_Server)+2);
              v_Rep_URL := 'http://' || v_Host_Name || ':' || v_Port || '/reports/rwservlet/getjobid' || v_Job_Id || '?server=' || v_Rep_Server;
    Message(v_Rep_URL);
                   Web.Show_Document(v_Rep_URL, '_blank');
    Else
         Message('Error Running Report');
    End If;
    End;
    ------------------------------------------------------------>

    i am facing same please do some favour me for this report issue

  • Client_host('cmd  edit c:\temp\file_print.txt'); not working with Sun JRE6

    Hi,
    I am working on Oracle forms10g ( 10.1.2.0) with Sun JRE6 (Using JRE version 1.6.0_31-b05) which is working fine. the only problem is, when I use edit command, its not working nor show any error. Command I am using (to display the text file in command window) - client_host('cmd edit c:\temp\file_print.txt'); . the same command working fine if I switch to JInitiator (1.3).
    help would be greatly appreciated.
    Thank you.
    Alok

    In the [webutil] section of the formsweb.cfg, did you change the baseHTMLjinitiator to point to webutiljpi.htm?
    not working nor show any error. Not all errors will be reported through the Forms UI. For java related errors you have to look at the Java Console. Please check the Java Console and post any errors listed there.
    the same command working fine if I switch to JInitiator (1.3).This tells me the problem is most likely a configuration issue. Please list what steps you took to congifure your system to use the JRE over the default Oracle Jinitiator.
    Craig...

  • 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

  • I am having macbook air recently my iphotos did not open and was showing report apple and reopen but i came to know that by pressing alt and iphotos i open an new photo library and stored the pics but now how can i get the pics which i had in the earlier

    i am having macbook air recently my iphotos did not open and was showing report apple and reopen but i came to know that by pressing alt and iphotos i open an new photo library and stored the pics but now how can i get the pics which i had in the earlier photo please help me to recover my photos

    Well I'll guess you're using iPhoto 11:
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  
    Regards
    TD

  • Not able to edit the report created on different data source.....

    I have a query regarding Report in OBIEE - reports developed from BI Publisher are specific to data source on which they have been created ??
    i have a sample report that was created on different data source, i have the corresponding RPD also. I changed the data source according to my DB and when i try to update/edit the report,
    on Analytics for adding a new column, it is generating a seperate new Query from QueryBuilder for that additional cloumn rather than adding up the new query with the previous one(existing report query). Is it because of mismatch of data source on which report had been created and on which it is being update ?? if it is the case, where do i need to make changes related to JDBC connection or others ??
    when i try to create a new sample data set and try to update it, it adds up the extra edited things to original query and works perfectly fine. can ny 1 help me for the same ??

    Hi Denis,
    Normally,what we do is once we provide access to webi users group for each user from BO supervisor module, user(s) will able to refresh/edit the existing report from Full client BO.His colleagues have had no problem editing all his reports from their machines but he is not able to edit any report from his machine and BO is getting freeze.
    He also reinstalled BO and cleaned out everything on his Computer and re-built it but the issue is not yet resolved
    Can you please tell me how to resolve this issue
    Kind Regards,
    Srinivas

  • Not able to view any report in BI Publisher 11g

    Hello All
    I have installed BI Publisher 11g in Intel Solaris 10. I started of from the scratch, created a Data Model, then created a Report. but now I am not able to view the report. Upon clicking the report name or Open it logs me out.
    I am logged in as user, weblogic the default user created while installation.
    Please help
    Ash

    Hi Rony,
    You may have created the report initially with Web Layout only - therefore there will no paper layout.
    To 'get' the paper layout back, select your Report module name from the Builder and then select Tools-->Report Wizard. Select 'Create both web and Paper Layout' and then go through the various wizard steps.
    Best of Luck.
    Regards,
    John

  • Materialized view not being used in the report

    I have had a materialized view (MV) for a particular report. Recently, the report definition has changed little bit, so the existing MV is not being used by the report anymore. I copied the code Discoverer's SQL Inspection and recreated the materialized view. But still it is not working. Obviously, I am missing something at the database level. Does anyone have any idea? The database is 9i and Discoverer is 9.0.2. Thank you!

    The SQL that you see from the Inspect SQL option will provide you with the SQL that Discoverer sends to the database. The database then may do a query rewrite to point to an available materialized view if available. This rewrite won't be seen from the inspect sql option. You need to check at the database level to verify if a query rewrite did in fact take place.
    You may want to check the section titled "Query Rewrite with Materialized Views" from Ch1 - "Introduction to the Optimizer" in the Oracle9i Database Performance Tuning Guide and Reference, Release 2 (9.2), Part Number A96533-02, available at http://download-uk.oracle.com/docs/cd/B10501_01/server.920/a96533/optimops.htm#37287
    Regards
    Abhinav Agarwal
    Oracle Business Intelligence Product Management
    http://www.oracle.com/bi
    http://www.oracle.com/technology/documentation/bi_ee.html
    http://www.oracle.com/technology/software/products/ias/htdocs/101320bi.html
    http://oraclebi.blogspot.com/

  • Where clause is not being passed to the report

    I just upgraded my crystal reports from 10.0 to 11 R2. Reports were working fine in 10.0 version,
    Reports are called from vb.net (vissual studio 2005). When I was running this reports using crystal 10.0 and visual studio 2005, it was working fine, After the upgrade report runs but I am noticing that where clause is not being passed to the reports.It generates report as there is no where clause and produces multiple pages report.

    I believe you are encountering an issue documented in [this|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bip/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes.do] note.
    Ludek

  • 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...)

  • Values are not getting updated in sales report

    I have configured sales information system, and i have been trying to run sales report but values are not getting updated in sales report, System will through message that no data exists.
    regards,
    thooyavan

    Hi,
    Please check with the Customer and Material Statistics group in the Customer and material master respectively.
    Further check with the LIS settings (Sales Area combination with the Update group).
    Reward points if this helps you.
    Regards,
    Harsh

  • 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

Maybe you are looking for

  • Problem in XI with RFC Comunications

    HI Gurus I try to configure a scenario synchronus with RFC but when i send the message the system show me the next error: " <?xml version="1.0" encoding="UTF-8" standalone="yes" ?> - <!-- Inbound Message --> - <SAP:Error xmlns:SAP="http://sap.com/xi/

  • How do I get my pc to recignize my 3gs iphone when I plug in the USB to sync and backup

    When I plug the USB into my pc and 3gs Iphone itunes does not recognize it as being plugged in.  I have no trouble with my Ipad.  I have tried different USB ports. The most current version of Itunes is being used.  What can I to do sync and backup my

  • Custom bank messages - sysex

    I am new to logic (7), and I have been pulling my hair out trying to figure out how to use the Custom Bank Messages window. I am trying to select banks from an old Proteus 1 synth, and I need to be able to send a sysex string. According to the refere

  • How do you install a patch file?

    Hey all, this is going to sound very dumb, and I don't really know which forum this question fits into. I've got a xxx.patch file to be installed for a project tht is written in Java, I am running Windows XP and am using Eclipse as my IDE. I've never

  • Problem with creating repository

    I can´t create functional repository, because I can´t compile package bodies: ck_util, rmmac and jr_workarea. Problem is with parameter dbms_lock. For example when I want to compile jr_workarea, i get message:" Line # = 287 Column # = 49 Error Text =