After I put an inner for loop,i don't get any output!

Hello,
I have an RTF which does not show the output properly. I had a for-each@section, then i put another for-each to repeat the block of data twice
The code is as follows:
*<?for-each@section: Books_S1/Category_S2_Group/On_Rental_S3?>*
<?Fax_Number_ID10?>
<?for-each:xdoxslt:foreach_number($_XDOCTX,1,2,1)?>
Value does not display here!!!!!
<?Order_Number_DOCO_ID20?>
<?end for?>
*<?end for-each?>*
Please help me on this issue, i must display the value in the inner loop. I think it has lost the data (+for-each@section: Books_S1/Category_S2_Group/On_Rental_S3+) when it steps into the inner loop
Edited by: Lovvyrules on Dec 2, 2010 10:08 AM

It should be the other way.
Can you try this out.
<?for-each@section:xdoxslt:foreach_number($_XDOCTX,1,2,1)?>
<?for-each: Books_S1/Category_S2_Group/On_Rental_S3?>
<?Order_Number_DOCO_ID20?>
<?end for-each?>
<?end for-each?>
Also check the link for an example http://winrichman.blogspot.com/2008/09/multiple-copies-in-bi-publisher.html

Similar Messages

  • Having trouble with inner for loop values in my procedure

    Hi ...
    I am using oracle 10g and here is my procedure ...
    create or replace procedure sales_information is
    v_qty number(10);
    rem_qty number(10):=0;
    cursor pck_quantity is
    select * from sales_info;
    cursor no_of_labels is
    select ceil(sum(nvl(total_quantity,actual_quantity))/400) from sales_info;
    begin
    for j in no_of_labels
    loop
    for i in pck_quantity
    loop
    select nvl(i.total_quantity,i.actual_quantity) into v_qty from sales_info;
    if v_qty>=i.packed_quantity and rem_qty=0 then
    insert into sales_order values------------
    rem-qty:=v_qty-i.packed_quantity;
    v_qty:=rem_qty;
    exit;
    else if v_qty>=i.packed_quantity and rem_qty>=400 then
    insert into sales_order values-----------
    rem_qty:=v_qty-rem_qty;
    v_qty:=rem_qty;
    exit;
    else if v_qty>=i.packed_quantity and rem_qty>0 then
    rem_qty:=v_qty+rem_qty-i.packed_quantity;
    v_qty:=rem_qty;
    insert into sales_order values-----------
    else if v_qty is null and rem_qty>0 and then
    insert into sales_order values-----------
    else if v_qty<i.packed_quantity and rem_qty:=0 then
    rem_qty:=v_qty;
    else if v_qty<i.packed_quantity and rem_qty>0 then
    if (v_qty+rem_qty)>400 then
    insert into sales_order values-----------
    rem_qty:=v_qty+rem_qty-i.packed_quantity;
    v_qty:=rem_qty;
    end if;
    end if;
    end loop;
    end loop;
    The inner for loop will retrieve the same values of v_qty for every iteration of outer for loop when it runs the following select statement:
    select nvl(i.total_quantity,i.actual_quantity) into v_qty from sales_info;
    and thus loses the previously computed values of v_qty and rem_qty
    in the previous iteration of outer for loop whereas i want the inner for loop to iterate over it's previously computed values of v_qty and rem_qty but cant think of a workaround.

    h4. Thanks Dave for explanation. Hope I understood your requirement and below code resolves that
    -- Creating table SALES_INFO
    CREATE TABLE SALES_INFO
    (    S_NO             NUMBER(1),
         ACTUAL_QUANTITY  NUMBER(10),
         TOTAL_QUANTITY   NUMBER(10),
          PACKED_QUANTITY  NUMBER(10)
    -- Creating table sales_order
    CREATE TABLE SALES_ORDER
    (    S_NO             NUMBER(1),
         LABEL            VARCHAR2(30),
         ORDER_QUANTITY   NUMBER(10)
    -- Push SALES_INFO data
    INSERT INTO SALES_INFO VALUES(1,1000,800,400);
    INSERT INTO SALES_INFO VALUES(2,800,600,400);
    INSERT INTO SALES_INFO VALUES(3,800,NULL,400);
    INSERT INTO SALES_INFO VALUES(4,NULL,600,400);
    CREATE OR REPLACE PROCEDURE populate_sales_order AS
    CURSOR get_sales_info IS
    SELECT s_no,
               NVL(total_quantity,actual_quantity) total_quantity,
            packed_quantity
    FROM   sales_info;
    v_s_no          PLS_INTEGER := 0;
    v_rem_qty     PLS_INTEGER := 0;
    v_label_num   PLS_INTEGER := 1;
    BEGIN
    FOR rec IN get_sales_info LOOP
        v_rem_qty := rec.total_quantity + v_rem_qty;
        v_s_no    := rec.s_no;
         WHILE v_rem_qty >= rec.packed_quantity LOOP
           INSERT INTO sales_order( s_no, label, order_quantity)
           VALUES ( v_s_no, 'LABEL' || v_label_num, rec.packed_quantity );
           -- Reduce the packed qty from total qty and increment label counter
           v_rem_qty   := v_rem_qty - rec.packed_quantity ;
           v_label_num := v_label_num + 1;
         END LOOP;
    END LOOP;
    -- Put the last lot remaining qty into last carton
    IF v_rem_qty > 0 THEN
    INSERT INTO sales_order( s_no, label, order_quantity)
    VALUES (v_s_no, 'LABEL' || v_label_num, v_rem_qty );
    END IF;
    COMMIT;
    END;
    S_NO    LABEL                                ORDER_QUANTITY
      1          LABEL1                                    400
      1          LABEL2                                    400
      2          LABEL3                                    400
      3          LABEL4                                    400
      3          LABEL5                                    400
      4          LABEL6                                    400
      4          LABEL7                                    400
    {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to insert elements into an array after each iteration of a for loop

    I am new to labview and working on an application where I am supposed to store an element into an array (without overwriting) after each iteration in a for loop. I have tried using Build Array Function keeping the indicator outside the for loop and played with indexing but didn't work. Please suggest me an idea how to do it.
    Thanks
    Solved!
    Go to Solution.

    Thank you for your suggestion.Here is my actual application attached . In the first image, a difference in time is evaluated and an enum const of insert into array is passed to the shift register where it takes to Insert element into array phase (Second image). I need to enter the time difference into an array after every loop iteration. Please have a look and could you let me know where I am mislead.
    Attachments:
    Image 1.JPG ‏88 KB
    Image 2.JPG ‏71 KB

  • My movies are giving a URL not found on server error message, last week they worked fine. After deleting one of them, I don't get any retries for a free download. How do I contact the seller to complain?

    My movies are giving a URL not found on server error message, last week they worked fine. After deleting one of them, I don't get any retries for a free download. How do I contact the seller to complain? Obviously the one of the other movies first..

    Stan -
    Thanks again for the simple but valuable tip.
    I'm just going to repeat the relevant sections from my previous post with the screenshots this time:
    Below you'll see a snip of how my current folder structure appears. It's identical to yours, except there are no button files in the General Folder. Since you were kind enough to include a file name, I did a search on that specific one and it's nowhere to be found on my hard drive. Hmmm....
    I've seen others remark on how... "challenging".... Adobe's instructions can be sometime. I'll admit to having the same feeling when I was trying to download and install all the content files and the 7-zip stuff. Is the answer somehow that I screwed up that?  Note the 7-zip folder right above the Adobe folder. Here's a screen shot of that expanded folder contents:
    Does that look like you think it should? Have I not installed or extracted something correctly?
    Finally, the only other thing I can think of to give you as much info as you might need is to include a screenshot of where the "Functional Content" stuff got saved. Adobe's instructions about this (if I recall correctly) were that it did NOT have to be installed anywhere specific, but you then had to go into Encore (& Premiere) and through preferences point to this stuff, which I believe I did. But I don't see any button type files in these anyway.
    Other thoughts or advice?
    Thanks!

  • I upgraded to iTunes 11.  When I sync my ipad, I don't get any calendar updates on my XP laptop in Outlook 2007.  I can't find any place on iTunes 11 for info.  Help!

    I upgraded to iTunes 11.  When I sync my ipad, I don't get any calendar updates on my XP laptop in Outlook 2007.  I can't find any place on iTunes 11 for info.  Help!

    You might have better luck in the iTunes for Windows community. I'll ask the hosts to relocate your post.
    iTunes for Windows

  • I have a little bit problem with verify my apple ID, I don't get any message for verification aplle ID from Apple. Why? Anyone can help me

    Dear all,
    I have a little bit problem with verify my apple ID, I don't get any message for verification aplle ID from Apple. Why? Anyone can help me

    Hi Tep Virak,
    Thanks for visiting Apple Support Communities.
    You may want to log into your Apple ID first to double-check that it's the right email address and re-send the verification email using these steps:
    Sign in to My Apple ID to manage your account information.
    Click Resend under Primary Email Address.
    From:
    Apple ID: Associating and verifying email addresses with your Apple ID
    http://support.apple.com/kb/he68
    All the best,
    Jeremy

  • How to save a chart after each iteration in a for loop?

    Hello,
    I have written code which initializes a spectrometer. Once initialized, if the "Capture" button is pushed, the spectrometer takes a new spectrum three times (see for loop) every second. This spectrum is displayed as a chart in my front panel. My code runs fine...it will update the spectrum every second.
    However, I want to be able to save each of these three iterations as separate graphs. Basically, I want to click "Capture" and have my code save three charts to a specified folder. How do I go about doing this?
    I've attached my VI.
    Thanks.
    Solved!
    Go to Solution.
    Attachments:
    Spectrometer Iteration.vi ‏444 KB

    Use Build Array to make a 2D Array of your X and Y data and use Write To Spreadsheet File to save the data.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • I have used a 'for loop' to create an array of output data, however I want the each of the data sets from the array to be placed into a 1-D array. How do I concatenate the output of the for loop into a 1-D array?

    I am using this to create a data set that will be passed as an anolog output therefore it needs to have the correct array dimensions to go into the analog write vi.

    I'm updating my request... I've figured out how to do this by copying an example that uses a simple FOR loop (as seen in the attached current version of my VI). My question now becomes this: Is there a way to save the Y values corresponding to those X values into two more arrays? That is, just for argument's sake, let's say I took the first 100 elements from the X array, and found them to be positive. Then I would like to take the first 100 elements of the Y array and put them into a 'Y Values for X > 0' array. ...And likewise with the negative X values, they should have a separate array of corresponding 'Y values for X < 0' array.
    I can see that I should somehow save the indices of the positive X values from the large arrray wh
    en I sort them out, and use those indices to pick out the elements from the main Y array with the same indices.
    I just can't seem to set up the code necessary to do this. ...Can anyone help, please?
    Attachments:
    Poling_Data_Reader_5i.vi ‏79 KB
    30BLEND.txt ‏3 KB

  • Executing each step of a for loop only on a VISA read output

    Hi,
    I would like to give multiple steps to a motor/controller to exectue, but I keep getting a "command overflow" error.  Therefore, I am trying to tell the for loop only to execute when the VISA Read receives an output. I have included the .vi I have written so far. For example, the code /1P1000p66R tells the controller to move motor "1" forward 1000 steps and then to output the number "66" when the motor has moved 1000 steps. My input to the "table control" is, e.g., 3 commands:
    /1P1000p66R
    /1D1000p66R
    /1D5000p66R
    How do I get the code to send each of those commands only when the number "66" is sent back to the program so that I don't get the command overflow error? Also, if anyone has a better way to control the motor to do multiple steps, let me know. I'm pretty new to all of this. 
    Thanks.
    Attachments:
    Motor Controller (Sub VI 2).vi ‏26 KB

    Rather than using a table control, I would just use a string array.
    Set your serial port parameters before the loop.  Close the serial port after the loop.
    Your controls don't have any real data in them saved as default, so I'm confused a bit as to what your are trying to do.  Why do you have a numeric control with the number 0 establishing the loop iterations?
    Instead of a For Loop, use a while loop.  Set the 1-D array of strings to be autoindexing at the input tunnel.  Write the command (why you have everything wrapped in a case statement with a true constant makes no sense.  Do a VISA read.  If the response has the 66 (you'll have to figure out how to parse it out), all is good.  If it does not have the 66, or the number of loop iterations equals the number of commands in the array -1 , then end the loop.
    Message Edited by Ravens Fan on 05-20-2009 09:31 PM
    Attachments:
    MotorController(SubVI).vi ‏18 KB
    Motor%20Controller%20(Sub%20VI%202)[1]_BD.png ‏8 KB

  • I'm creating an array using a for loop, how do I get the values outside the loop while it is running? thanks

    I'm creating a set of values using a for loop and a shift register inside the loop. I want access to these values outside the loop as they are being created inside. When I connect a wire from the shift register to a display outside, it doesn't work. How do I do this? Thank you.
    Attachments:
    tamko_new.vi ‏29 KB

    I tried to create the local variable that was wired to numeric indicator inside the loop. If I try to connect this to the analog output outside the loop, the loop just starts blinking and nothing happens, am I doing something wrong? Thanks again.
    Attachments:
    tamko_new2.vi ‏29 KB

  • Dbms_output.put_line not printing in inner for loop using a parameter

    I cannot get the inner loop to print output. I can run both loops independent (hardcoding a value for the inner loop) Any help is apprecicated... Listed is the code
    set serveroutput on
    DECLARE
    cursor ACCNO_CUR is
    select accession_number from didb_studies where insert_time > to_date('02-JUN-12');
    cursor PATH_CUR (p1_accno VARCHAR2) is
    select distinct l.FILE_SYSTEM || '/' ||
    substr(LPAD(s.PATIENT_DB_UID, 12, '0'),1,3) || '/' ||
    substr(LPAD(s.PATIENT_DB_UID, 12, '0'),4,3) || '/' ||
    substr(LPAD(s.PATIENT_DB_UID, 12, '0'),7,3) || '/' ||
    substr(LPAD(s.PATIENT_DB_UID, 12, '0'),10,3) || '/' ||
    s.STUDY_DB_UID || '/' || i.SERIES_DB_UID || '/'||
    i.RAW_IMAGE_DB_UID || '.img' as FULLY_QUALIFIED_IMAGE_NAME
    , l.image_size
    , i.image_need_backup
    , i.sop_class_uid
    from medistore.didb_studies s
    , medistore.didb_raw_images_table i
    , medistore.didb_image_locations l
    where s.accession_number = 'p1_accno'
    and s.study_db_uid = i.study_db_uid
    and i.raw_image_db_uid = l.raw_image_db_uid
    and l.file_system is not null and INSTR(l.file_system, '.img') = 0
    UNION
    select distinct(l.FILE_SYSTEM) as FULLY_QUALIFIED_IMAGE_NAME
    , l.image_size
    , i.image_need_backup
    , i.sop_class_uid
    from medistore.didb_studies s, medistore.didb_raw_images_table i,
    medistore.didb_image_locations l
    where s.accession_number = 'p1_accno'
    and s.study_db_uid = i.study_db_uid
    and i.raw_image_db_uid = l.raw_image_db_uid
    and l.file_system is not null and INSTR(l.file_system, '.img') > 0
    order by 1;
    BEGIN
    FOR accno_rec in accno_cur LOOP
    DBMS_OUTPUT.put_line('ACCESSION_NUMBER is: '|| accno_rec.accession_number);
    FOR path_rec in path_cur(accno_rec.accession_number) LOOP
    DBMS_OUTPUT.put_line('Inner loop accession_number is :'||accno_rec.accession_number);
    DBMS_OUTPUT.put_line('Full path is : ' || path_rec.FULLY_QUALIFIED_IMAGE_NAME);
    END LOOP;
    END LOOP;
    END;

    Maybe
    DECLARE
      cursor ACCNO_CUR is
        select accession_number
          from didb_studies
         where insert_time > to_date('02-JUN-12');
      cursor PATH_CUR (p1_accno VARCHAR2) is
        select distinct
               l.FILE_SYSTEM || '/' ||
               substr(LPAD(s.PATIENT_DB_UID, 12, '0'),1,3) || '/' ||
               substr(LPAD(s.PATIENT_DB_UID, 12, '0'),4,3) || '/' ||
               substr(LPAD(s.PATIENT_DB_UID, 12, '0'),7,3) || '/' ||
               substr(LPAD(s.PATIENT_DB_UID, 12, '0'),10,3) || '/' ||
               s.STUDY_DB_UID || '/' || i.SERIES_DB_UID || '/'||
               i.RAW_IMAGE_DB_UID || '.img' as FULLY_QUALIFIED_IMAGE_NAME,
               l.image_size,
               i.image_need_backup,
               i.sop_class_uid
          from medistore.didb_studies s,
               medistore.didb_raw_images_table i,
               medistore.didb_image_locations l
         where s.accession_number = to_number(p1_accno) /* to_char(s.accession_number) = p1_accno */
           and s.study_db_uid = i.study_db_uid
           and i.raw_image_db_uid = l.raw_image_db_uid
           and l.file_system is not null
           and INSTR(l.file_system, '.img') = 0
        UNION
        select distinct
               l.FILE_SYSTEM as FULLY_QUALIFIED_IMAGE_NAME,
               l.image_size,
               i.image_need_backup,
               i.sop_class_uid
          from medistore.didb_studies s,
               medistore.didb_raw_images_table i,
               medistore.didb_image_locations l
         where s.accession_number = to_number(p1_accno) /* to_char(s.accession_number) = p1_accno */
           and s.study_db_uid = i.study_db_uid
           and i.raw_image_db_uid = l.raw_image_db_uid
           and l.file_system is not null and INSTR(l.file_system, '.img') > 0
         order by 1;
    BEGIN
      FOR accno_rec in accno_cur
      LOOP
        DBMS_OUTPUT.put_line('ACCESSION_NUMBER is: '|| accno_rec.accession_number);
        FOR path_rec in path_cur(accno_rec.accession_number)
        LOOP
          DBMS_OUTPUT.put_line('Inner loop accession_number is :'||accno_rec.accession_number);
          DBMS_OUTPUT.put_line('Full path is : ' || path_rec.FULLY_QUALIFIED_IMAGE_NAME);
        END LOOP;
      END LOOP;
    END;Regards
    Etbin

  • For loop doesn't stop at any point

    public function getLabel(jail):String
           var frameLabel:String = mc.currentLabel;
          for(var i=0; i<jail.currentLabels.length; i++)
                 if(jail.currentLabel == jail.currentLabels[i].name)
                       trace(jail.currentLabels[i].name);
                     if(mc.currentLabels[i] != undefined)
                             frameLabel = mc.currentLabels[i+1].name;
                      else
                            frameLabel = mc.currentLabel;
           return frameLabel;

    if you want to stop the loop if you get a match, use:
    public function getLabel(jail):String
           var frameLabel:String = mc.currentLabel;
          for(var i=0; i<jail.currentLabels.length; i++)
                 if(jail.currentLabel == jail.currentLabels[i].name)
                       trace(jail.currentLabels[i].name);
                     if(mc.currentLabels[i] != undefined)
                             frameLabel = mc.currentLabels[i+1].name;
                      else
                            frameLabel = mc.currentLabel;
           return frameLabel;
           return frameLabel;

  • After uninstalling Google Chrome links in e-mail don't work any more

    I have Firefox on my computer. I wanted to try out Chrome. After uninstalling Chrome and reinstating Firefox as my default browser, several things don't work properly, especially links in emails. I tried suggested solution of changing registry key for .html from ChromeHTML to htmlfile or FirefoxHTML but neither works. I just want to be able to click the link and open up the relevant web page.

    As someone else has this problem I reply to my own question. Only uninstallling and reinstalling Firefox cures the problem.

  • After installing Update 10.6.2 Server Netboot don`t work any more

    After installing the combo update 10.6.2 Server Netboot dont work any more.
    This is the log oft from Serveradmin Netboot:
    Nov 10 15:53:48 xserver01 bootpd[1783]: BSDP INFORM [en0] 1,0:11:24:7e:fd:76 NetBoot001 arch=ppc sysid=PowerMac7,3
    Nov 10 15:53:48 xserver01 bootpd[1783]: replyfile /private/tftpboot/NetBoot/NetBootSP0/NetInstall 10.5 + Update 10.8 combo.nbi/ppc/booter
    Nov 10 15:53:48 xserver01 bootpd[1783]: NetBoot: [1,0:11:24:7e:fd:76] BSDP ACK[SELECT] sent 10.0.50.96 pktsize 384
    Nov 10 15:53:48 xserver01 bootpd[1783]: DHCP INFORM [en0]: 1,0:11:24:7e:fd:76
    Nov 10 15:53:48 xserver01 bootpd[1783]: reply ciaddr 10.0.50.96
    Nov 10 15:53:48 xserver01 bootpd[1783]: ACK sent <no hostname> 10.0.50.96 pktsize 300
    Nov 10 15:53:48 xserver01 bootpd[1783]: service time 0.001230 seconds
    Nov 10 15:54:04 xserver01 bootpd[1783]: BSDP INFORM [en0] 1,0:11:24:7e:fd:76 NetBoot001 arch=ppc sysid=PowerMac7,3
    Nov 10 15:54:04 xserver01 bootpd[1783]: replyfile /private/tftpboot/NetBoot/NetBootSP0/NetInstall 10.5 + Update 10.8 combo.nbi/ppc/booter
    Nov 10 15:54:04 xserver01 bootpd[1783]: NetBoot: [1,0:11:24:7e:fd:76] BSDP ACK[SELECT] sent 10.0.50.96 pktsize 384
    Nov 10 15:54:04 xserver01 bootpd[1783]: DHCP INFORM [en0]: 1,0:11:24:7e:fd:76
    Nov 10 15:54:04 xserver01 bootpd[1783]: reply ciaddr 10.0.50.96
    Nov 10 15:54:04 xserver01 bootpd[1783]: ACK sent <no hostname> 10.0.50.96 pktsize 300
    Nov 10 15:54:04 xserver01 bootpd[1783]: service time 0.001111 seconds
    Nov 10 15:54:17 xserver01 bootpd[1783]: DHCP DISCOVER [en0]: 1,0:24:81:12:e1:81
    Nov 10 15:54:17 xserver01 bootpd[1783]: replying to 10.0.50.97
    Nov 10 15:54:17 xserver01 bootpd[1783]: OFFER sent <no hostname> 10.0.50.97 pktsize 300
    Nov 10 15:54:17 xserver01 bootpd[1783]: service time 0.016331 seconds
    Nov 10 15:54:17 xserver01 bootpd[1783]: DHCP REQUEST [en0]: 1,0:24:81:12:e1:81
    Nov 10 15:54:17 xserver01 bootpd[1783]: replying to 10.0.50.97
    Nov 10 15:54:17 xserver01 bootpd[1783]: ACK sent <no hostname> 10.0.50.97 pktsize 300
    Nov 10 15:54:17 xserver01 bootpd[1783]: service time 0.000840 seconds
    Nov 10 15:54:37 xserver01 bootpd[1783]: BSDP INFORM [en0] 1,0:11:24:7e:fd:76 NetBoot001 arch=ppc sysid=PowerMac7,3
    Nov 10 15:54:37 xserver01 bootpd[1783]: replyfile /private/tftpboot/NetBoot/NetBootSP0/NetInstall 10.5 + Update 10.8 combo.nbi/ppc/booter
    Nov 10 15:54:37 xserver01 bootpd[1783]: NetBoot: [1,0:11:24:7e:fd:76] BSDP ACK[SELECT] sent 10.0.50.96 pktsize 384
    Nov 10 15:54:37 xserver01 bootpd[1783]: DHCP INFORM [en0]: 1,0:11:24:7e:fd:76
    Nov 10 15:54:37 xserver01 bootpd[1783]: reply ciaddr 10.0.50.96
    Nov 10 15:54:37 xserver01 bootpd[1783]: ACK sent <no hostname> 10.0.50.96 pktsize 300
    Nov 10 15:54:37 xserver01 bootpd[1783]: service time 0.015980 seconds
    Nov 10 15:55:41 xserver01 bootpd[1783]: BSDP INFORM [en0] 1,0:11:24:7e:fd:76 NetBoot001 arch=ppc sysid=PowerMac7,3
    Nov 10 15:55:41 xserver01 bootpd[1783]: replyfile /private/tftpboot/NetBoot/NetBootSP0/NetInstall 10.5 + Update 10.8 combo.nbi/ppc/booter
    Nov 10 15:55:41 xserver01 bootpd[1783]: NetBoot: [1,0:11:24:7e:fd:76] BSDP ACK[SELECT] sent 10.0.50.96 pktsize 384
    Nov 10 15:55:41 xserver01 bootpd[1783]: DHCP INFORM [en0]: 1,0:11:24:7e:fd:76
    Nov 10 15:55:42 xserver01 bootpd[1783]: reply ciaddr 10.0.50.96
    Nov 10 15:55:42 xserver01 bootpd[1783]: ACK sent <no hostname> 10.0.50.96 pktsize 300
    Nov 10 15:55:42 xserver01 bootpd[1783]: service time 0.686362 seconds
    any ideas!??! The client is a MacPro G5

    Please refer Troubleshooting EMCA Failures in
    Master Note for Enterprise Manager Configuration Assistant (EMCA) in Single Instance Database Environment [ID 1099271.1]
    Thanks....

  • I have been listening to iTunes radio for a few months.  All of a sudden, I don't get any sound when music is playing, however, if an ad comes on, I can hear that.  Any suggestions?

    I have been listening to iTunes radio for a few months.  All of a sudden I cannot hear any music stations.  I can hear the ads when they come on, but not the music.  Any suggestions?

    Both Firefox and IE have the same problem. The cursor instead of being a finger when pointing to a link is still an arrow. However I can click anywhere on the page and an ad will pop up. I have eliminated all unwanted bars in Firefox, I ran Malwarebytes until it came out clean. I also have AVG which had detected a few items on it's own. But when I get into Firefox I still have exactly the same problem. Now it will not let me download Browser Safeguard. Usually after one click the pointer returns to normal for a few screens. When I try to click to download Browser Safeguard it keeps bringing up different ads or it tries to get me to upgrade Firefox or some other browser helper program which I know are all BS tactics to get me to load their junk again. PLease help I'm an engineer and pretty good with PCs but this one has me beat at least so far.

Maybe you are looking for

  • Where are LETOOLS for USB? The "ADB" Driver does not work with Windows XP

    I just give up with Lenovo's arcane maze of endlessly-looping driver searches.  I managed somehow to get something called an "ADB Driver" which was supposed to allow Windows XP to recognize my tablet as a K1 Ideapad.  I downloaded the 8+mb file which

  • Tex variable: Cell Function with 2 time characteristics?

    Hi BW experts, I have to use cell functions in our query because of cell references in the definition. There are two time characteristics used in the query: <b>0calweek</b> for reporting horizon and <b>zcalweek</b> for week of data loading Also I hav

  • IPhoto freezes whenever I try to add faces...

    I am running the latest version of iPhoto (iLife 11, all updates, etc.) on 10.6.7.  I have a top of the line MacBook Pro i7 (purchased in March 2011) with 8 GB RAM and 512 SSD.  For whatever reason whenever I try to add faces to my photos (either con

  • Why is Keyboard not working?

    Why is my MacBook keyboard not working?

  • Scrolling in SAFARI

    I've posted something similar before when the MacBook came out in its first week, but not many people seem to have noticed the issue. Now that the macbook's been out a month, I wanted to find out if more people are noticing this: When using two finge