Cursor selection

My cursor automatically but sporadically clicks/selects whatever image it is left on. I do have the "ignore accidential input" box checked. What to do? This also seems to have happened since my latest software, firmware, intel upgrades.

Your post mentions Intel, your system information says PowerBook G4... this is the iBook G4 discussion area.
??

Similar Messages

  • Print only cursor-selected area of a PDF in Acrobat Pro, just as it is psbl to do in a browser

    Hi
    I want to print only cursor-selected area of a PDF in Acrobat Pro. That could be both text and images, which are in my selection. Just as it is psbl to do in a browser. Is it possible in Acrobat PRO?
    I am using the latest Acrobat Pro 11.0.9

    Thanks for your effort but this again clearly does NOT answer my question. I do see a particular problem and that is that I might want to select text and images over a range of multiple pages. In a doc of 20 pages I might want to make a single selection of the text starting PRECISELY at the MIDDLE of page 2 and then continue dragging my selection all the way to PRECISELY the MIDDLE of page 15, thereby selecting all text and images within the precise range of my selection. That is some 13 pages there and I want to print out ONLY THAT selection of text and images. And in that case I cannot use your suggestion with the marquee zoom. Do you get me?

  • DBMS_XMLQuery behavior when using stored function within cursor select

    Consider the following SQL Statement
    select t1.id
    , t1.name
    , cursor ( select t2.id
    from tab t2
    where t2.t1_id
    = t1.id
    and validate(t2.xyz,:bd1)
    = 1
    from tab t1
    where t1.id = :bd2
    DBMS_XMLQuery is used to create a context and to bind the appropriate values. In this case 'validate' is a stored function. I get the following error message upon execution:
    ORA-29532: Java call terminated by uncaught Java exception:
    java.sql.SQLException: Missing IN or OUT parameter at index:: 1
    Issuing a similar statement in SQL*Plus works fine. I was wondering whether this is a known issue when using a stored function in the cursor select statement in the context of DBMS_XMLQuery or whether I'm doing something wrong.

    Hi Jan,
    This problem has been identified and fixed. The fix should be available in the next release. Thank you for bringing this up to our attention.
    visar

  • Cursor selection not working-bu​g?

    hi i've the following problem. if u can find out please try the same
    created 3 cursors for an XY graph
    select one or many cursors from the legend. try to move the cursors using the '' tool. repeat this again
    the cursor selection is unpredictable!!
    Renn
    LV 12.0f1 (64 bit)
    Kudos always welcome for helpful posts

    Hi Dan,
    i have selected Cursor 0
    then i clicked near 7, then using the navigation button (on the right side), i've increased the Y value. Cursor 0 is selected but, the Y value of Cursor 2 is incremented.
    Many Customers are having problem with this. Please help.
    Thanks
    RENN
    Kudos always welcome for helpful posts
    Attachments:
    TestCursorLV2012.vi ‏8 KB
    TestCursorLV8.0.vi ‏11 KB

  • Reg. cursor-selection in module pool....have ur points.

    Hi all,
    Pleas. help me with  a simple example of at cursor-selection in module pool programming.
    with simple code & steps
    <b>Have ur points.</b>
    Regards,
    [email protected]

    Hi Pradeep,
    The Best explanation with example comes from our help.sap.com....
    <i><b>http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbabbd35c111d1829f0000e829fbfe/content.htm</b></i>
    Also this might help...
    <b>MODULE mod [ AT {EXIT-COMMAND|CURSOR-SELECTION} ]
    [ ON {CHAIN-INPUT|CHAIN-REQUEST} ]
    [ SWITCH switch ].
    ... AT CURSOR-SELECTION</b>
    The AT CURSOR-SELECTION addition at the event PAI causes the module mod to be called only if
    The function used to trigger event PAI has function code "CS" and function type "S"
    The cursor is placed on a single input or output field of the screen at the moment of the user action
    The call occurs within the usual PAI processing, meaning that the automatic input checks defined in the system or in the ABAP Dictionary are executed and the MODULE statement is called according to its position in the event block. You can use the addition in connection with the FIELD statement.
    If the PAI event is triggered under the above circumstances, the function code is not passed to sy-ucomm and the OK field. They keep their previous values.
    <b>Note</b>
    The function type and function code of a function are determined in the Screen Painter or in the Menu Painter. We recommend to assign function code "CS" in the Menu Painter to function key F2 in order to simultaneously assign the double-click function of the mouse to it. This allows you to assign dialog modules to the selection of input or output fields.
    <b><u>Refer thread:</u></b> <i><b>Re: MODULE REQUEST
    Hope that helps!!
    <i><b>*Reward useful answers*</b></i>
    Regards,
    Naveenan.

  • NON Cursor Select

    Does anyone know how to prepare and execute a select statement w/out using a cursor. My query is only ever going to return one row and I do not want the overhead of a cursor. I tried a simple "SELECT * INTO :stRec WHERE key = :key1" but the execute does not understand the INTO clause. Thanks in advance.

    A NONVURSOR SELECT WILL HAVE MORE OVERHEAD
    WHEN COMPARED TO CURSOR SELECT BECAUSE
    IT HAS TO IMPLICTLY CHECK WHETHER NUMBER
    OF RETRIEVED < 2
    null

  • Using select cursor(select...) from ...

    I am trying to use the following construction in the report region:
    select
    cursor(select * from employees) as "EMPs",
    cursor(select * from departments) as "DEPTs"
    from dual
    It is failing with the following error:
    report error:
    ORA-00932: inconsistent datatypes: expected NUMBER got CURSER
    Just wondering if I just cannot use such a construction, or it's a bug....

    OK,
    My real query is much more complex then the one I specified above. I was just interested in using that specific syntaxis, as I use it a lot in my XSQL pages, and it works perfectly.
    For a sake of an argument, lets say I want to see all the departments' attributes, alltogether with a list of all employees working for that specific department. Of course, I could have used an outer join to achieve this, but I want to use the following:
    SELECT d.department_id,
           d.department_name,
           d.location_id,
           CURSOR(SELECT e.first_name,
                         e.last_name
                  FROM   employees e
                  WHERE  e.department_id = d.department_id
           ) emps
    FROM   depatments dWhen I use similar syntaxis in my XSQL pages, it returns a pretty xml document like the following:
    <ROW_SET>
      <ROW id="1">
        <department_id>1</department_id>
        <department_name>Accounting</department_name>
        <location_id>12</location_id>
        <ROW_SET_EMPS>
          <ROW id="1">
            <first_name>John</first_name>
            <last_name>Smith</last_name>
          </ROW>
          <ROW id="2">
            <first_name>Smith</first_name>
            <last_name>Johnson</last_name>
          </ROW>
        </ROW_SET_EMPS>
      </ROW>
    </ROW_SET>Then I just apply an XSLT over the returned XML, and I get a pretty HTML page displayed in the browser window...
    I am specifically interested in this syntaxis, because I have A LOT of XSQL pages published to my intranet users, and I would like to just take those queries and publish them as reports in HTMLDB, since HTMLDB provides me with the session management, authentication, etc., etc., capabilities.
    Thank you for all your replies.

  • R : Fetch Cursor - Select Cursor

    Scenario I
    - use an OPEN Cursor, Fetch Cursor and specify the MAXROWS parameter as
    200, FORTE returns me only 1 row.About Scenario I: you MUST surround your open-fetch-close cursor cycle by a
    begin transaction - end transaction statement.
    That is, your code should appear as follows:
    begin transaction
    open cursor...
    fetch cursor...
    do what you want...
    close cursor...
    end transaction.
    Hope this helps.
    Greetings.
    Cristina Tomacelli - CSI Piemonte
    Corso Unione Sovietica, 216 - 10134 TORINO - ITALY
    E-mail address: [email protected]
    Telephone Number: +39-11-4618387
    Da: Bala Cuddalore
    A: blunda; chiaberto; tamietti; tomacelli; forte-users
    Oggetto: Fetch Cursor - Select Cursor
    Data: gioved 13 marzo 1997 19.42
    Hi Folks,
    I am using a PREPARE to dynamically create a SELECT statement. when I
    Scenario I
    - use an OPEN Cursor, Fetch Cursor and specify the MAXROWS parameter as
    200, FORTE returns me only 1 row.
    Scenario II
    - use a SELECT using the prepared select statment, the number of rows in
    the Dataset returned by FORTE is 0.
    Am I doing something wrong here ? missing any step? We are running
    on ver 2.0.h.0.
    Any help is greatly appreciated.
    Thanks a bunch,
    Bala Cuddalore
    [email protected]
    Sage Solutions
    1360 Sacramento
    Suite 1360
    San Francisco CA 94111

    I had this problem and solved it by wrapping the OPEN, FETCH, & CLOSE
    cursor statements in an explicit transaction. I'm sure this is related to
    the dialog duration for the dbSession object you are using.
    Dennis Wetzel
    C/Soft, Inc
    Carmel, IN
    Hi Folks,
    I am using a PREPARE to dynamically create a SELECT statement. when I
    Scenario I
    - use an OPEN Cursor, Fetch Cursor and specify the MAXROWS parameteras
    200, FORTE returns me only 1 row.
    Scenario II
    - use a SELECT using the prepared select statment, the number of rowsin
    the Dataset returned by FORTE is 0.
    Am I doing something wrong here ? missing any step? We are running
    on ver 2.0.h.0.
    Any help is greatly appreciated.
    Thanks a bunch,
    Bala Cuddalore
    [email protected]
    Sage Solutions
    1360 Sacramento
    Suite 1360
    San Francisco CA 94111

  • How to use at cursor selection

    hi gurus,
             can anyone tell wats the purpose of
    'At cursor-selection' and how to use it in pai module?????
    regards,
    balaji.s

    hi balaji,
    The Best explanation with example comes from our help.sap.com....
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbabbd35c111d1829f0000e829fbfe/content.htm
    Also this might help...
    MODULE mod CURSOR-SELECTION}
    CHAIN-REQUEST}
    SWITCH switch .
    ... AT CURSOR-SELECTION
    The AT CURSOR-SELECTION addition at the event PAI causes the module mod to be called only if
    The function used to trigger event PAI has function code "CS" and function type "S"
    The cursor is placed on a single input or output field of the screen at the moment of the user action
    The call occurs within the usual PAI processing, meaning that the automatic input checks defined in the system or in the ABAP Dictionary are executed and the MODULE statement is called according to its position in the event block. You can use the addition in connection with the FIELD statement.
    If the PAI event is triggered under the above circumstances, the function code is not passed to sy-ucomm and the OK field. They keep their previous values.
    Note
    The function type and function code of a function are determined in the Screen Painter or in the Menu Painter. We recommend to assign function code "CS" in the Menu Painter to function key F2 in order to simultaneously assign the double-click function of the mouse to it. This allows you to assign dialog modules to the selection of input or output fields.
    Link: [Re: MODULE REQUEST;
    Thanks,
    reward If Helpful.

  • Need help with cursor selection in control panels

    I can't get my cursor to work in the control panel at the top of the screen, for example, when I select text and want to change the font size, etc.  It won't even select to change from font to paragraph mode.  Other issues are trying to choose the selection tool, which I can only do with the "V" shortcut tool--escape doesn't work, nor does the cursor choose the  icons.  Help!

    Windows? see InDesign tools and panels don't respond to mouse clicks (Windows 7/Vista)

  • Help with creating a cursor select form

    Hey guys i need some help, I have a client who would like a menu on her website that allows users to select differnt cursors, I have never done anything like this before hand, Can anyone help out or point me in the direction of a tutorial for this sort of thing, thanks

    Hi,
    as I know, you can change your cursors by system software or/and browser. On the other hand you can use programs "outside" of your DW. I suggest to "Google" for them, as I did, and found for example this:
    http://www.google.de/#hl=de&xhr=t&q=create+cursor&cp=13&pf=p&sclient=psy&site=&source=hp&a q=0&aqi=g2&aql=&oq=create+cursor&pbx=1&bav=on.2,or.r_gc.r_pw.&fp=e8c6fad3e718b799&biw=1280 &bih=785
    or http://www.cursors-4u.com/ and while examining this website my cursor changed immediately.
    Hans-Günter

  • Number of records in cursor select statement

    hi all,
    with the cursor i am selecting set of select statement and writing into the .txt file.
    its working file, but it should not open the file if the cursor returns nothing.
    how to check for the number of records return by the select statement in the cursor.
    pls help me.
    Thanks..

    Hi,
    You can use a Cursor for loop (you'll not enter in the loop if the SELECT is retrieving no rows):
    begin
    for recs in(select * from whatever) loop
    null; -- Produce your file
    end loop;
    end;You can also use a bulk collect and check "yourcollection.count" attribute ... (but don't use it if you are processing a lot of records!)

  • Help in OPen Cursor select

    Hi,Anyone please help me in this code to rectify errors

    Hi,
    DECLARE
      ERRBUF VARCHAR2(200);
      RETCODE NUMBER;
      P_FROMDATE DATE;
      P_TODATE DATE;
      X_RETURN_STATUS VARCHAR2(200);
      X_MSG_COUNT NUMBER;
      X_MSG_DATA VARCHAR2(200);
    BEGIN
    --  P_FROMDATE :='2010-02-01';
    --  P_TODATE :='2010-03-20';
      XXTNT_CSD_CREATEORDER.SUBMIT_CREATE_ORDER(
        P_FROMDATE => '01-FEB-2010',
        P_TODATE => '20-MAR-2010',
        X_RETURN_STATUS => X_RETURN_STATUS,
        X_MSG_COUNT => X_MSG_COUNT,
        X_MSG_DATA => X_MSG_DATA
    --  DBMS_OUTPUT.PUT_LINE('ERRBUF = ' || ERRBUF);
    --  DBMS_OUTPUT.PUT_LINE('RETCODE = ' || RETCODE);
      DBMS_OUTPUT.PUT_LINE('X_RETURN_STATUS = ' || X_RETURN_STATUS);
      DBMS_OUTPUT.PUT_LINE('X_MSG_COUNT = ' || X_MSG_COUNT);
      DBMS_OUTPUT.PUT_LINE('X_MSG_DATA = ' || X_MSG_DATA);
    END;
    before header query..
    after header query..
    X_RETURN_STATUS = S
    X_MSG_COUNT =
    X_MSG_DATA = why the code is executing up to that line
    PROCEDURE submit_Create_order(--errbuf OUT VARCHAR2,
                                    --retcode OUT NUMBER,
                                    p_fromDate IN date,
                                    p_toDate IN date,
                                    x_return_status OUT NOCOPY VARCHAR2,
                                    x_msg_count OUT NOCOPY     NUMBER,
                                    x_msg_data OUT NOCOPY      VARCHAR2) as
    CURSOR C_GET_HDR_DATA (p_fromDate IN date,p_toDate IN date)
                                            IS
        SELECT A.TRACKING_NUMBER,
          B.CUST_ACCOUNT_ID,
          B.PARTY_ID,
          A.INCIDENT_NUMBER,
          C.INCIDENT_ID,
          A.CUST_PO_NUMBER,
          A.SHIP_METHOD_CODE,
          A.CARRIER_NAME,
          A.CREATION_DATE
        FROM XXTNT_CSD_INBOUND_TRACKING A,
          HZ_CUST_ACCOUNTS B,
          CS_INCIDENTS_ALL C
        WHERE A.CREATION_DATE between to_date(p_fromDate,'DD-MON-YYYY')
        AND to_date(p_toDate,'DD-MON-YYYY')
        AND B.ACCOUNT_NUMBER(+)    = A.ACCOUNT_NUMBER
        --AND a.source='external'
        AND A.INCIDENT_NUMBER   = C.INCIDENT_NUMBER(+)
        AND EXISTS
          (SELECT 'x'
          FROM xxtnt_csd_inbound_ord_lines_b C
          WHERE C.TRACKING_NUMBER = a.tracking_number
          AND repair_line_id     IS NULL
      l_hdr_rec         ORDER_HDR_REC;
      l_lines_Tbl       ORDER_LINE_REC_TBL;
      l_lines_tbl_tbl   ORDER_LINE_REC_TBL_TBL;
      l_index           NUMBER;
      l_ret_status      VARCHAR2(10);
      l_msg_count       NUMBER;
      l_incident_number VARCHAR2(64);
      l_incident_id     NUMBER;
      l_msg_data        VARCHAR2(2000);
      l_api_name        CONSTANT VARCHAR2(30) := 'submt_Create_order';
      l_curr_po         VARCHAR2(80);
      l_prev_po         VARCHAR2(80);
      l_hdr_po          VARCHAR2(80);
      l_super_index     NUMBER;
      l_super_index1    NUMBER;
      l_line_count      NUMBER;
      l_tracking_num varchar2(80);
      TYPE c_Get_Line_data IS REF CURSOR;
      r_Get_Line_data c_Get_Line_data;
    BEGIN
      SAVEPOINT submit_Create_Order;
      x_return_status             := FND_API.G_RET_STS_SUCCESS;
      IF (fnd_log.level_procedure >= fnd_log.g_current_runtime_level) THEN
        fnd_log.STRING (fnd_log.level_procedure, 'CSD.PLSQL.XXTNT_CSD_CREATEORDER.SUBMIT_CREATE_ORDER.BEGIN', 'Enter - Submit_Create_order');
      END IF;
      --mo_global.set_policy_context('S', 81);
        dbms_output.put_line('before header query..');
      OPEN C_GET_HDR_DATA (p_fromDate,p_toDate) ;
      FETCH C_GET_HDR_DATA
      INTO l_hdr_Rec.Tracking_number,
        l_hdr_Rec.cust_account_id,
        l_hdr_Rec.party_id,
        l_hdr_Rec.incident_number,
        l_hdr_Rec.incident_id,
        l_hdr_rec.Customer_po_number,
        l_hdr_rec.SHIP_METHOD_CODE,
        l_hdr_Rec.CARRIER_NAME,
        l_hdr_Rec.CREATION_DATE;
        l_tracking_num :=l_hdr_Rec.Tracking_number;
        *dbms_output.put_line('after header query..');*
      CLOSE C_GET_HDR_DATA;
      IF (fnd_log.level_procedure >= fnd_log.g_current_runtime_level) THEN
        fnd_log.STRING (fnd_log.level_statement, 'CSD.PLSQL.XXTNT_CSD_CREATEORDER.SUBMIT_CREATE_ORDER', 'trackingnumber['||l_hdr_Rec.Tracking_number||']');
        fnd_log.STRING (fnd_log.level_statement, 'CSD.PLSQL.XXTNT_CSD_CREATEORDER.SUBMIT_CREATE_ORDER', 'cust_account['||l_hdr_Rec.cust_account_id||']');
        fnd_log.STRING (fnd_log.level_statement, 'CSD.PLSQL.XXTNT_CSD_CREATEORDER.SUBMIT_CREATE_ORDER', 'party_id['||l_hdr_Rec.party_id||']');
      END IF;
      IF( l_hdr_rec.tracking_number IS NOT NULL) THEN
        l_index                     := 1;
        l_super_index               := 1;
        l_prev_po                   := nvl(l_hdr_rec.customer_po_number,'0');
        l_hdr_po                    := nvl(l_hdr_rec.customer_po_number,'0');
        l_super_index1              := 1;
        l_line_count                := 0;
        dbms_output.put_line('before  line query loop..');
        Open r_Get_Line_data for
    SELECT A.ORDER_LINE_ID ORDER_LINE_ID, A.CUSTOMER_REF_NUMBER CUSTOMER_REF_NUMBER,
                  A.INVENTORY_ITEM_ID INVENTORY_ITEM_ID, A.SERIAL_NUMBER SERIAL_NUMBER,
                  A.UNIT_OF_MEASURE UNIT_OF_MEASURE,
                  A.repair_type_id repair_type_id, A.REPAIR_ORG_ID REPAIR_ORG_ID,
                  A.WARRANTY_FLAG WARRANTY_FLAG, A.WARRANTY_EXP_DATE WARRANTY_EXP_DATE,
                  A.VENDOR_WARRANTY_FLAG VENDOR_WARRANTY_FLAG, A.VENDOR_WARRANTY_EXP_DATE VENDOR_WARRANTY_EXP_DATE,
                  A.PRIMARY_VENDOR PRIMARY_VENDOR, A.SECONDARY_VENDOR SECONDARY_VENDOR,
                  A.NORTEL_WARRANTY_FLAG NORTEL_WARRANTY_FLAG, A.NORTEL_WARRANTY_EXP_DATE NORTEL_WARRANTY_EXP_DATE,
                  A.SCRAP_DEFECTIVE_ITEM SCRAP_DEFECTIVE_ITEM, A.INVENTORY_ORG_ID INVENTORY_ORG_ID,
                  A.SUB_INVENTORY SUB_INVENTORY, B.INCIDENT_ID INCIDENT_ID,
                  A.repair_quantity repair_quantity, a.problem_description problem_description,
                  a.same4same_flag, A.CTRACS_CONTRACT_FLAG CTRACS_CONTRACT_FLAG,
                  A.CONTRACT_LINE_ID CONTRACT_LINE_ID, nvl(A.CUST_PO_NUMBER, C.CUST_PO_NUMBER) CUST_PO_NUMBER,
                  A.REV_IN,  A.WARRANTY_QUANTITY FROM xxtnt_csd_inbound_ord_lines_vl A,
                  CS_INCIDENTS_ALL B,  XXTNT_CSD_INBOUND_TRACKING C 
                  WHERE A.TRACKING_NUMBER = l_tracking_num
                   AND A.INCIDENT_NUMBER   = B.INCIDENT_NUMBER(+)
                   AND A.REPAIR_LINE_ID is NULL AND nvl(A.DISCREP_FLAG,'N') != 'Y'
                   AND C.TRACKING_NUMBER = A.TRACKING_NUMBER ORDER BY CUST_PO_NUMBER;
        LOOP
          l_line_count := l_line_count + 1;
          l_curr_po := nvl(l_lines_tbl_tbl(l_super_index)(l_super_index1).CUSTOMER_PO_NUMBER,l_hdr_po);
          if(l_curr_po <> l_prev_po) then
               if(l_super_index1 <> 1) then
                    l_super_index := l_super_index +1;
                    l_super_index1 := 1;
               end if;
               l_prev_po     := l_curr_po;
          end if;
    FETCH r_Get_Line_data INTO
         l_lines_tbl_tbl(l_super_index)(l_super_index1).LINE_ID,
                    l_lines_tbl_tbl(l_super_index)(l_super_index1).CUSTOMER_REF_NUMBER,
                    l_lines_tbl_tbl(l_super_index)(l_super_index1).INVENTORY_ITEM_ID,
                    l_lines_tbl_tbl(l_super_index)(l_super_index1).SERIAL_NUMBER,
                    l_lines_tbl_tbl(l_super_index)(l_super_index1).UNIT_OF_MEASURE,
                    l_lines_tbl_tbl(l_super_index)(l_super_index1).repair_type_id,
                    l_lines_tbl_tbl(l_super_index)(l_super_index1).REPAIR_ORG_ID,
                    l_lines_tbl_tbl(l_super_index)(l_super_index1).TELMAR_WARRANTY_FLAG,
                    l_lines_tbl_tbl(l_super_index)(l_super_index1).TELMAR_WARRANTY_EXP_DATE,
                    l_lines_tbl_tbl(l_super_index)(l_super_index1).VENDOR_WARRANTY_FLAG,
                    l_lines_tbl_tbl(l_super_index)(l_super_index1).VENDOR_WARRANTY_EXP_DATE,
                    l_lines_tbl_tbl(l_super_index)(l_super_index1).PRIMARY_VENDOR,
                    l_lines_tbl_tbl(l_super_index)(l_super_index1).SECONDARY_VENDOR,
                    l_lines_tbl_tbl(l_super_index)(l_super_index1).NORTEL_WARRANTY_FLAG,
                    l_lines_tbl_tbl(l_super_index)(l_super_index1).NORTEL_WARRANTY_EXP_DATE,
                    l_lines_tbl_tbl(l_super_index)(l_super_index1).SCRAP_DEFECTIVE_ITEM,
                    l_lines_tbl_tbl(l_super_index)(l_super_index1).INVENTORY_ORG_ID,
                    l_lines_tbl_tbl(l_super_index)(l_super_index1).SUB_INVENTORY,
                    l_lines_tbl_tbl(l_super_index)(l_super_index1).INCIDENT_ID,
                    l_lines_tbl_tbl(l_super_index)(l_super_index1).repair_quantity,
                    l_lines_tbl_tbl(l_super_index)(l_super_index1).problem_description,
                    l_lines_tbl_tbl(l_super_index)(l_super_index1).s4s_flag,
                    l_lines_tbl_tbl(l_super_index)(l_super_index1).CTRACS_CONTRACT_FLAG,
                    l_lines_tbl_tbl(l_super_index)(l_super_index1).CONTRACT_LINE_ID,
                    l_lines_tbl_tbl(l_super_index)(l_super_index1).CUSTOMER_PO_NUMBER,
                    l_lines_tbl_tbl(l_super_index)(l_super_index1).REV_IN,
                    l_lines_tbl_tbl(l_super_index)(l_super_index1).WARRANTY_QUANTITY;
          l_super_index1                                := l_super_index1 + 1;
        END LOOP;
        dbms_output.put_line('after  line query loop..');

  • To fetch recodrs from cursor selecting from temporary table

    Hi all
    in my form iam creating a temporary table dynamically . from this table cursor is
    fetching records.
    table is creaitng dynmaically so i dn't knw the colmn name so how i can take the rows to display
    i had wriiten like this
    declare
    CURSOR C1 IS SELECT * FROM TMPTBL;-- IS THE TEMPORYTABLE
    XREC C1%ROWTYPE;
    Begin
    OPEN C1;
         LOOP
         FETCH C1 INTO XREC;
         EXIT WHEN C1%NOTFOUND;
    TXT:=XREC.FIELDNAME??/??? HOW WE CAN SEPCIFY HERE
    end loop          
    end;
    HOW WE CAN SELECT XREC.(FIELDNAME) . ACTUALLY FIELD NAME IS NOT KNOWN
    Thanks and regards
    Vivek

    Acutally i have to export the rows from the views to a excel file.
    when i select a view from from that view contents i have to export to excel .
    for that when exporting am creating a temporay table with the contents of the selected view.
    And by fetching the rows from table i ahev to export it to excel by
    using DDE.POKE Statement
    Is there any other way to do this
    Thnks and regards

  • PL/SQL - Cursor - Select in Select list

    Hi. The following PLSQL compiles,
    DECLARE
         CURSOR cur1 IS
              SELECT account_no
              FROM rnt_account;          
    BEGIN
         OPEN cur1;
         CLOSE cur1;
    END;     
    <B>This does not, </B>
    DECLARE
         CURSOR cur1 IS
              SELECT account_no
              FROM rnt_account;          
    BEGIN
         OPEN cur1;
         CLOSE cur1;
    END;     
    <B> Are selects in the Select list of a cursor not allowed in PLSQL? </B>
    THANKS IN ADVANCE

    I am using 8i , and if I run the select statement in SQLPLUS as a simple select query it functions correctly.
    So this works
    select sysdate, (select sysdate from dual)
    from dual;
    If I try to declare the above as a cursor it fails.
    with the following error message
    ERROR at line 3:
    ORA-06550: line 3, column 24:
    PLS-00103: Encountered the symbol "SELECT" when expecting one of the following:
    ( - + mod not null others <an identifier>
    I have tried aliases and they dont work.

  • I accidentally changed a setting that changed the way my cursor selects objects...

    I used to move my cursor over an object and would see all the paths, now when I hover a small square appears next to the arrow but none of the lines preview.  Whatever I did also doesn't allow me to transform an object's size without selecting the free transform option and it no longer shows me that objects are aligned.  I am so confused and have no idea what I did but I have tried to reset the workspace and looked at my preferences and I don't see anything that seems like it would be the right item to change...
    Has anyone ever had this issue and, if so, did you figure out how to go back?

    Thanks!  I tried both and the bounding box option did help with the one issue.  I think that I it must be something to do with the direct select tool because the cursor looks different when it hovers over objects and the "intersect" and "center" previews no longer display when I am trying to move objects or text on the page... 

Maybe you are looking for

  • Non Apple phones no longer working with iMessage

    I had to reset iMessage on my iPhone and MacBook Pro in order to get it syncing again properly.  I don't know what happened but it just stopped syncing until I reset everything.  Now it is working.  However, I'm noticing that any non Apple phones are

  • What is use of Acquisiton value in functional location in PM module?

    Hello, what is use of Acquisiton value in functional location in PM module? Regards, Ram Rathode.

  • Freeze Count and Freeze Level

    From the description of Freeze level, I can begin to understand it's purpose and use.  What I don't have is any data for any user.  Has this been implemented in the latest hotfix?  How does the data get populated?  I believe this data could be useful

  • Case, decode functions

    Dear All, Im having the table like the following, i need ther report like if i give role ,region and segment mean then i need onmenuid 2 alone. if input is role and region alone the i need those combinations result alone . if the input is role alone

  • Can we get N96,N95 8GB CAMERA LENS COVER REPLACEME...

    N96,N95 8GB CAMERA LENS COVER's are prone to scratches and this is a let down of these great phones. Is there any chance where we can get a lens cover replacement[paid] from nokia care in india or else where. thanks in advance.