MATERIAL DOES NOT EXISTS OR NOT ACTIVATED

Dear Experts,
I want to change Material Master data. I have downloaded the material list from data base table MARC plant data for materials.
i want to  extend the material master view. but system is issuing the error message - Material dose not exists or not activated. Also it is not showing the material in MM03 & MM60.
But in data base table MARC it is showing the material code with details.

Hi Kiran,
The material type must be HAWA, well you would be able to get this info, if an entry in MARA exists. So from where are you getting the material type?
Anyways just check this, enter the material nos. in MM01 & select Basic Data 1 & click create, check what message you get, should provide you the clues. Also check how this material was created. It could be possible that it was created via some custom program.
Creat the view & then you will be able to resolve the issue. Check the above & revert if you face any issues.
Regards,
Vivek

Similar Messages

  • The material 332-369090-00 does not exist or not activated

    Hi Experts,
    Kindly Look at into this error which I am facing in the PRD system.
    Materials listed below doesn't exist (or) not activated in the Source system.
    1. The material 332-369090-00 does not exist or not activated
    2. The material 410-051003 does not exist or not activated
    2LIS_02_SCL-Purchasing Data (Schedule Line Level) -
    This data source is going to the below data targets.
    1. Purchasing Data - ZPUR_C01
    2. Purchasing Groups - ZPUR_C04
    3. Backlogged Purchase Order Schedule Lines – ZPUR_C10
    Like this no of materials  available in BWPRD but not available in R/3 PRD source system .so how to delete specific master data records for material
    Regards
    Pinky
    Edited by: pinky reddy on Jul 27, 2009 2:09 PM
    Edited by: pinky reddy on Jul 27, 2009 2:09 PM

    Easiest way to solve this is to check the mara table in R/3. try and find your material there. If its not there, then it either has been manually created or loaded from a different source system. Check all the source systems if anyone has loaded them. Then check your cubes and ODSs if you can find any transactional data for these materials. If yes, then there is a possiblity that maybe it was created  to correct  a failed load. You should then identify the document and compare the same on in R/3.
    If this material is used in any transaction data, then you can simply delete it. RSA1-> Find the infoobject(characteristic)-> Maintain master data-> Give the material nos-> select the row and press the delete button.
    Regards.

  • Not existing can not be inserted

    Dear Experts,
    I am getting an error message if I am trying to change Purchase Requisition.
    There are additional inserted item in the new  tbale 'LT_BAPI_NEW'.
    In the table  'LT_BAPI_OLD' are only two items. What is wrong there ?
    I have thought with this FM it is really possible to change a PReq.
    What can I do in this case ?
    The item 00030 is not existing can not be inserted.
    CALL FUNCTION 'BAPI_REQUISITION_CHANGE'
          DESTINATION av_rfc_dest
          EXPORTING
            NUMBER                           = '1000115373'
          TABLES
            REQUISITION_ITEMS_OLD   = LT_BAPI_OLD
            REQUISITION_ITEMS_NEW = LT_BAPI_NEW
            RETURN                             = LT_BAPIRETURN
          EXCEPTIONS
            OTHERS                = 1.
    Friendly Regards
    ertas

    Hi,
    Refer to this link..[Help me about BAPI_REQUISITION_CHANGE!!!|Help me about BAPI_REQUISITION_CHANGE!!!]

  • RSPC Variant does not exist - Could not find or load print parameters

    We are on BI 7.0 (support pack SAPKW70017).  We recently freshed test system from production.   After the refresh, we have problems opening all the process chains.  
    1. When I go to RSPC to open a process chain, I get many messages like this:
    Variant &0000000067180 does not exist (there are different variant numbers)
    Message no. DB612
    Diagnosis
    You selected variant &0000000067180 for program RSPROCESS.
    This variant does not exist.
    2. When I go to SM21 to check the system log, it displays many entries like below:
    EJ  F Could not find or load print parameters for step 1, job BI_PROCESS_TRIGGER/09134500
    Documentation for system log message EJ F :                                                                               
    An error occurred during loading of the print parameters for a        
    background job step.                                                  
    The print parameter record may have been deleted even though there was
    a still a step that needed that data. This is an error as the         
    reorganization of the print parameters should prevent this from       
    happening.                                                            
    To fix the problem, edit the step and save it, copy the job, or       
    schedule a new job. The print parameters will be regenerated in all   
    these cases.    
    3. I applied the OSS note 1169659 - Correction: Process variants not entered by BDLS.   The Basis rerun BDLS.  But it did not fix the problem.
    Would appreciate if someone could provide any help.
    Thank you.

    Hi Rebecca.
    1) Please verify if exist process types called 'unknown job'. If exist:  delete process types called 'unknown job' in your process chain. To do that please remove the chain from scheduling (menu bar > process chain > remove from schedule), afterwards switch the detail view on (menu bar >  view) > right mouse click on the process type "unknown job" > displaying scheduled jobs > delete that job. After deletion of the 'unknown jobs' activate and schedule your process chain again.
    2) After the removal of the 'unknown jobs' please check if the error messages with the missing variants pop up when calling your process chain disappears. If not, please implement and execute the attached report Z_FIND_JOBS_WITHOUT_VARIANT which deletes the jobs without variants.
    I have already attached report as Report Z_FIND_JOBS_WITHOUT_VARIANT, you can download and create the report accordingly.
    = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
    REPORT  Z_FIND_JOBS_WITHOUT_VARIANT.
    data: l_t_job type table of tbtcp with header line,
          l_s_varsel    TYPE rsvar,
          l_t_variant   TYPE TABLE OF rsparams.
    parameters: delete type rs_bool.
    select * from tbtcp as job into table l_t_job
                        where progname = 'RSPROCESS'
                        and   exists ( select * from tbtco
                              where jobname = job~jobname
                              and   jobcount = job~jobcount
                              and   status = 'S' ).
    loop at l_t_job.
      l_s_varsel-report  = l_t_job-progname.
      l_s_varsel-variant = l_t_job-variant.
      CALL FUNCTION 'RS_VARIANT_CONTENTS'
        EXPORTING
          report               = l_s_varsel-report
          variant              = l_s_varsel-variant
          execute_direct       = 'X'
        TABLES
          valutab              = l_t_variant
        EXCEPTIONS
          variant_non_existent = 1
          variant_obsolete     = 2
          OTHERS               = 3.
      if sy-subrc <> 0.
        write: / l_t_job-jobname, l_t_job-jobcount.
        if delete = 'X'.
          CALL FUNCTION 'BP_JOB_DELETE'
            EXPORTING
              JOBCOUNT = l_t_job-jobcount
              JOBNAME  = l_t_job-jobname
            EXCEPTIONS
              OTHERS   = 1.
          IF SY-SUBRC <> 0.
            write 'not deleted'.
          else.
            write 'successfully deleted'.
          ENDIF.
        endif.
      endif.
    endloop.
    = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
    I hope I can be helpful.
    Thanks,
    Walter Oliveira.

  • Error handling function: ORA-20001: get_dbms_sql_cursor error:ORA-00942: table or view does not exist  is not trapped. Why?

    Why APEX 4.1 Error handling function does not trap  the error of missing table?
    Say, I create simple application with single IR report page and I also assign standard simple error handling function.
    Function works perfectly, except but this case:
    If I just drop a table used by report page and then refresh the page I am getting usual APEX error message:
    ORA-20001: get_dbms_sql_cursor error ORA-00942: table or view does not exist
    and error handling function is not invoked at all.
    Is this a feature or a bug?

    Hi,
    Check the corrections given in the note 990764:
    Reason and Prerequisites
    Up to now, using a characteristic with its own master data read class as the InfoProvider was not supported. This is now released but it is not available for all modelings. Using the attributes in the query is not supported for characteristics that have their own master data read class. Using the attributes in the query causes a termination. The following errors may occur in this case:
    ORA-00942: table or view does not exist
    Fehler in CL_SQL_RESULT_SET  Include NEXT_PACKAGE
    RAISE_READ_ERROR in CL_RSDRV_VPROV_BASE
    Solution
    SAP NetWeaver 2004s BI
               Import Support Package 11 for SAP NetWeaver 2004s BI (BI Patch 11 or SAPKW70011) into your BI system. The Support Package is available once Note 0914305 "SAPBINews BI 7.0 Support Package 11", which describes this Support Package in more detail, has been released for customers.
    In urgent cases you can implement the correction instructions.
    The correction instructions contain the tightened inspection for characteristics.
    Regards,
    Anil Kumar Sharma .P

  • Asm diskgroup does not exist or not mounted

    Hi,
    iam have configured a 2 node cluster and now when i rebooted and again started my rac database so all the applications are offline so i stop them with crs_stop and then restarted but my databases asm and instance service is not up so in that case i tried to connect to database or to instance but i was not able to so then i thought of connecting to asm instance and then the status is as follows
    SQL> select name ,state ,mount_status from v$asm_disk ;
    NAME STATE MOUNT_S
    NORMAL CLOSED
    NORMAL CLOSED
    FG_0000 NORMAL CACHED
    SQL> alter database open ;
    alter database open
    ERROR at line 1:
    ORA-15000: command disallowed by current instance type
    SQL> alter diskgroup all mount ;
    alter diskgroup all mount
    ERROR at line 1:
    ORA-15032: not all alterations performed
    ORA-15130: diskgroup "DG1" is being dismounted
    ORA-15066: offlining disk "DG1_0001" may result in a data loss
    SQL>
    SQL>
    so in that cse the contents are as follows
    on Jul 11 21:58:46 2011
    Dirty detach reconfiguration started (old inc 2, new inc 2)
    List of nodes:
    0 1
    Global Resource Directory partially frozen for dirty detach
    * dirty detach - domain 1 invalid = TRUE
    0 GCS resources traversed, 0 cancelled
    Dirty Detach Reconfiguration complete
    Mon Jul 11 21:58:46 2011
    freeing rdom 1
    Mon Jul 11 21:58:47 2011
    WARNING: dirty detached from domain 1
    Mon Jul 11 21:58:47 2011
    ERROR: diskgroup DG1 was not mounted
    Mon Jul 11 21:58:47 2011
    WARNING: PST-initiated MANDATORY DISMOUNT of group DG1 not performed - group not mounted
    Mon Jul 11 21:58:47 2011
    Errors in file /u01/app/oracle/admin/+ASM/bdump/+asm1_b000_18030.trc:
    ORA-15001: diskgroup "DG1" does not exist or is not mounted
    ORA-15001: diskgroup "DG1" does not exist or is not mounted
    so iam not able to figure out please help me in solving this
    Thanks in Advance
    Regards
    Kavita

    Hi,
    Sir i wait for many times but the major issue is iam facing that all aplications when i start my machine are offline or unknown........ then when i exec crsctl stop crs and crsctl start crs i wait a lot and then i exec crrs_stat t that time all applications are either unknown or offline............ then i stop forcily all applications which are unknown finally bring all to offline status and then restart but in this case i exec srvctl start nodeapps - n rac1 and nrac2 these things work but tried with database or service or instnace that ownt work it give me the following error
    and then i sart instance or database through sqlplus and if i do any transcations then i get the follwoing error .........
    PRKP-1001 : Error starting instance devdb1 on node rac1
    CRS-0215: Could not start resource 'ora.devdb.devdb1.inst'
    and now if iam trying to start my asm instance iam have already posted through what iam getting and this i have tried for 2 diffemt 2 node cluster but facing the same issue
    2011-07-12 22:02:02.500: [  CRSRES][3772144560]0startRunnable: setting CLI values
    2011-07-12 22:02:03.235: [  CRSRES][3772144560]0Attempting to start `ora.prod1.LISTENER_PROD1.lsnr` on member `prod1`
    2011-07-12 22:02:06.197: [  CRSRES][3772144560]0Start of `ora.prod1.LISTENER_PROD1.lsnr` on member `prod1` succeeded.
    Sir this from
    (0x8364680) pid() proto(10:2:1:1)
    [    CSSD]2011-07-12 22:46:09.669 [91069360] >TRACE: clssgmClientConnectMsg: Connect from con(0x8350880) proc(0x8364680) pid() proto(10:2:1:1)
    [    CSSD]2011-07-12 22:47:03.826 [91069360] >TRACE: clssgmClientConnectMsg: Connect from con(0x8352a08) proc(0x8364680) pid() proto(10:2:1:1)
    [    CSSD]2011-07-12 22:47:04.385 [91069360] >TRACE: clssgmClientConnectMsg: Connect from con(0x835bf18) proc(0x835ed88) pid() proto(10:2:1:1)
    [    CSSD]2011-07-12 22:47:17.938 [91069360] >TRACE: clssgmClientConnectMsg: Connect from con(0x835bf18) proc(0x8364680) pid() proto(10:2:1:1)
    [    CSSD]2011-07-12 22:48:27.641 [91069360] >TRACE: clssgmClientConnectMsg: Connect from con(0x8350880) proc(0x8364680) pid() proto(10:2:1:1)
    Thanks in Advance
    Regards
    Kavita

  • Does directory exist or not?

    ASM 10.2.0.3 on RHEL4. I am trying to clean up a database.
    ASMCMD> cd FRA/RACTEST/BACKUPSET/2007_07_27
    ASMCMD> ls
    annnf0_BACKUP_RACTEST_000_0727070220_0.368.62904
    annnf0_BACKUP_RACTEST_000_0727070220_0.369.62904
    annnf0_BACKUP_RACTEST_RAC_0727070314_0.380.62904
    annnf0_BACKUP_RACTEST_RAC_0727070314_0.381.62904
    nnndn0_BACKUP_RACTEST_000_0727070220_0.363.62904
    nnndn0_BACKUP_RACTEST_000_0727070220_0.364.62904
    nnndn0_BACKUP_RACTEST_RAC_0727070314_0.375.62904
    nnndn0_BACKUP_RACTEST_RAC_0727070314_0.376.62904
    ASMCMD> rm -rf *
    ORA-15032: not all alterations performed
    ORA-15173: entry 'nnndn0_BACKUP_RACTEST_000_0727070220_0.363.62904' does not exist in directory '2007_07_27' (DBD ERROR: OCIStmtExecute)
    ORA-15032: not all alterations performed
    ORA-15173: entry 'nnndn0_BACKUP_RACTEST_000_0727070220_0.364.62904' does not exist in directory '2007_07_27' (DBD ERROR: OCIStmtExecute)
    ORA-15032: not all alterations performed
    ORA-15173: entry 'annnf0_BACKUP_RACTEST_000_0727070220_0.368.62904' does not exist in directory '2007_07_27' (DBD ERROR: OCIStmtExecute)
    ORA-15032: not all alterations performed
    ORA-15173: entry 'annnf0_BACKUP_RACTEST_000_0727070220_0.369.62904' does not exist in directory '2007_07_27' (DBD ERROR: OCIStmtExecute)
    ORA-15032: not all alterations performed
    ORA-15173: entry 'nnndn0_BACKUP_RACTEST_RAC_0727070314_0.375.62904' does not exist in directory '2007_07_27' (DBD ERROR: OCIStmtExecute)
    ORA-15032: not all alterations performed
    ORA-15173: entry 'nnndn0_BACKUP_RACTEST_RAC_0727070314_0.376.62904' does not exist in directory '2007_07_27' (DBD ERROR: OCIStmtExecute)
    ORA-15032: not all alterations performed
    ORA-15173: entry 'annnf0_BACKUP_RACTEST_RAC_0727070314_0.380.62904' does not exist in directory '2007_07_27' (DBD ERROR: OCIStmtExecute)
    ORA-15032: not all alterations performed
    ORA-15173: entry 'annnf0_BACKUP_RACTEST_RAC_0727070314_0.381.62904' does not exist in directory '2007_07_27' (DBD ERROR: OCIStmtExecute)
    ASMCMD> exitWhy would "ls" show the files, but "rm" says they do not exist? I did not find any hits on Metalink, and google came back with more questions than answers.

    ASMCMD> ls
    annnf0_BACKUP_RACTEST_000_0727070220_0.368.62904
    annnf0_BACKUP_RACTEST_000_0727070220_0.369.62904
    annnf0_BACKUP_RACTEST_RAC_0727070314_0.380.62904
    annnf0_BACKUP_RACTEST_RAC_0727070314_0.381.62904
    nnndn0_BACKUP_RACTEST_000_0727070220_0.363.62904
    nnndn0_BACKUP_RACTEST_000_0727070220_0.364.62904
    nnndn0_BACKUP_RACTEST_RAC_0727070314_0.375.62904
    nnndn0_BACKUP_RACTEST_RAC_0727070314_0.376.62904
    ASMCMD> rm annnf0_BACKUP_RACTEST_000_0727070220_0.368.62904
    ORA-15032: not all alterations performed
    ORA-15173: entry 'annnf0_BACKUP_RACTEST_000_0727070220_0.368.62904' does not exist in directory '2007_07_27' (DBD ERROR: OCIStmtExecute)
    ASMCMD> rmalias annnf0_BACKUP_RACTEST_000_0727070220_0.368.62904
    ORA-15032: not all alterations performed
    ORA-15177: cannot operate on system aliases (DBD ERROR: OCIStmtExecute)

  • Boot device not found. "Hard disk not exist". windows not booting

    Product: HP G72-110SA
    OS: Win7
    two days ago, I was installing updates on my computer and when it was about to restart, it froze. After waiting for 10 minutes, I had to turn it off by pressing the off button. From then on, the computer turns on but shows a message "Boot device not found".
    I have tried all the BIOS tests that I could find on the net for the hard disk, eg: http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01443465&tmp_task=solveCategory&cc=uk&dlc=en&la...
    This gives me a "Hard disk not exist" error. I tried resetting the BIOS, that didn't work. I tried taking out and putting back in the battery, the memory and the hard disk. Still no luck.
    I then booted ubuntu from cd on the computer. It works just fine, including the internet etc EXCEPT the HDD is still not detected.
    I had some pretty important stuff and no back up, so would appreciate if someone can help me get back the data. If not, even if I know its just a HDD failure and not a motherboard/BIOS problem, it will be a relief as its probably fixable.
    Thanks

    Hi there ,
    Thank you for visiting the HP Support Forums and Welcome! This is a great site to get answers and ask questions. I would be happy to assist you. As there are many models of HP Notebooks, I would need the model number. (How Do I Find My Model Number or Product Number?) When I went to www.hp.com/go/techcenter/startup, it gave me documentation and troubleshooting steps to follow. One of the documents it provided is called Hard Disk Error Displays before the Computer Starts. NOTE: I recommend at this point you make an immediate backup of all important data and files. Here are instructions on how to Backing Up Your Files (Windows 8). Please follow the troubleshooting steps provided, re-post with the results of the troubleshooting in detail. Thank you.

  • Basic NOT EXISTS query not returning any results

    DB Version: 10gR2
    One of our tables in the test schema is having less number of columns than the PROD shema.
    To determine which are missing columns in this table in Test schema i did the following.
    -----In Test Schema
    CREATE TABLE XYZ2
    (COL1 NUMBER);        ----------only one column
    SQL > CREATE TABLE tables_test_list AS SELECT TABLE_NAME,COLUMN_NAME FROM USER_TAB_COLS;
    Table created.--- In the prod schema
    SQL> CREATE TABLE XYZ2
      2  (COL1 NUMBER,
      3  COL2 NUMBER       ----------- same table name with an extra column
      4  );
    Table createdAnd from the PROD schema i execute the following SQL to determine what are the columns that are missing in the TEST schema
    select column_name from User_Tab_Cols  outer
    where table_name='XYZ2'
    and not exists (select 1 from TEST_SCHEMA.tables_test_list inner where outer.TABLE_NAME=inner.TABLE_NAME )But the above query is not returning any results. Any idea why?

    Actually, the example from the link I posted earlier:
    [email protected]> (
      2  select 'IN T1, NOT T2', column_name,data_type,data_length
      3    from user_tab_columns
      4   where table_name = 'T1'
      5  MINUS
      6  select 'IN T1, NOT T2', column_name,data_type,data_length
      7    from user_tab_columns
      8   where table_name = 'T2'
      9  )
    10  UNION ALL
    11  (
    12  select 'IN T2, NOT T1', column_name,data_type,data_length
    13    from user_tab_columns
    14   where table_name = 'T2'
    15  MINUS
    16  select 'IN T2, NOT T1', column_name,data_type,data_length
    17    from user_tab_columns
    18   where table_name = 'T1'
    19  )
    20  /

  • Not exists Vs not in with Rowid

    Hi All,
    We have a query and fires great with Not IN Clause. Due to the performance bottle neck wrt to not in we tried it using not exists and the query is not giving desired output.
      select * from emp
         where rowid not in
         select min(rowid)
         from emp     
         group by deptno
         )how to rewrite this query with not exists, i have a similar query running in my production creating problem. Min(rowid) is also not allowed in the having clause. How to over come this or write a better query as a replacement to provided one here.
    Thanks in advance to the forum users.
    Edited by: ramarun on Nov 1, 2010 9:40 PM

    Not sure I understand what you are trying to achieve, is it to get all members of the EMP table that are not the first member of each department??
    Please confirm / clarify?
    regards,
    Robert.

  • Hp Support.... Does it exist? Not for me....

    Nov 25th - Purchase of HP Touch Smart system (Christmas gift for my Wife and Kids)
    Dec 1st - System Crashs. Restore. Crashs again, Take system back to place of purchase to find none left. They send it off to HP to be "looked at"
    Dec 17th System returned with Motherboard and Hard drive replaced. Perfect lots of time to rap it and put under the tree.
    Dec 25h Very happy Wife and Kids!
    Dec 28th System crashs. Luckily still had all the family photo's on the old computer (8yr old IBM... hmmmm) Restore system.
    Jan 1st. System freezes. Continual loop of "cannot find disk drive. Hit Cntrl-Alt-Del to restart"
    Jan 2nd Call HP Support - Tech tells me to restore system. Which i do.
    Jan 3rd System Frozen again "cannot find disk drive. Hit Cntrl-Alt-Del to restart" Call Tech Support. get Anita (she was only good thing in this experience. Very helpful) She does a bunch of stuff takes over the computer and restores system. Works ... then during updates ... crash ... "cannot find disk drive. Hit Cntrl-Alt-Del to restart" Anita informs me to also fax off a copy of the receipt as they cant find the system under warranty. (funny since you already replaced the motherboard and hard drive, but OK sure) Call back on Jan 4th and we can get this escalated and fixed for you. Great
    Jan 4th Contact HP Support. Sorry I see that we have received the prove of purchase however the warranty department has not yet updated it. (OK this is getting just plain stupid) Asked to transfer to someone who can get this done. over the next 2 1/2 hours IM transferred between sales/tech support/ and software training. (I didnt know HP even did software training) 3 times i was transferred and system booted me out..Finally get someone back at support who asks me to explain the problem and then tries to get me to restore the system. After a few minutes (heated on my part) he says there is nothing he can do for me and to call back tomorrow and the information will be updated and this issue can be finally resolved.
    Jan 5th Contact HP Support. Anyone want to guess what happens?.... That's right first he tries to tell me to restore my computer (after i explain all of the above) I say screw that give me  your manager IM done talking . He transfers me I get a "manager" who informs me that the ticket has been escalated but that he will escalate it further, and that someone will contact me 6pm est tomorrow to go through the process of repairing the unit, and perhaps exchanging it... Ok fine at least IM finally getting some where right?
    Jan 6th 6pm no call.... 7pm no call.....7:10pm... OK maybe they are just super busy let me call them
     Contact support....explain the problem .... have i restored the computer?...... UGGGGGGGGGGG
    Asked for a manager... transferred to a different country....who cant do anything for me....
    Contact support.... explain the problem and tell him not to ask me to restore the computer...Asked for a manager and specify I am NOT in the US. Dont transfer me to a US support manager they cant help me.... "sure hold a few minutes while i contact you"
    US support Manager comes on... Sorry I cant help you but they will contact you tomorrow.
    Congratulations HP! all the years of using your Laptops and Printers and supporting you when I was in Computer Sales. GONE in 1 week. Funny thing is I was offered an Extended warranty from the BestBuy i purchased the unit and I said no I have had HP for years and they always been helpful.
    OH how times have changed.

    HpNoSupport wrote:
    Oh the story continues....
    Finally got to send the unit off and got it back within 4 days! Soon as i boot it up it crashs doing system updates. I call HP and they tell me that it could me microsofts website. Ok fine. I try again tomorrow. System failure hard drive cannot be found. Did they fix anything? I call back and talk to rep who sends me another box. They call me back and say that the parts are back ordered and I won't get the computer back until Feb 14th. Ok...I call the manager back and she says i have to wait, which I'm ok with but what if it comes back not repaired? She says then they will send it out again and that I have a repair warranty so they will repair it...really? Like the first few times? I get her executive manager and she says that if it's not repaired this time she will look at other options. Perfect. Feb 7th she calls and asks me how my computer is? I say i have no idea you still have it. She replies that it was dropped off to my house today. Funny because I was home all day! She then asks me to call ups and ask status of my machine. A few minutes later she calls back saying she was looking at the wrong unit and that the parts are back dated until march 31st. She will call me Tuesday with what they can do to get this resolved for me.
    Tuesday evening i call her, sorry I will call you tomorrow (wednesday) with what we can do for you. Ok fine....grrrrrr
    Wednesday I call her, oh sorry I need to call you tomorrow with a resolution....
    I can tell you the resolution.....never NEVER EVER buy an HP again!!!!!!!!!
    Okay.
    Have you plugged in any new hardware besides the Power cord and the mouse?
    If you have, when you plug that in, it should install the device software.
    Try to isolate the problem.
    If it's not hardware, it's an internal issue.
    Try disconneting ALL things from the computer except Power cord and the USB Keyboard Receiver.
    Try booting the computer,
    if it gives teh same error it may be another issue besides the motherboard and hard drive.
    Reply back with results.
    I have more HP devices than you'd expect.
    1 HP TouchPad 32 GB with Android
    2 HP Touchsmarts (310-1000z and IQ527)
    2 HP Printers (J6480 and J5750)
    1 Laptop (HP DV6253CL)
    Have at least some experience in each of those devices, and i'll do my best to help you.
    Kudos if I helped!

  • Alert Configuration : 404 Not Found The requested resource does not exist

    Hi all ,
      We are facing problem in Alert configuration and
      Alert Inbox . We are on SP14 service patch
      We are getting error as " 404 Not Found The requested 
      resource does not exist "
      We have activated all the necessary services in
      Tcode : SICF as mentioned in the config. guide
      We have executed the program :
      SXMB_ACTIVATE_ICF_SERVICES
      We have referred the SAP note : 750287 and tried to
      set the httpport as per the note but again we are
      getting error as "The page cannot be displayed" .
        We have checked the parameters in Exchange profile
      for httpport as well as for host also .
      Can someone please guide us on this . 
      Thanks 
      Shikha

    Hi all ,
    Thanks for the replies .
    Shravan ,
    I pinged my XI and is working . we have already added 
    the IP Address and the host name , but the same error
    is coming .
    Anirban,
    Checked all the necessary services again as suggested
    by  you .
    Andreas ,
    > is to set the abap profile parameter
           LOCALHOSTFULL to the fqhn.
    Can you please let me know where to set the abap
    profile parameter "LOCALHOSTFULL" as suggested by you .
    Thanks
    Shikha

  • Import javax.mail package does not exists

    Hi,
    when i tried to compile the source code for email using jdk1.3.1, it compiled fine. but when i tried to compile using jdk1.4.., it had the following errors such as
    import javax.mail package does not exists,
    import javax.mail.internet package does not exists
    package javax.activation does not exist
    Is it because of the jdk version problem???
    Pls help me

    I have the same problem with javax.ejb
    Now i've downloaded and installed the j2ee and set my classpath to the j2ee.jar. I've had to make a new path cause i'm running XP.
    This doesn't work.
    to compile it in Jcreator or JBuilder I can make it work by adding this package (j2ee.jar) in the project settings - required libraries.
    But I have to do this for every project again and again.
    I can make it work but i thougt the classpath would be enough ??
    Bassegio

  • Function module /SDF/AL_MAP_TRANSID_LOGH does not exist

    When I am trying to activate query 0PT_C01_Q001 (DR4U5LBSCW5LRFCNU7PU3VTZZ) of Time Management InfoCube (0PT_C01 - Time and Labor) from BI Content, the following errors are happening.
    Error when activating element B4RCXIS1HI47GC93QSNYJYZRZ
    Function module /SDF/AL_MAP_TRANSID_LOGH does not exist
    Error when activating element DR4U5LBSCW5LRFCNU7PU3VTZZ
    Function module /SDF/AL_MAP_TRANSID_LOGH does not exist
    Function module /SDF/AL_MAP_TRANSID_LOGH does not exist
    So instead of Query this time I went to activate only Structure B4RCXIS1HI47GC93QSNYJYZRZ.
    This time also it is showing the following errors
    Error when activating element B4RCXIS1HI47GC93QSNYJYZRZ
    Function module /SDF/AL_MAP_TRANSID_LOGH does not exist
    Regarding function module /SDF/AL_MAP_TRANSID_LOGH error, I implemented Note 1114719 - Error when activating Content (/SDF/AL_MAP_TRANSID_LOGH)
    We are using Support Package SAPKW70016 - SAP NetWeaver BI 7.0
    Even after implementing Note 1114719, this error is still happening.
    Any help on this issue would be great.
    Thanks in advance
    Subra

    After implementing the notes, when I installed it in the background, it worked. In the front end it is still not working.

  • What is IS NULL doing in replacing NOT EXISTS operator with an outer join?

    DB version:10gR2
    An example from searchoracle.target.com
    The query which contains a NOT EXISTS operator
    SELECT M.ModulId, M.Modul FROM MODULE M
    WHERE NOT EXISTS
    ( SELECT PROJEKTMODUL.IdModul
      FROM PROJEKTMODUL
      WHERE M.ModulId = PROJEKTMODUL.IdModul
      AND PROJEKTMODUL.IdProjekt = 23 )is replaced by an equivalent outer join query
    select distinct
           M.ModulId
         , M.Modul
      from MODULE M
    left outer
      join PROJEKTMODUL
        on M.ModulId = PROJEKTMODUL.IdModul
       and PROJEKTMODUL.IdProjekt = 23
    where PROJEKTMODUL.IdProjekt is nullI don't understand what
    PROJEKTMODUL.IdProjekt is nullis doing in the above rewritten query.

    It is to perform an Anti-Join. As far as I know Oracle (starting with release 10g - I thought Release 1) rewrites your NOT EXISTS and NOT IN query to a Anti Join which looks like your second query.
    Look at the results of the query without the IS NULL predicate and see which records (from that set) should be selected to show the same results as the first query. The records of interest match the predicate IS NULL.

Maybe you are looking for

  • Missing response message in Idoc - WS scenario

    Hello I 'm missing a response message in the follwing scenario: Idoc-> XI -> Web service (SOAP) A Matmas idoc is sent from R/3 to XI. In XI the Idoc is mapped to a SOAP message and sent to a web service. The Message Interface for the SOAP call is syn

  • Identify when a user has change value in USEREXIT_CHECK_VBAP before saving

    I originally posted and closed this question, but I am still struggling with the code. The req is now to also update the value of VBAP-LPRIO, so I now have to use the Exit : USEREXIT_CHECK_VBAP. The issue is that my solution must take into account wh

  • Z1 always on full volume with earphones

    Hi,  After the Lollypop upgrade,  the earphone always remains on full volume no matter even if I reduce the volume, it remains at full.  However if I go into Walkman->Sound effects,  and switch off both clear audio+ and dynamic equaliser,  it starts

  • IPad Air charging problem

    Hello, i got ipad air 2 days ago and i wanted to charge it now but i got error message "this accessory may not be supported" )I AM USING ORIGINAL CHARGER) i tried to google that problem but nothing works! :(

  • Restrictions for sdo_geor.mosaic

    Hi All i have a set of georeferenced images which are ready to be mosaiced , in the sense that there is no overlap or gap in between the images. Spatial Index is also created on the table . But still i get error when i do a sdo_geor.mosaic. ORA-13419