Cursor tips : refresh data fetched by the cursor within run time,discussion

Hello there,
May be what I am asking about is kind of weird, but here is the Q:
let us assume that I have cursor defined as follows:
cursor emp_cursor is
        select EMPNO, ENAME, deptno
        from emp
        where deptno = 10 ;
emp_rec  emp_cursor%rowtype;  then inside the loop through the data fetched by this cursor, I need to update some records, which might match the criteria of the cursor, by trying the following code segment:
open emp_cursor;
      loop
        fetch emp_cursor into emp_rec;
        exit when emp_cursor%notfound;
        "PROCESS THE RECORD'S DATA "
        DBMS_OUTPUT.Put_Line('count of the records: ' || emp_cursor%rowcount);
        DBMS_OUTPUT.Put_Line('deptno: ' || emp_rec.deptno);
        DBMS_OUTPUT.Put_Line('emp no: ' || emp_rec.empno);
        update emp
        set deptno = 10
        where empno= 7566;
        commit;
        DBMS_OUTPUT.Put_Line('after the update');
      end loop;
      close emp_cursor; but the run never shows the record of employee 7566 as one record of the cursor, may be this is the execution plan of the cursor,
but for the mentioned case, need to re-enter those updated records to the cursor data, to be processed, ( consider that the update statement is conditioned so that not executed always)
any hints or suggestion
Best Regards,

John Spencer wrote:
Justin Cave wrote:
Not possible. You'd have to close and re-open the cursor in order to pick up any changes made to the data after the cursor was opened.Then close and re-open it to get any changes made while processing the second iteration, then close and re-open it to get any changes made while processing the third iteration ad infinitum :-)I'm not claiming there are no downsides to the process :-)
On a serious note, though, the requirement itself is exceedingly odd. You most likely need to rethink your solution so that you remove this requirement. Otherwise, you're likely going to end up querying the same set of rows many, many, many times.
Justin

Similar Messages

  • Change number / date format for the user at run time

    Hi,
    Can I configure a report in Oracle Answers to display a column in a particular format for one group of users and a different format for another group of users?

    Hi,
    Yes this is possible.
    In the BMM layer duplicate column which is to be formatted for different group of users. And pull it into the presentation layer.
    Suppose Column 1 for the Group 1 users
    and Column 2 for the Group 2 users
    In the presentation layer, double click on the column and give permission for the column 1 for the group 1 users and group 2 users for column.
    First create a report with all the desired columns with Administrator or Presentation Server Administrator Role. And format the columns according to the different group of users.
    In, NQSConfig.ini change the parameter PROJECT_INACCESSIBLE_COLUMN_AS_NULL which is under security section. By default it is set to No. Set it to yes. And restart the services.
    Now logon with the group 1 users and you can see only the column1 and when logged on with group 2 users, you can see the column2.
    And will solve your problem.
    Please let me know if you need step-by-step process for solving.
    Please award if you found this useful/helpful
    Regards
    MuRam

  • My webpages wont refresh unless i move the cursor, how do i fix this?

    my webpages wont refresh unless i move the cursor.
    some post on here told me to disable acceleration, which i did.
    this worked for a while but now the problem is back.
    how do i fix this?

    I think you are in "full screen" mode. Use the F11 key to switch between full screen and normal modes. Does that solve the mystery?

  • Upgraded to FF4 sites were slow loading or not loading at all - then I discovered it downloads if I keep moving the cursor. If I stop moving the cursor the downloading stops or slows to a crawl again.

    Upgraded to FF4 sites were slow loading or not loading at all - then I discovered it downloads if I keep moving the cursor. If I stop moving the cursor the downloading stops or slows to a crawl again. What do I do so no need to keep having to move cursor?THE DOWNLOADING ICON STOPS MOVING UNLESS I KEEP MOVING THE CURSOR AROUND.

    Clear Cookies & Cache
    * https://support.mozilla.com/en-US/kb/Template:clearCookiesCache
    Clear the Network Cache
    * https://support.mozilla.com/en-US/kb/How%20to%20clear%20the%20cache#w_clear-the-cache
    Troubleshooting extensions and themes
    * https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes
    Check and tell if its working.

  • Cursor c1 parameter valve (PAR_SPRIDEN_PIDM) into the cursor c2

    hi,
    I am using 10g. I am new to oracle.
    My task is:
    I have to pass cursor c1 parameter valve (PAR_SPRIDEN_PIDM) into the cursor c2
    and get the output FULL_NAME which Concatenate the first_name and last_name
    Please find the code:
    ========================================
    CREATE TABLE spriden
    ( SPRIDEN_PIDM NUMBER(8
    ,SPRIDEN_ID VARCHAR2(9)
    ,SPRIDEN_LAST_NAME VARCHAR2(60)
    ,SPRIDEN_FIRST_NAME VARCHAR2(60 CHAR)
    ,SPRIDEN_CHANGE_IND VARCHAR2(1)
    ==================================================
    create or replace procedure multiple_cursors_proc is
    cursor c1 (PAR_SPRIDEN_PIDM in SPRIDEN.SPRIDEN_PIDM%type) is
    select SPRIDEN_ID
    from SPRIDEN
    where SPRIDEN_CHANGE_IND IS NULL
    and SPRIDEN_PIDM = PAR_SPRIDEN_PIDM;
    cursor c2 is select (SPRIDEN_FIRST_NAME || ' ' || SPRIDEN_LAST_NAME) FULL_NAME
    from SPRIDEN
    where SPRIDEN_CHANGE_IND IS NULL
    and SPRIDEN_PIDM = PAR_SPRIDEN_PIDM;
    BEGIN
    FOR cr1 in c1
    loop
    for cr2 in c2
    loop
    DBMS_OUTPUT.PUT_LINE('START TIME : ' ||
    to_char(sysdate, 'HH24:MI:SS'));
    dbms_output.put_line('SPRIDEN_PIDM: ' || PAR_SPRIDEN_PIDM || ' ' ||
    'FULL_NAME: ' || cr2.FULL_NAME);
    DBMS_OUTPUT.PUT_LINE('END TIME : ' ||
    to_char(sysdate, 'HH24:MI:SS'));
    end loop;
    end loop;
    end multiple_cursors_proc;
    =========================================================
    Thanks in advance
    Edited by: user10285804 on Apr 14, 2011 5:57 PM

    Hi,
    Your code has to change this way (untested):
    create or replace procedure multiple_cursors_proc is
    cursor c1 (PAR_SPRIDEN_PIDM in SPRIDEN.SPRIDEN_PIDM%type) is
    select SPRIDEN_ID
    from SPRIDEN
    where SPRIDEN_CHANGE_IND IS NULL
    and SPRIDEN_PIDM = PAR_SPRIDEN_PIDM;
    cursor c2(PAR_SPRIDEN_ID SPRIDEN.SPRIDEN_ID%type)
    is
      select (SPRIDEN_FIRST_NAME || ' ' || SPRIDEN_LAST_NAME) FULL_NAME
      from SPRIDEN
      where SPRIDEN_CHANGE_IND IS NULL
      and SPRIDEN_PIDM = PAR_SPRIDEN_ID;
    BEGIN
    FOR cr1 in c1
    loop
      for cr2 in c2(cr1.SPRIDEN_ID)
      loop
        DBMS_OUTPUT.PUT_LINE('START TIME : ' ||to_char(sysdate, 'HH24:MI:SS'));
        dbms_output.put_line('SPRIDEN_PIDM: ' || PAR_SPRIDEN_PIDM || ' ' ||'FULL_NAME: ' || cr2.FULL_NAME);
        DBMS_OUTPUT.PUT_LINE('END TIME : ' ||to_char(sysdate, 'HH24:MI:SS'));
      end loop;
    end loop;
    end multiple_cursors_proc;Herald ten Dam
    http://htendam.wordpress.com

  • How to change the skin at run time

    I am using jDeveloper 11.1.1.3 for ADF.
    My UseCase: i want to give a dropdown for skins. User should be able to select the skin at run time and it should be loaded. Please let me know how can i achieve it.
    Zee

    As per usecase, looks like you have the LOV containing the different skins.
    You can ensure that the application is skinned according to the selected value in the LOV.
    Ensure that you have a session scope variable that is set, whenever you change the LOV.
    For more details, look into this link http://download.oracle.com/docs/cd/E14571_01/web.1111/e10140/skinning.htm
    Thanks for your reply, but then...... what will be the skin loaded by default before the user selects the skin - drop down. Do i have to set something default before hand .?Define the LOV such that there are no empty elements. i.e the first element in the LOV is selected.
    In the Managed bean, if the session scope is not set, return the skin family for the first element. This would be the scenario when the application loads.
    Thanks,
    Navaneeth

  • Display the Columns in the grid at run time

    Hi,
    My Query is returning fix number of columns in the output.I dont want to Explicitly set the columns i want to see in the display template(display columns field) rather i want to show the number of columns in the grid at run time selected by the user.
    Any Suggestion.
    Thankyou in Advance.
    Nikhil

    Here's is what i came up with:
    YOu can run one query to get the list of all columns from a table using the following SQL code:
    SELECT COLUMN_NAME
    FROM INFORMATION_SCHEMA.COLUMNS
    WHERE TABLE_NAME = 'Customers'
    Once you do that you can run the query for your table with the selected columns with the following applet property code:
    function MyFunc(){
                   document.MyApplet.getGridObject().setDisplayColumns('CompanyName,City');
                   document.MyApplet.updateGrid(true);
    User the following to extract all selected rows:
    selRows = parseInt(myGrid.getSelectedRowCount());
    You then itterate through the iGrid to extract the value:
    for (var i=1; i<=selRows; i++) {
         selRowNum = myGrid.getSelectedRowAt(i);
         selDate = myGrid.getCellValue(selRowNum,1);

  • Create the pages at run time in smartforms

    How to create the pages at run time in smartforms????

    Hi..
    You cannot create pages at run time, however you can decide based upon conditions and using commands in Smartforms, which page needs to be displayed next.
    Those pages should be created beforehand.
    Regards,
    Karthik

  • Which column gives the complete db run time in RSDDSTAT ?

    Hello community,
    On table RSDDSTAT, which column gives me the complete db run time? 
    Is it QDBSEL + QDBTRANS? Or is it QTIMEOLAPINIT + QTIMEOLAP + QTIMEBD + QTIMEVARDP + QTIMECLIENT? Or perhaps something else?
    Thanks very much !

    hi keith,
    check this field  <b>QRUNTIMECATEGORY</b>
    hope it helps
    bhaskar.

  • How to validate similar columns fetched by the cursor

    Hi,
    I have one table which has columns like COMP_PART_NUMBER_1 , COMP_PART_NUMBER_2 up to COMP_PART_NUMBER_50
    Need to validate columns as shown below,I want to know how to make create dynamic script for the below validation so that there is no need to add same logic for 50 times.
    IF rec_SCR_assy.COMP_PART_NUMBER_1 IS NOT NULL THEN
    IF LENGTH(rec_SCR_assy.COMP_PART_NUMBER_1) > 8 THEN
         v_error_description := NVL(v_error_description,'') || 'The Component 1 Part Number length should not be greater than 8| ';
    ELSE
    v_upd_script := ' COMP_PART_NUMBER_1 = ''' || rec_SCR_assy.COMP_PART_NUMBER_1 || '''';
    END IF;
    END IF;
    I have tried to create pl sql block as :-
    FOR vcnt IN 1..50
    LOOP
    VFIELD_COMP_PART := 'COMP_PART_NUMBER_' || VCNT;
    v_exec_query:=' begin
    IF rec_SCR_assy.'||VFIELD_COMP_PART ||' IS NOT NULL THEN
    IF LENGTH(rec_SCR_assy.'||VFIELD_COMP_PART||') > 8 THEN
    :v_error_description := NVL(:v_error_description,'''') || ''The Component 1 Part Number length should not be greater than 8| '';
    ELSE
    :v_upd_script := '' rec_SCR_assy.'||VFIELD_COMP_PART||' = '''''' ||rec_SCR_assy.'||VFIELD_COMP_PART ||'||'''''''';
    end if;
    END IF; end;';
    execute immediate V_EXEC_QUERY using v_error_description,v_upd_script;
    This code is giving an error as it is not possible to create a bind variable to the cursor in dynamic script.
    Please help me to find the solution for it.Thanks in advance.

    Try like this ...
    DECLARE
       v_exec_query   VARCHAR2 (4000);
    BEGIN
       FOR i IN (SELECT column_name
                   FROM all_tab_cols
                  WHERE table_name = 'EMP')
       LOOP
          v_exec_query :=
                ' begin
    IF rec_SCR_assy.'
             || i.column_name
             || ' IS NOT NULL THEN
    IF LENGTH(rec_SCR_assy.'
             || i.column_name
             || ') > 8 THEN
    :v_error_description := NVL(:v_error_description,'''') || ''The Component 1 Part Number length should not be greater than 8| '';
    ELSE
    :v_upd_script := '' rec_SCR_assy.'
             || i.column_name
             || ' = '''''' ||rec_SCR_assy.'
             || i.column_name
             || '||'''''''';
    end if;
    END IF; end;';
          DBMS_OUTPUT.put_line (v_exec_query);
       END LOOP;
    END;
    --Output
    BEGIN
       IF rec_scr_assy.emp_info IS NOT NULL
       THEN
          IF LENGTH (rec_scr_assy.emp_info) > 8
          THEN
             :v_error_description :=
                   NVL (:v_error_description, '')
                || 'The Component 1 Part Number length should not be greater than 8| ';
          ELSE
             :v_upd_script :=
                   ' rec_SCR_assy.EMP_INFO = ''' || rec_scr_assy.emp_info || '''';
          END IF;
       END IF;
    END;
    BEGIN
       IF rec_scr_assy.deptno IS NOT NULL
       THEN
          IF LENGTH (rec_scr_assy.deptno) > 8
          THEN
             :v_error_description :=
                   NVL (:v_error_description, '')
                || 'The Component 1 Part Number length should not be greater than 8| ';
          ELSE
             :v_upd_script :=
                       ' rec_SCR_assy.DEPTNO = ''' || rec_scr_assy.deptno || '''';
          END IF;
       END IF;
    END;
    BEGIN
       IF rec_scr_assy.comm IS NOT NULL
       THEN
          IF LENGTH (rec_scr_assy.comm) > 8
          THEN
             :v_error_description :=
                   NVL (:v_error_description, '')
                || 'The Component 1 Part Number length should not be greater than 8| ';
          ELSE
             :v_upd_script :=
                           ' rec_SCR_assy.COMM = ''' || rec_scr_assy.comm || '''';
          END IF;
       END IF;
    END;
    BEGIN
       IF rec_scr_assy.sal IS NOT NULL
       THEN
          IF LENGTH (rec_scr_assy.sal) > 8
          THEN
             :v_error_description :=
                   NVL (:v_error_description, '')
                || 'The Component 1 Part Number length should not be greater than 8| ';
          ELSE
             :v_upd_script :=
                             ' rec_SCR_assy.SAL = ''' || rec_scr_assy.sal || '''';
          END IF;
       END IF;
    END;
    BEGIN
       IF rec_scr_assy.hiredate IS NOT NULL
       THEN
          IF LENGTH (rec_scr_assy.hiredate) > 8
          THEN
             :v_error_description :=
                   NVL (:v_error_description, '')
                || 'The Component 1 Part Number length should not be greater than 8| ';
          ELSE
             :v_upd_script :=
                   ' rec_SCR_assy.HIREDATE = ''' || rec_scr_assy.hiredate || '''';
          END IF;
       END IF;
    END;
    BEGIN
       IF rec_scr_assy.mgr IS NOT NULL
       THEN
          IF LENGTH (rec_scr_assy.mgr) > 8
          THEN
             :v_error_description :=
                   NVL (:v_error_description, '')
                || 'The Component 1 Part Number length should not be greater than 8| ';
          ELSE
             :v_upd_script :=
                             ' rec_SCR_assy.MGR = ''' || rec_scr_assy.mgr || '''';
          END IF;
       END IF;
    END;
    BEGIN
       IF rec_scr_assy.job IS NOT NULL
       THEN
          IF LENGTH (rec_scr_assy.job) > 8
          THEN
             :v_error_description :=
                   NVL (:v_error_description, '')
                || 'The Component 1 Part Number length should not be greater than 8| ';
          ELSE
             :v_upd_script :=
                             ' rec_SCR_assy.JOB = ''' || rec_scr_assy.job || '''';
          END IF;
       END IF;
    END;
    BEGIN
       IF rec_scr_assy.emp_no IS NOT NULL
       THEN
          IF LENGTH (rec_scr_assy.emp_no) > 8
          THEN
             :v_error_description :=
                   NVL (:v_error_description, '')
                || 'The Component 1 Part Number length should not be greater than 8| ';
          ELSE
             :v_upd_script :=
                       ' rec_SCR_assy.EMP_NO = ''' || rec_scr_assy.emp_no || '''';
          END IF;
       END IF;
    END;
    BEGIN
       IF rec_scr_assy.sys_nc00009$ IS NOT NULL
       THEN
          IF LENGTH (rec_scr_assy.sys_nc00009$) > 8
          THEN
             :v_error_description :=
                   NVL (:v_error_description, '')
                || 'The Component 1 Part Number length should not be greater than 8| ';
          ELSE
             :v_upd_script :=
                   ' rec_SCR_assy.SYS_NC00009$ = '''
                || rec_scr_assy.sys_nc00009$
                || '''';
          END IF;
       END IF;
    END;
    BEGIN
       IF rec_scr_assy.ename IS NOT NULL
       THEN
          IF LENGTH (rec_scr_assy.ename) > 8
          THEN
             :v_error_description :=
                   NVL (:v_error_description, '')
                || 'The Component 1 Part Number length should not be greater than 8| ';
          ELSE
             :v_upd_script :=
                         ' rec_SCR_assy.ENAME = ''' || rec_scr_assy.ename || '''';
          END IF;
       END IF;
    END;Regards,
    Friend

  • PDF form with XML data connection comes up blank at run time

    Hello All,
    I am a newbie to ADOBE Livecycle 9, but am very proficient in C#.  I would like to request for your guidance on the following issue.
    We have a desktop application in C#, WPF, Sqlserver. The requirement is to launch a Livecycle form from the application for the user to read/edit/save data
    I have done this much so far -
    Downloaded trial version of Livecycle 9
    Developed a interactive PDf form
    Created an XML based data connection. Generated fields on the form using the fields from this connection.
    Set the .XML file as preview source for the form
    the controls on the form are boumd to the xml data source
    In design mode, the form works fine, it displays my data correctly
    I have created a WPF form with a button. On click of this button, I call the Process.Start(pdf-file-path). My pdf is launched properly
    I have added a combo box to my WPF form. I select a parameter from this, then call a stored procedure which returns me a datatable depending on parameter passed
    Using the returned datatable, I have used the datatable.writexml and datatable.writexmlschema to create my XML and XSD files. as mentioned above, this xsd is used to create the data connection for the PDF and the XML for the preview source
    This is what I want to do -
    Launch the PDF from my WPF form, pre-populated with the newly created XML data from my WPF form.
    So basically, as the user changes the selection criteria from the combo box, the XML file data will change and the PDF file will be launched each time with new data.
    The XSD format will always be constant
    Problem -
    My XML and XSD get created properly, my PDF launches, but it is empty
    If I change my selection criteria and run the WPF application, and then open the PDF in design mode, it asks me whether it should refresh the XML source. This means that the PDF form is connecting correctly to the XML source
    So why then, does the form come up empty at run time?
    What link am I missing?
    I have found some sites that help using Web applications, but nothing for desktop applications. It would be fantastic if you could point me to some help for developing Livecycle forms with C# / SQLServer
    Your help in this case will be highly appreciated.
    Thanks and Regards

    Oops, something happended with the above post. I will try again... I have tried your suggestion but I still get the same garbled XML (with data repeated and some values "cut in half".<br /><br />Here is what I get after decode-service and extract-to-XML-service. This is just the first barcode, the others are similar, sorry for the poor formatting, but I get a CDATA tage infront of the "istensen" value.<br />                                                              <br />CDATA:istensen</fld_ForMellemEfterNavn<br />><fld_VejNRpostByEnLinie<br />>Superroad 99, 1330 Supertown</fld_VejNRpostByEnLinie<br />><fld_PrivatTelefonnummer<br />>20724283</fld_PrivatTelefonnummer<br />></sub_Person<br />></sub_PktA<br />><fld_BlanketNr<br />>kb0371ff</fld_BlanketNr<br />><fld_BarcodeCount<br />/></form1<br />>/sub_Adresse<br />><sub_Person<br />><fld_ForMellemEfterNavn>Kim Christensen</fld_ForMellemEfterNavn<br />><fld_VejNRpostByEnLinie<br />> Superroad 99, 1330 Supertown </fld_VejNRpostByEnLinie<br />><fld_PrivatTelefonnummer<br />>20724283</fld_PrivatTelefonnummer<br />></sub_Person<br />></sub_PktA<br />><fld_BlanketNr<br />>kb0371ff</fld_BlanketNr<br />><fld_BarcodeCount<br />/></form1<br /><br />Obviously this is not a legal xml-string, so I can do nothing about it.<br /><br />I have tried using a custom .NET component (ClearImage) for reading the same form (with the barcode) I get the correct data out from the barcodes. So I guess something is wrong with the decode-service in Barcoded Forms ES when I use compressed XML. But I can conclude since the ClearImage component can read the barcodes that they are compressed correctly.<br /><br />Can you help me with getting further with this problem?<br /><br />Sincerely<br />Kim

  • CWIMAQView​er toolbar not showing all the tools at run time

    Hi
    I'm using the cwimaqviewer control to display images acquired from a CCD camera.  I set the viewer's ShowToolBar property to true.  All the toolbar items showup fine at design time.  However most of them go missing at run time.  See attached photos.  I'm using VS2008, and version 9.0 of the CWIMAQ control.   Any ideas why this is happening?   I need the circle tool to draw overlay over the image.   Thanks.
    Design time toolbar:
    Runtime Toolbar:

    nikale wrote:
    Hi,
    I found a resource that may be helpful for you; I've attached the link below. It depends what you're wanting to do but chapter 3 Interactively Defining Regions might be a good starting point.
    IMAQ Vision for Measurement Studio™ User Manual: Visual Basic:
    http://www.ni.com/pdf/manuals/323023a.pdf
    I hope this helps!
    Kale W.
    Applications Engineer
    National Instruments
    http://www.ni.com/support
    Hi Kale,
    Thanks for the tip.  The document gives information on where to find particular examples, which is helpful. 
    I found this page that gives overlay examples.  I really wanted to see how the fifth one is done.  Unfortunately, it's implemented in LabView.  Is there a similary example in VB? 
    http://www.ni.com/example/25623/en/
    Thanks much.

  • Recommended method , tips and Howto for dynamics page generated on run time

    Hi all !
    I'm working on a jee5 (JPA/EJB3/JSF) application using NB6 and them VWP
    this is for the background.
    My job is to mock in Java an older app written in a proprietary language .
    Now my problem is this :
    How one can manage to create a "on-the run" edit-page = a form filled with fields which numbers and types is function of the data present in the database.
    For example record "A" of aTable presents 3 strings and 2 combos to be edited
    then record "B" due to his type presents 8 textfields 2 combos and an image and 3 address groups of fields etc...
    All these little set of pages is really dynamics, ie depends of the main table and secondary tables linked to the main record.
    So You can NOT know per advance for example that there will not be more than 10 textfields, it really have to be dynamic
    How can I succeed this in JEE ?
    I think for sure that to reach that I must forget about VWP
    That at least is obvious !
    It certainly got to be some hand-crafted code; ok for that.
    But i'm lost,
    How do I insert this besides my otherwise standard Visual Web Pack pages ?
    where should I start looking at this ?
    Can one of you put me on the trail ,
    give me some hints,
    or links me to some tutorial ...
    I've tried some googleing in vain for now...
    Thanks

    Perhaps this might help:
    How to create a table component dynamically
    http://winstonprakash.com/articles/jsf/dynamic_table.htm
    Adding components to a dynamically created table
    http://winstonprakash.com/articles/jsf/dynamic_table2.htm
    http://wiki.netbeans.org/RuntimeComponentCreation
    Radhika

  • Data Socket Server installation on Labview run-time PC

    How do I install data socket server on a PC with Labview run-time licence only? Is it part of the installer?

    Yes, this will install entire DataSocket software. This includes: DataSocket Server, Manager, and Help.
    Zvezdana S.

  • Add an element to the list in run time

    There is an item in my form which is a list of values.It is getting populated based on a record group query.
    I want to let the user enter values at run time and add the values to the exiting list in the form and same
    should be added to the record group so that next time i open the form the added value can be seen.
    Is this possible?
    Regards,

    I have written this code on when_button_pressed trigger to populate the record group RGSTD and LOV(Name LOVSTD).
    I have added the element in the list using add_list_element built in. But it is not giving me proper results.
    Record group has two columns STDID and STDNAME.
    DECLARE
    ln_num NUMBER := 0;
    BEGIN
    ln_num := show_alert('ALERT15');
    IF ln_num = 88 THEN
    add_group_row('RGSTD', 1);
    set_group_char_cell('STDID', 1, 'ST00004');
    set_group_char_cell('STDNAME', 1, 'Add To List');   
    add_list_element('LOVSTD', 1, 'Add To List', 'Add To List');  
    ELSE
    NULL;
    END IF;
    END;Edited by: LostWorld on Feb 9, 2009 5:49 AM

Maybe you are looking for

  • ODI Procedures not working after upgrading from 10G to 11G

    Hello Gurus, We have run into a scenario where the procedures in ODI are not working after we upgraded it from 10G to 11G (11.1.1.6). However we can make it to run if we create the procedure from scratch. Also we are having issues related to packages

  • Portal Back-up Problem

    I have tried to make a full back-up of a Space, using the import/export feature and the Archiver Component (also using the Folder Archive Component) for the UCM part. I made a test with a simple Space that includes a page, where I have a blog post. A

  • Format values: DB View or anything in ADF ViewObject?

    Hi. I have a DB table with a field called PERSON_ID, which is the ID of one person.My JDeveloper version is 11.1.1.7.0 With an Oracle funcion in DB, I pass this ID and get Mr. John Smith Smith ready to show in the application. Other field in the tabl

  • SOA Suite Installer

    Hi, I downloaded the SOA Suite from Oracle Website version 11.1.1.2.0 for installation on Windows 7 (32-bit). When I extracted the packaged it gives me three 'Disks' which is *'Disk1, Disk2, Disk3'*. now before I startthe installer, do I need to copy

  • Save as feature has disappeared from the drop down menu in Pages.

    I can no longer SAVE AS feature. Is this an upgrade problem?