What is fault in code?

Hi create or replace
PROCEDURE YILARALIKLI_HARFDAGILIMI  IS
cursor c_basari is
  WITH PIVOT_DATA AS (
SELECT   OA.OGRENCI_NO, DK.HARF_KODU,DA.ACILDIGI_YIL
FROM ders_aktif da,ders_tanim dt,ogrenci_akademik oa,ders_kayit dk
WHERE
      oa.birim like'1521%' and
      (da.acildigi_donem='1'or
      da.acildigi_donem='2')and
      da.ders_kodu like '1521%' and
      (dt.normal_yariyili=1 or
      dt.normal_yariyili=2)and
      dt.ders_kodu=da.ders_kodu and
      da.acilan_ders_no=dk.acilan_ders_no and
      oa.ogrenci_no=dk.ogrenci_no and
      dk.harf_kodu is not null
      SELECT * FROM PIVOT_DATA
     PIVOT(count(distinct ogrenci_no ) SAYI  FOR ACILDIGI_YIL IN(2007,2006,2005,2004,2003));    
BEGIN
FOR I IN c_basari
DBMS_OUTPUT.PUT_LINE(I."2007_SAYI");
      DBMS_OUTPUT.PUT_LINE(I."2006_SAYI");
       DBMS_OUTPUT.PUT_LINE(I."2005_SAYI");
        DBMS_OUTPUT.PUT_LINE(I."2004_SAYI");
         DBMS_OUTPUT.PUT_LINE(I."2003_SAYI");
end loop;
END YILARALIKLI_HARFDAGILIMI;It is correct has not a problem.
But problem occured in following.
create or replace
PROCEDURE DINAMICYILARALIKLIHARFDAGILIM
IS
  SQLCOMMAND VARCHAR2(32767);
  I NUMBER;
BEGIN
SQLCOMMAND := 'cursor c_basari is
  WITH PIVOT_DATA AS (
SELECT   OA.OGRENCI_NO, DK.HARF_KODU,DA.ACILDIGI_YIL
FROM ders_aktif da,ders_tanim dt,ogrenci_akademik oa,ders_kayit dk
WHERE
      oa.birim like 1521% and
      (da.acildigi_donem=1or
      da.acildigi_donem=1)and
      da.ders_kodu like 1521% and
      (dt.normal_yariyili=1 or
      dt.normal_yariyili=2)and
      dt.ders_kodu=da.ders_kodu and
      da.acilan_ders_no=dk.acilan_ders_no and
      oa.ogrenci_no=dk.ogrenci_no and
      dk.harf_kodu is not null      
      SELECT * FROM PIVOT_DATA
     PIVOT(count(distinct ogrenci_no ) SAYI  FOR ACILDIGI_YIL IN(2007,2006,2005,2004,2003));
      BEGIN
     FOR I IN c_basari LOOP
     DBMS_OUTPUT.PUT_LINE(I."2007_SAYI");
      DBMS_OUTPUT.PUT_LINE(I."2006_SAYI");
       DBMS_OUTPUT.PUT_LINE(I."2005_SAYI");
        DBMS_OUTPUT.PUT_LINE(I."2004_SAYI");
         DBMS_OUTPUT.PUT_LINE(I."2003_SAYI");
     END;
      EXECUTE IMMEDIATE SQLCOMMAND ;
      END;what is my marking,punctuation marking errors..
Compile is ok but when running
ORA-00900: invalid SQL statement
ORA-06512: at "OGUBS.DINAMICYILARALIKLIHARFDAGILIM", line 39=>line 39 is before EXECUTE IMMEDIATE SQLCOMMAND
ORA-06512: at line 8

Here's what I came up with. I made it an anonymous block to make testing easier - you can edit it back into a 'create or replace procedure' statement when you get it working.
create or replace procedure dinamicyilaralikliharfdagilim
   ( birimno        in number
   , starting_year  in number )
as
declare
   birimno constant number := 123;
   starting_year constant number := 2000;
   v_maincommand long;
   v_outputcommands long;
begin
   v_maincommand := q'[
declare
   cursor c_basari is
      with pivot_data as
           ( select oa.ogrenci_no
                  , dk.harf_kodu
                  , da.acildigi_yil
             from   ders_aktif da
                  , ders_tanim dt
                  , ogrenci_akademik oa
                  , ders_kayit dk
             where  oa.birim like :b || '%'
             and    (    da.acildigi_donem = '1'
                     or  da.acildigi_donem = '1' )
             and    da.ders_kodu like :b || '%'
             and    (    dt.normal_yariyili = 1
                     or  dt.normal_yariyili = 2 )
             and    dt.ders_kodu = da.ders_kodu
             and    da.acilan_ders_no = dk.acilan_ders_no
             and    oa.ogrenci_no = dk.ogrenci_no
             and    dk.harf_kodu is not null )
   select * from pivot_data
   pivot(count(distinct ogrenci_no) for acildigi_yil in (]';
   for i in 0..4 loop
      v_outputcommands := v_outputcommands ||
      '      dbms_output.put_line(c_cur."'|| (starting_year -i) ||'_SAYI");' || chr(10);
      v_maincommand := v_maincommand || (starting_year -i);
      if i < 4 then
         v_maincommand := v_maincommand || ', ';
      end if;
   end loop;
   v_maincommand := v_maincommand || ') );' || chr(10) ||
   'begin' || chr(10) ||
   '   for c_cur in c_basari loop' || chr(10) ||
   '      dbms_output.put_line(c_cur.harf_kodu);' || chr(10) ||
          v_outputcommands ||
   '   end loop;' || chr(10) ||
   'end;';
   -- execute immediate v_maincommand using birimno, birimno;
   dbms_output.put_line(v_maincommand);
end;I've commented out the EXECUTE IMMEDIATE' because I don't have your tables or data (so I have no idea whether it works), but notice I pass birimno in (twice) as a bind variable, where it will be used in place of the two ':b's. Also notice that careful formatting makes it easier to check.
da.acildigi_donem is compared to '1' twice - is that intended? Also if it's a number it can just be compared to 1 (no quotes) like dt.normal_yariyili below it. Also this construction can be simplified to something like <tt> and dt.normal_yariyili in (1,2)</tt>, which cuts down on the number of brackets etc while meaning the same thing.
dbms_output.put_line is really a debug tool for developers, testers and tech support though, and not much use to business users. If all this procedure does is generate some debug statements, I have to wonder what it's really for.
The dbms_output command gives this:
declare
   cursor c_basari is
      with pivot_data as
           ( select oa.ogrenci_no
                  , dk.harf_kodu
                  , da.acildigi_yil
             from   ders_aktif da
                  , ders_tanim dt
                  , ogrenci_akademik oa
                  , ders_kayit dk
             where  oa.birim like :b||'%'
             and    (    da.acildigi_donem = '1'
                     or  da.acildigi_donem = '1' )
             and    da.ders_kodu like :b||'%'
             and    (    dt.normal_yariyili = 1
                     or  dt.normal_yariyili = 2 )
             and    dt.ders_kodu = da.ders_kodu
             and    da.acilan_ders_no = dk.acilan_ders_no
             and    oa.ogrenci_no = dk.ogrenci_no
             and    dk.harf_kodu is not null )
      select * from pivot_data
      pivot(count(distinct ogrenci_no) for acildigi_yil in (2000, 1999, 1998, 1997, 1996) );
begin
   for c_cur in c_basari loop
      dbms_output.put_line(c_cur.harf_kodu);
      dbms_output.put_line(c_cur."2000_SAYI");
      dbms_output.put_line(c_cur."1999_SAYI");
      dbms_output.put_line(c_cur."1998_SAYI");
      dbms_output.put_line(c_cur."1997_SAYI");
      dbms_output.put_line(c_cur."1996_SAYI");
   end loop;
end;You can use this to test that what you're generating is correct.

Similar Messages

  • I tried to buy an app and itunes keeps asking for a security code.  What is a security code?  I do not have one.  I have a password.

    I tried to buy an app and itunes keeps asking for a security code.  What is a security code?  I only have a password! And ID

    Are you using a credit card?
    http://store.apple.com/au/help/payments#creditus
    Security codes
    The credit card security code is a unique three or four digit number printed on the front (American Express) or back (Visa/MasterCard) of your card.

  • What release level of code do you get when you download a disk image (ISO/IMG) of a click-to-run Office 2013 product?

    I’ve asked a similar question to this on an Office Community Forum but nobody knows the answer.  So
    I was hoping that an IT professional responsible for installing and deploying Office 2013 might know.
    If you download an installation disk image (ISO/IMG) of a click-to-run Office 2013 product from office.microsoft.com/myaccount (Account Options:
    Install from a disc > I want to burn a disc), what release level of code do you get? 
    Now that Service Pack 1 is available, do you get a disk image with Service Pack 1 incorporated? 
    Or do you still get the RTM (Release to Manufacturing) level of code?

    Diane, thank you for the reply.
    I was hoping that someone who has downloaded a disk image since SP1 became available would be able to confirm that for a fact.
    I have just found a good description of Click-to-Run on Technet that I didn't know existed.  The link is: http://technet.microsoft.com/en-us/library/jj219427(v=office.15)
    The article states:
    "Click-to-Run products that you download and install from Microsoft are up-to-date from the start. You won’t have to download and apply any updates or service packs immediately after you install the Office product."
    This statement is probably true if you click the Install button on office.microsoft.com/myaccount and install "in real-time" over the Internet.  However, I know for a fact that it is not true if you order a backup disk (Account
    Options: Install from a disc > I want to purchase a disc).  All you get is RTM level code (15.0.4420.1017).
    So I still feel uneasy about what release level you get if you download a disk image.  I don't want to download what might be the better part of 1GB of code over the Internet only to discover it is back level.
    Addendum (6 April 2014): I decided to perform an experiment.  I looked at the size of the data on my backup disk which contains RTM level code.  It is 2.04GB.  I then went to office.microsoft.com/myaccount and clicked to download a disk
    image of my Office 2013 product.  The pop-up window that asks me whether I want to Run or Save the file informed me that the size of the file is 2.04GB!!!  I cancelled the download.  I strongly suspect that, if I had continued with the
    download, I would have received the same RTM level code I already have dating back to October 2012.  I think this is awful customer service.  To some extent, I can understand the logistical problems of replacing backup disks lying in warehouses
    waiting to be shipped.  But I cannot understand why disk images on download servers cannot be refreshed quickly.

  • Can we create a developersite in O365 SP Online programiatically ? what is the template code for it ?

    Hi
    I am trying to create sites programmatically in O365 SharePoint Online. So, just want to know that can we create a DeveloperSite ?? what is the template code for it viz. Team site- STS#0, etc
    If possible provide me the MSDN link where I can refer for available site templates for O365 SP Online sites creation.
    Thank you 

    http://community.office365.com/en-us/f/154/t/61145.aspx
    Are you meaning to create sites on SharePoint Online by invoking web services in your own program? SharePoint Online indeed provide some web services for custom programming, however, the web methods for creating a new site seems not included in them. Here
    are some resources for the development of SharePoint Online for your reference:
    SharePoint Online for developers
    http://msdn.microsoft.com/en-us/sharepoint/gg153540.aspx
    Code example for SharePoint Online: Accessing Web Services
    http://code.msdn.microsoft.com/office/SharePoint-Online-0bdeb2ca
    As to create a site collection, the parameter "Template" is the name of the template you want to use, as to find the name of the custom site template, you can use the powershell command "Get-SPOWebTemplate",
    it will list all the templates with the names.
    Note, The Template and LocaleId parameters must be a valid combination as returned from the Get-SPOWebTemplate cmdlet.
    Also check
    http://stackoverflow.com/questions/21268629/creating-new-site-collection-in-office-365-from-an-app
    If this helped you resolve your issue, please mark it Answered

  • HELP PLEASE - WHATS WRONG WITH THIS CODE

    Hi. I get this message coming up when I try to compile the code,
    run:
    java.lang.NullPointerException
    at sumcalculator.SumNumbers.<init>(SumNumbers.java:34)
    at sumcalculator.SumNumbers.main(SumNumbers.java:93)
    Exception in thread "main"
    Java Result: 1
    BUILD SUCCESSFUL (total time: 2 seconds)
    I am not sure whats wrong with the code. Any assistance would be nice. The code is below.
    package sumcalculator;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class SumNumbers extends JFrame implements FocusListener {
    JTextField value1;
    JTextField value2;
    JLabel equals;
    JTextField sum;
    JButton add;
    JButton minus;
    JButton divide;
    JButton multiply;
    JLabel operation;
    public SumNumbers() {
    SumNumbersLayout customLayout = new SumNumbersLayout();
    getContentPane().setFont(new Font("Helvetica", Font.PLAIN, 12));
    getContentPane().setLayout(customLayout);
    value1.addFocusListener(this);
    value2.addFocusListener(this);
    sum.setEditable(true);
    value1 = new JTextField("");
    getContentPane().add(value1);
    value2 = new JTextField("");
    getContentPane().add(value2);
    equals = new JLabel("label_1");
    getContentPane().add(equals);
    sum = new JTextField("");
    getContentPane().add(sum);
    add = new JButton("+");
    getContentPane().add(add);
    minus = new JButton("-");
    getContentPane().add(minus);
    divide = new JButton("/");
    getContentPane().add(divide);
    multiply = new JButton("*");
    getContentPane().add(multiply);
    operation = new JLabel();
    getContentPane().add(operation);
    setSize(getPreferredSize());
    addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    public void focusGained(FocusEvent event){
    try {
    float total = Float.parseFloat(value1.getText()) +
    Float.parseFloat(value2.getText());
    sum.setText("" + total);
    } catch (NumberFormatException nfe) {
    value1.setText("0");
    value2.setText("0");
    sum.setText("0");
    public void focusLost(FocusEvent event){
    focusGained(event);
    public static void main(String args[]) {
    SumNumbers window = new SumNumbers();
    window.setTitle("SumNumbers");
    window.pack();
    window.show();
    class SumNumbersLayout implements LayoutManager {
    public SumNumbersLayout() {
    public void addLayoutComponent(String name, Component comp) {
    public void removeLayoutComponent(Component comp) {
    public Dimension preferredLayoutSize(Container parent) {
    Dimension dim = new Dimension(0, 0);
    Insets insets = parent.getInsets();
    dim.width = 711 + insets.left + insets.right;
    dim.height = 240 + insets.top + insets.bottom;
    return dim;
    public Dimension minimumLayoutSize(Container parent) {
    Dimension dim = new Dimension(0, 0);
    return dim;
    public void layoutContainer(Container parent) {
    Insets insets = parent.getInsets();
    Component c;
    c = parent.getComponent(0);
    if (c.isVisible()) {c.setBounds(insets.left+24,insets.top+48,128,40);}
    c = parent.getComponent(1);
    if (c.isVisible()) {c.setBounds(insets.left+256,insets.top+48,128,40);}
    c = parent.getComponent(2);
    if (c.isVisible()) {c.setBounds(insets.left+408,insets.top+48,56,40);}
    c = parent.getComponent(3);
    if (c.isVisible()) {c.setBounds(insets.left+488,insets.top+48,152,40);}
    c = parent.getComponent(4);
    if (c.isVisible()) {c.setBounds(insets.left+128,insets.top+136,72,40);}
    c = parent.getComponent(5);
    if (c.isVisible()) {c.setBounds(insets.left+248,insets.top+136,72,40);}
    c = parent.getComponent(6);
    if (c.isVisible()) {c.setBounds(insets.left+368,insets.top+136,72,40);}
    c = parent.getComponent(7);
    if (c.isVisible()) {c.setBounds(insets.left+488,insets.top+136,72,40);}
    c = parent.getComponent(8);
    if (c.isVisible()) {c.setBounds(insets.left+176,insets.top+48,56,40);}
    }

    Thank you. How do i amend this? I have defined value1though.Yes, you did - but after the call to addFocusListener(...). It needs to be before it.
    BTW, you did the same thing with "value2.addFocusListener(this)" and "sum.setEditable(true)" on the next two lines. You're attempting to call a method on an object that doesn't exist yet (i.e., you haven't called new yet).

  • What are the transaction codes we use for LSMW in MM, SD, PP  & FI/CO gnrly

    Hi all,
    What are the transaction codes we use for LSMW in MM, SD, PP  & FI/CO generally?
    Help will be surely rewarded.
    Thanks and Regards,
    Creasy

    > What are the transaction codes we use for LSMW in MM, SD, PP  & FI/CO generally?
    General threads about LSMW in MM, SD, PP, FICO will be locked and deleted generally.
    > Help will be surely rewarded.
    &********************** Please read "the rules" if found usefull... ************************&
    Cheers,
    Julius

  • What are the T-codes that contain the master data for material and vendor?

    what are the T-codes that contain the master data for material and vendor?

    hi ,
    - Display Material  tcodes...
    MM01 - Create Material
    MM02 - Change Material
    MM03 - Display Material
    MM50 - List Extendable Materials
    MMBE - Stock Overview
    MMI1 - Create Operating Supplies
    MMN1 - Create Non-Stock Material
    MMS1 - Create Service
    MMU1 - Create Non-Valuated Material
    ME51N - Create Purchase Requisition
    ME52N - Change Purchase Requisition
    ME53N - Display Purchase Requisition
    ME5A - Purchase Requisitions: List Display
    ME5J - Purchase Requisitions for Project
    ME5K - Requisitions by Account Assignment
    MELB - Purch. Transactions by Tracking No.
    ME56 - Assign Source to Purch. Requisition
    ME57 - Assign and Process Requisitions
    ME58 - Ordering: Assigned Requisitions
    ME59 - Automatic Generation of POs
    ME54 - Release Purchase Requisition
    ME55 - Collective Release of Purchase Reqs.
    ME5F - Release Reminder: Purch. Requisition
    MB21 - Create Reservation
    MB22 - Change Reservation
    MB23 - Display Reservation
    MB24 - Reservations by Material
    MB25 - Reservations by Account Assignment
    MB1C - Other Goods Receipts
    MB90 - Output Processing for Mat. Documents
    MB21 - Create Reservation
    MB22 - Change Reservation
    MB23 - Display Reservation
    MB24 - Reservations by Material
    MB25 - Reservations by Account Assignment
    MBRL - Return Delivery per Mat. Document
    MB1C - Other Goods Receipts
    MB90 - Output Processing for Mat. Documents
    MB1B - Transfer Posting
    MIBC - ABC Analysis for Cycle Counting
    MI01 - Create Physical Inventory Document
    MI02 - Change Physical Inventory Document
    MI03 - Display Physical Inventory Document
    MI31 - Batch Input: Create Phys. Inv. Doc.
    MI32 - Batch Input: Block Material
    MI33 - Batch Input: Freeze Book Inv.Balance
    MICN - Btch Inpt:Ph.Inv.Docs.for Cycle Ctng
    MIK1 - Batch Input: Ph.Inv.Doc.Vendor Cons.
    MIQ1 - Batch Input: PhInvDoc. Project Stock
    MI01 - Create Physical Inventory Document
    MI02 - Change Physical Inventory Document
    MI03 - Display Physical Inventory Document
    MI31 - Batch Input: Create Phys. Inv. Doc.
    MI32 - Batch Input: Block Material
    MI33 - Batch Input: Freeze Book Inv.Balance
    MICN - Btch Inpt:Ph.Inv.Docs.for Cycle Ctng
    MIK1 - Batch Input: Ph.Inv.Doc.Vendor Cons.
    MIQ1 - Batch Input: PhInvDoc. Project Stock
    MI01 - Create Physical Inventory Document
    MI02 - Change Physical Inventory Document
    MI03 - Display Physical Inventory Document
    MI31 - Batch Input: Create Phys. Inv. Doc.
    MI32 - Batch Input: Block Material
    MI33 - Batch Input: Freeze Book Inv.Balance
    MICN - Btch Inpt:Ph.Inv.Docs.for Cycle Ctng
    MIK1 - Batch Input: Ph.Inv.Doc.Vendor Cons.
    MIQ1 - Batch Input: PhInvDoc. Project Stock
    MI21 - Print physical inventory document
    MI04 - Enter Inventory Count with Document
    MI05 - Change Inventory Count
    MI06 - Display Inventory Count
    MI09 - Enter Inventory Count w/o Document
    MI34 - Batch Input: Enter Count
    MI35 - Batch Input: Post Zero Stock Balance
    MI38 - Batch Input: Count and Differences
    MI39 - Batch Input: Document and Count
    MI40 - Batch Input: Doc., Count and Diff.
    MI08 - Create List of Differences with Doc.
    MI10 - Create List of Differences w/o Doc.
    MI20 - Print List of Differences
    MI11 - Physical Inventory Document Recount
    MI07 - Process List of Differences
    MI37 - Batch Input: Post Differences
    for vendor..
    XKN1  Display Number Ranges (Vendor)
    XK01  Create vendor (centrally)
    XK02  Change vendor (centrally)
    XK03  Display vendor (centrally)
    XK04  Vendor Changes (Centrally)
    XK05  Block Vendor (Centrally)
    XK06 Mark vendor for deletion (centrally
    XK07  Change vendor account group
    XK11  Create Condition
    XK12  Change Condition
    XK13  Display Condition
    XK14  Create with cond. ref. (cond. list)
    XK15  Create Conditions (background job)
    reward points if useful,
    venkat.

  • TS3694 itunes error (-42404) -- Okay, getting a little frustrated (but then again, who isn't a little frustrated?). I recently tried to upgrade iTunes software a few days ago but it failed. What is (-42404) error code mean?

    itunes error (-42404) -- Okay, getting a little frustrated (but then again, who isn't a little frustrated?). I recently tried to upgrade iTunes software a few days ago but it failed. What is (-42404) error code mean?
    I get the following:
      (1) iTunes - The software required for communicating with iPods and mobile phones was not installed correctly. Do you want iTunes to try to repair this for you? Yes/No
      (2) iTunes - The software required for communicating with iPods and mobile phones could not be repaired. Please reinstall iTunes if you wish to use these devices. OK
      (3) iTunes error message - A required iTunes component is not installed. Please repair or reinstall iTunes. (-42404) OK
      (4) iTunes error message - We could not complete your iTunes Store request. A required iTunes component is not installed. Please repair or reinstall iTunes. (-42404) There is an error in the iTunes Store. Please try again later. OK
    Okay, so I decided to uninstall and reinstall. Funny, iTunes can be found in a program folder, but it does not show up in the programs list. I tried to look for it using the command prompt ("wmic" --> "product get name") but iTunes is not there either. Doesn't even show up in the registry to try to uninstall.
    I just want to "properly" uninstall and reinstall iTunes (plus the other usual suspects, Apple Software Update, Apple Mobile Device Support, Bonjour, & Apple Application Support). If anyone out there has any suggestions, please help! (I'm running Windows Vista -- don't judge/laugh) :-)

    Okay, feeling like an idiot, but will share so others don't have to. I rebooted my computer and that enabled iTunes to reappear in the programs list. Don't appear to be having the same problems as before (no error messages now). Problem solved!

  • What is the T.code in SAP R/3 for SAP console applications

    sequence picking in Hall 52. Batch number 0017137168 was assigned to 2 associates. 
    One  associate was assigned to the picks and the other associate confirmed the TO'S
    This is requirement by client
    What is the T.code in SAP R/3 for SAP console applications

    hall 52

  • What is a process code in ale idoc

    what is a process code in ale idoc,what is the purpose of Process code.

    Hi,
         Let me tell some scenario then u would be able to understand what a process code is-------
    In ALE ie, the data requested system is receiver and the data already presented system is sender ie, from where we are having the data,
      here in sender side----
           we need a program to tranfer required data into idoc--( idoc is just a data container )    in sender side this program logic is in a function module it is configured in we41.
             ie this will transfer the data from database to idoc----in sender side it is a process code
    and in receiver side after receiving the data we have to post it in database again program needed it is also ie the required code is also in function module it is configured in we42
    it is about receiver side f.m or simply process code
    okkkkkkkkkkkk

  • Hi what is the transaction code for vendor master delete

    hi
       what is the transaction code for vendor master delete? and customer master delete?
    thank u
    surya

    Hi
    There won't be any Deleting of customer and vendor completely
    we only BLOCK them
    FK05                   Block Vendor (Accounting)
    MK05                   Block Vendor (Purchasing)
    XK05                   Block Vendor (centrally)
    FD05                   Block Customer (Accounting)
    VD05                   Customer Block (Sales)
    XD05                   Block customer (centrally)
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • To what does G4 error code post16/4609 refer?

    to what does G4 error code post16/4609 refer?
    G4 MDD 1.42 PPC passes all hardware tests but gives post16/4609 error at start up.
    What does it mean?
    What is the resolution?

    I don't get any unhappy beeps.
    I get the chime. If I am not patient restarting I get high speed fan - I shut off be patience restart and get chime and search for drive then circle slash. hardware test gives me the master post 16 / 4609. - suggesting a bad drive according to other apple pundits. However, I have put two new 250GB WD drives in and still get a mass storage error. My G4 Mdd 1.42 supports drives 128GB+. I've replaced IDE cables and have master drive with out a jumper and have tried slave at CS and 3/4 slave setting all with the same result.
    Target boot got me to the "firewire drive" showed me one unformatted 250GB drive and I used disc utility to partition it according the PPC settings. Still same error.
    What gives?

  • What is a PUK code and where do you find yours for your phone

    What is a PUK code and where do you find yours

    Log on to Verizon wireless and under your account after logging in, look at the device in question and it shows there. It stands for Phone Unlock Code
    Good Luck
    Message was edited by: Elector

  • HT1918 what is the postal-code for lebanon ? I cand find it :(

    what is the postal-code for lebanon ? I cand find it

    From a quick search, some of the results that I've found seem to imply that Lebanese addresses can have postal codes, which consist of 8 numbers - the first 4 for the region, the second 4 for the building. Are you being forced to enter a post code ?
    What sort of visa card are you trying to add, debit or credit ? If it's a debit card then I don't think that they are still accepted as a valid payment method - they are not listed on this page and there have been a number of posts recently about them being declined
    If it's a credit card then is it registered to exactly the same name and address (including format and spacing etc) that you have on your iTunes account, it was issued by a bank in your country and you are currently in that country ? If it is then you could check with the card issuer to see if it's them that are declining it, and if not then try contacting iTunes support and see if they know why it's being declined : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Account Management

  • Hi, for stastical postings any report available in sap what is the t.code

    hi
    Hi, for stastical f-38/f-55 postings any report available in sap what is the t.code
    sd/-
    Sreenivas.P

    Hiii srinivas
    statistical posting means " Noted items" which can give only information regarding without any accounting documents like " Bank Guarantees and Payment Requests like that..
    u can get the details for vendors in FBL1N by the selection of "Noted items " and same for customers in FBL5N and for GL Accounts in FBL1N
    I hope it will helps u
    plss reward the points if it is useful
    regard
    ramki

Maybe you are looking for